构建使用AEM GraphQL API的React应用程序

在本章中,您将了解AEM的GraphQL API如何改善外部应用程序中的体验。

使用简单的React应用程序查询和显示AEM GraphQL API公开的​ 团队 ​和​ 人员 ​内容。 React的使用在很大程度上并不重要,消费的外部应用程序可以在任何平台的任何框架中编写。

先决条件

假定已完成此多部分教程前面部分中概述的步骤,或者basic-tutorial-solution.content.zip已安装在您的AEM as a Cloud Service创作和Publish服务中。

本章中的​ IDE屏幕截图来自Visual Studio Code

必须安装以下软件:

目标

了解如何:

  • 下载并启动示例React应用程序
  • 使用AEM Headless JS SDK查询AEM的GraphQL端点
  • 查询AEM以获取团队及其引用的成员的列表
  • 查询AEM以了解团队成员的详细信息

获取示例React应用程序

在本章中,我们使用与AEM的GraphQL API交互以及显示从这些API获得的团队和人员数据所需的代码实施了一个存根示例React应用程序。

Github.com上的https://github.com/adobe/aem-guides-wknd-graphql/tree/main/basic-tutorial提供了示例React应用程序源代码

获取React应用程序:

  1. Github.com克隆示例WKND GraphQL React应用程序。

    code language-shell
    $ cd ~/Code
    $ git clone git@github.com:adobe/aem-guides-wknd-graphql.git
    
  2. 导航到basic-tutorial文件夹并在IDE中将其打开。

    code language-shell
    $ cd ~/Code/aem-guides-wknd-graphql/basic-tutorial
    $ code .
    

    在VSCode中 React应用程序

  3. 更新.env.development以连接到AEM as a Cloud Service Publish服务。

    • REACT_APP_HOST_URI的值设置为您的AEM as a Cloud ServicePublish URL(例如 REACT_APP_HOST_URI=https://publish-p123-e456.adobeaemcloud.com)和REACT_APP_AUTH_METHOD的值更改为none
    note note
    NOTE
    确保您已发布项目配置、内容片段模型、创作的内容片段、GraphQL端点以及之前步骤中的持久查询。
    如果您在本地AEM Author SDK上执行上述步骤,则可以指向http://localhost:4502REACT_APP_AUTH_METHODbasic值。
  4. 从命令行转到aem-guides-wknd-graphql/basic-tutorial文件夹

  5. 启动React应用程序

    code language-shell
    $ cd ~/Code/aem-guides-wknd-graphql/basic-tutorial
    $ npm install
    $ npm start
    
  6. React应用程序在http://localhost:3000/上以开发模式启动。 在整个教程中对React应用程序所做的更改会立即反映出来。

部分实施的React应用程序

IMPORTANT
此React应用程序已部分实施。 按照本教程中的步骤完成实施。 需要实施工作的JavaScript文件具有下列注释,请确保使用本教程中指定的代码添加/更新这些文件中的代码。
// ​**​**​**​**​**​**​**​**​**​**​**​**​**​***
// TODO按照AEM Headless教程中的步骤实施此操作
// ​**​**​**​**​**​**​**​**​**​**​**​**​**​***

React应用程序剖析

示例React应用程序有三个主要部分:

  1. src/api文件夹包含用于向AEM进行GraphQL查询的文件。

    • src/api/aemHeadlessClient.js初始化并导出用于与AEM通信的AEM Headless客户端
    • src/api/usePersistedQueries.js实现自定义React挂接将数据从AEM GraphQL返回到Teams.jsPerson.js视图组件。
  2. src/components/Teams.js文件使用列表查询显示团队及其成员的列表。

  3. src/components/Person.js文件使用参数化单结果查询显示单个人员的详细信息。

查看AEMHeadless对象

查看aemHeadlessClient.js文件,了解如何创建用于与AEM通信的AEMHeadless对象。

  1. 打开src/api/aemHeadlessClient.js

  2. 复查行1-40:

    • AEM Headless Client for JavaScript导入AEMHeadless声明,第11行。

    • 授权配置基于.env.development,第14-22行中定义的变量,以及箭头函数表达式setAuthorization,第31-40行。

    • 所包含开发代理配置的serviceUrl设置,第27行。

  3. 第42-49行是最为重要的,因为它们会实例化AEMHeadless客户端并将其导出以供在整个React应用程序中使用。

// Initialize the AEM Headless Client and export it for other files to use
const aemHeadlessClient = new AEMHeadless({
  serviceURL: serviceURL,
  endpoint: REACT_APP_GRAPHQL_ENDPOINT,
  auth: setAuthorization(),
});

export default aemHeadlessClient;

实施以运行AEM GraphQL持久查询

要实施通用fetchPersistedQuery(..)函数以运行AEM GraphQL持久查询,请打开usePersistedQueries.js文件。 fetchPersistedQuery(..)函数使用aemHeadlessClient对象的runPersistedQuery()函数来异步运行基于承诺的查询。

稍后,自定义React useEffect挂接调用此函数以从AEM检索特定数据。

  1. src/api/usePersistedQueries.js 中,使用下面的代码更新 fetchPersistedQuery(..)的第35行。
/**
 * Private, shared function that invokes the AEM Headless client.
 *
 * @param {String} persistedQueryName the fully qualified name of the persisted query
 * @param {*} queryParameters an optional JavaScript object containing query parameters
 * @returns the GraphQL data or an error message
 */
async function fetchPersistedQuery(persistedQueryName, queryParameters) {
  let data;
  let err;

  try {
    // AEM GraphQL queries are asynchronous, either await their return or use Promise-based syntax
    const response = await aemHeadlessClient.runPersistedQuery(
      persistedQueryName,
      queryParameters
    );
    // The GraphQL data is stored on the response's data field
    data = response?.data;
  } catch (e) {
    // An error occurred, return the error messages
    err = e
      .toJSON()
      ?.map((error) => error.message)
      ?.join(", ");
    console.error(e.toJSON());
  }

  // Return the GraphQL and any errors
  return { data, err };
}

实施团队功能

接下来,构建在React应用程序的主视图上显示团队及其成员的功能。 此功能需要:

  • src/api/usePersistedQueries.js中的新自定义React useEffect挂钩调用my-project/all-teams持久查询,返回AEM中的团队内容片段列表。
  • 位于src/components/Teams.js的React组件调用新的自定义React useEffect挂接,并呈现Teams数据。

完成后,应用程序的主视图将使用来自AEM的团队数据填充。

团队视图

步骤

  1. 打开src/api/usePersistedQueries.js

  2. 找到函数useAllTeams()

  3. 要创建通过fetchPersistedQuery(..)调用持久查询my-project/all-teamsuseEffect挂接,请添加以下代码。 该挂接还仅从data?.teamList?.items处的AEM GraphQL响应返回相关数据,从而允许React视图组件独立于父JSON结构。

    code language-javascript
    /**
     * Custom hook that calls the 'my-project/all-teams' persisted query.
     *
     * @returns an array of Team JSON objects, and array of errors
     */
    export function useAllTeams() {
      const [teams, setTeams] = useState(null);
      const [error, setError] = useState(null);
    
      // Use React useEffect to manage state changes
      useEffect(() => {
        async function fetchData() {
          // Call the AEM GraphQL persisted query named "my-project/all-teams"
          const { data, err } = await fetchPersistedQuery(
            "my-project/all-teams"
          );
          // Sets the teams variable to the list of team JSON objects
          setTeams(data?.teamList?.items);
          // Set any errors
          setError(err);
        }
        // Call the internal fetchData() as per React best practices
        fetchData();
      }, []);
    
      // Returns the teams and errors
      return { teams, error };
    }
    
  4. 打开src/components/Teams.js

  5. Teams React组件中,使用useAllTeams()挂接从AEM获取团队列表。

    code language-javascript
    import { useAllTeams } from "../api/usePersistedQueries";
    ...
    function Teams() {
      // Get the Teams data from AEM using the useAllTeams
      const { teams, error } = useAllTeams();
      ...
    }
    
  6. 执行基于视图的数据验证,根据返回的数据显示错误消息或加载指示器。

    code language-javascript
    function Teams() {
      const { teams, error } = useAllTeams();
    
      // Handle error and loading conditions
      if (error) {
        // If an error ocurred while executing the GraphQL query, display an error message
        return <Error errorMessage={error} />;
      } else if (!teams) {
        // While the GraphQL request is executing, show the Loading indicator
        return <Loading />;
      }
      ...
    }
    
  7. 最后,渲染团队数据。 使用提供的Team React子组件呈现从GraphQL查询返回的每个团队。

    code language-javascript
    import React from "react";
    import { Link } from "react-router-dom";
    import { useAllTeams } from "../api/usePersistedQueries";
    import Error from "./Error";
    import Loading from "./Loading";
    import "./Teams.scss";
    
    function Teams() {
      const { teams, error } = useAllTeams();
    
      // Handle error and loading conditions
      if (error) {
        return <Error errorMessage={error} />;
      } else if (!teams) {
        return <Loading />;
      }
    
      // Teams have been populated by AEM GraphQL query. Display the teams.
      return (
        <div className="teams">
          {teams.map((team, index) => {
            return <Team key={index} {...team} />;
          })}
        </div>
      );
    }
    
    // Render single Team
    function Team({ title, shortName, description, teamMembers }) {
      // Must have title, shortName and at least 1 team member
      if (!title || !shortName || !teamMembers) {
        return null;
      }
    
      return (
        <div className="team">
          <h2 className="team__title">{title}</h2>
          <p className="team__description">{description.plaintext}</p>
          <div>
            <h4 className="team__members-title">Members</h4>
            <ul className="team__members">
              {/* Render the referenced Person models associated with the team */}
              {teamMembers.map((teamMember, index) => {
                return (
                  <li key={index} className="team__member">
                    <Link to={`/person/${teamMember.fullName}`}>
                      {teamMember.fullName}
                    </Link>
                  </li>
                );
              })}
            </ul>
          </div>
        </div>
      );
    }
    
    export default Teams;
    

实施人员功能

完成团队功能后,让我们实施该功能来处理团队成员或人员的详细信息上的显示。

此功能需要:

  • src/api/usePersistedQueries.js中的新自定义React useEffect挂接,它调用参数化的my-project/person-by-name持久查询并返回单个人员记录。

  • 位于src/components/Person.js的React组件使用人员的全名作为查询参数,调用新的自定义React useEffect挂接,并呈现人员数据。

完成后,在“团队”视图中选择人员姓名将渲染人员视图。

人员

  1. 打开src/api/usePersistedQueries.js

  2. 找到函数usePersonByName(fullName)

  3. 要创建通过fetchPersistedQuery(..)调用持久查询my-project/all-teamsuseEffect挂接,请添加以下代码。 该挂接还仅从data?.teamList?.items处的AEM GraphQL响应返回相关数据,从而允许React视图组件独立于父JSON结构。

    code language-javascript
    /**
     * Calls the 'my-project/person-by-name' and provided the {fullName} as the persisted query's `name` parameter.
     *
     * @param {String!} fullName the full
     * @returns a JSON object representing the person
     */
    export function usePersonByName(fullName) {
      const [person, setPerson] = useState(null);
      const [errors, setErrors] = useState(null);
    
      useEffect(() => {
        async function fetchData() {
          // The key is the variable name as defined in the persisted query, and may not match the model's field name
          const queryParameters = { name: fullName };
    
          // Invoke the persisted query, and pass in the queryParameters object as the 2nd parameter
          const { data, err } = await fetchPersistedQuery(
            "my-project/person-by-name",
            queryParameters
          );
    
          if (err) {
            // Capture errors from the HTTP request
            setErrors(err);
          } else if (data?.personList?.items?.length === 1) {
            // Set the person data after data validation
            setPerson(data.personList.items[0]);
          } else {
            // Set an error if no person could be found
            setErrors(`Cannot find person with name: ${fullName}`);
          }
        }
        fetchData();
      }, [fullName]);
    
      return { person, errors };
    }
    
  4. 打开src/components/Person.js

  5. Person React组件中,解析fullName路由参数,并使用usePersonByName(fullName)挂接从AEM获取人员数据。

    code language-javascript
    import { useParams } from "react-router-dom";
    import { usePersonByName } from "../api/usePersistedQueries";
    ...
    function Person() {
      // Read the person's `fullName` which is the parameter used to query for the person's details
      const { fullName } = useParams();
    
      // Query AEM for the Person's details, using the `fullName` as the filtering parameter
      const { person, error } = usePersonByName(fullName);
      ...
    }
    
  6. 执行基于视图的数据验证,根据返回的数据显示错误消息或加载指示器。

    code language-javascript
    function Person() {
      // Read the person's `fullName` which is the parameter used to query for the person's details
      const { fullName } = useParams();
    
      // Query AEM for the Person's details, using the `fullName` as the filtering parameter
      const { person, error } = usePersonByName(fullName);
    
      // Handle error and loading conditions
      if (error) {
        return <Error errorMessage={error} />;
      } else if (!person) {
        return <Loading />;
      }
      ...
    }
    
  7. 最后,呈现人员数据。

    code language-javascript
    import React from "react";
    import { useParams } from "react-router-dom";
    import { usePersonByName } from "../api/usePersistedQueries";
    import { mapJsonRichText } from "../utils/renderRichText";
    import Error from "./Error";
    import Loading from "./Loading";
    import "./Person.scss";
    
    function Person() {
      // Read the person's `fullName` which is the parameter used to query for the person's details
      const { fullName } = useParams();
    
      // Query AEM for the Person's details, using the `fullName` as the filtering parameter
      const { person, error } = usePersonByName(fullName);
    
      // Handle error and loading conditions
      if (error) {
        return <Error errorMessage={error} />;
      } else if (!person) {
        return <Loading />;
      }
    
      // Render the person data
      return (
        <div className="person">
          <img
            className="person__image"
            src={process.env.REACT_APP_HOST_URI+person.profilePicture._path}
            alt={person.fullName}
          />
          <div className="person__occupations">
            {person.occupation.map((occupation, index) => {
              return (
                <span key={index} className="person__occupation">
                  {occupation}
                </span>
              );
            })}
          </div>
          <div className="person__content">
            <h1 className="person__full-name">{person.fullName}</h1>
            <div className="person__biography">
              {/* Use this utility to transform multi-line text JSON into HTML */}
              {mapJsonRichText(person.biographyText.json)}
            </div>
          </div>
        </div>
      );
    }
    
    export default Person;
    

尝试该应用程序

查看应用程序http://localhost:3000/并单击​ 成员 ​链接。 此外,您还可以通过在AEM中添加Alpha片段来向团队内容添加更多团队和/或成员。

IMPORTANT
要验证您的实施更改,或者如果在进行上述更改后无法使应用程序正常工作,请参阅basic-tutorial解决方案分支。

在幕后工作

all-teams请求打开浏览器的​ 开发人员工具 > 网络 ​和​ 筛选器。 请注意,GraphQL API请求/graphql/execute.json/my-project/all-teams是针对http://localhost:3000而提出的,而​ NOT ​是针对REACT_APP_HOST_URI的值,例如<https://publish-pxxx-exxx.adobeaemcloud.com。 这些请求是针对React应用程序的域发出的,因为使用http-proxy-middleware模块启用了代理设置

通过代理 GraphQL API请求

查看主../setupProxy.js文件并在../proxy/setupProxy.auth.**.js文件中注意到/content/graphql路径是如何进行代理的,并指示它不是静态资源。

module.exports = function(app) {
  app.use(
    ['/content', '/graphql'],
  ...

使用本地代理不适合用于生产部署,可以在​ 生产部署 ​部分中找到更多详细信息。

恭喜! congratulations

恭喜!作为基础教程的一部分,您已成功创建React应用程序以使用和显示AEM GraphQL API中的数据!

recommendation-more-help
e25b6834-e87f-4ff3-ba56-4cd16cdfdec4