Skip to content
druxt-views

Views

Drupal Views components for Druxt with support for filters, pagination and sorting.

DruxtViews

npm CI Known Vulnerabilities codecov

Drupal Views components for Druxt with support for filters, pagination and sorting.

Install

$ npm install druxt-views

Nuxt.js

Add module to nuxt.config.js

module.exports = {
  modules: ['druxt-views'],
  druxt: {
    baseUrl: 'https://demo-api.druxtjs.org',
    views: {
      bundleFilter: true,
      fields: ['title'],
    },
  },
};

Usage

DruxtView component

The DruxtView component uses the JSON:API Views module to render a Decoupled Drupal View.

<DruxtView view-id="frontpage" />

The View can be themed by providing a default scoped slot:

<DruxtView view-id="frontpage">
  <template #default="{ results }">
    {{ results }}
  </template>
</DruxtView>

The component also provides a DruxtWrapper component for theming:

<template>
  <div>
    <slot name="sorts" />
    <slot name="results" />
    <slot name="pager" />
  <div>
</template>

See the DruxtViews API documentation for more information.

Options

Druxt Views options

These options are specific to this module.

OptionTypeRequiredDefaultDescription
views.query.bundleFilterbooleanNofalseWhether to automatically detect Resource types to filter, based on the View bundle filter.
views.query.fieldsstring[]No[]An array of fields to filter from the JSON:API Views Resource types.
views.query.resourceTypesstring[]No[]An array of Resource types to be used by the Fields filter.

Base Druxt options

These options are available to all Druxt modules.

OptionTypeRequiredDefaultDescription
axiosobjectNo{}Axios instance settings.
baseUrlstringYesnullBase URL for the Drupal installation.

Note: The contents of this file were automatically generated from the packages/views/README.md.