2.1.0 • Published 5 months ago

@algolia/generative-experiences-react v2.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
5 months ago

@algolia/generative-experiences-react

generative-experiences-react MIT License

React components for Algolia Generative Experiences.

✨ Features

  • React library to use Algolia's Generative Experiences
  • UMD and ESM compatible, you can use it with any module loader
  • Built with TypeScript

Installation

All Generative Experiences packages are available on the npm registry.

yarn add @algolia/generative-experiences-react
# or
npm install @algolia/generative-experiences-react

Usage

Initialize the algolia generative experiences client

const options = {
  appId: 'YourApplicationID',
  indexName: 'YourIndexName',
  searchOnlyAPIKey: 'YourSearchOnlyAPIKey',
  region: 'us',
};

const client = createClient(options);

Parameters:

  • appId The Algolia Application ID
  • indexName The Algolia Index used for generating and displaying Guides
  • searchOnlyAPIKey The Algolia Search API Key needed for reading index data
  • writeAPIKey The Algolia Write API Key needed for generating guides
  • region The Region of the Algolia Application. Can be either us or eu. Default is us

Guides Headlines

Generate, retrieve and display headlines for Guides using the useGuidesHeadlines hook or GuidesHeadlines widget.

import React from 'react';
import { createClient } from '@algolia/generative-experiences-api-client';
import { GuidesHeadlines } from '@algolia/generative-experiences-react';

const options = {
  appId: 'YourApplicationID',
  indexName: 'YourIndexName',
  searchOnlyAPIKey: 'YourSearchOnlyAPIKey',
};

const client = createClient(options);

function App({ userToken, category }) {
  //...

  return (
    <GuidesHeadlines
      showFeedback
      userToken={userToken}
      client={client}
      category={category}
      showImmediate
    />
  );
}
Prop nameTypeDefaultDescriptionNotes
client-N/AThe Algolia Generative Experiences client.required
categorystring \| undefinedN/AThe category to use for retrieving/generating the headlines.-
maxHeadlinesnumber \| undefined4The maximum number of headlines to display.Maximum 1,000
onlyPublishedbooleantrueOnly return headlines that have had their content generated.-
showImmediatebooleanfalseWhether to generate/display the headlines on load.-
showFeedbackbooleanfalseWhether to show the feedback buttons.-
userTokenstringN/AThe user token needed for computing feedback.required if showFeedback is true
gettersCommersGetters-The custom gathers that help you fetch images and add links.-
itemComponentReactNodeWidget with title, description, image and link to full guide.Component to display the headlines.-
viewViewProps-The view component into which your guide's headlines will be rendered.-
childrenReactNode-The children to render.-
classNamesHeadlinesButtonClassNames-The class names for the component.-

Guides Content

Generate, retrieve and display the content for the guides using the useGuideContent hook or GuideContent widget.

import React from 'react';
import { createClient } from '@algolia/generative-experiences-api-client';
import { GuideContent } from '@algolia/generative-experiences-react';

const options = {
  appId: 'YourApplicationID',
  indexName: 'YourIndexName',
  searchOnlyAPIKey: 'YourSearchOnlyAPIKey',
};

const client = createClient(options);

function App({ currentObjectID, userToken }) {
  //...

  return (
    <GuideContent
      client={client}
      objectID={currentObjectID}
      showFeedback
      userToken={userToken}
      itemComponent={({ hit }) => {
        return (
          <pre>
            <code>{JSON.stringify(hit)}</code>
          </pre>
        );
      }}
    />
  );
}
Prop nameTypeDefaultDescriptionNotes
client-N/AThe Algolia Generative Experiences client.required
objectIDstringN/AThe objectID for the guide to be retrieved/generated.required
itemComponentReactNodeN/AComponent to display items (from an algolia index) listed throughout the guide.required
featuredItemsTitlestringItems featured in this articleThe title of the realted items carousel found at the end of a guide.-
maxFeaturedItemsnumber4The number of featured items displayed at the end of a guide.-
onlyPublishedbooleantrueOnly display published guides.-
showImmediatebooleantrueWhether to generate/display the content on load.-
showFeedbackbooleanfalseWhether to show the feedback buttons.-
userTokenstringN/AThe user token needed for computing feedback.required if showFeedback is true
gettersCommersGetters-The custom gathers that help you fetch images and add links.-
childrenReactNode-The children to render.-
viewViewProps-The view component into which your guide content will be rendered.-
classNamesContentClassNames-The class names for the component.-

Guides Feedback

Provide user feedback for guides using the useGuidesFeedback hook or GuidesFeedback widget.

import React from 'react';
import { createClient } from '@algolia/generative-experiences-api-client';
import { GuidesFeedback } from '@algolia/generative-experiences-react';

const options = {
  appId: 'YourApplicationID',
  indexName: 'YourIndexName',
  searchOnlyAPIKey: 'YourSearchOnlyAPIKey',
};

const client = createClient(options);

function App({ currentObjectID, userToken, category }) {
  //...
  return (
    <GuidesFeedback
      client={client}
      objectIDs={currentObjectID}
      userToken={userToken}
    />
  );
}
Prop nameTypeDefaultDescriptionNotes
client-N/AThe Algolia Generative Experiences client.required
objectIDsstringN/AArray of objectIDs for gathering feedback.required
userTokenstringN/AThe user token needed for computing feedback.required
voteTarget'content' \| 'headline'contentThe target of the feedback.required
childrenReactNode-The children to render.-
viewViewProps-The view component to render your feedback widget.-
classNamesFeedbackClassNames-The class names for the component.-

Customisation with getters

Some of the generated guides may contain placeholders for website-specific content. These are used for the links to the product pages, guide pages as well as images.

