Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
@dotdev/gatsby-source-navigation
Advanced tools
Gatsby source plugin for sourcing custom navigation solution. Currently uses Firebase Firestore as a data source.
Gatsby source plugin for sourcing custom navigation solution. Currently uses Firebase Firestore as a data source.
Get Firebase config from Firebase project.
Add @dotdev/gatsby-source-navigation
as a dependency by running using npm
or yarn
:
npm i @dotdev/gatsby-source-navigation
# or
yarn add @dotdev/gatsby-source-navigation
Configure settings at gatsby-config.js
, for example:
module.exports = {
plugins: [
{
resolve: `@dotdev/gatsby-source-navigation`,
options: {
// Note that this can be simplified by importing the config as an object,
// thereby abstracting the dependency on Firebase.
// This example merely shows what is required.
appConfig: {
apiKey: "api-key",
authDomain: "project-id.firebaseapp.com",
databaseURL: "https://project-id.firebaseio.com",
projectId: "project-id",
storageBucket: "project-id.appspot.com",
messagingSenderId: "sender-id",
appID: "app-id",
},
types: [
{
type: "Navigation",
collection: "navigation",
map: doc => ({
active: doc.active,
type: doc.type,
items: doc.items, // Will return all sub navigation levels as well
}),
},
],
},
},
],
}
Note that you will need to have navigation
in Firestore matching
this schema before Gatsby can query correctly.
Test GraphQL query:
{
allNavigation {
edges {
node {
active
type
items {
items {
items {
label
order
url
}
label
order
url
}
order
label
url
}
}
}
}
}
Key | Description |
---|---|
appConfig | App config required to initialise Firebase |
types | Array of types, which require the following keys (type , collection , map ) |
types.type | The type of the collection, which will be used in GraphQL queries, e.g. when type = Book , the GraphQL types are named book and allBook |
types.collection | The name of the collections in Firestore. Nested collections are not tested |
types.map | A function to map your data in Firestore to Gatsby nodes, utilize the undocumented ___NODE to link between nodes |
FAQs
Gatsby source plugin for sourcing custom navigation solution. Currently uses Firebase Firestore as a data source.
We found that @dotdev/gatsby-source-navigation demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 16 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.