Compare commits
73 Commits
Author | SHA1 | Date |
---|---|---|
yutent | f70f4a54fb | |
yutent | dde82e9860 | |
yutent | fc585abcdf | |
yutent | 0f09245657 | |
yutent | 065271f2f6 | |
yutent | c56013c9b4 | |
yutent | db7098c4f8 | |
yutent | ea6010c782 | |
yutent | b4e7f5dfae | |
yutent | bbe04eae83 | |
yutent | 47090149f8 | |
yutent | afac6fddb2 | |
yutent | 0043895a66 | |
yutent | 0be2bf7971 | |
yutent | ff51e09e39 | |
yutent | 0f33586ff4 | |
yutent | 12b4417a94 | |
yutent | 4ebf74f40f | |
yutent | fd154f1bcf | |
yutent | 3908bf7fe6 | |
yutent | c5333cbc2a | |
yutent | ce4bf92ce2 | |
yutent | fb5068b040 | |
yutent | 4f4e8970ca | |
yutent | f54a5a3653 | |
yutent | cf344bcd4b | |
yutent | eebe3c63fc | |
yutent | 0483d6efc3 | |
yutent | 2aa9ab5af0 | |
yutent | 87496a1487 | |
yutent | 4c3d3eae21 | |
yutent | 0a70cb1b2e | |
yutent | 8c1b1350b0 | |
yutent | f53cb98bc4 | |
yutent | c0eb316f87 | |
yutent | 079589febb | |
yutent | 6f3ea0f086 | |
yutent | 5748e6a760 | |
yutent | 289c7142ef | |
yutent | e9d5add0d0 | |
yutent | 9227233d7a | |
yutent | aca6d75553 | |
yutent | f9e766ab4a | |
yutent | da056ae47f | |
yutent | 408ba6ca2f | |
yutent | 1a12b21cc2 | |
yutent | 3256999b09 | |
yutent | 05ec00658c | |
yutent | 69fae35b2f | |
yutent | 5ddb00e6b6 | |
yutent | da5e5fd4a4 | |
yutent | ecd46ba23d | |
yutent | 134e465dd0 | |
yutent | 5e1a5d7ebd | |
yutent | 714d9ceb3b | |
yutent | a456df0b53 | |
yutent | c9b21cd790 | |
yutent | 5326af856c | |
yutent | 948c4e08c6 | |
yutent | 7adf718231 | |
yutent | 878e469a1a | |
yutent | bd36c96292 | |
yutent | 87c79f56ec | |
yutent | 7ee22886cb | |
yutent | 0ee7ddc6a1 | |
yutent | 724b3732a0 | |
yutent | d7918768b9 | |
yutent | b36bb36fda | |
yutent | 363a2ce623 | |
yutent | 91ba64722e | |
yutent | 21a565e04c | |
yutent | 8c033984d4 | |
yutent | f8f749d32e |
|
@ -1,12 +1,9 @@
|
||||||
*.min.js
|
*.min.js
|
||||||
.httpserver
|
.httpserver
|
||||||
index.html
|
|
||||||
test.js
|
|
||||||
.vscode
|
.vscode
|
||||||
node_modules/
|
node_modules/
|
||||||
dist/
|
dist/
|
||||||
*.sublime-project
|
|
||||||
*.sublime-workspace
|
|
||||||
package-lock.json
|
package-lock.json
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
test/
|
37
Readme.md
37
Readme.md
|
@ -1,12 +1,30 @@
|
||||||
## 9号UI组件库的核心
|
## Wkit
|
||||||
|
> 一个简单易用、功能完善的用于开发`web components`的轻量级开发库。模板解析基于`lit-html`二次开发
|
||||||
|
|
||||||
|
![downloads](https://img.shields.io/npm/dt/wkit.svg)
|
||||||
|
![version](https://img.shields.io/npm/v/wkit.svg)
|
||||||
|
|
||||||
### 开发文档
|
### 开发文档
|
||||||
[开发文档](https://github.com/bd-js/core/wiki)
|
[开发文档](https://git.wkit.fun/bytedo/wkit/wiki)
|
||||||
|
|
||||||
|
|
||||||
|
### 我们的特色
|
||||||
|
|
||||||
|
- `@xxx=yyy` 事件绑定, 可以任意节点上直接使用类似`vue事件绑定`的这种写法, 就可实现事件绑定。组件被移出文档时, 事件会**自动销毁**, 无须手动销毁。
|
||||||
|
- `@click.stop=xxx` 事件绑定支持修饰符
|
||||||
|
- `:xxx=yyy`, 属性绑定, 类似`vue`,在属性前加上`:`, 该属性不再使用`setAttribute()`, 而是直接赋值, 可满足你需要传递复杂数据结构的需求。
|
||||||
|
- `#animation={type}`, 开箱即用的动画配置, 内置6种动画`fade(默认), scale, bounce, micro-bounce, rotate, slide`
|
||||||
|
- `ref=xxx`, 类似`vue`的节点标识, 可方便的在`mounted()`之后通过 `this.$refs.xxx` 来访问该节点
|
||||||
|
- 内置特色的双向绑定方法`live()`
|
||||||
|
- 用内置的`bind()`方法来给当前组件绑定事件时, 组件移除时事件也会自动销毁,无需手动销毁。
|
||||||
|
- 灵活的`props`定义
|
||||||
|
|
||||||
|
|
||||||
### 示例
|
### 示例
|
||||||
|
|
||||||
```js
|
```js
|
||||||
import { css, html, Component } from '//jscdn.ink/@bd/core/latest/index.js'
|
// alias wkit='//jscdn.ink/wkit/latest/index.js'
|
||||||
|
import { css, html, Component } from 'wkit'
|
||||||
|
|
||||||
class Hello extends Component {
|
class Hello extends Component {
|
||||||
|
|
||||||
|
@ -20,7 +38,7 @@ class Hello extends Component {
|
||||||
bar: String // 简写
|
bar: String // 简写
|
||||||
}
|
}
|
||||||
|
|
||||||
// 若需要支持 scss, 则需要使用 @bd/wcui-cli,预处理。
|
// 若需要支持 scss语法, 则需要使用构建工具编译。
|
||||||
// 可支持数组
|
// 可支持数组
|
||||||
static styles = css`
|
static styles = css`
|
||||||
button { color: #09f; }
|
button { color: #09f; }
|
||||||
|
@ -48,7 +66,12 @@ class Hello extends Component {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
customElements.define('wc-hello', Hello)
|
if (!customElements.get('wc-hello')) {
|
||||||
|
customElements.define('wc-hello', Hello)
|
||||||
|
}
|
||||||
|
// 和上面的写法等价
|
||||||
|
// 如果不希望修改前缀`wc-`的话, 可以直接调用内置的reg方法注册组件即可。
|
||||||
|
Hello.reg('hello')
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -62,3 +85,7 @@ customElements.define('wc-hello', Hello)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### 开源协议
|
||||||
|
|
||||||
|
- BSD 3-Clause License (Lit框架的html模板解析的源码)
|
||||||
|
- MIT (除Lit代码之外的所有代码)
|
18
package.json
18
package.json
|
@ -1,8 +1,8 @@
|
||||||
{
|
{
|
||||||
"name": "@bd/core",
|
"name": "wkit",
|
||||||
"version": "1.7.0",
|
"version": "1.12.0",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"description": "百搭UI组件库的核心",
|
"description": "A library for building fast, lightweight web components.",
|
||||||
"main": "dist/index.js",
|
"main": "dist/index.js",
|
||||||
"files": [
|
"files": [
|
||||||
"dist/*"
|
"dist/*"
|
||||||
|
@ -14,14 +14,16 @@
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "git+https://github.com/bd-js/core.git"
|
"url": "https://git.wkit.fun/bytedo/wkit.git"
|
||||||
},
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"bd.js",
|
"wkit",
|
||||||
"bdjs",
|
|
||||||
"bd-ui",
|
|
||||||
"wcui",
|
"wcui",
|
||||||
"bd-core"
|
"web-components",
|
||||||
|
"native",
|
||||||
|
"cross-framework",
|
||||||
|
"html",
|
||||||
|
"css"
|
||||||
],
|
],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"esbuild": "^0.17.11"
|
"esbuild": "^0.17.11"
|
||||||
|
|
|
@ -0,0 +1,48 @@
|
||||||
|
/**
|
||||||
|
* {}
|
||||||
|
* @author yutent<yutent.io@gmail.com>
|
||||||
|
* @date 2023/03/29 10:28:16
|
||||||
|
*/
|
||||||
|
|
||||||
|
export function animate(duration = 200, fromto = [], out = false) {
|
||||||
|
if (out === false && this.style.display === 'none') {
|
||||||
|
this.style.display = ''
|
||||||
|
}
|
||||||
|
let res = this.animate(fromto, {
|
||||||
|
duration,
|
||||||
|
direction: out ? 'reverse' : 'normal',
|
||||||
|
fill: 'forwards'
|
||||||
|
})
|
||||||
|
return new Promise(resolve => {
|
||||||
|
res.addEventListener(
|
||||||
|
'finish',
|
||||||
|
_ => {
|
||||||
|
if (out) {
|
||||||
|
this.style.display = 'none'
|
||||||
|
}
|
||||||
|
res.cancel()
|
||||||
|
resolve()
|
||||||
|
},
|
||||||
|
{ once: true }
|
||||||
|
)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
export const MODES = {
|
||||||
|
fade: [{ opacity: 0 }, { opacity: 1 }],
|
||||||
|
scale: [{ transform: 'scale(0)' }, { transform: 'scale(1)' }],
|
||||||
|
'micro-bounce': [
|
||||||
|
{ opacity: 0, transform: 'scale(0.8)' },
|
||||||
|
{ transform: 'scale(1.05)', opacity: 1 },
|
||||||
|
{ transform: 'scale(1)' }
|
||||||
|
],
|
||||||
|
slide: [
|
||||||
|
{ opacity: 0, transform: 'translateY(-50px)' },
|
||||||
|
{ opacity: 1, transform: 'translateY(0)' }
|
||||||
|
],
|
||||||
|
bounce: [
|
||||||
|
{ transform: 'scale(0)' },
|
||||||
|
{ transform: 'scale(1.2)' },
|
||||||
|
{ transform: 'scale(1)' }
|
||||||
|
],
|
||||||
|
rotate: [{ transform: 'rotate(0)' }, { transform: 'rotate(360deg)' }]
|
||||||
|
}
|
|
@ -35,17 +35,17 @@ const boolMap = Object.create(null)
|
||||||
|
|
||||||
export { boolMap }
|
export { boolMap }
|
||||||
|
|
||||||
|
export const KEEP_ALIVE = 'keep-alive' // hyphen
|
||||||
|
export const KEEP_ALIVE_C = 'keepAlive' // camelize
|
||||||
export const WC_PART = Symbol('wc_path')
|
export const WC_PART = Symbol('wc_path')
|
||||||
export const NO_CHANGE = Symbol('wc-noChange')
|
|
||||||
export const NOTHING = Symbol('wc-nothing')
|
export const NOTHING = Symbol('wc-nothing')
|
||||||
export const __finalized__ = Symbol('finalized')
|
export const __finalized__ = Symbol('finalized')
|
||||||
export const __props__ = Symbol('props')
|
export const __props__ = Symbol('props')
|
||||||
export const __changed_props__ = Symbol('changed_props')
|
export const __changed_props__ = Symbol('changed_props')
|
||||||
export const __mounted__ = Symbol('mounted')
|
export const __mounted__ = Symbol('mounted')
|
||||||
export const __pending__ = Symbol('pending')
|
export const __pending__ = Symbol('pending')
|
||||||
export const __children__ = Symbol('children')
|
|
||||||
|
|
||||||
export const RESET_CSS_STYLE = `* {box-sizing: border-box;margin: 0;padding: 0;}::before,::after {box-sizing: border-box;}`
|
export const RESET_CSS_STYLE = `* {box-sizing: border-box;margin: 0;padding: 0;}::before,::after {box-sizing: border-box;}::selection {background: var(--selection-background, var(--color-plain-a));color: var(--selection-color, inherit);}`
|
||||||
|
|
||||||
function getDefaultValue(type) {
|
function getDefaultValue(type) {
|
||||||
switch (type) {
|
switch (type) {
|
||||||
|
@ -79,8 +79,26 @@ function getType(v) {
|
||||||
? { type: Array, default: v }
|
? { type: Array, default: v }
|
||||||
: { type: Object, default: v }
|
: { type: Object, default: v }
|
||||||
|
|
||||||
|
case 'string':
|
||||||
|
let type = String
|
||||||
|
let attribute = true
|
||||||
|
if (v.includes('!')) {
|
||||||
|
if (v.startsWith('str!')) {
|
||||||
|
v = v.slice(4)
|
||||||
|
} else if (v.startsWith('num!')) {
|
||||||
|
type = Number
|
||||||
|
v = +v.slice(4) || 0
|
||||||
|
} else if (v.startsWith('bool!')) {
|
||||||
|
type = Boolean
|
||||||
|
v = v.slice(5)
|
||||||
|
v = v !== 'false' && v !== ''
|
||||||
|
}
|
||||||
|
attribute = false
|
||||||
|
}
|
||||||
|
return { type, default: v, attribute }
|
||||||
|
|
||||||
default:
|
default:
|
||||||
return { type: String, default: v + '' }
|
return { type: null, default: '' }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -110,6 +128,10 @@ export function parsePropsDeclaration(options) {
|
||||||
options = { type: Array }
|
options = { type: Array }
|
||||||
break
|
break
|
||||||
|
|
||||||
|
case String:
|
||||||
|
options = { type: String }
|
||||||
|
break
|
||||||
|
|
||||||
default:
|
default:
|
||||||
options = getType(options)
|
options = getType(options)
|
||||||
break
|
break
|
||||||
|
@ -117,7 +139,9 @@ export function parsePropsDeclaration(options) {
|
||||||
options.default = options.hasOwnProperty('default')
|
options.default = options.hasOwnProperty('default')
|
||||||
? options.default
|
? options.default
|
||||||
: getDefaultValue(options.type)
|
: getDefaultValue(options.type)
|
||||||
options.attribute = true
|
options.attribute = options.hasOwnProperty('attribute')
|
||||||
|
? options.attribute
|
||||||
|
: true
|
||||||
return options
|
return options
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -151,6 +175,9 @@ export function fixedValue(value, options) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
case null:
|
||||||
|
return value
|
||||||
|
|
||||||
default:
|
default:
|
||||||
return value === null || value === void 0 ? null : value + ''
|
return value === null || value === void 0 ? null : value + ''
|
||||||
}
|
}
|
||||||
|
|
|
@ -37,7 +37,7 @@ export function adoptStyles(root, styles = '') {
|
||||||
styles = (RESET_CSS_STYLE + styles.join(' ')).trim()
|
styles = (RESET_CSS_STYLE + styles.join(' ')).trim()
|
||||||
sheet.replaceSync(styles)
|
sheet.replaceSync(styles)
|
||||||
if (root.adoptedStyleSheets) {
|
if (root.adoptedStyleSheets) {
|
||||||
root.adoptedStyleSheets.push(sheet)
|
root.adoptedStyleSheets = [sheet]
|
||||||
} else {
|
} else {
|
||||||
root.appendChild(sheet.elem)
|
root.appendChild(sheet.elem)
|
||||||
}
|
}
|
||||||
|
|
624
src/html.js
624
src/html.js
|
@ -1,28 +1,35 @@
|
||||||
import { boolMap, WC_PART, NO_CHANGE, NOTHING } from './constants.js'
|
/**
|
||||||
|
* {模板解析, 基于 lit-html 二次开发}
|
||||||
|
* @author yutent<yutent.io@gmail.com>
|
||||||
|
* @date 2023/03/7 16:36:59
|
||||||
|
*/
|
||||||
|
|
||||||
const boundAttributeSuffix = '$wc$'
|
import { boolMap, WC_PART, NOTHING } from './constants.js'
|
||||||
const marker = `wc$${String(Math.random()).slice(9)}$`
|
import { animate, MODES } from './anim.js'
|
||||||
const markerMatch = '?' + marker
|
import { nextTick, noop } from './utils.js'
|
||||||
const nodeMarker = `<${markerMatch}>`
|
|
||||||
const createMarker = (v = '') => document.createComment(v)
|
const BIND_ATTR_SUFFIX = '{{$wkit$}}'
|
||||||
|
const MARKER = `{{^wkit${String(Math.random()).slice(-8)}^}}`
|
||||||
|
const MARKER_MATCH = '?' + MARKER
|
||||||
|
const NODE_MARKER = `<${MARKER_MATCH}>`
|
||||||
|
|
||||||
|
// 是否原始值
|
||||||
const isPrimitive = value =>
|
const isPrimitive = value =>
|
||||||
value === null || (typeof value != 'object' && typeof value != 'function')
|
value === null || (typeof value !== 'object' && typeof value !== 'function')
|
||||||
const isArray = Array.isArray
|
const isArray = Array.isArray
|
||||||
const isIterable = value =>
|
const isIterable = value =>
|
||||||
isArray(value) ||
|
value ? isArray(value) || typeof value[Symbol.iterator] === 'function' : false
|
||||||
typeof (value === null || value === void 0
|
|
||||||
? false
|
|
||||||
: value[Symbol.iterator]) === 'function'
|
|
||||||
const SPACE_CHAR = `[ \n\f\r]`
|
const SPACE_CHAR = `[ \n\f\r]`
|
||||||
const ATTR_VALUE_CHAR = `[^ \n\f\r"'\`<>=]`
|
const ATTR_VALUE_CHAR = `[^ \n\f\r"'\`<>=]`
|
||||||
const NAME_CHAR = `[^\\s"'>=/]`
|
const NAME_CHAR = `[^\\s"'>=/]`
|
||||||
const textEndRegex = /<(?:(!--|\/[^a-zA-Z])|(\/?[a-zA-Z][^>\s]*)|(\/?$))/g
|
const TEXT_END_REGEX = /<(?:(!--|\/[^a-zA-Z])|(\/?[a-zA-Z][^>\s]*)|(\/?$))/g
|
||||||
const COMMENT_START = 1
|
const COMMENT_START = 1
|
||||||
const TAG_NAME = 2
|
const TAG_NAME = 2
|
||||||
const DYNAMIC_TAG_NAME = 3
|
const DYNAMIC_TAG_NAME = 3
|
||||||
const commentEndRegex = /-->/g
|
const COMMENT_END_REGEXP = /-->/g
|
||||||
const comment2EndRegex = />/g
|
const COMMENT_END_REGEXP_2 = />/g
|
||||||
const tagEndRegex = new RegExp(
|
const TAG_END_REGEXP = new RegExp(
|
||||||
`>|${SPACE_CHAR}(?:(${NAME_CHAR}+)(${SPACE_CHAR}*=${SPACE_CHAR}*(?:${ATTR_VALUE_CHAR}|("|')|))|$)`,
|
`>|${SPACE_CHAR}(?:(${NAME_CHAR}+)(${SPACE_CHAR}*=${SPACE_CHAR}*(?:${ATTR_VALUE_CHAR}|("|')|))|$)`,
|
||||||
'g'
|
'g'
|
||||||
)
|
)
|
||||||
|
@ -30,9 +37,9 @@ const ENTIRE_MATCH = 0
|
||||||
const ATTRIBUTE_NAME = 1
|
const ATTRIBUTE_NAME = 1
|
||||||
const SPACES_AND_EQUALS = 2
|
const SPACES_AND_EQUALS = 2
|
||||||
const QUOTE_CHAR = 3
|
const QUOTE_CHAR = 3
|
||||||
const singleQuoteAttrEndRegex = /'/g
|
const SINGLE_QUOTE_REGEXP = /'/g
|
||||||
const doubleQuoteAttrEndRegex = /"/g
|
const DOUBLE_QUOTE_REGEXP = /"/g
|
||||||
const rawTextElement = /^(?:script|style|textarea|title)$/i
|
const RAW_TEXT_ELEM_REGEXP = /^(?:script|style|textarea|title)$/i
|
||||||
const HTML_RESULT = 1
|
const HTML_RESULT = 1
|
||||||
const SVG_RESULT = 2
|
const SVG_RESULT = 2
|
||||||
const ATTRIBUTE_PART = 1
|
const ATTRIBUTE_PART = 1
|
||||||
|
@ -41,7 +48,7 @@ const EVENT_PART = 5
|
||||||
const ELEMENT_PART = 6
|
const ELEMENT_PART = 6
|
||||||
const COMMENT_PART = 7
|
const COMMENT_PART = 7
|
||||||
|
|
||||||
const templateCache = new WeakMap()
|
const TEMPLATE_CACHE = new Map()
|
||||||
const walker = document.createTreeWalker(document, 129, null, false)
|
const walker = document.createTreeWalker(document, 129, null, false)
|
||||||
|
|
||||||
function getTemplateHtml(strings, type) {
|
function getTemplateHtml(strings, type) {
|
||||||
|
@ -49,7 +56,7 @@ function getTemplateHtml(strings, type) {
|
||||||
let attrNames = []
|
let attrNames = []
|
||||||
let html2 = type === SVG_RESULT ? '<svg>' : ''
|
let html2 = type === SVG_RESULT ? '<svg>' : ''
|
||||||
let rawTextEndRegex
|
let rawTextEndRegex
|
||||||
let regex = textEndRegex
|
let regex = TEXT_END_REGEX
|
||||||
for (let i = 0; i < len; i++) {
|
for (let i = 0; i < len; i++) {
|
||||||
let s = strings[i]
|
let s = strings[i]
|
||||||
let attrNameEndIndex = -1
|
let attrNameEndIndex = -1
|
||||||
|
@ -63,25 +70,26 @@ function getTemplateHtml(strings, type) {
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
lastIndex = regex.lastIndex
|
lastIndex = regex.lastIndex
|
||||||
if (regex === textEndRegex) {
|
|
||||||
|
if (regex === TEXT_END_REGEX) {
|
||||||
if (match[COMMENT_START] === '!--') {
|
if (match[COMMENT_START] === '!--') {
|
||||||
regex = commentEndRegex
|
regex = COMMENT_END_REGEXP
|
||||||
} else if (match[COMMENT_START] !== void 0) {
|
} else if (match[COMMENT_START] !== void 0) {
|
||||||
regex = comment2EndRegex
|
regex = COMMENT_END_REGEXP_2
|
||||||
} else if (match[TAG_NAME] !== void 0) {
|
} else if (match[TAG_NAME] !== void 0) {
|
||||||
if (rawTextElement.test(match[TAG_NAME])) {
|
if (RAW_TEXT_ELEM_REGEXP.test(match[TAG_NAME])) {
|
||||||
rawTextEndRegex = new RegExp(`</${match[TAG_NAME]}`, 'g')
|
rawTextEndRegex = new RegExp(`</${match[TAG_NAME]}`, 'g')
|
||||||
}
|
}
|
||||||
regex = tagEndRegex
|
regex = TAG_END_REGEXP
|
||||||
} else if (match[DYNAMIC_TAG_NAME] !== void 0) {
|
} else if (match[DYNAMIC_TAG_NAME] !== void 0) {
|
||||||
regex = tagEndRegex
|
regex = TAG_END_REGEXP
|
||||||
}
|
}
|
||||||
} else if (regex === tagEndRegex) {
|
} else if (regex === TAG_END_REGEXP) {
|
||||||
if (match[ENTIRE_MATCH] === '>') {
|
if (match[ENTIRE_MATCH] === '>') {
|
||||||
regex =
|
regex =
|
||||||
rawTextEndRegex !== null && rawTextEndRegex !== void 0
|
rawTextEndRegex !== null && rawTextEndRegex !== void 0
|
||||||
? rawTextEndRegex
|
? rawTextEndRegex
|
||||||
: textEndRegex
|
: TEXT_END_REGEX
|
||||||
attrNameEndIndex = -1
|
attrNameEndIndex = -1
|
||||||
} else if (match[ATTRIBUTE_NAME] === void 0) {
|
} else if (match[ATTRIBUTE_NAME] === void 0) {
|
||||||
attrNameEndIndex = -2
|
attrNameEndIndex = -2
|
||||||
|
@ -90,60 +98,76 @@ function getTemplateHtml(strings, type) {
|
||||||
attrName = match[ATTRIBUTE_NAME]
|
attrName = match[ATTRIBUTE_NAME]
|
||||||
regex =
|
regex =
|
||||||
match[QUOTE_CHAR] === void 0
|
match[QUOTE_CHAR] === void 0
|
||||||
? tagEndRegex
|
? TAG_END_REGEXP
|
||||||
: match[QUOTE_CHAR] === '"'
|
: match[QUOTE_CHAR] === '"'
|
||||||
? doubleQuoteAttrEndRegex
|
? DOUBLE_QUOTE_REGEXP
|
||||||
: singleQuoteAttrEndRegex
|
: SINGLE_QUOTE_REGEXP
|
||||||
}
|
}
|
||||||
} else if (
|
} else if (
|
||||||
regex === doubleQuoteAttrEndRegex ||
|
regex === DOUBLE_QUOTE_REGEXP ||
|
||||||
regex === singleQuoteAttrEndRegex
|
regex === SINGLE_QUOTE_REGEXP
|
||||||
) {
|
) {
|
||||||
regex = tagEndRegex
|
regex = TAG_END_REGEXP
|
||||||
} else if (regex === commentEndRegex || regex === comment2EndRegex) {
|
} else if (
|
||||||
regex = textEndRegex
|
regex === COMMENT_END_REGEXP ||
|
||||||
|
regex === COMMENT_END_REGEXP_2
|
||||||
|
) {
|
||||||
|
regex = TEXT_END_REGEX
|
||||||
} else {
|
} else {
|
||||||
regex = tagEndRegex
|
regex = TAG_END_REGEXP
|
||||||
rawTextEndRegex = void 0
|
rawTextEndRegex = void 0
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
let end =
|
let end =
|
||||||
regex === tagEndRegex && strings[i + 1].startsWith('/>') ? ' ' : ''
|
regex === TAG_END_REGEXP && strings[i + 1].startsWith('/>') ? ' ' : ''
|
||||||
html2 +=
|
html2 +=
|
||||||
regex === textEndRegex
|
regex === TEXT_END_REGEX
|
||||||
? s + nodeMarker
|
? s + NODE_MARKER
|
||||||
: attrNameEndIndex >= 0
|
: attrNameEndIndex >= 0
|
||||||
? (attrNames.push(attrName),
|
? (attrNames.push(attrName),
|
||||||
s.slice(0, attrNameEndIndex) +
|
s.slice(0, attrNameEndIndex) +
|
||||||
boundAttributeSuffix +
|
BIND_ATTR_SUFFIX +
|
||||||
s.slice(attrNameEndIndex)) +
|
s.slice(attrNameEndIndex)) +
|
||||||
marker +
|
MARKER +
|
||||||
end
|
end
|
||||||
: s +
|
: s +
|
||||||
marker +
|
MARKER +
|
||||||
(attrNameEndIndex === -2 ? (attrNames.push(void 0), i) : end)
|
(attrNameEndIndex === -2 ? (attrNames.push(void 0), i) : end)
|
||||||
}
|
}
|
||||||
let htmlResult =
|
let htmlResult =
|
||||||
html2 + (strings[len] || '<?>') + (type === SVG_RESULT ? '</svg>' : '')
|
html2 + (strings[len] || '<?>') + (type === SVG_RESULT ? '</svg>' : '')
|
||||||
if (!Array.isArray(strings) || !strings.hasOwnProperty('raw')) {
|
if (!isArray(strings) || !strings.hasOwnProperty('raw')) {
|
||||||
let message = 'invalid template strings array'
|
throw new Error('invalid html ast')
|
||||||
|
|
||||||
throw new Error(message)
|
|
||||||
}
|
}
|
||||||
return [htmlResult, attrNames]
|
return [htmlResult, attrNames]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function createElement(v = '') {
|
||||||
|
let el = document.createElement('template')
|
||||||
|
el.innerHTML = v
|
||||||
|
return el
|
||||||
|
}
|
||||||
|
|
||||||
|
function createMarker(v = '') {
|
||||||
|
return document.createComment(v)
|
||||||
|
}
|
||||||
|
|
||||||
class Template {
|
class Template {
|
||||||
constructor({ strings, ['__dom_type__']: type }, options) {
|
parts = []
|
||||||
this.parts = []
|
|
||||||
|
constructor({ strings, values, __dom_type__: type }, options) {
|
||||||
let node
|
let node
|
||||||
let nodeIndex = 0
|
let nodeIndex = 0
|
||||||
let attrNameIndex = 0
|
let attrNameIndex = 0
|
||||||
let partCount = strings.length - 1
|
let partCount = strings.length - 1
|
||||||
let parts = this.parts
|
let parts = this.parts
|
||||||
let [html2, attrNames] = getTemplateHtml(strings, type)
|
let [html2, attrNames] = getTemplateHtml(strings, type)
|
||||||
this.el = Template.createElement(html2)
|
|
||||||
|
this.el = createElement(html2)
|
||||||
|
|
||||||
walker.currentNode = this.el.content
|
walker.currentNode = this.el.content
|
||||||
|
|
||||||
if (type === SVG_RESULT) {
|
if (type === SVG_RESULT) {
|
||||||
let content = this.el.content
|
let content = this.el.content
|
||||||
let svgElement = content.firstChild
|
let svgElement = content.firstChild
|
||||||
|
@ -157,27 +181,33 @@ class Template {
|
||||||
let attrsToRemove = []
|
let attrsToRemove = []
|
||||||
|
|
||||||
for (let name of node.getAttributeNames()) {
|
for (let name of node.getAttributeNames()) {
|
||||||
if (
|
if (name.endsWith(BIND_ATTR_SUFFIX) || name.startsWith(MARKER)) {
|
||||||
name.endsWith(boundAttributeSuffix) ||
|
|
||||||
name.startsWith(marker)
|
|
||||||
) {
|
|
||||||
let realName = attrNames[attrNameIndex++]
|
let realName = attrNames[attrNameIndex++]
|
||||||
attrsToRemove.push(name)
|
attrsToRemove.push(name)
|
||||||
if (realName !== void 0) {
|
if (realName !== void 0) {
|
||||||
let value = node.getAttribute(
|
let value = node.getAttribute(
|
||||||
realName.toLowerCase() + boundAttributeSuffix
|
realName.toLowerCase() + BIND_ATTR_SUFFIX
|
||||||
)
|
)
|
||||||
let statics = value.split(marker)
|
let statics = value.split(MARKER)
|
||||||
let m = /([:@])?(.*)/.exec(realName)
|
let m = /([#:@])?(.*)/.exec(realName)
|
||||||
|
let decorates = []
|
||||||
|
|
||||||
|
if (m[1] === '@' && m[2].includes('.')) {
|
||||||
|
decorates = m[2].split('.')
|
||||||
|
m[2] = decorates.shift()
|
||||||
|
}
|
||||||
|
|
||||||
parts.push({
|
parts.push({
|
||||||
type: ATTRIBUTE_PART,
|
type: ATTRIBUTE_PART,
|
||||||
index: nodeIndex,
|
index: nodeIndex,
|
||||||
name: m[2],
|
name: m[2],
|
||||||
strings: statics,
|
strings: statics,
|
||||||
|
decorates,
|
||||||
ctor:
|
ctor:
|
||||||
m[1] === ':'
|
m[1] === ':'
|
||||||
? PropertyPart
|
? PropertyPart
|
||||||
|
: m[1] === '#' && m[2] === 'animation'
|
||||||
|
? AnimPart
|
||||||
: m[1] === '@'
|
: m[1] === '@'
|
||||||
? EventPart
|
? EventPart
|
||||||
: AttributePart
|
: AttributePart
|
||||||
|
@ -194,8 +224,8 @@ class Template {
|
||||||
node.removeAttribute(name)
|
node.removeAttribute(name)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (rawTextElement.test(node.tagName)) {
|
if (RAW_TEXT_ELEM_REGEXP.test(node.tagName)) {
|
||||||
let strings2 = node.textContent.split(marker)
|
let strings2 = node.textContent.split(MARKER)
|
||||||
let lastIndex = strings2.length - 1
|
let lastIndex = strings2.length - 1
|
||||||
if (lastIndex > 0) {
|
if (lastIndex > 0) {
|
||||||
node.textContent = ''
|
node.textContent = ''
|
||||||
|
@ -209,82 +239,29 @@ class Template {
|
||||||
}
|
}
|
||||||
} else if (node.nodeType === 8) {
|
} else if (node.nodeType === 8) {
|
||||||
let data = node.data
|
let data = node.data
|
||||||
if (data === markerMatch) {
|
if (data === MARKER_MATCH) {
|
||||||
parts.push({ type: CHILD_PART, index: nodeIndex })
|
parts.push({ type: CHILD_PART, index: nodeIndex })
|
||||||
} else {
|
} else {
|
||||||
let i = -1
|
let i = -1
|
||||||
while ((i = node.data.indexOf(marker, i + 1)) !== -1) {
|
while ((i = node.data.indexOf(MARKER, i + 1)) !== -1) {
|
||||||
parts.push({ type: COMMENT_PART, index: nodeIndex })
|
parts.push({ type: COMMENT_PART, index: nodeIndex })
|
||||||
i += marker.length - 1
|
i += MARKER.length - 1
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
nodeIndex++
|
nodeIndex++
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
static createElement(html2) {
|
|
||||||
let el = document.createElement('template')
|
|
||||||
el.innerHTML = html2
|
|
||||||
return el
|
|
||||||
}
|
|
||||||
}
|
|
||||||
function resolveDirective(part, value, parent = part, attributeIndex) {
|
|
||||||
if (value === NO_CHANGE) {
|
|
||||||
return value
|
|
||||||
}
|
|
||||||
let currentDirective =
|
|
||||||
attributeIndex !== void 0
|
|
||||||
? parent.__directives?.[attributeIndex]
|
|
||||||
: parent.__directive
|
|
||||||
|
|
||||||
let nextDirectiveConstructor = isPrimitive(value)
|
|
||||||
? void 0
|
|
||||||
: value['_$litDirective$']
|
|
||||||
|
|
||||||
if (currentDirective?.constructor !== nextDirectiveConstructor) {
|
|
||||||
currentDirective._$notifyDirectiveConnectionChanged?.call(
|
|
||||||
currentDirective,
|
|
||||||
false
|
|
||||||
)
|
|
||||||
|
|
||||||
if (nextDirectiveConstructor === void 0) {
|
|
||||||
currentDirective = void 0
|
|
||||||
} else {
|
|
||||||
currentDirective = new nextDirectiveConstructor(part)
|
|
||||||
currentDirective._$initialize(part, parent, attributeIndex)
|
|
||||||
}
|
|
||||||
if (attributeIndex !== void 0) {
|
|
||||||
if (!parent.__directives) {
|
|
||||||
parent.__directives = []
|
|
||||||
}
|
|
||||||
parent.__directives[attributeIndex] = currentDirective
|
|
||||||
} else {
|
|
||||||
parent.__directive = currentDirective
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (currentDirective !== void 0) {
|
|
||||||
value = resolveDirective(
|
|
||||||
part,
|
|
||||||
currentDirective._$resolve(part, value.values),
|
|
||||||
currentDirective,
|
|
||||||
attributeIndex
|
|
||||||
)
|
|
||||||
}
|
|
||||||
return value
|
|
||||||
}
|
}
|
||||||
|
|
||||||
class TemplateInstance {
|
class TemplateInstance {
|
||||||
constructor(template, parent) {
|
constructor(template, parent) {
|
||||||
this._parts = []
|
this.$parts = []
|
||||||
this._$disconnectableChildren = void 0
|
this.$template = template
|
||||||
this._$template = template
|
this.$parent = parent
|
||||||
this._$parent = parent
|
|
||||||
}
|
}
|
||||||
get parentNode() {
|
get parentNode() {
|
||||||
return this._$parent.parentNode
|
return this.$parent.parentNode
|
||||||
}
|
|
||||||
get _$isConnected() {
|
|
||||||
return this._$parent._$isConnected
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#checkRef(node, walker, options) {
|
#checkRef(node, walker, options) {
|
||||||
|
@ -296,11 +273,11 @@ class TemplateInstance {
|
||||||
} while ((node = walker.nextNode()) !== null)
|
} while ((node = walker.nextNode()) !== null)
|
||||||
}
|
}
|
||||||
|
|
||||||
_clone(options) {
|
clone(options) {
|
||||||
let {
|
let {
|
||||||
el: { content },
|
el: { content },
|
||||||
parts
|
parts
|
||||||
} = this._$template
|
} = this.$template
|
||||||
|
|
||||||
let fragment = document.importNode(content, true)
|
let fragment = document.importNode(content, true)
|
||||||
let nodeIndex = 0
|
let nodeIndex = 0
|
||||||
|
@ -331,13 +308,14 @@ class TemplateInstance {
|
||||||
node,
|
node,
|
||||||
templatePart.name,
|
templatePart.name,
|
||||||
templatePart.strings,
|
templatePart.strings,
|
||||||
|
templatePart.decorates,
|
||||||
this,
|
this,
|
||||||
options
|
options
|
||||||
)
|
)
|
||||||
} else if (templatePart.type === ELEMENT_PART) {
|
} else if (templatePart.type === ELEMENT_PART) {
|
||||||
part = new ElementPart(node, this, options)
|
part = new ElementPart(node, this, options)
|
||||||
}
|
}
|
||||||
this._parts.push(part)
|
this.$parts.push(part)
|
||||||
templatePart = parts[++partIndex]
|
templatePart = parts[++partIndex]
|
||||||
}
|
}
|
||||||
if (
|
if (
|
||||||
|
@ -356,15 +334,16 @@ class TemplateInstance {
|
||||||
|
|
||||||
return fragment
|
return fragment
|
||||||
}
|
}
|
||||||
_update(values) {
|
|
||||||
|
update(values) {
|
||||||
let i = 0
|
let i = 0
|
||||||
for (let part of this._parts) {
|
for (let part of this.$parts) {
|
||||||
if (part !== void 0) {
|
if (part !== void 0) {
|
||||||
if (part.strings !== void 0) {
|
if (part.strings !== void 0) {
|
||||||
part._$setValue(values, part, i)
|
part.$setValue(values, i)
|
||||||
i += part.strings.length - 2
|
i += part.strings.length - 2
|
||||||
} else {
|
} else {
|
||||||
part._$setValue(values[i])
|
part.$setValue(values[i])
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
i++
|
i++
|
||||||
|
@ -373,118 +352,116 @@ class TemplateInstance {
|
||||||
}
|
}
|
||||||
|
|
||||||
class ChildPart {
|
class ChildPart {
|
||||||
|
type = CHILD_PART
|
||||||
|
#value = NOTHING
|
||||||
|
|
||||||
constructor(startNode, endNode, parent, options) {
|
constructor(startNode, endNode, parent, options) {
|
||||||
this.type = CHILD_PART
|
this.startNode = startNode
|
||||||
this._$committedValue = NOTHING
|
this.endNode = endNode
|
||||||
this._$disconnectableChildren = void 0
|
this.$parent = parent
|
||||||
this._$startNode = startNode
|
|
||||||
this._$endNode = endNode
|
|
||||||
this._$parent = parent
|
|
||||||
this.options = options
|
this.options = options
|
||||||
this.__isConnected = options.isConnected || true
|
|
||||||
}
|
|
||||||
get _$isConnected() {
|
|
||||||
return this._$parent?._$isConnected || this.__isConnected
|
|
||||||
}
|
}
|
||||||
|
|
||||||
get parentNode() {
|
get parentNode() {
|
||||||
let parentNode = this._$startNode.parentNode
|
let parentNode = this.startNode.parentNode
|
||||||
let parent = this._$parent
|
let parent = this.$parent
|
||||||
if (parent !== void 0 && parentNode.nodeType === 11) {
|
if (parent !== void 0 && parentNode.nodeType === 11) {
|
||||||
parentNode = parent.parentNode
|
parentNode = parent.parentNode
|
||||||
}
|
}
|
||||||
return parentNode
|
return parentNode
|
||||||
}
|
}
|
||||||
get startNode() {
|
|
||||||
return this._$startNode
|
$setValue(value, clear) {
|
||||||
}
|
|
||||||
get endNode() {
|
|
||||||
return this._$endNode
|
|
||||||
}
|
|
||||||
_$setValue(value, directiveParent = this) {
|
|
||||||
value = resolveDirective(this, value, directiveParent)
|
|
||||||
if (isPrimitive(value)) {
|
if (isPrimitive(value)) {
|
||||||
if (value === NOTHING || value == null || value === '') {
|
if (value === NOTHING || value == null || value === '') {
|
||||||
if (this._$committedValue !== NOTHING) {
|
if (this.#value !== NOTHING) {
|
||||||
this.#clear()
|
this.#clear()
|
||||||
}
|
}
|
||||||
this._$committedValue = NOTHING
|
this.#value = NOTHING
|
||||||
} else if (value !== this._$committedValue && value !== NO_CHANGE) {
|
} else if (value !== this.#value) {
|
||||||
this._commitText(value)
|
this.#commitText(value)
|
||||||
}
|
}
|
||||||
} else if (value['__dom_type__'] !== void 0) {
|
} else if (value.__dom_type__ !== void 0) {
|
||||||
this._commitTemplateResult(value)
|
this.#commitTemplateResult(value)
|
||||||
} else if (value.nodeType !== void 0) {
|
} else if (value.nodeType !== void 0) {
|
||||||
this._commitNode(value)
|
this.#commitNode(value)
|
||||||
} else if (isIterable(value)) {
|
} else if (isIterable(value)) {
|
||||||
this._commitIterable(value)
|
this.#commitIterable(value)
|
||||||
} else {
|
} else {
|
||||||
this._commitText(value)
|
this.#commitText(value)
|
||||||
|
}
|
||||||
|
if (clear) {
|
||||||
|
nextTick(_ => this.#clearBindings())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
_insert(node, target = this._$endNode) {
|
|
||||||
return this._$startNode.parentNode.insertBefore(node, target)
|
#insert(node, target = this.endNode) {
|
||||||
|
return this.startNode.parentNode.insertBefore(node, target)
|
||||||
}
|
}
|
||||||
_commitNode(value) {
|
|
||||||
if (this._$committedValue !== value) {
|
#commitNode(value) {
|
||||||
|
if (this.#value !== value) {
|
||||||
this.#clear()
|
this.#clear()
|
||||||
this._$committedValue = this._insert(value)
|
this.#value = this.#insert(value)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
_commitText(value) {
|
|
||||||
if (
|
#commitText(value) {
|
||||||
this._$committedValue !== NOTHING &&
|
if (this.#value !== NOTHING && isPrimitive(this.#value)) {
|
||||||
isPrimitive(this._$committedValue)
|
let node = this.startNode.nextSibling
|
||||||
) {
|
|
||||||
let node = this._$startNode.nextSibling
|
|
||||||
|
|
||||||
node.data = value
|
node.data = value
|
||||||
} else {
|
} else {
|
||||||
this._commitNode(document.createTextNode(value))
|
this.#commitNode(document.createTextNode(value))
|
||||||
}
|
}
|
||||||
this._$committedValue = value
|
this.#value = value
|
||||||
}
|
}
|
||||||
_commitTemplateResult(result) {
|
|
||||||
let { values, ['__dom_type__']: type } = result
|
#commitTemplateResult(result) {
|
||||||
|
let { values, __dom_type__: type } = result
|
||||||
let template =
|
let template =
|
||||||
typeof type === 'number'
|
typeof type === 'number'
|
||||||
? this.#getTemplate(result)
|
? this.#getTemplate(result)
|
||||||
: (type.el === void 0 && (type.el = Template.createElement(type.h)),
|
: (type.el === void 0 && (type.el = createElement(type.h)), type)
|
||||||
type)
|
|
||||||
|
|
||||||
if (this._$committedValue?._$template === template) {
|
if (this.#value?.$template === template) {
|
||||||
this._$committedValue._update(values)
|
this.#value.update(values)
|
||||||
} else {
|
} else {
|
||||||
let instance = new TemplateInstance(template, this)
|
let instance = new TemplateInstance(template, this)
|
||||||
let fragment = instance._clone(this.options)
|
let fragment = instance.clone(this.options)
|
||||||
|
|
||||||
instance._update(values)
|
instance.update(values)
|
||||||
|
|
||||||
this._commitNode(fragment)
|
this.#commitNode(fragment)
|
||||||
this._$committedValue = instance
|
this.#value = instance
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#getTemplate(result) {
|
#getTemplate(result) {
|
||||||
let template = templateCache.get(result.strings)
|
let key = result.strings.join()
|
||||||
|
let template = TEMPLATE_CACHE.get(key)
|
||||||
|
|
||||||
if (template === void 0) {
|
if (template === void 0) {
|
||||||
template = new Template(result, this.options)
|
template = new Template(result, this.options)
|
||||||
templateCache.set(result.strings, template)
|
TEMPLATE_CACHE.set(key, template)
|
||||||
}
|
}
|
||||||
return template
|
return template
|
||||||
}
|
}
|
||||||
_commitIterable(value) {
|
|
||||||
if (!isArray(this._$committedValue)) {
|
#commitIterable(value) {
|
||||||
this._$committedValue = []
|
if (!isArray(this.#value)) {
|
||||||
|
this.#value = []
|
||||||
this.#clear()
|
this.#clear()
|
||||||
}
|
}
|
||||||
let itemParts = this._$committedValue
|
let itemParts = this.#value
|
||||||
let partIndex = 0
|
let partIndex = 0
|
||||||
let itemPart
|
let itemPart
|
||||||
for (let item of value) {
|
for (let item of value) {
|
||||||
if (partIndex === itemParts.length) {
|
if (partIndex === itemParts.length) {
|
||||||
itemParts.push(
|
itemParts.push(
|
||||||
(itemPart = new ChildPart(
|
(itemPart = new ChildPart(
|
||||||
this._insert(createMarker()),
|
this.#insert(createMarker()),
|
||||||
this._insert(createMarker()),
|
this.#insert(createMarker()),
|
||||||
this,
|
this,
|
||||||
this.options
|
this.options
|
||||||
))
|
))
|
||||||
|
@ -492,115 +469,125 @@ class ChildPart {
|
||||||
} else {
|
} else {
|
||||||
itemPart = itemParts[partIndex]
|
itemPart = itemParts[partIndex]
|
||||||
}
|
}
|
||||||
itemPart._$setValue(item)
|
itemPart.$setValue(item)
|
||||||
partIndex++
|
partIndex++
|
||||||
}
|
}
|
||||||
if (partIndex < itemParts.length) {
|
if (partIndex < itemParts.length) {
|
||||||
this.#clear(itemPart && itemPart._$endNode.nextSibling, partIndex)
|
this.#clear(itemPart && itemPart.endNode.nextSibling, partIndex)
|
||||||
itemParts.length = partIndex
|
itemParts.length = partIndex
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#clear(start = this._$startNode.nextSibling, from) {
|
#clear(start = this.startNode.nextSibling, from) {
|
||||||
this._$notifyConnectionChanged?.call(this, false, true, from)
|
while (start && start !== this.endNode) {
|
||||||
|
|
||||||
while (start && start !== this._$endNode) {
|
|
||||||
let node = start.nextSibling
|
let node = start.nextSibling
|
||||||
start.remove()
|
start.remove()
|
||||||
start = node
|
start = node
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
setConnected(isConnected) {
|
|
||||||
if (this._$parent === void 0) {
|
/**
|
||||||
this.__isConnected = isConnected
|
* 清除已被移除的节点事件
|
||||||
this._$notifyConnectionChanged?.call(this, isConnected)
|
*/
|
||||||
|
#clearBindings() {
|
||||||
|
let host = this.options.host
|
||||||
|
let events = host.$events
|
||||||
|
|
||||||
|
for (let ev in events) {
|
||||||
|
for (let i = -1, it; (it = events[ev][++i]); ) {
|
||||||
|
if (!host.root.contains(it.el)) {
|
||||||
|
it.el.removeEventListener(this.name, it.listener, it.options)
|
||||||
|
events[ev][i] = null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
events[ev] = events[ev].filter(e => e !== null)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// 常规属性
|
// 常规属性
|
||||||
class AttributePart {
|
class AttributePart {
|
||||||
constructor(element, name, strings, parent, options = {}) {
|
type = ATTRIBUTE_PART
|
||||||
this.type = ATTRIBUTE_PART
|
|
||||||
this._$committedValue = NOTHING
|
#value = NOTHING
|
||||||
this._$disconnectableChildren = void 0
|
|
||||||
|
constructor(element, name, strings, decorates, parent, options = {}) {
|
||||||
this.element = element
|
this.element = element
|
||||||
this.name = name
|
this.name = name
|
||||||
this._$parent = parent
|
this.decorates = decorates
|
||||||
|
this.$parent = parent
|
||||||
this.options = options
|
this.options = options
|
||||||
if (strings.length > 2 || strings[0] !== '' || strings[1] !== '') {
|
if (strings.length > 2 || strings[0] !== '' || strings[1] !== '') {
|
||||||
this._$committedValue = new Array(strings.length - 1).fill(new String())
|
this.#value = Array(strings.length - 1).fill(null)
|
||||||
this.strings = strings
|
this.strings = strings
|
||||||
} else {
|
|
||||||
this._$committedValue = NOTHING
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
get tagName() {
|
get tagName() {
|
||||||
return this.element.tagName
|
return this.element.tagName
|
||||||
}
|
}
|
||||||
get _$isConnected() {
|
|
||||||
return this._$parent._$isConnected
|
$setValue(value, valueIndex) {
|
||||||
|
let strings = this.strings
|
||||||
|
let changed = false
|
||||||
|
|
||||||
|
if (typeof value === 'function') {
|
||||||
|
value = value(this.element)
|
||||||
}
|
}
|
||||||
|
|
||||||
_$setValue(value, directiveParent = this, valueIndex, noCommit) {
|
|
||||||
let strings = this.strings
|
|
||||||
let change = false
|
|
||||||
if (strings === void 0) {
|
if (strings === void 0) {
|
||||||
value = resolveDirective(this, value, directiveParent, 0)
|
changed = !isPrimitive(value) || value !== this.#value
|
||||||
change =
|
if (changed) {
|
||||||
!isPrimitive(value) ||
|
this.#value = value
|
||||||
(value !== this._$committedValue && value !== NO_CHANGE)
|
|
||||||
if (change) {
|
|
||||||
this._$committedValue = value
|
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
let values = value
|
let values = value
|
||||||
value = strings[0]
|
value = strings[0]
|
||||||
|
|
||||||
for (let i = 0; i < strings.length - 1; i++) {
|
for (let i = 0; i < strings.length - 1; i++) {
|
||||||
let v = resolveDirective(
|
let v = values[valueIndex + i]
|
||||||
this,
|
|
||||||
values[valueIndex + i],
|
changed || (changed = !isPrimitive(v) || v !== this.#value[i])
|
||||||
directiveParent,
|
|
||||||
i
|
|
||||||
)
|
|
||||||
if (v === NO_CHANGE) {
|
|
||||||
v = this._$committedValue[i]
|
|
||||||
}
|
|
||||||
change || (change = !isPrimitive(v) || v !== this._$committedValue[i])
|
|
||||||
if (v === NOTHING) {
|
if (v === NOTHING) {
|
||||||
value = NOTHING
|
value = NOTHING
|
||||||
} else if (value !== NOTHING) {
|
} else if (value !== NOTHING) {
|
||||||
value += (v !== null && v !== void 0 ? v : '') + strings[i + 1]
|
value += (v !== null && v !== void 0 ? v : '') + strings[i + 1]
|
||||||
}
|
}
|
||||||
this._$committedValue[i] = v
|
this.#value[i] = v
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (change && !noCommit) {
|
// value属性做特殊处理, 解决输入框无法清空的问题
|
||||||
|
if (changed || this.name === 'value') {
|
||||||
this.commitValue(value)
|
this.commitValue(value)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
commitValue(value) {
|
commitValue(value) {
|
||||||
let isBoolAttr = boolMap[this.name]
|
let elem = this.element
|
||||||
|
let attr = this.name
|
||||||
|
let isBoolAttr = boolMap[attr]
|
||||||
// ref属性不渲染到节点上
|
// ref属性不渲染到节点上
|
||||||
if (this.name === 'ref') {
|
if (attr === 'ref') {
|
||||||
this.options.host.$refs[value] = this.element
|
this.options.host.$refs[value] = elem
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
if (isBoolAttr) {
|
if (isBoolAttr) {
|
||||||
this.element[isBoolAttr] = !(value === false || value === null)
|
elem[isBoolAttr] = !(value === false || value === null)
|
||||||
|
|
||||||
if (this.element[isBoolAttr]) {
|
if (elem[isBoolAttr]) {
|
||||||
this.element.setAttribute(this.name, '')
|
elem.setAttribute(attr, '')
|
||||||
} else {
|
} else {
|
||||||
this.element.removeAttribute(this.name)
|
elem.removeAttribute(attr)
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if (value === null || value === void 0) {
|
// value 绑定, 特殊处理
|
||||||
this.element.removeAttribute(this.name)
|
if (attr === 'value') {
|
||||||
|
elem.value = value
|
||||||
} else {
|
} else {
|
||||||
this.element.setAttribute(this.name, value)
|
if (value === null || value === void 0) {
|
||||||
|
elem.removeAttribute(attr)
|
||||||
|
} else {
|
||||||
|
elem.setAttribute(attr, value)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -615,103 +602,150 @@ class PropertyPart extends AttributePart {
|
||||||
this.element[this.name] = value
|
this.element[this.name] = value
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
// 动画属性
|
||||||
|
class AnimPart extends AttributePart {
|
||||||
|
constructor(...args) {
|
||||||
|
super(...args)
|
||||||
|
}
|
||||||
|
|
||||||
|
commitValue({ type = 'fade', duration, custom, immediate = false } = {}) {
|
||||||
|
let elem = this.element
|
||||||
|
let fromto = MODES[type] || MODES.fade
|
||||||
|
|
||||||
|
if (custom) {
|
||||||
|
fromto = custom
|
||||||
|
}
|
||||||
|
elem.$animate = function (out = false) {
|
||||||
|
return animate.call(this, duration, fromto, out)
|
||||||
|
}
|
||||||
|
elem.$animate.immediate = immediate
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// 事件属性
|
// 事件属性
|
||||||
class EventPart extends AttributePart {
|
class EventPart extends AttributePart {
|
||||||
|
type = EVENT_PART
|
||||||
|
|
||||||
|
#listener = null
|
||||||
|
|
||||||
|
#prevent = noop
|
||||||
|
#stop = noop
|
||||||
|
#checkSelf = noop
|
||||||
|
|
||||||
constructor(...args) {
|
constructor(...args) {
|
||||||
super(...args)
|
super(...args)
|
||||||
this.type = EVENT_PART
|
|
||||||
}
|
}
|
||||||
_$setValue(newListener, directiveParent = this) {
|
|
||||||
newListener =
|
|
||||||
resolveDirective(this, newListener, directiveParent, 0) || NOTHING
|
|
||||||
|
|
||||||
if (newListener === NO_CHANGE) {
|
$setValue(listener) {
|
||||||
|
let host = this.options.host
|
||||||
|
let elem = this.element
|
||||||
|
let name = this.name
|
||||||
|
let options = {}
|
||||||
|
let events = host.$events[name] || []
|
||||||
|
|
||||||
|
if (this.decorates.length) {
|
||||||
|
for (let it of this.decorates) {
|
||||||
|
switch (it) {
|
||||||
|
case 'stop':
|
||||||
|
this.#stop = ev => ev.stopPropagation()
|
||||||
|
break
|
||||||
|
case 'prevent':
|
||||||
|
this.#prevent = ev => ev.preventDefault()
|
||||||
|
break
|
||||||
|
case 'self':
|
||||||
|
this.#checkSelf = ev => ev.target === elem
|
||||||
|
break
|
||||||
|
case 'capture':
|
||||||
|
case 'once':
|
||||||
|
case 'passive':
|
||||||
|
options[it] = true
|
||||||
|
break
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
let shouldRemove = listener !== this.#listener
|
||||||
|
|
||||||
|
if (this.#listener) {
|
||||||
|
for (let i = -1, it; (it = events[++i]); ) {
|
||||||
|
if (it.el === elem) {
|
||||||
|
shouldRemove =
|
||||||
|
shouldRemove ||
|
||||||
|
options.capture !== it.capture ||
|
||||||
|
options.once !== it.once ||
|
||||||
|
options.passive !== it.passive
|
||||||
|
if (shouldRemove) {
|
||||||
|
it.el.removeEventListener(name, it.listener, it.options)
|
||||||
|
events[i] = null
|
||||||
|
}
|
||||||
|
break
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
events = events.filter(it => it !== null)
|
||||||
|
host.$events[name] = events
|
||||||
|
|
||||||
|
if (listener && shouldRemove) {
|
||||||
|
elem.addEventListener(name, this, options)
|
||||||
|
this.#listener = listener
|
||||||
|
|
||||||
|
events.push({ el: elem, listener: this, options })
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
handleEvent(ev) {
|
||||||
|
this.#stop(ev)
|
||||||
|
this.#prevent(ev)
|
||||||
|
if (this.#checkSelf(ev) === false) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
let host = this.options.host
|
this.#listener.call(this.options.host, ev)
|
||||||
let oldListener = this._$committedValue
|
|
||||||
let shouldRemoveListener =
|
|
||||||
(newListener === NOTHING && oldListener !== NOTHING) ||
|
|
||||||
newListener.capture !== oldListener.capture ||
|
|
||||||
newListener.once !== oldListener.once ||
|
|
||||||
newListener.passive !== oldListener.passive
|
|
||||||
let shouldAddListener =
|
|
||||||
newListener !== NOTHING &&
|
|
||||||
(oldListener === NOTHING || shouldRemoveListener)
|
|
||||||
|
|
||||||
if (shouldRemoveListener) {
|
|
||||||
this.element.removeEventListener(this.name, this, oldListener)
|
|
||||||
}
|
|
||||||
if (shouldAddListener) {
|
|
||||||
this.element.addEventListener(this.name, this, newListener)
|
|
||||||
}
|
|
||||||
this._$committedValue = newListener
|
|
||||||
if (host) {
|
|
||||||
if (host.$events[this.name]) {
|
|
||||||
host.$events[this.name].push({
|
|
||||||
el: this.element,
|
|
||||||
listener: this
|
|
||||||
})
|
|
||||||
} else {
|
|
||||||
host.$events[this.name] = [
|
|
||||||
{
|
|
||||||
el: this.element,
|
|
||||||
listener: this
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
handleEvent(event) {
|
|
||||||
if (typeof this._$committedValue === 'function') {
|
|
||||||
this._$committedValue.call(this.options.host || this.element, event)
|
|
||||||
} else {
|
|
||||||
this._$committedValue.handleEvent(event)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
class ElementPart {
|
class ElementPart {
|
||||||
|
type = ELEMENT_PART
|
||||||
constructor(element, parent, options) {
|
constructor(element, parent, options) {
|
||||||
this.element = element
|
this.element = element
|
||||||
this.type = ELEMENT_PART
|
this.$parent = parent
|
||||||
this._$disconnectableChildren = void 0
|
|
||||||
this._$parent = parent
|
|
||||||
this.options = options
|
this.options = options
|
||||||
}
|
}
|
||||||
get _$isConnected() {
|
|
||||||
return this._$parent._$isConnected
|
$setValue() {}
|
||||||
}
|
|
||||||
_$setValue(value) {
|
|
||||||
resolveDirective(this, value)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export function render(value, container, options = {}) {
|
export function render(value, container, options = {}) {
|
||||||
let part = container[WC_PART]
|
let part = container[WC_PART]
|
||||||
|
|
||||||
if (part === void 0) {
|
if (part === void 0) {
|
||||||
container[WC_PART] = part = new ChildPart(
|
part = new ChildPart(
|
||||||
container.insertBefore(createMarker(), null),
|
container.insertBefore(createMarker(), null),
|
||||||
null,
|
null,
|
||||||
void 0,
|
void 0,
|
||||||
options
|
options
|
||||||
)
|
)
|
||||||
|
container[WC_PART] = part
|
||||||
}
|
}
|
||||||
part._$setValue(value)
|
part.$setValue(value, true)
|
||||||
|
|
||||||
return part
|
return part
|
||||||
}
|
}
|
||||||
|
|
||||||
export const html = (strings, ...values) => {
|
export function html(strings, ...values) {
|
||||||
return {
|
return {
|
||||||
__dom_type__: HTML_RESULT,
|
__dom_type__: HTML_RESULT,
|
||||||
strings,
|
strings,
|
||||||
values
|
values
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
export const svg = (strings, ...values) => {
|
|
||||||
|
export function raw(str, values = []) {
|
||||||
|
let strings = values.length ? str.split('%s') : [str]
|
||||||
|
strings.raw = true
|
||||||
|
return html(strings, ...values)
|
||||||
|
}
|
||||||
|
export function svg(strings, ...values) {
|
||||||
return {
|
return {
|
||||||
__dom_type__: SVG_RESULT,
|
__dom_type__: SVG_RESULT,
|
||||||
strings,
|
strings,
|
||||||
|
|
324
src/index.js
324
src/index.js
|
@ -1,5 +1,5 @@
|
||||||
/**
|
/**
|
||||||
* {wcui的核心库, 基于lit-core二次开发}
|
* { wkit library }
|
||||||
* @author yutent<yutent.io@gmail.com>
|
* @author yutent<yutent.io@gmail.com>
|
||||||
* @date 2023/03/07 18:10:43
|
* @date 2023/03/07 18:10:43
|
||||||
*/
|
*/
|
||||||
|
@ -7,18 +7,36 @@ import {
|
||||||
fixedValue,
|
fixedValue,
|
||||||
parsePropsDeclaration,
|
parsePropsDeclaration,
|
||||||
boolMap,
|
boolMap,
|
||||||
|
KEEP_ALIVE,
|
||||||
|
KEEP_ALIVE_C,
|
||||||
__finalized__,
|
__finalized__,
|
||||||
__props__,
|
__props__,
|
||||||
__changed_props__,
|
__changed_props__,
|
||||||
__mounted__,
|
__mounted__,
|
||||||
__pending__,
|
__pending__
|
||||||
__children__
|
|
||||||
} from './constants.js'
|
} from './constants.js'
|
||||||
import { css, adoptStyles } from './css.js'
|
import { css, adoptStyles } from './css.js'
|
||||||
import { render, html, svg } from './html.js'
|
import { render, html, svg, raw } from './html.js'
|
||||||
import { nextTick, fire, bind, unbind, hyphen } from './utils.js'
|
import { animate, MODES } from './anim.js'
|
||||||
export { $, $$, offset, outsideClick, clearOutsideClick } from './utils.js'
|
import { nextTick, fire, bind, unbind, hyphen, camelize } from './utils.js'
|
||||||
export { html, css, svg, bind, unbind, nextTick }
|
|
||||||
|
export {
|
||||||
|
$,
|
||||||
|
$$,
|
||||||
|
range,
|
||||||
|
offset,
|
||||||
|
outsideClick,
|
||||||
|
clearOutsideClick
|
||||||
|
} from './utils.js'
|
||||||
|
export { html, raw, css, svg, bind, unbind, nextTick, fire, hyphen, camelize }
|
||||||
|
|
||||||
|
function safely(callback, ...args) {
|
||||||
|
try {
|
||||||
|
callback && callback.apply(this, args)
|
||||||
|
} catch (err) {
|
||||||
|
console.error(err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// 简单的类名解析
|
// 简单的类名解析
|
||||||
export function classMap(data = {}) {
|
export function classMap(data = {}) {
|
||||||
|
@ -34,13 +52,49 @@ export function classMap(data = {}) {
|
||||||
export function styleMap(data = {}) {
|
export function styleMap(data = {}) {
|
||||||
let output = ''
|
let output = ''
|
||||||
for (let k in data) {
|
for (let k in data) {
|
||||||
if (data[k]) {
|
if (data[k] || data[k] === 0) {
|
||||||
output += hyphen(k) + ':' + data[k] + ';'
|
output += hyphen(k) + ':' + data[k] + ';'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return output
|
return output
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 三元运算符的函数封装(只为了省个参数)
|
||||||
|
export function when(condition, trueCase = '', falseCase = '') {
|
||||||
|
return condition ? trueCase : falseCase
|
||||||
|
}
|
||||||
|
|
||||||
|
// swicth语句的封装
|
||||||
|
export function which(target, list = [], defaultCase = '') {
|
||||||
|
for (let [name, content] of list) {
|
||||||
|
if (target === name) {
|
||||||
|
return content
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return defaultCase
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 双向绑定
|
||||||
|
* @param key<String> 绑定的字段
|
||||||
|
* @param el 当前对象, 无需传递, 由框架内部处理
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
export function live(key, el) {
|
||||||
|
let callback = ev => {
|
||||||
|
Function('o', 'v', `o.${key} = v`)(this, ev.target.value)
|
||||||
|
this.$requestUpdate()
|
||||||
|
}
|
||||||
|
|
||||||
|
if (el && !el.__live__) {
|
||||||
|
bind(el, 'input', callback)
|
||||||
|
this.$events.input ??= []
|
||||||
|
this.$events.input.push({ el, listener: callback, options: false })
|
||||||
|
el.__live__ = true
|
||||||
|
}
|
||||||
|
return Function('o', `return o.${key}`)(this)
|
||||||
|
}
|
||||||
|
|
||||||
export class Component extends HTMLElement {
|
export class Component extends HTMLElement {
|
||||||
/**
|
/**
|
||||||
* 声明可监听变化的属性列表
|
* 声明可监听变化的属性列表
|
||||||
|
@ -50,37 +104,36 @@ export class Component extends HTMLElement {
|
||||||
let list = []
|
let list = []
|
||||||
|
|
||||||
this.finalize()
|
this.finalize()
|
||||||
|
this.parseAnim()
|
||||||
|
|
||||||
this[__props__].forEach((options, prop) => {
|
this[__props__].forEach((options, prop) => {
|
||||||
list.push(prop.toLowerCase())
|
list.push(options.attrName)
|
||||||
})
|
})
|
||||||
return list
|
return list.concat(this.watches || [], KEEP_ALIVE)
|
||||||
}
|
}
|
||||||
|
|
||||||
static createProperty(name, options) {
|
static parseAnim() {
|
||||||
let key = Symbol(name)
|
if (this.hasOwnProperty('animation')) {
|
||||||
let descriptor = {
|
let {
|
||||||
get() {
|
type = 'fade',
|
||||||
return this[key]
|
duration,
|
||||||
},
|
custom,
|
||||||
set(value) {
|
immediate = false
|
||||||
let oldValue = this[key]
|
} = this.animation
|
||||||
value = fixedValue(value, options)
|
let fromto = MODES[type] || MODES.fade
|
||||||
if (oldValue === value) {
|
if (custom) {
|
||||||
return
|
fromto = custom
|
||||||
}
|
}
|
||||||
this[key] = value
|
Object.defineProperty(this.prototype, '$animate', {
|
||||||
this.$requestUpdate(name, oldValue)
|
value(out) {
|
||||||
if (options.observer) {
|
if (this[__mounted__]) {
|
||||||
options.observer.call(this, value, oldValue)
|
return animate.call(this, duration, fromto, out)
|
||||||
}
|
}
|
||||||
},
|
|
||||||
enumerable: false
|
|
||||||
}
|
}
|
||||||
|
})
|
||||||
this[__props__].set(name, options)
|
this.prototype.$animate.immediate = immediate
|
||||||
|
delete this.animation
|
||||||
Object.defineProperty(this.prototype, name, descriptor)
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// 处理静态声明
|
// 处理静态声明
|
||||||
|
@ -94,11 +147,22 @@ export class Component extends HTMLElement {
|
||||||
|
|
||||||
if (this.hasOwnProperty('props')) {
|
if (this.hasOwnProperty('props')) {
|
||||||
for (let k in this.props) {
|
for (let k in this.props) {
|
||||||
let options = parsePropsDeclaration(this.props[k])
|
// 保留关键字, 直接跳过
|
||||||
if (boolMap[k] && k !== boolMap[k]) {
|
if (k === KEEP_ALIVE || k === KEEP_ALIVE_C) {
|
||||||
k = boolMap[k]
|
continue
|
||||||
}
|
}
|
||||||
this.createProperty(k, options)
|
let options = parsePropsDeclaration(this.props[k])
|
||||||
|
let attrName = k.toLowerCase()
|
||||||
|
|
||||||
|
options.attrName = attrName
|
||||||
|
|
||||||
|
if (boolMap[attrName]) {
|
||||||
|
k = boolMap[attrName]
|
||||||
|
} else {
|
||||||
|
options.attrName = hyphen(k)
|
||||||
|
k = camelize(k)
|
||||||
|
}
|
||||||
|
this[__props__].set(k, options)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -112,6 +176,10 @@ export class Component extends HTMLElement {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
keepAlive = false
|
||||||
|
|
||||||
|
removed = false
|
||||||
|
|
||||||
constructor() {
|
constructor() {
|
||||||
super()
|
super()
|
||||||
this[__pending__] = false
|
this[__pending__] = false
|
||||||
|
@ -123,30 +191,91 @@ export class Component extends HTMLElement {
|
||||||
this.root.ownHost = this
|
this.root.ownHost = this
|
||||||
|
|
||||||
Object.defineProperty(this, '$refs', {
|
Object.defineProperty(this, '$refs', {
|
||||||
value: Object.create(null),
|
value: Object.create(null)
|
||||||
enumerable: false
|
|
||||||
})
|
})
|
||||||
Object.defineProperty(this, '$events', {
|
Object.defineProperty(this, '$events', {
|
||||||
value: Object.create(null),
|
value: Object.create(null)
|
||||||
enumerable: false
|
|
||||||
})
|
})
|
||||||
|
|
||||||
this.created()
|
for (let [prop, options] of this.constructor[__props__]) {
|
||||||
|
this.#createProperty(prop, options)
|
||||||
|
// 按W3C规范, 在构造函数内不可设置节点的属性
|
||||||
|
// 所以这里只记录需要初始化的属性, 在#init()回调中才去修改
|
||||||
|
this[__changed_props__].set(prop, this[prop])
|
||||||
|
}
|
||||||
|
|
||||||
|
nextTick(_ => this.created())
|
||||||
|
}
|
||||||
|
|
||||||
|
#createProperty(name, options) {
|
||||||
|
let key = Symbol(name)
|
||||||
|
let descriptor
|
||||||
|
|
||||||
|
if (options.type === Array || options.type === Object) {
|
||||||
|
let proxyValue = this.#createProxy(null, options, name)
|
||||||
|
descriptor = {
|
||||||
|
get() {
|
||||||
|
return proxyValue
|
||||||
|
},
|
||||||
|
set(value) {
|
||||||
|
proxyValue = this.#createProxy(
|
||||||
|
fixedValue(value, options),
|
||||||
|
options,
|
||||||
|
name
|
||||||
|
)
|
||||||
|
this.$requestUpdate(name)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
descriptor = {
|
||||||
|
get() {
|
||||||
|
return this[key]
|
||||||
|
},
|
||||||
|
set(value) {
|
||||||
|
let oldValue = this[key]
|
||||||
|
value = fixedValue(value, options)
|
||||||
|
if (oldValue === value) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
this[key] = value
|
||||||
|
this.$requestUpdate(name)
|
||||||
|
safely.call(this, options.observer, value, oldValue)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
this[key] = options.default
|
||||||
|
}
|
||||||
|
|
||||||
|
Object.defineProperty(this, name, descriptor)
|
||||||
|
}
|
||||||
|
|
||||||
|
#createProxy(obj, options = {}, key) {
|
||||||
|
return new Proxy(obj || options.default, {
|
||||||
|
get: (target, prop, receiver) => {
|
||||||
|
let value = Reflect.get(target, prop, receiver)
|
||||||
|
// 当访问的值是对象时,需要对这个对象也进行代理
|
||||||
|
if (typeof value === 'object') {
|
||||||
|
return this.#createProxy(value, {}, key)
|
||||||
|
}
|
||||||
|
return value
|
||||||
|
},
|
||||||
|
set: (target, prop, value, receiver) => {
|
||||||
|
let oldValue = target[prop]
|
||||||
|
Reflect.set(target, prop, value, receiver)
|
||||||
|
|
||||||
|
this.$requestUpdate(key)
|
||||||
|
safely.call(this, options.observer, value, oldValue)
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
#init() {
|
#init() {
|
||||||
// 这里重新赋值一次, 用于清除掉因为 observer 修正产生的变化
|
for (let [prop, value] of this[__changed_props__]) {
|
||||||
this[__changed_props__] = new Map()
|
this.#prop2attr(prop, value)
|
||||||
// 初始化 props
|
|
||||||
this.constructor[__props__].forEach((options, prop) => {
|
|
||||||
this[prop] = this[prop] === void 0 ? options.default : this[prop]
|
|
||||||
})
|
|
||||||
|
|
||||||
// 若无定义props时, 手动执行一次渲染
|
|
||||||
if (this[__pending__] === false) {
|
|
||||||
this[__pending__] = true
|
|
||||||
nextTick(_ => this.#confirmUpdate())
|
|
||||||
}
|
}
|
||||||
|
// 这里要清除初始化产生的记录
|
||||||
|
this[__changed_props__].clear()
|
||||||
|
this.$requestUpdate()
|
||||||
}
|
}
|
||||||
|
|
||||||
#getPropOptions(name) {
|
#getPropOptions(name) {
|
||||||
|
@ -154,16 +283,19 @@ export class Component extends HTMLElement {
|
||||||
}
|
}
|
||||||
|
|
||||||
connectedCallback() {
|
connectedCallback() {
|
||||||
|
if (this.$animate) {
|
||||||
|
this.style.display = 'none'
|
||||||
|
}
|
||||||
|
this.removed = false
|
||||||
this.#init()
|
this.#init()
|
||||||
adoptStyles(this.root, this.constructor.styles)
|
adoptStyles(this.root, this.constructor.styles)
|
||||||
|
|
||||||
this[__children__]?.setConnected(true)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
disconnectedCallback() {
|
disconnectedCallback() {
|
||||||
this[__children__]?.setConnected(false)
|
if (this.keepAlive) {
|
||||||
|
nextTick(_ => this.deactivated())
|
||||||
if (!document.body.contains(this)) {
|
} else {
|
||||||
|
if (!document.body?.contains(this)) {
|
||||||
let $events = this.$events
|
let $events = this.$events
|
||||||
if ($events) {
|
if ($events) {
|
||||||
for (let name in $events) {
|
for (let name in $events) {
|
||||||
|
@ -172,14 +304,20 @@ export class Component extends HTMLElement {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
this.removed = true
|
||||||
|
}
|
||||||
|
nextTick(_ => this.unmounted())
|
||||||
}
|
}
|
||||||
this.unmounted()
|
|
||||||
}
|
}
|
||||||
// 监听属性变化
|
// 监听属性变化
|
||||||
attributeChangedCallback(name, old, val) {
|
attributeChangedCallback(name, old, val) {
|
||||||
if (old === val) {
|
if (old === val) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
if (name === KEEP_ALIVE) {
|
||||||
|
this.keepAlive = val !== null
|
||||||
|
return
|
||||||
|
}
|
||||||
this.#attr2prop(name, val, old)
|
this.#attr2prop(name, val, old)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -190,10 +328,11 @@ export class Component extends HTMLElement {
|
||||||
* @param value<String|Boolean|Number>
|
* @param value<String|Boolean|Number>
|
||||||
*/
|
*/
|
||||||
#prop2attr(name, value) {
|
#prop2attr(name, value) {
|
||||||
let options = this.#getPropOptions(name)
|
let options = this.#getPropOptions(name) || {}
|
||||||
|
let attrName = options.attrName
|
||||||
|
|
||||||
if (options.attribute === false) {
|
if (options.attribute === false || options.type === null) {
|
||||||
this.removeAttribute(name)
|
this.removeAttribute(attrName)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -201,17 +340,17 @@ export class Component extends HTMLElement {
|
||||||
case Number:
|
case Number:
|
||||||
case String:
|
case String:
|
||||||
if (value === null) {
|
if (value === null) {
|
||||||
this.removeAttribute(name)
|
this.removeAttribute(attrName)
|
||||||
} else {
|
} else {
|
||||||
this.setAttribute(name, value)
|
this.setAttribute(attrName, value)
|
||||||
}
|
}
|
||||||
break
|
break
|
||||||
|
|
||||||
case Boolean:
|
case Boolean:
|
||||||
if (value === null || value === false) {
|
if (value === null || value === false) {
|
||||||
this.removeAttribute(name)
|
this.removeAttribute(attrName)
|
||||||
} else {
|
} else {
|
||||||
this.setAttribute(name, '')
|
this.setAttribute(attrName, '')
|
||||||
}
|
}
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
|
@ -223,18 +362,35 @@ export class Component extends HTMLElement {
|
||||||
* @param value<String|Boolean|Number>
|
* @param value<String|Boolean|Number>
|
||||||
*/
|
*/
|
||||||
#attr2prop(name, value, old) {
|
#attr2prop(name, value, old) {
|
||||||
let _name = boolMap[name],
|
let _name = boolMap[name]
|
||||||
options
|
let options, propName
|
||||||
|
|
||||||
if (_name) {
|
if (_name) {
|
||||||
name = _name
|
name = _name
|
||||||
}
|
}
|
||||||
|
propName = camelize(name)
|
||||||
|
|
||||||
options = this.#getPropOptions(name)
|
options = this.#getPropOptions(propName)
|
||||||
this[name] = fixedValue(value, options)
|
|
||||||
|
if (options) {
|
||||||
|
value = fixedValue(value, options)
|
||||||
|
|
||||||
|
if (options.attribute === false || options.type === null) {
|
||||||
|
if (value === null) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if (value === this[propName]) {
|
||||||
|
this.removeAttribute(name)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
this[propName] = value
|
||||||
}
|
}
|
||||||
|
|
||||||
// 请求更新
|
// 请求更新
|
||||||
$requestUpdate(name, oldValue) {
|
$requestUpdate(name) {
|
||||||
if (name !== void 0) {
|
if (name !== void 0) {
|
||||||
this[__changed_props__].set(name, this[name])
|
this[__changed_props__].set(name, this[name])
|
||||||
this.#prop2attr(name, this[name])
|
this.#prop2attr(name, this[name])
|
||||||
|
@ -259,29 +415,43 @@ export class Component extends HTMLElement {
|
||||||
// 初始化时不触发updated回调
|
// 初始化时不触发updated回调
|
||||||
if (this[__mounted__] === false) {
|
if (this[__mounted__] === false) {
|
||||||
this[__mounted__] = true
|
this[__mounted__] = true
|
||||||
|
if (this.$animate?.immediate) {
|
||||||
|
this.$animate()
|
||||||
|
}
|
||||||
|
nextTick(_ => {
|
||||||
|
if (this.keepAlive) {
|
||||||
|
this.activated()
|
||||||
|
}
|
||||||
this.mounted()
|
this.mounted()
|
||||||
|
this.$requestUpdate()
|
||||||
|
})
|
||||||
} else {
|
} else {
|
||||||
this.updated(props)
|
nextTick(_ => this.updated(props))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#clearUpdate() {
|
#clearUpdate() {
|
||||||
this[__changed_props__] = new Map()
|
this[__changed_props__].clear()
|
||||||
this[__pending__] = false
|
this[__pending__] = false
|
||||||
}
|
}
|
||||||
|
|
||||||
// 渲染视图
|
// 渲染视图
|
||||||
#render() {
|
#render() {
|
||||||
|
try {
|
||||||
let ast = this.render()
|
let ast = this.render()
|
||||||
|
render(ast, this.root, {
|
||||||
this[__children__] = render(ast, this.root, {
|
host: this
|
||||||
host: this,
|
|
||||||
isConnected: !this[__mounted__] && this.isConnected
|
|
||||||
})
|
})
|
||||||
|
} catch (err) {
|
||||||
|
console.error(err)
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// 几个生命周期回调
|
// 几个生命周期回调
|
||||||
created() {}
|
created() {}
|
||||||
mounted() {}
|
mounted() {}
|
||||||
|
activated() {}
|
||||||
|
deactivated() {}
|
||||||
unmounted() {}
|
unmounted() {}
|
||||||
updated() {}
|
updated() {}
|
||||||
render() {
|
render() {
|
||||||
|
@ -296,7 +466,7 @@ export class Component extends HTMLElement {
|
||||||
unbind(this, type, callback, options)
|
unbind(this, type, callback, options)
|
||||||
}
|
}
|
||||||
|
|
||||||
$emit(type, data = {}) {
|
$emit(type, data = {}, stop = false) {
|
||||||
return fire(this, type, data)
|
return fire(this, type, data, stop)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
109
src/utils.js
109
src/utils.js
|
@ -4,20 +4,18 @@
|
||||||
* @date 2023/03/07 22:11:30
|
* @date 2023/03/07 22:11:30
|
||||||
*/
|
*/
|
||||||
|
|
||||||
function noop() {}
|
export function noop() {}
|
||||||
|
|
||||||
export function $(selector, container) {
|
export function $(selector, container, multi) {
|
||||||
|
let fn = multi ? 'querySelectorAll' : 'querySelector'
|
||||||
if (container) {
|
if (container) {
|
||||||
return container.querySelector(selector)
|
return container[fn](selector)
|
||||||
}
|
}
|
||||||
return document.body.querySelector(selector)
|
return document.body[fn](selector)
|
||||||
}
|
}
|
||||||
|
|
||||||
export function $$(selector, container) {
|
export function $$(selector, container) {
|
||||||
if (container) {
|
return $(selector, container, true)
|
||||||
return container.querySelectorAll(selector)
|
|
||||||
}
|
|
||||||
return document.body.querySelectorAll(selector)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export const nextTick = (function () {
|
export const nextTick = (function () {
|
||||||
|
@ -26,11 +24,14 @@ export const nextTick = (function () {
|
||||||
let bool = false
|
let bool = false
|
||||||
|
|
||||||
function callback() {
|
function callback() {
|
||||||
let n = queue.length
|
while (queue.length > 0) {
|
||||||
for (let i = 0; i < n; i++) {
|
let fn = queue.shift()
|
||||||
queue[i]()
|
try {
|
||||||
|
fn()
|
||||||
|
} catch (err) {
|
||||||
|
console.error(err)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
queue = queue.slice(n)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
new MutationObserver(callback).observe(node, { characterData: true })
|
new MutationObserver(callback).observe(node, { characterData: true })
|
||||||
|
@ -42,11 +43,46 @@ export const nextTick = (function () {
|
||||||
}
|
}
|
||||||
})()
|
})()
|
||||||
|
|
||||||
|
export function range(...args) {
|
||||||
|
let start = 0,
|
||||||
|
end = 0,
|
||||||
|
step = 1,
|
||||||
|
out = []
|
||||||
|
switch (args.length) {
|
||||||
|
case 1:
|
||||||
|
end = args[0]
|
||||||
|
break
|
||||||
|
case 2:
|
||||||
|
case 3:
|
||||||
|
;[start, end, step = 1] = args
|
||||||
|
step = Math.abs(step) || 1
|
||||||
|
break
|
||||||
|
}
|
||||||
|
|
||||||
|
if (start > end) {
|
||||||
|
;[start, end] = [end, start]
|
||||||
|
}
|
||||||
|
|
||||||
|
for (let i = start; i < end; i += step) {
|
||||||
|
out.push(i)
|
||||||
|
}
|
||||||
|
return out
|
||||||
|
}
|
||||||
|
|
||||||
//驼峰转换为连字符线风格
|
//驼峰转换为连字符线风格
|
||||||
export function hyphen(target) {
|
export function hyphen(target) {
|
||||||
return target.replace(/([a-z\d])([A-Z]+)/g, '$1-$2').toLowerCase()
|
return target.replace(/([a-z\d])([A-Z]+)/g, '$1-$2').toLowerCase()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//连字符转换为驼峰风格
|
||||||
|
export function camelize(target) {
|
||||||
|
//提前判断,提高效率
|
||||||
|
if (target.indexOf('-') < 0) {
|
||||||
|
return target
|
||||||
|
}
|
||||||
|
return target.replace(/\-([a-z])/g, (m, s) => s.toUpperCase())
|
||||||
|
}
|
||||||
|
|
||||||
//取得距离页面左上角的坐标
|
//取得距离页面左上角的坐标
|
||||||
export function offset(node) {
|
export function offset(node) {
|
||||||
try {
|
try {
|
||||||
|
@ -72,14 +108,20 @@ export function offset(node) {
|
||||||
/**
|
/**
|
||||||
* 事件绑定
|
* 事件绑定
|
||||||
*/
|
*/
|
||||||
export function bind(dom, type, selector, fn, phase = true) {
|
export function bind(dom, type = '', selector, fn, phase = false) {
|
||||||
let events = type.split(',')
|
let events = type.split(',')
|
||||||
let callback
|
let callback
|
||||||
let isWc = dom.host === dom
|
let isWc = dom && dom.host === dom
|
||||||
let host = isWc ? dom : null
|
let host = isWc ? dom : null
|
||||||
|
|
||||||
|
if (!dom || !type) {
|
||||||
|
return console.error(
|
||||||
|
"Argument Error: function bind's arg 1 must be a document obejct"
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
if (typeof selector === 'function') {
|
if (typeof selector === 'function') {
|
||||||
phase = fn
|
phase = fn || false
|
||||||
fn = selector
|
fn = selector
|
||||||
selector = null
|
selector = null
|
||||||
} else {
|
} else {
|
||||||
|
@ -89,9 +131,9 @@ export function bind(dom, type, selector, fn, phase = true) {
|
||||||
fn = fn || noop
|
fn = fn || noop
|
||||||
}
|
}
|
||||||
|
|
||||||
if (isWc === false && dom !== document && dom !== document.body) {
|
if (isWc === false) {
|
||||||
let node = dom.parentNode
|
let node = dom
|
||||||
while (node) {
|
while (node && node !== document.body && node !== document) {
|
||||||
if (node.ownHost) {
|
if (node.ownHost) {
|
||||||
isWc = true
|
isWc = true
|
||||||
host = node.ownHost
|
host = node.ownHost
|
||||||
|
@ -126,12 +168,22 @@ export function bind(dom, type, selector, fn, phase = true) {
|
||||||
events.forEach(function (t) {
|
events.forEach(function (t) {
|
||||||
t = t.trim()
|
t = t.trim()
|
||||||
if (isWc) {
|
if (isWc) {
|
||||||
if (host.$events[t]) {
|
host.$events[t] ??= []
|
||||||
host.$events[t].push({ el: dom, listener: callback, options: phase })
|
|
||||||
} else {
|
let _list = host.$events[t]
|
||||||
host.$events[t] = [{ el: dom, listener: callback, options: phase }]
|
if (_list.length) {
|
||||||
|
let idx = _list.findIndex(
|
||||||
|
it =>
|
||||||
|
it.el === dom && it.listener === callback && it.options === phase
|
||||||
|
)
|
||||||
|
if (idx > -1) {
|
||||||
|
let item = _list[idx]
|
||||||
|
_list.splice(idx, 1)
|
||||||
|
dom.removeEventListener(t, item.listener, item.options)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
_list.push({ el: dom, listener: callback, options: phase })
|
||||||
|
}
|
||||||
dom.addEventListener(t, callback, phase)
|
dom.addEventListener(t, callback, phase)
|
||||||
})
|
})
|
||||||
return callback
|
return callback
|
||||||
|
@ -140,7 +192,7 @@ export function bind(dom, type, selector, fn, phase = true) {
|
||||||
/**
|
/**
|
||||||
* 解除事件绑定
|
* 解除事件绑定
|
||||||
*/
|
*/
|
||||||
export function unbind(dom, type, fn = noop, phase = false) {
|
export function unbind(dom, type = '', fn = noop, phase = false) {
|
||||||
let events = type.split(',')
|
let events = type.split(',')
|
||||||
events.forEach(function (t) {
|
events.forEach(function (t) {
|
||||||
dom.removeEventListener(t.trim(), fn, phase)
|
dom.removeEventListener(t.trim(), fn, phase)
|
||||||
|
@ -176,9 +228,14 @@ export function clearOutsideClick(fn = noop) {
|
||||||
unbind(document, 'mousedown', fn)
|
unbind(document, 'mousedown', fn)
|
||||||
}
|
}
|
||||||
|
|
||||||
export function fire(el, name = 'click', data = {}) {
|
/**
|
||||||
let ev = document.createEvent('Events')
|
* @param el <DOM> 节点
|
||||||
ev.initEvent(name, true, true)
|
* @param name <String> 自定义的事件名
|
||||||
|
* @param data <Object> 要合并进event对象的参数
|
||||||
|
* @param stop <Boolean> 是否禁止事件冒泡
|
||||||
|
*/
|
||||||
|
export function fire(el, name = 'click', data = {}, stop) {
|
||||||
|
let ev = new Event(name, { bubbles: !stop, cancelable: true })
|
||||||
Object.assign(ev, data)
|
Object.assign(ev, data)
|
||||||
el.dispatchEvent(ev)
|
el.dispatchEvent(ev)
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,47 @@
|
||||||
|
<!doctype html>
|
||||||
|
<html lang="zh-CN">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no">
|
||||||
|
<title>wkit test page</title>
|
||||||
|
<style>
|
||||||
|
body {line-height: 1.5;font-size:14px;background:var(--page-color);color:var(--text-color);}
|
||||||
|
::-webkit-scrollbar {
|
||||||
|
width: 6px;
|
||||||
|
}
|
||||||
|
::-webkit-scrollbar-track {
|
||||||
|
border-radius: 10px;
|
||||||
|
background: var(--summary-bg-color);
|
||||||
|
}
|
||||||
|
::-webkit-scrollbar-thumb {
|
||||||
|
border-radius: 3px;
|
||||||
|
background: var(--border-color-dark);
|
||||||
|
}
|
||||||
|
::-webkit-scrollbar-thumb:hover {
|
||||||
|
background: var(--summary-color);
|
||||||
|
}
|
||||||
|
@media screen and (max-width: 480px) {
|
||||||
|
::-webkit-scrollbar {
|
||||||
|
display: none;
|
||||||
|
width: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
<script type="importmap">
|
||||||
|
{
|
||||||
|
"imports":{
|
||||||
|
"es.shim":"//jscdn.ink/es.shim/latest/index.js",
|
||||||
|
"wkit":"//127.0.0.1:9999/src/index.js",
|
||||||
|
"wkitd":"//jscdn.ink/wkitd/1.3.10/index.js",
|
||||||
|
"fetch":"//jscdn.ink/@bytedo/fetch/latest/next.js",
|
||||||
|
"@bd/ui/":"//jscdn.ink/@bd/ui/0.1.16/"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
<script type="module" src="./test.js"></script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<wc-app></wc-app>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -0,0 +1,31 @@
|
||||||
|
import { html, Component, live } from 'wkit'
|
||||||
|
|
||||||
|
class App extends Component {
|
||||||
|
foo = ''
|
||||||
|
|
||||||
|
bar = { a: 333 }
|
||||||
|
|
||||||
|
created() {
|
||||||
|
// live = live.bind(this)
|
||||||
|
}
|
||||||
|
|
||||||
|
reset() {
|
||||||
|
this.foo = ''
|
||||||
|
this.bar.a = '666'
|
||||||
|
this.$requestUpdate()
|
||||||
|
}
|
||||||
|
|
||||||
|
render() {
|
||||||
|
return html`
|
||||||
|
<p>${this.foo}</p>
|
||||||
|
<p>${this.bar.a}</p>
|
||||||
|
<input value=${live.bind(this, 'bar.a')} />
|
||||||
|
<input value=${this.foo} />
|
||||||
|
<input value=${live.bind(this, 'foo')} />
|
||||||
|
|
||||||
|
<button @click=${this.reset}>666</button>
|
||||||
|
`
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
App.reg('app')
|
Loading…
Reference in New Issue