To replace these placeholders with your website-specific content, use the getters parameter for <GuidesHeadlines /> or <GuideContent />.

import { createClient } from '@algolia/generative-experiences-api-client';
import { GuidesHeadlines } from '@algolia/generative-experiences-react';

const options = {
  appId: 'YourApplicationID',
  indexName: 'YourIndexName',
  searchOnlyAPIKey: 'YourSearchOnlyAPIKey',
};

const client = createClient(options);

const customGetters = {
  /**
   * URL for a specific guide.
   */
  guideURL: (objectID) => `/shopping-guide/${objectID}`,
  /**
   * URL for a specific product.
   */
  objectURL: (objectID) => `/product/${objectID}`,
  /**
   * List of images for a product.
   */
  images: (object) =>
    object.images.map((image) => ({ src: image.url, alt: image.alt })),
};

function App({ userToken, category }) {
  //...

  return (
    <GuidesHeadlines
      showFeedback
      userToken={userToken}
      client={client}
      category={category}
      showImmediate
    />
  );
}

Styling

Using classNames

Use the classNames property to add classes to the widgets, e.g.:

<GuideHeadlines
  classNames={{
    wrapper: 'YOUR_WRAPPER_CLASS',
    container: 'YOUR_CONTAINER_CLASS',
    item: 'YOUR_ITEM_CLASS',
  }}
/>

Using Tailwind CSS

To integrate the widgets with Tailwind, include the @tailwindcss/typography plugin in your tailwind.config.js and add the following CSS to your project:

.ais-NoWrap {
  @apply whitespace-nowrap;
}

.ais-ScreenReaderOnly {
  @apply sr-only;
}

/* display headlines */
.ais-GuideHeadlinesContent-wrapper {
  @apply rounded p-4 border border-gray-100 shadow gap-2;
}

.ais-GuideHeadlinesContent-container {
  @apply flex flex-col items-end;
}

.ais-GuideHeadlinesContent-itemsContainer {
  @apply flex items-center gap-6;
}

.ais-GuideHeadlinesContent-readMore {
  @apply flex text-white py-2 mt-8 border-2 bg-blue-700 rounded-md items-center w-full justify-center;
}

.ais-GuideHeadlinesContent-item {
  @apply bg-neutral-100 rounded p-4 space-y-3 flex justify-between min-h-[420px];
}

.ais-GuideHeadlinesContent-itemContent {
  @apply mt-5;
}

.ais-GuideHeadlinesContent-itemTitle {
  @apply text-blue-800 font-semibold line-clamp-2 h-12;
}

.ais-GuideHeadlinesContent-itemDescription {
  @apply line-clamp-4 text-base mt-2;
}

.ais-GuideHeadlinesContent-itemImage {
  @apply relative min-h-[120px] max-h-[120px] w-auto overflow-hidden mx-auto mt-4 aspect-square;
}

/* display content */
.ais-GuideContent-contentSection {
  @apply prose max-w-prose mx-auto px-4;
}

.ais-GuideContent {
  @apply mb-10 w-full;
}

.ais-GuideContent-heroImage {
  @apply mx-auto min-h-[200px] max-h-[250px] my-12;
}

.ais-GuideContent .ais-Feedback {
  @apply flex items-end justify-end mx-auto;
}

.ais-GuideContent-factorsList {
  @apply flex flex-wrap list-disc gap-x-2 justify-between w-full;
}

.ais-GuideContent-factorItem {
  @apply w-[45%];
}

.ais-GuideContent-relatedItemsSection {
  @apply prose max-w-none mx-auto px-4;
}

.ais-GuideContent-relatedItemsTitle {
  @apply max-w-prose mx-auto px-4;
}

.ais-GuideContent-relatedItemsListContainer {
  @apply max-w-prose mx-auto px-4;
}

.ais-GuideContent-relatedItemsList {
  @apply p-2 flex justify-between flex-wrap list-none;
}

/* display feedback */
.ais-Feedback {
  @apply text-gray-500 text-base max-w-prose mt-10;
}

.ais-feedbackContainer {
  @apply flex items-center gap-4;
}

.ais-Feedback-thanksWrapper {
  @apply flex items-center;
}

.ais-Feedback-labelWrapper {
  @apply flex space-x-2 items-center;
}

.ais-Feedback-labelIcon {
  @apply h-6 w-6 flex-shrink-0;
}

.ais-Feedback-button {
  @apply inline-block rounded font-semibold text-center shadow-sm transition-colors focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 bg-white hover:bg-white border-2 border-gray-400 hover:border-gray-500 focus-visible:outline-gray-500 text-gray-400 hover:text-gray-500 px-2.5 py-1.5;
}

.ais-Feedback-buttonsWrapper {
  @apply flex space-x-3 items-center;
}

.ais-Feedback-buttonIcon {
  @apply h-4 w-4 stroke-2 flex-shrink-0;
}

/* error loading guide */
.ais-GuideContentError {
  @apply flex flex-col items-center text-center gap-y-4 max-w-prose mx-auto my-6;
}

.ais-GuideContentErrorTitle {
  @apply text-lg font-semibold;
}

❓ Troubleshooting

Encountering an issue? Before reaching out to support, we recommend checking the GitHub Discussions. You can also open a Github issue.

📄 License

The project is an open-sourced software, licensed under the MIT license.

2.1.0

5 months ago

2.0.0

5 months ago

1.6.0

5 months ago

1.5.0

7 months ago

1.4.0

8 months ago

1.3.0

8 months ago

1.2.0

8 months ago

1.1.0

10 months ago

1.0.0

10 months ago

1.0.0-alpha.3

11 months ago

1.0.0-alpha.2

11 months ago