Added settings API.
This commit is contained in:
parent
7415e9d529
commit
7a7b894bd5
4
.gitignore
vendored
4
.gitignore
vendored
|
@ -130,4 +130,8 @@ dist
|
||||||
.yarn/install-state.gz
|
.yarn/install-state.gz
|
||||||
.pnp.*
|
.pnp.*
|
||||||
|
|
||||||
|
# Project-related files
|
||||||
|
config.yml
|
||||||
|
src/_settings.scss
|
||||||
|
src/main.scss
|
||||||
out/
|
out/
|
59
build.js
59
build.js
|
@ -1,21 +1,66 @@
|
||||||
import sass from "sass"
|
import sass from "sass"
|
||||||
import fs from "fs"
|
import fs from "fs"
|
||||||
|
import { log } from "console"
|
||||||
|
import YAML from "yaml"
|
||||||
|
import parseTemplate from "./parseTemplate.js"
|
||||||
|
|
||||||
const { css } = sass.compile(
|
export default function buildNebulosa(debug) {
|
||||||
|
log("Generating Nebulosa CSS...")
|
||||||
|
|
||||||
|
log("Reading config...")
|
||||||
|
if (!fs.existsSync("./config.yml")) {
|
||||||
|
log("No config file found!")
|
||||||
|
log("Copying 'example-config.yml' to 'config.yml'...")
|
||||||
|
fs.copyFileSync("./example-config.yml", "config.yml")
|
||||||
|
}
|
||||||
|
const config = YAML.parse(fs.readFileSync("./config.yml").toString())
|
||||||
|
|
||||||
|
log("Reading templates...")
|
||||||
|
const templateFiles = fs.readdirSync("./src/templates")
|
||||||
|
const templates = templateFiles.map(
|
||||||
|
fileName => {
|
||||||
|
return {
|
||||||
|
fileName,
|
||||||
|
content: fs.readFileSync(`./src/templates/${fileName}`).toString()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
|
log("Executing templates...")
|
||||||
|
templates.forEach(
|
||||||
|
template => {
|
||||||
|
const compiledTemplate = parseTemplate(template.content, config)
|
||||||
|
fs.writeFileSync(`./src/${template.fileName}`, compiledTemplate)
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
|
log("Compiling SCSS...")
|
||||||
|
const { css } = sass.compile(
|
||||||
"./src/main.scss",
|
"./src/main.scss",
|
||||||
{ style: "compressed" }
|
{ style: "compressed" }
|
||||||
)
|
)
|
||||||
|
|
||||||
const now = new Date()
|
const now = new Date()
|
||||||
.toISOString()
|
.toISOString()
|
||||||
.replace(/\.\S+/g, "")
|
.replace(/\.\S+/g, "")
|
||||||
.replace(/:/g, ".")
|
.replace(/:/g, ".")
|
||||||
.replace(/T/g, "_")
|
.replace(/T/g, "_")
|
||||||
|
|
||||||
if (!fs.existsSync("./out"))
|
const outFileName = debug ? "./out/main.css" : `./out/${now}.css`
|
||||||
|
|
||||||
|
if (!fs.existsSync("./out"))
|
||||||
fs.mkdirSync("./out")
|
fs.mkdirSync("./out")
|
||||||
|
|
||||||
fs.writeFileSync(
|
log("Writing file...")
|
||||||
`./out/${now}.css`,
|
fs.writeFileSync(
|
||||||
|
outFileName,
|
||||||
"/* Generated using Nebulosa CSS. https://git.qwik.space/BurnyLlama/nebulosa-css */\n" + css
|
"/* Generated using Nebulosa CSS. https://git.qwik.space/BurnyLlama/nebulosa-css */\n" + css
|
||||||
)
|
)
|
||||||
|
|
||||||
|
log(`Saved config file to ./out/${now}.css`)
|
||||||
|
}
|
||||||
|
|
||||||
|
// If the file is run directly from the commandline, build Nebulosa.
|
||||||
|
if (import.meta.url === `file://${process.argv[0]}`) {
|
||||||
|
buildNebulosa(false)
|
||||||
|
}
|
35
dev.js
35
dev.js
|
@ -2,7 +2,7 @@ import chokidar from "chokidar"
|
||||||
import express from "express"
|
import express from "express"
|
||||||
import fs from "fs"
|
import fs from "fs"
|
||||||
import njk from "nunjucks"
|
import njk from "nunjucks"
|
||||||
import sass from "sass"
|
import buildNebulosa from "./build.js"
|
||||||
|
|
||||||
const server = express()
|
const server = express()
|
||||||
|
|
||||||
|
@ -17,35 +17,24 @@ njk.configure(
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
||||||
chokidar.watch("./src").on("change", () => {
|
// Do an initial build of Nebulosa, then watch for changes...
|
||||||
console.log("Detected changes in SCSS! Recompiling...")
|
buildNebulosa(true)
|
||||||
|
chokidar
|
||||||
|
.watch(["./src", "./config.yml", "./example-config.yml"])
|
||||||
|
.on(
|
||||||
|
"change",
|
||||||
|
() => {
|
||||||
|
console.log("Detected changes in SCSS or config! Recompiling...")
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const { css } = sass.compile(
|
buildNebulosa(true)
|
||||||
"./src/main.scss",
|
|
||||||
{
|
|
||||||
sourceMap: false,
|
|
||||||
alertColor: true,
|
|
||||||
style: "compressed"
|
|
||||||
}
|
|
||||||
)
|
|
||||||
|
|
||||||
console.log("Compile done! Saving changes...")
|
|
||||||
|
|
||||||
if (!fs.existsSync("./out"))
|
|
||||||
fs.mkdirSync("./out")
|
|
||||||
|
|
||||||
fs.writeFileSync(
|
|
||||||
"./out/main.css",
|
|
||||||
css
|
|
||||||
)
|
|
||||||
|
|
||||||
console.log("Saved!")
|
console.log("Saved!")
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
console.log("Error while compiling!")
|
console.log("Error while compiling!")
|
||||||
console.error(error)
|
console.error(error)
|
||||||
}
|
}
|
||||||
})
|
}
|
||||||
|
)
|
||||||
|
|
||||||
server.use("/assets", express.static("./out"))
|
server.use("/assets", express.static("./out"))
|
||||||
|
|
||||||
|
|
|
@ -20,7 +20,8 @@
|
||||||
"chokidar": "^3.5.3",
|
"chokidar": "^3.5.3",
|
||||||
"express": "^4.18.2",
|
"express": "^4.18.2",
|
||||||
"nunjucks": "^3.2.3",
|
"nunjucks": "^3.2.3",
|
||||||
"sass": "^1.58.3"
|
"sass": "^1.58.3",
|
||||||
|
"yaml": "^2.3.1"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"eslint": "^8.35.0"
|
"eslint": "^8.35.0"
|
||||||
|
|
69
parseTemplate.js
Normal file
69
parseTemplate.js
Normal file
|
@ -0,0 +1,69 @@
|
||||||
|
import { log, error } from "console"
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Flattens an object into a 1 level deep object.
|
||||||
|
* { a: { b: 1, c: 2 } } --> { "a.b": 1, "a.c": 2 }
|
||||||
|
* @param {Object} object
|
||||||
|
* @return {Object}
|
||||||
|
*/
|
||||||
|
function flattenObject(object) {
|
||||||
|
let finalObject = {}
|
||||||
|
|
||||||
|
for (const key in object) {
|
||||||
|
// Skip if key isn't own.
|
||||||
|
if (!Object.prototype.hasOwnProperty.call(object, key))
|
||||||
|
continue
|
||||||
|
|
||||||
|
if (typeof object[key] === "object" && object[key] !== null) {
|
||||||
|
const flattenedObject = flattenObject(object[key])
|
||||||
|
for (const innerKey in flattenedObject) {
|
||||||
|
// Skip if key isn't own.
|
||||||
|
if (!Object.prototype.hasOwnProperty.call(flattenedObject, innerKey))
|
||||||
|
continue
|
||||||
|
finalObject[`${key}.${innerKey}`] = flattenedObject[innerKey]
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
finalObject[key] = object[key]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return finalObject
|
||||||
|
}
|
||||||
|
|
||||||
|
export default function parseTemplate(template, data) {
|
||||||
|
const flattenedData = flattenObject(data)
|
||||||
|
log("Loaded config:")
|
||||||
|
|
||||||
|
return template
|
||||||
|
// Syntax: {{ variableName }}
|
||||||
|
// Does: Inserts a variable, if it exists.
|
||||||
|
.replace(
|
||||||
|
/{{\s*(.+)\s*}}/gm,
|
||||||
|
(match, variableName) => {
|
||||||
|
if (flattenedData[variableName] === undefined || flattenedData[variableName] === null) {
|
||||||
|
error(`Error: ${variableName} is not defined!`)
|
||||||
|
process.exit(1)
|
||||||
|
}
|
||||||
|
|
||||||
|
log(`${variableName} = ${flattenedData[variableName]}`)
|
||||||
|
return flattenedData[variableName]
|
||||||
|
}
|
||||||
|
)
|
||||||
|
// Syntax:
|
||||||
|
// {% if variableName %}
|
||||||
|
// <code to include>
|
||||||
|
// {% endif %}
|
||||||
|
// Does: includes <code to include> if variableName exists and is true.
|
||||||
|
.replace(
|
||||||
|
/^{%\s*if\s*(.+)\s*%}$([\s\S]*?)^{%\s*endif\s*%}$/gm,
|
||||||
|
(match, variableName, codeBlock) => {
|
||||||
|
if (flattenedData[variableName] === undefined || flattenedData[variableName] === null) {
|
||||||
|
error(`Error: ${variableName} is not defined!`)
|
||||||
|
process.exit(1)
|
||||||
|
}
|
||||||
|
|
||||||
|
log(`${variableName} = ${flattenedData[variableName]}`)
|
||||||
|
return flattenedData[variableName] ? codeBlock : ""
|
||||||
|
}
|
||||||
|
)
|
||||||
|
}
|
391
pnpm-lock.yaml
391
pnpm-lock.yaml
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user