npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@nujek/nuxt-storyblok-queries

v1.2.16

Published

Nuxt.js module to simplify queries to the Storyblok API

Downloads

2

Readme

Nuxt Storyblok Queries

NPM Standard JS

Nuxt.js module to simplify queries to the Storyblok API

📖 Release Notes

⚠️ Important

This module is a fork of @wearewondrous/nuxt-storyblok-queries but with some more features like storyblok management api.

Install

yarn add -D @nujek/nuxt-storyblok-queries

Setup

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

Using top level options

{
  modules: [
    '@nujek/nuxt-storyblok-queries'
  ],
  storyblokQueries: [
    // 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

cacheProvider

  • Default: 'memory'

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

version

  • Default: 'auto'

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

defaultLanguage

  • Default: ''

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

Usage

This modules adds a simple API to query your Storyblok Content.

$storyblok.getStory(path, options)

Fetches the story by the given path. The Language gets automatically detected or can be specified in the options parameter.

export default {
  async asyncData({ $storyblok }) {
    const story = await $storyblok.getStory("home")

    return story
  }
}

with Options

export default {
  async asyncData({ $storyblok }) {
    const story = await $storyblok.getStory("home", {
      lang: "de"
    })

    return story
  }
}

$storyblok.getCurrentStory(options)

Fetches the story by the current Route. The Language gets automatically detected but can also be specified in the options parameter.

export default {
  async asyncData({ $storyblok, route }) {
    console.log(route.path) // -> /story
    const story = await $storyblok.getCurrentStory()

    return story
  }
}

with Options

export default {
  async asyncData({ $storyblok, route }) {
    console.log(route.path) // -> /story
    const story = await $storyblok.getCurrentStory({
      lang: "de"
    })

    return story
  }
}

$storyblok.getStoryCollection(path, options)

Fetches all Stories matching the given path. The Language gets automatically detected but can also be specified in the options parameter.

export default {
  async asyncData({ $storyblok, route }) {
    const collection = await $storyblok.getStoryCollection("blog")

    return collection
  }
}

with Options

export default {
  async asyncData({ $storyblok, route }) {
    const collection = await $storyblok.getStoryCollection("blog", {
      lang: "de",
      startpage: true // if true, startpage of collection gets fetched as well
    })

    return collection
  }
}

$storyblok.getSettings(lang, options)

Fetches the settings page of the given language. The path for the settings route can be specified in the options parameter or falls back to /settings.

export default {
  async asyncData({ $storyblok, route }) {
    const settings = await $storyblok.getSettings("de")

    return {
      //...
      settings
    }
  }
}

with Options

export default {
  async asyncData({ $storyblok, route }) {
    const settings = await $storyblok.getSettings("de", {
      path: "global"
    })

    return {
      //...
      settings
    }
  }
}

$storyblok.getCurrentSettings(options)

Fetches the settings page of the current language detected by the current route. The path for the settings route can be specified in the options parameter or falls back to /settings.

export default {
  async asyncData({ $storyblok, route }) {
    const settings = await $storyblok.getCurrentSettings()

    return {
      //...
      settings
    }
  }
}

with Options

export default {
  async asyncData({ $storyblok, route }) {
    const settings = await $storyblok.getCurrentSettings({
      path: "global"
    })

    return {
      //...
      settings
    }
  }
}

$storyblok.getDatasource(path)

Fetches the datasource by the given path.

export default {
  async asyncData({ $storyblok, route }) {
    const datasource = await $storyblok.getDatasource("users")

    return {
      //...
      datasource
    }
  }
}

$storyblok.renderRichText(richTextContent)

Renders the Storyblok richtext field content and returns an HTML string.

<div v-html="$storyblok.renderRichTest(story.content.rich_text)" />

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