-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(#693): update druxt-breadcrumb for @nuxt/kit
- Loading branch information
Showing
7 changed files
with
106 additions
and
97 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
import { defineNuxtModule, installModule } from '@nuxt/kit' | ||
import { join } from 'path' | ||
|
||
/** | ||
* The Nuxt.js module function. | ||
* | ||
* - Adds the Vue.js components to the Nuxt.js frontend. | ||
* | ||
* The module function should not be used directly, but rather installed via yout Nuxt.js configuration file. | ||
* | ||
* Options are set on the root level `druxt` Nuxt.js config object. | ||
* | ||
* @example <caption>nuxt.config.js</caption> @lang js | ||
* module.exports = { | ||
* modules: [ | ||
* 'druxt-breadcrumb' | ||
* ], | ||
* druxt: { | ||
* baseUrl: 'https://example.com' | ||
* } | ||
* } | ||
* | ||
* @param {object} moduleOptions - Nuxt.js module options object. | ||
*/ | ||
const DruxtBreadcrumbModule = defineNuxtModule({ | ||
meta: { | ||
name: 'druxt-breadcrumb', | ||
}, | ||
defaults: { | ||
baseUrl: '', | ||
endpoint: '/jsonapi' | ||
}, | ||
|
||
async setup(moduleOptions, nuxt) { | ||
// Set default options. | ||
const options = { | ||
baseUrl: moduleOptions.baseUrl, | ||
...nuxt.options?.druxt || {}, | ||
breadcrumb: { | ||
...nuxt.options?.druxt?.breadcrumb, | ||
...moduleOptions, | ||
} | ||
} | ||
|
||
// Add dependent module. | ||
await installModule('druxt/nuxt', options, nuxt) | ||
await installModule('druxt-router/nuxt', options, nuxt) | ||
|
||
// Register components directories. | ||
nuxt.hook('components:dirs', dirs => { | ||
dirs.push({ path: join(__dirname, '../dist/components') }) | ||
dirs.push({ path: join(__dirname, '../dist/components/blocks') }) | ||
}) | ||
|
||
// Nuxt Storybook. | ||
// @TODO - @nuxt/kit and @nuxt/storybook aren't compatible. | ||
// nuxt.hook('storybook:config', ({ stories }) => { | ||
// addTemplate({ | ||
// src: resolve(__dirname, '../templates/druxt-breadcrumb.stories.js'), | ||
// fileName: 'stories/druxt-breadcrumb.stories.js', | ||
// }) | ||
// stories.push(resolve(nuxt.options.buildDir, './stories/druxt-breadcrumb.stories.js')) | ||
// }) | ||
} | ||
}) | ||
|
||
export default DruxtBreadcrumbModule |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
import DruxtBreadcrumbModule from '../../src/nuxt' | ||
|
||
jest.mock('@nuxt/kit', () => ({ | ||
defineNuxtModule: (module) => module, | ||
installModule: jest.fn(), | ||
})) | ||
|
||
const nuxtMock = { | ||
hook: jest.fn((hook, fn) => { | ||
const arg = { | ||
'components:dirs': [], | ||
'storybook:config': { stories: [] } | ||
} | ||
return fn(arg[hook]) | ||
}), | ||
} | ||
|
||
test('Nuxt module', async () => { | ||
nuxtMock.options = { | ||
buildDir: 'build', | ||
druxt: {} | ||
} | ||
await DruxtBreadcrumbModule.setup({}, nuxtMock) | ||
}) |
This file was deleted.
Oops, something went wrong.