Git Product home page Git Product logo

nuxt-storyblok-router's Introduction

Nuxt Storyblok Router

NPM CircleCI Standard JS

Nuxt.js module to use storyblok routes instead of pages/ directory

๐Ÿ“– Release Notes

Setup

  1. Add the @wearewondrous/nuxt-storyblok-router dependency with yarn or npm to your project
  2. Add @wearewondrous/nuxt-storyblok-router to the modules section of nuxt.config.js
  3. Configure it:
{
  modules: [
    ['@wearewondrous/nuxt-storyblok-router', {
      // Module option here
    }]
  ]
}

Using top level options

{
  modules: [
    '@wearewondrous/nuxt-storyblok-router'
  ],
  storyblokRouter: [
    // Module options here
  ]
}

Options

accessToken

  • Default: this.options.storyblok || ''

Access Token for the StoryBlok API. Not needed if you already have installed the Storyblok Nuxt.js module

version

  • Default: 'published'

Version of the Storyblok Content. Use 'draft' for the preview Access Token.

contentTypeDir

  • Default: 'pages'

Optional. Directory where all Content Types are loaded from.

defaultLanguage

  • Default: ''

Optional. If your Storyblok Site has multiple languages, set defaultLanguage to the key of your Storyblok default language.

exclude

  • Default: []

Optional. Array of pages which shoud not be rendered. (e.g. settings)

sitemap

  • Default: false

Optional. Integration with the Nuxt Sitemap Module. Use a Object to configure the Module with Options

// nuxt.config.js
export default {
  storyblokRouter: {
    sitemap: {
      hostname: "domain.com",
      cacheTime: 10000000000
    }
  }
}

disabled

  • Default: false

Optional. Disables the module.

generateDefaultPaths

  • Default: false

Optional. If your Storyblok Site has multiple languages and generateDefaultPaths is set, paths without language code will be generated for the default language. For example if 'defaultLanguage' is 'en', '/about' and '/en/about' will be generated.

useFallback

  • Default: false

Optional. Adds explicit fallback to routes, needed for Storyblok live preview of newly created pages. Requires a fallback.vue file in your contentTypeDir.

Usage

When enabled, this module will disable the traditional Nuxt router. The Router file will be generated according to your Storyblok Routes.

Content Types

In Storyblok all pages need a Content Type.

  1. Create a Content Type in Storyblok.
  2. Create a Vue Component with the same name, which will act as a Content Type, in the pages/ directory. These Components have all the native nuxt featutes like asyncData, fetch, head, etc.

Tip: Use camelCase for the naming in Storyblok and PascalCase for your Component Naming.

Usage with nuxt-storyblok-queries (Recommended)

// pages/PageGeneric.vue

<template>
  <!-- Your template -->
</template>

<script>
export default {
  async asyncData({ $storyblok }) {
    const story = await $storyblok.getCurrentStory()

    return {
      story
    }
  }
}
</script>

Usage with storyblok-nuxt

// pages/PageGeneric.vue

<template>
  <!-- Your template -->
</template>

<script>
export default {
  async asyncData({ app, route }) {
    const story = await app.$storyapi.get(`cdn/stories/${route.path}`)

    return {
      story
    }
  }
}
</script>

Languages

The Router will automaticly detect if you use multiple language. If you have multiple languages, the router will use an optional dynamic parameter on each route. The dynamic parameter is optional, so if no language is specified the default languag can be used.

const router = new VueRouter({
  routes: [
    // dynamic segments start with a colon
    { path: '/:lang?/about', component: ContentType }
  ]
})

Development

  1. Clone this repository
  2. Install dependencies using yarn install or npm install
  3. Start development server using npm run dev

License

MIT License

Copyright (c) WONDROUS LTD

nuxt-storyblok-router's People

Contributors

dependabot[bot] avatar mirko-kienle avatar seralichtenhahn avatar wickeey avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar

Forkers

seralichtenhahn

nuxt-storyblok-router's Issues

"Real path" seems to be ignored

Hey!

I want to add an index page and named it Start in Storyblok. I set the real path to / but the module always generates the path as /start.

You can set the slug to / in Storyblok so it behaves as the root for the current folder. This only works if it's inside a folder. I also tried to have the pages inside a pages folder in Storyblok but then the routes get generated as /pages/.

Is there a way to do this? :)
Thank you!

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.