This repository has been archived on 2023-08-30. You can view files and clone it, but cannot push or open issues/pull-requests.
bytedo
/
wcui
Archived
1
0
Fork 0
wcui/build.dev.js

180 lines
4.3 KiB
JavaScript

#! /usr/bin/env node
import 'es.shim'
import fs from 'iofs'
import { parse, resolve } from 'path'
import scss from 'sass'
import chalk from 'chalk'
import { transform } from 'esbuild'
import chokidar from 'chokidar'
const { version } = JSON.parse(fs.cat('./package.json'))
const sourceDir = resolve('./src')
const buildDir = resolve('./dist')
const log = console.log
const BUILD_DATE = new Date().format()
const ESBUILD_OPTIONS = {
sourcemap: false,
target: 'es2017',
format: 'esm'
}
const BASE_SCSS = `
@use "sass:math";
* {
box-sizing: border-box;
margin: 0;padding: 0;
}
::before,
::after{box-sizing:border-box;}
`
function parseName(str) {
return str.replace(/[A-Z]/g, m => `-${m.toLowerCase()}`).replace(/^\-/, '')
}
function fixImport(str) {
return str
.replace(/import '([\w-/_.]*)'/g, 'import "$1.js"')
.replace(/import ([\w\s,{}$]*) from '([a-z0-9\/\.\-_]*)'/g, 'import $1 from "$2.js"')
}
function compileJs(entry, output) {
var t1 = Date.now()
var buf = fs.cat(entry).toString()
buf = fixImport(buf)
transform(buf, ESBUILD_OPTIONS).then(res => {
log('编译JS: %s, 耗时 %s ms', chalk.green(entry), chalk.yellow(Date.now() - t1))
fs.echo(res.code, output)
})
}
// 编译样式
function compileScss(code = '') {
try {
return scss.renderSync({ data: BASE_SCSS + code }).css
} catch (err) {
log(err)
}
}
function mkWCFile({ style, html, js }) {
style = compileScss(style)
let name = ''
js = js.replace(/props = (\{\}|\{[\w\W]*?\n\s{2}?\})/, function (str) {
var attr = str
.split(/\n+/)
.slice(1, -1)
.map(it => {
var tmp = it.split(':')
return tmp[0].trim().replace(/^['"]|['"]$/g, '')
})
return `
static get observedAttributes() {
return ${JSON.stringify(attr)}
}
${str}
`
})
js = fixImport(js)
.replace(/export default class ([a-zA-Z0-9]+)/, function (s, m) {
name = m
return `${s} extends HTMLElement `
})
.replace(/__init__\(\)\s+\{/, 'constructor() {\n super();')
.replace(
'/* render */',
`
Object.defineProperty(this, 'root', {
value: this.attachShadow({ mode: 'open' }),
writable: true,
enumerable: false,
configurable: true
})
this.root.innerHTML = \`<style>${style}</style>${html}\`
`
)
.replace('mounted()', 'connectedCallback()')
.replace('unmounted()', 'disconnectedCallback()')
.replace('watch() {', 'attributeChangedCallback(name, old, val) {\nif (old === val) {return}')
.replace('adopted()', 'adoptedCallback()')
js += `if(!customElements.get('wc-${parseName(name)}')){
customElements.define('wc-${parseName(name)}', ${name})
}`
return transform(js, ESBUILD_OPTIONS).then(res => {
return `/**
*
* @authors yutent (yutent.io@gmail.com)
* @date ${BUILD_DATE}
* @version v${version}
*
*/
${res.code}
`
})
}
const compileWC = (entry, output) => {
var t1 = Date.now()
let code = fs.cat(entry).toString()
let style = code.match(/<style[^>]*?>([\w\W]*?)<\/style>/)
let html = code.match(/<template>([\w\W]*?)<\/template>/)
let js = code.match(/<script>([\w\W]*?)<\/script>/)
style = style ? style[1] : ''
html = html ? html[1] : ''
js = js ? js[1] : ''
mkWCFile({ style, html, js }).then(txt => {
log('编译WC: %s, 耗时 %s ms', chalk.green(entry), chalk.yellow(Date.now() - t1))
fs.echo(txt, output)
})
}
/*=======================================================*/
/*===== ===*/
/*=======================================================*/
chokidar
.watch(sourceDir)
.on('all', (act, file) => {
if (act === 'add' || act === 'change') {
let entry = file
let output = file.replace('src/', 'dist/')
file = parse(entry)
if (!file.ext || file.base === '.DS_Store' || file.base === 'var.scss') {
return
}
setTimeout(() => {
switch (file.ext) {
case '.js':
compileJs(entry, output)
break
case '.wc':
output = output.replace(/\.wc$/, '.js')
compileWC(entry, output)
break
default:
fs.cp(entry, output)
}
}, 100)
}
})
.on('ready', () => {
log(chalk.red('预处理完成,监听文件变化中,请勿关闭本窗口...'))
})
wcui是一套基于`Web Components`的UI组件库, 宗旨是追求简单、实用、不花哨。
JavaScript 95.2%
CSS 4.8%