构建使用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应用程序:
-
从Github.com克隆示例WKND GraphQL React应用程序。
code language-shell $ cd ~/Code $ git clone git@github.com:adobe/aem-guides-wknd-graphql.git
-
导航到
basic-tutorial
文件夹并在IDE中将其打开。code language-shell $ cd ~/Code/aem-guides-wknd-graphql/basic-tutorial $ code .
在VSCode中
-
更新
.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:4502
和REACT_APP_AUTH_METHOD
的basic
值。 - 将
-
从命令行转到
aem-guides-wknd-graphql/basic-tutorial
文件夹 -
启动React应用程序
code language-shell $ cd ~/Code/aem-guides-wknd-graphql/basic-tutorial $ npm install $ npm start
-
React应用程序在http://localhost:3000/上以开发模式启动。 在整个教程中对React应用程序所做的更改会立即反映出来。
React应用程序剖析
示例React应用程序有三个主要部分:
-
src/api
文件夹包含用于向AEM进行GraphQL查询的文件。src/api/aemHeadlessClient.js
初始化并导出用于与AEM通信的AEM Headless客户端src/api/usePersistedQueries.js
实现自定义React挂接将数据从AEM GraphQL返回到Teams.js
和Person.js
视图组件。
-
src/components/Teams.js
文件使用列表查询显示团队及其成员的列表。 -
src/components/Person.js
文件使用参数化单结果查询显示单个人员的详细信息。
查看AEMHeadless对象
查看aemHeadlessClient.js
文件,了解如何创建用于与AEM通信的AEMHeadless
对象。
-
打开
src/api/aemHeadlessClient.js
。 -
复查行1-40:
-
从AEM Headless Client for JavaScript导入
AEMHeadless
声明,第11行。 -
授权配置基于
.env.development
,第14-22行中定义的变量,以及箭头函数表达式setAuthorization
,第31-40行。 -
所包含开发代理配置的
serviceUrl
设置,第27行。
-
-
第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检索特定数据。
- 在
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组件调用新的自定义ReactuseEffect
挂接,并呈现Teams数据。
完成后,应用程序的主视图将使用来自AEM的团队数据填充。
步骤
-
打开
src/api/usePersistedQueries.js
。 -
找到函数
useAllTeams()
-
要创建通过
fetchPersistedQuery(..)
调用持久查询my-project/all-teams
的useEffect
挂接,请添加以下代码。 该挂接还仅从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 }; }
-
打开
src/components/Teams.js
-
在
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(); ... }
-
执行基于视图的数据验证,根据返回的数据显示错误消息或加载指示器。
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 />; } ... }
-
最后,渲染团队数据。 使用提供的
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组件使用人员的全名作为查询参数,调用新的自定义ReactuseEffect
挂接,并呈现人员数据。
完成后,在“团队”视图中选择人员姓名将渲染人员视图。
-
打开
src/api/usePersistedQueries.js
。 -
找到函数
usePersonByName(fullName)
-
要创建通过
fetchPersistedQuery(..)
调用持久查询my-project/all-teams
的useEffect
挂接,请添加以下代码。 该挂接还仅从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 }; }
-
打开
src/components/Person.js
-
在
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); ... }
-
执行基于视图的数据验证,根据返回的数据显示错误消息或加载指示器。
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 />; } ... }
-
最后,呈现人员数据。
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片段来向团队内容添加更多团队和/或成员。
在幕后工作
为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
模块启用了代理设置。
通过代理
查看主../setupProxy.js
文件并在../proxy/setupProxy.auth.**.js
文件中注意到/content
和/graphql
路径是如何进行代理的,并指示它不是静态资源。
module.exports = function(app) {
app.use(
['/content', '/graphql'],
...
使用本地代理不适合用于生产部署,可以在 生产部署 部分中找到更多详细信息。
恭喜! congratulations
恭喜!作为基础教程的一部分,您已成功创建React应用程序以使用和显示AEM GraphQL API中的数据!