Ficto Healthtech
Ficto Imaging
Ficto Surgical
To run the app yourself you will need a clone of the Kontent.ai project. You can create it right from the Kontent.ai UI as a multi-brand sample project. You can learn more about the sample project in our documentation.
Execute create-next-app
with npm or Yarn to bootstrap the example:
npx create-next-app --example https://github.com/kontent-ai/sample-app-next-js sample-app-next-js
# or
yarn create next-app --example https://github.com/kontent-ai/sample-app-next-js sample-app-next-js
The app uses the Next's draft mode to display Kontent.ai preview data on the site.
All the features, including preview urls, Web Spotlight and multiple previews are configured automatically when the project is generated. Next.js draft mode is also toggled whenever you view content via Web Spotlight or Preview button.
If you open the app outside of Kontent.ai, it will by default show the published content.
To enable the preview mode, visit the /api/preview
route and provide the following query parameters:
secret
- This prevents unauthorised access to the preview data. Default value ismySuperSecret
.slug
- This defines where should the app redirect you once the draft mode is enabled (e.g./
).type
- This must be the codename of the content type that the item represented byslug
is based on. It can be eitherpage
orweb_spotlight_root
.
An example might look something like this: /api/preview?secret=mySuperSecret&slug=about-us&type=page
.
To exit the draft mode, visit the route /api/exit-preview
.
No query parameter is necessary, but you can provide callback
with a path to redirect to once the preview mode is disabled.
The draft mode leverages cookies, so when you open the app in preview (e.g. from Kontent.ai) and then open it again (e.g. in a different tab), the second instance will remain in preview, as long as the cookies are present. You can clear cookies manually or visit
/api/exit-preview
which removes them as well.
-
Set up environment variables
-
Copy the
.env.local.template
file in this directory to.env.local
(which will be ignored by Git):cp .env.local.template .env.local
-
Fill in all the necessary variables in
.env.local
based on the comments.
-
-
Run the development server:
npm run dev # or yarn dev
🎉 Open http://localhost:3000 with your browser to see the result.
If you want to use your app inside web spotlight, you will need to run the app under the https
scheme.
To run the app under the https
scheme you can use one of the following methods:
- Run
npm run dev:https
to run the app in the development mode with https. - Write your own server.
- Use Ngrok or a similar tool.
You can adjust the homepage by editing pages/[envId]/index.tsx
. The page auto-updates as you edit the file.
To generate new models from Kontent.ai data, just run npm run generateModels
. Make sure you have environment variables filled in properly.
Next.js data fetching functions convert objects to JSON format. Since JSON doesn't support circular data, this can potentially cause crashes in situations where objects reference each other, such as with linked items or rich text elements. To avoid this, the application uses the flatted
package to implement two helper functions: stringifyAsType
and parseFlatted
.
⚠ This project is not intended as a starter project. It is a sample of a presentation channel showcasing Kontent.ai capabilities. The following hints help you use this code as a base for presentation channel for your project like a boilerplate. By doing it, you are accepting the fact you are changing the purpose of this code.
The app contains code to dynamically handle different Kontent.ai projects (e.g. the environment route prefix). To adjust the code to be used for a single project as a starter, you should remove the logic that is used solely for showcasing the sample project during evaluation.
Below are some of the parts responsible for handling different Kontent.ai projects that need adjustment in case of transforming the code into a single-project setup:
middleware.ts
- Gets the Kontent.ai environment ID and stores it in a cookie. For single-project setup, a single environment variable should be used to store the environment ID.app/callback/page.tsx
&app/getPreviewApiKey/page.ts
&lib/constants/auth.ts
- Responsible for exchanging preview API keys for specified environment. For single-project setup, a single environment variable should be used to store the preview API key.app/[envId]
- Folder representing the dynamic segment, passing the environment ID for pages. For single-project setup, remove the folder and move its content one level up.
sample-app-next-js/package.json
Lines 4 to 15 in 001994b