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

202 lines
4.7 KiB
JavaScript
Raw Normal View History

#! /usr/bin/env node
2019-07-22 10:11:52 +08:00
require('es.shim')
2018-01-22 02:01:44 +08:00
const log = console.log
const fs = require('iofs')
const path = require('path')
const scss = require('node-sass')
const chokidar = require('chokidar')
2017-12-21 22:39:45 +08:00
const chalk = require('chalk')
const sourceDir = path.resolve(__dirname, 'src')
const buildDir = path.resolve(__dirname, 'dist')
2019-07-22 10:11:52 +08:00
const VERSION = require('./package.json').version
const BUILD_DATE = new Date().format()
const BASE_SCSS = `
$ct: #3fc2a7 #19b491 #16967a;
$cg: #58d68d #2ecc71 #27ae60;
$cpp: #ac61ce #9b59b6 #8e44ad;
2019-07-22 15:21:43 +08:00
$cb: #66b1ff #409eff #3a8ee6;
2019-07-22 10:11:52 +08:00
$cr: #ff5061 #eb3b48 #ce3742;
$co: #ffb618 #f39c12 #e67e22;
$cp: #f3f5fb #e8ebf4 #dae1e9;
$cgr: #aabac3 #90a3ae #7e909a;
$cd: #62778d #526273 #425064;
@mixin ts($c: all, $t: .2s, $m: ease-in-out){
transition:$c $t $m;
}
* {
box-sizing: border-box;
margin: 0;padding: 0;
}
::before,
::after{box-sizing:border-box;}
`
function fixImport(str) {
return str
.replace(/import '([\w-/_.]*)'/g, 'import "$1.js"')
2019-02-20 15:34:02 +08:00
.replace(
/import ([\w\s,{}]*) from '([a-z0-9\/\.\-_]*)'/g,
2019-02-20 15:34:02 +08:00
'import $1 from "$2.js"'
)
}
function compileJs(entry, output) {
log('编译JS: %s', chalk.green(entry))
let buf = fs.cat(entry).toString()
let code = fixImport(buf)
2019-02-20 15:34:02 +08:00
fs.echo(code, output)
}
2019-07-22 10:11:52 +08:00
// 编译样式
function compileScss(code = '') {
try {
2019-07-22 10:11:52 +08:00
return scss.renderSync({ data: BASE_SCSS + code }).css
} catch (err) {
log(err)
}
}
2019-07-22 10:11:52 +08:00
function mkWCFile({ style, html, js }) {
style = compileScss(style)
2019-07-22 21:18:33 +08:00
let name = ''
let props = ''
2019-07-22 10:11:52 +08:00
2019-08-12 21:26:08 +08:00
js = js.replace(/props = (\{\}|\{[\w\W]*?\n\s{2}?\})/, function(s, m) {
2019-07-22 10:11:52 +08:00
props = m
var attr = new Function(
2019-08-07 21:29:40 +08:00
`try {
var props = ${m}, attr = []
for(var i in props){attr.push(i)}
return attr
} catch(err) {console.error(err);return []}
`
2019-07-22 10:11:52 +08:00
)()
return `static get observedAttributes() {
return ${JSON.stringify(attr)}
}
`
})
js = fixImport(js)
2019-08-21 21:03:41 +08:00
.replace(/class ([a-zA-Z0-9]+)/, function(s, m) {
2019-07-22 10:11:52 +08:00
name = m
return `${s} extends HTMLElement `
})
2019-08-21 21:03:41 +08:00
.replace(/__init__\(\)\s+\{/, 'constructor() {\n super();')
2019-07-22 10:11:52 +08:00
.replace(
'/* render */',
`
2019-07-23 23:16:30 +08:00
Object.defineProperty(this, 'root', {
value: this.attachShadow({ mode: 'open' }),
writable: true,
enumerable: false,
configurable: true
})
Object.defineProperty(this, 'props', {
value: ${props},
writable: true,
enumerable: false,
configurable: true
})
2019-07-22 10:11:52 +08:00
this.root.innerHTML = \`<style>${style}</style>${html}\`
`
)
2019-08-26 17:34:07 +08:00
.replace('mounted()', 'connectedCallback()')
.replace('unmount()', 'disconnectedCallback()')
2019-08-26 17:53:15 +08:00
.replace(
'watch() {',
'attributeChangedCallback(name, old, val) {\nif (old === val) {return}'
)
2019-08-26 17:34:07 +08:00
.replace('adopted()', 'adoptedCallback()')
2019-07-22 10:11:52 +08:00
return `/**
*
* @authors yutent (yutent@doui.cc)
* @date ${BUILD_DATE}
* @version v${VERSION}
*
*/
'use strict'
2019-07-22 15:21:43 +08:00
const log = console.log
2019-07-22 10:11:52 +08:00
${js}
2019-08-14 21:29:21 +08:00
if(!customElements.get('wc-${name.toLowerCase()}')){
customElements.define('wc-${name.toLowerCase()}', ${name})
}
2019-07-22 10:11:52 +08:00
`
}
const compileWC = (entry, output) => {
log('编译wc: %s', chalk.green(entry))
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] : ''
let result = mkWCFile({ style, html, js })
fs.echo(result, output)
}
/*=======================================================*/
/*===== ===*/
/*=======================================================*/
chokidar
.watch(sourceDir)
.on('all', (act, file) => {
if (act === 'add' || act === 'change') {
let entry = file
let output = file.replace('src/', 'dist/')
file = path.parse(entry)
if (!file.ext || file.base === '.DS_Store' || file.base === 'var.scss') {
return
}
2019-08-07 21:29:40 +08:00
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', () => {
2017-12-21 22:39:45 +08:00
log(chalk.red('预处理完成,监听文件变化中,请勿关闭本窗口...'))
})
chokidar
.watch(path.resolve('./node_modules/anot/dist/'))
.on('all', (act, file) => {
if (act === 'add' || act === 'change') {
log('复制: %s', chalk.green(file))
fs.cp(file, path.resolve(buildDir, path.parse(file).base))
}
})
.on('ready', () => {
log('复制anot框架文件完成...')
})