exports.json
files include maps to all published components, and for different modules (base
, blog
, content
).
This is used to look up the correct library folder and component name to resolve.
This file contains hidden or 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
Id: fd055920-b0fe-11eb-9ce8-bdbc5d8289d5 | |
layout: default | |
heading: ruhmesmeile Startpage | |
content: | |
- mode: list | |
width: full | |
space-before: none | |
background: default | |
headline: | |
level: h2 |
This file contains hidden or 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
query MyQuery { | |
allKickstartDsPage { | |
edges { | |
node { | |
content { | |
content { | |
... on CountUpComponent { | |
topic | |
text | |
to |
This file contains hidden or 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
const fs = require('fs') | |
const path = require('path'); | |
const baseExports = require('@kickstartds/base/lib/exports.json'); | |
const blogExports = require('@kickstartds/blog/lib/exports.json'); | |
const contentExports = require('@kickstartds/content/lib/exports.json'); | |
const reducer = (mod) => (prev, [key, value]) => { | |
if (key !== "index.js" && key.indexOf('/') === -1 && value.length) { | |
prev += `'${key}': loadable(() => import('@kickstartds/${mod}/lib/${key}/index.js'), { resolveComponent: (exports) => exports.${value[0]} }),\n` | |
} |
This file contains hidden or 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
{ | |
"$schema": "http://json-schema.org/draft-07/schema#", | |
"$id": "http://frontend.ruhmesmeile.com/content/molecules/visual.schema.json", | |
"title": "Visual", | |
"description": "visual", | |
"type": "object", | |
"properties": { | |
"height": { | |
"title": "Height", | |
"type": "string", |
This file contains hidden or 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
renderingOptions: | |
submitButtonLabel: Absenden | |
type: Form | |
identifier: myForm | |
label: 'My Form' | |
prototypeName: standard | |
finishers: | |
- | |
options: | |
subject: Testemail |
This file contains hidden or 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
import "@kickstartds/core/lib/container-queries"; | |
import { Component, define } from "@kickstartds/core/lib/core"; | |
import { windowEvents } from "@kickstartds/core/lib/utils"; | |
const desktopImageOffsetAngle = 60; | |
const mobileImageOffsetAngle = 75; | |
const mobileOffsetRotateAngle = 45; | |
const backgroundRotateFactor = -0.25; | |
const maxBlur = 4; |
This file contains hidden or 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
{ | |
"data": { | |
"spotify": { | |
"me": { | |
"savedTracks": { | |
"nodes": [ | |
{ | |
"name": "Such a good day", | |
"artists": [ | |
{ |
This file contains hidden or 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
{ | |
"color": { | |
"primary": "#333", | |
"background": "#fff", | |
"foreground": "#000", | |
"link": "#1c7ed6" | |
}, | |
"font": { | |
"display": { | |
"family": "Garamond, Baskerville, 'Baskerville Old Face', 'Hoefler Text', 'Times New Roman', serif", |
This file contains hidden or 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
const { InfluxDB, Point, HttpError } = require('@influxdata/influxdb-client'); | |
const url = process.env['GATSBY_INFLUX_URL'] || 'http://localhost:8086'; | |
const token = process.env['GATSBY_INFLUX_TOKEN'] || 'my-token'; | |
const org = process.env['GATSBY_INFLUX_ORG'] || 'my-org'; | |
const bucket = process.env['GATSBY_INFLUX_BUCKET'] || 'my-bucket'; | |
const db = new InfluxDB({ url, token }); | |
const isObject = (obj) => |