2018-12-18 01:21:29 +00:00
|
|
|
import sass from 'node-sass'
|
|
|
|
import path from 'path'
|
|
|
|
import fs from 'fs'
|
2019-01-19 23:06:25 +00:00
|
|
|
import { promisify } from 'util'
|
2019-02-12 05:04:19 +00:00
|
|
|
import cssDedoupe from 'css-dedoupe'
|
|
|
|
import { TextDecoder } from 'text-encoding'
|
2018-12-18 01:21:29 +00:00
|
|
|
|
2019-01-19 23:06:25 +00:00
|
|
|
const writeFile = promisify(fs.writeFile)
|
|
|
|
const readdir = promisify(fs.readdir)
|
|
|
|
const render = promisify(sass.render.bind(sass))
|
2018-01-14 01:41:15 +00:00
|
|
|
|
2019-01-19 21:32:36 +00:00
|
|
|
const globalScss = path.join(__dirname, '../src/scss/global.scss')
|
|
|
|
const defaultThemeScss = path.join(__dirname, '../src/scss/themes/_default.scss')
|
|
|
|
const offlineThemeScss = path.join(__dirname, '../src/scss/themes/_offline.scss')
|
|
|
|
const customScrollbarScss = path.join(__dirname, '../src/scss/custom-scrollbars.scss')
|
|
|
|
const themesScssDir = path.join(__dirname, '../src/scss/themes')
|
2018-12-11 15:31:48 +00:00
|
|
|
const assetsDir = path.join(__dirname, '../static')
|
2018-01-14 01:41:15 +00:00
|
|
|
|
2018-11-24 08:41:36 +00:00
|
|
|
async function renderCss (file) {
|
|
|
|
return (await render({ file, outputStyle: 'compressed' })).css
|
|
|
|
}
|
2018-01-14 01:41:15 +00:00
|
|
|
|
2018-11-24 08:41:36 +00:00
|
|
|
async function compileGlobalSass () {
|
|
|
|
let mainStyle = (await Promise.all([defaultThemeScss, globalScss].map(renderCss))).join('')
|
|
|
|
let offlineStyle = (await renderCss(offlineThemeScss))
|
2018-11-28 03:17:18 +00:00
|
|
|
let scrollbarStyle = (await renderCss(customScrollbarScss))
|
2018-01-14 01:41:15 +00:00
|
|
|
|
2018-12-18 01:21:29 +00:00
|
|
|
return `<style>\n${mainStyle}</style>\n` +
|
2018-11-24 08:41:36 +00:00
|
|
|
`<style media="only x" id="theOfflineStyle">\n${offlineStyle}</style>\n` +
|
2018-12-18 01:21:29 +00:00
|
|
|
`<style media="all" id="theScrollbarStyle">\n${scrollbarStyle}</style>\n`
|
2018-01-14 01:41:15 +00:00
|
|
|
}
|
|
|
|
|
2018-02-09 06:29:29 +00:00
|
|
|
async function compileThemesSass () {
|
2018-01-14 01:41:15 +00:00
|
|
|
let files = (await readdir(themesScssDir)).filter(file => !path.basename(file).startsWith('_'))
|
|
|
|
await Promise.all(files.map(async file => {
|
2019-02-12 05:04:19 +00:00
|
|
|
let css = await renderCss(path.join(themesScssDir, file))
|
|
|
|
css = cssDedoupe(new TextDecoder('utf-8').decode(css)) // remove duplicate custom properties
|
2018-01-14 02:59:49 +00:00
|
|
|
let outputFilename = 'theme-' + path.basename(file).replace(/\.scss$/, '.css')
|
2019-02-12 05:04:19 +00:00
|
|
|
await writeFile(path.join(assetsDir, outputFilename), css, 'utf8')
|
2018-01-14 01:41:15 +00:00
|
|
|
}))
|
|
|
|
}
|
|
|
|
|
2018-12-18 01:21:29 +00:00
|
|
|
export async function buildSass () {
|
2018-12-18 20:45:49 +00:00
|
|
|
let [ result ] = await Promise.all([compileGlobalSass(), compileThemesSass()])
|
2018-12-18 01:21:29 +00:00
|
|
|
return result
|
2018-01-14 01:41:15 +00:00
|
|
|
}
|