Skip to content

dennybiasiolli/sample-app-vue

 
 

Repository files navigation

Kontent.ai sample Vue.js single-page application

Netlify Status Live Demo Stack Overflow Discord

This is a sample website written in JavaScript utilizing the Kontent.ai Delivery API to retrieve content. You can register your account for free at https://app.kontent.ai.

Application setup

  1. Install the latest version of NodeJS and npm. You can download both at https://nodejs.org/en/download/.
  2. Clone the sample application repository.
  3. Navigate to the root folder of the application in the command line.
  4. Type npm install to install required npm packages.
  5. Type npm run serve to start a development server.
  6. The application opens in your browser at http://localhost:8080.

Data origin

This sample wants to showcase either loading content from Kontent.ai as well as loading some part of the site from static JSON resources.

Basically, the content that you can't find in the Localization folder is loaded from Kontent.ai.

  • The data provided from Localization are using the vue-i18n plugin, so every call in components using $t('KEYWORD') in components is loading data from these JSONs as "Banner" section" (component here)

Data fetching

This solution fetches data using the Delivery client. For more implementation detail on how to set up the client see src/Client.js. After your client is set up, you are able to deliver your content to your project. The following example showcases how to use a Kontent.ai delivery client to fetch data.

fetchBrewer: function () {
  var query = Client.items()
    .type('brewer')
    .equalsFilter('url_pattern', this.$route.params.brewerSlug)

  if(this.language) {
    query.languageParameter(this.language)
  }

  query
    .toPromise()
    .then(response => {
      // store data to the state variable of your component.
      this.brewer = response.data.items[0]
    }
}

Language fallbacks

To deal with content that is not available in the current language, this project uses a method called language fallbacks. It will fetch the content in the language set as a fallback language in the Kontent.ai project and redirect the website to the URL with a prefix of the given language. However, it is possible to disable language fallbacks by adding a filter of system.language to your query. For more information about getting localized content check this link.

var query = Client.items().type('about_us');

if (this.language) {
    query
    .languageParameter(this.language)
    .equalsFilter('system.language', 'es-ES');
}

Connecting to your sample project

On the first run of the app, you'll be presented with a configuration page. It will allow you to connect the app to your Kontent.ai sample project or create a new one. You'll also be able to start a trial and convert to a developer plan when the trial expires.

If you want to open the configuration page after the project is already connected to the app. Just open the URL http://localhost:8080/Admin/Configuration.

Alternatively, you can connect your project manually as per the chapter below.

Connecting to your project manually

If you want to change the source Kontent.ai project, follow these steps:

  1. In Kontent.ai, choose Project settings from the app menu.
  2. Under Production environment settings, choose API keys.
  3. Copy your Project ID.
  4. Create and open a .env.local file in the sample application folder.
  5. On the first line, add your Project ID constant using the format VUE_APP_PROJECT_ID=00000000-0000-0000-0000-000000000000.
  6. Save the file.

When you now run the application, it will retrieve the content from your sample project. This setup has a higher priority than setting your sample project via the Configuration page.

Previewing content from your project

To preview unpublished content in the sample application, follow these steps:

  1. In Kontent.ai, choose Project settings from the app menu.
  2. Under Production environment settings, choose API keys.
  3. Copy your Project ID and Preview API key.
  4. Create and open a .env.local file in the sample application folder.
  5. On the first line, add your Project ID constant using the format VUE_APP_PROJECT_ID=00000000-0000-0000-0000-000000000000.
  6. On the next line, add your Preview API key using the format VUE_APP_PREVIEW_API_KEY=00000000-0000-0000-0000-000000000000.
  7. Save the file.

When you now run the application, you will see all project content including the unpublished version of content items.

Content administration

  1. Navigate to https://app.kontent.ai in your browser.
  2. Sign in with your credentials.
  3. Manage content in the content administration interface of your sample project.

You can learn more about content editing at Kontent.ai Learn.

Content delivery

You can retrieve content either through the Kontent.ai Delivery SDKs or the Kontent.ai Delivery API:

  • For published content, use https://deliver.kontent.ai/PROJECT_ID/items.
  • For unpublished content, use https://preview-deliver.kontent.ai/PROJECT_ID/items.

For more info about the API, see the API reference.

You can find the Delivery and other SDKs at https://github.com/kontent-ai.

Deployment

You can use, for example, surge to deploy your app live. Check out the step-by-step guide on our blog.

About

A sample website written in JavaScript and Vue utilizing the Kontent Delivery API to manage and retrieve content.

Resources

License

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • CSS 65.9%
  • Vue 29.8%
  • JavaScript 3.9%
  • HTML 0.4%