移除部分兼容处理;移除表单验证指令
parent
8b21f0a800
commit
099378aedd
|
@ -8,13 +8,13 @@ import './text'
|
||||||
import './css'
|
import './css'
|
||||||
import './expr'
|
import './expr'
|
||||||
|
|
||||||
import './attr.modern'
|
import './attr'
|
||||||
import './html'
|
import './html'
|
||||||
import './if'
|
import './if'
|
||||||
import './on'
|
import './on'
|
||||||
import './for'
|
import './for'
|
||||||
|
|
||||||
import './class.hover.active'
|
import './class.hover.active'
|
||||||
import './duplex/modern'
|
import './duplex/index'
|
||||||
import './rules'
|
// import './rules'
|
||||||
import './validate'
|
// import './validate'
|
||||||
|
|
|
@ -1,10 +1,6 @@
|
||||||
import { Anot, escapeRegExp } from '../seed/core'
|
import { Anot, escapeRegExp } from '../seed/core'
|
||||||
import { $$skipArray } from '../vmodel/reserved'
|
import { $$skipArray } from '../vmodel/reserved'
|
||||||
|
|
||||||
/*
|
|
||||||
https://github.com/hufyhang/orderBy/blob/master/index.js
|
|
||||||
*/
|
|
||||||
|
|
||||||
export function orderBy(array, by, decend) {
|
export function orderBy(array, by, decend) {
|
||||||
var type = Anot.type(array)
|
var type = Anot.type(array)
|
||||||
if (type !== 'array' && type !== 'object') throw 'orderBy只能处理对象或数组'
|
if (type !== 'array' && type !== 'object') throw 'orderBy只能处理对象或数组'
|
||||||
|
@ -88,14 +84,7 @@ export function filterBy(array, search, ...args) {
|
||||||
var target = isArray ? [] : {}
|
var target = isArray ? [] : {}
|
||||||
__repeat(array, isArray, function(key) {
|
__repeat(array, isArray, function(key) {
|
||||||
var val = array[key]
|
var val = array[key]
|
||||||
if (
|
if (criteria.apply({ key }, [val, key].concat(args))) {
|
||||||
criteria.apply(
|
|
||||||
{
|
|
||||||
key: key
|
|
||||||
},
|
|
||||||
[val, key].concat(args)
|
|
||||||
)
|
|
||||||
) {
|
|
||||||
if (isArray) {
|
if (isArray) {
|
||||||
target.push(val)
|
target.push(val)
|
||||||
} else {
|
} else {
|
||||||
|
@ -121,7 +110,9 @@ export function selectBy(data, array, defaults) {
|
||||||
|
|
||||||
export function limitBy(input, limit, begin) {
|
export function limitBy(input, limit, begin) {
|
||||||
var type = Anot.type(input)
|
var type = Anot.type(input)
|
||||||
if (type !== 'array' && type !== 'object') throw 'limitBy只能处理对象或数组'
|
if (type !== 'array' && type !== 'object') {
|
||||||
|
throw 'limitBy只能处理对象或数组'
|
||||||
|
}
|
||||||
//必须是数值
|
//必须是数值
|
||||||
if (typeof limit !== 'number') {
|
if (typeof limit !== 'number') {
|
||||||
return input
|
return input
|
||||||
|
|
|
@ -3,7 +3,7 @@ import { fromDOM } from '../vtree/fromDOM'
|
||||||
import { fromString } from '../vtree/fromString'
|
import { fromString } from '../vtree/fromString'
|
||||||
|
|
||||||
import { VFragment } from '../vdom/VFragment'
|
import { VFragment } from '../vdom/VFragment'
|
||||||
import { Directive } from './Directive'
|
import { Directive } from './directive'
|
||||||
|
|
||||||
import { orphanTag } from '../vtree/orphanTag'
|
import { orphanTag } from '../vtree/orphanTag'
|
||||||
import { parseAttributes, eventMap } from '../parser/attributes'
|
import { parseAttributes, eventMap } from '../parser/attributes'
|
||||||
|
@ -11,6 +11,8 @@ import { parseInterpolate } from '../parser/interpolate'
|
||||||
|
|
||||||
import { startWith, groupTree, dumpTree, getRange } from './share'
|
import { startWith, groupTree, dumpTree, getRange } from './share'
|
||||||
|
|
||||||
|
var viewID
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 生成一个渲染器,并作为它第一个遇到的ms-controller对应的VM的$render属性
|
* 生成一个渲染器,并作为它第一个遇到的ms-controller对应的VM的$render属性
|
||||||
* @param {String|DOM} node
|
* @param {String|DOM} node
|
||||||
|
@ -25,7 +27,9 @@ Anot.scan = function(node, vm, beforeReady) {
|
||||||
/**
|
/**
|
||||||
* Anot.scan 的内部实现
|
* Anot.scan 的内部实现
|
||||||
*/
|
*/
|
||||||
function Render(node, vm, beforeReady) {
|
|
||||||
|
class Render {
|
||||||
|
constructor(node, vm, beforeReady) {
|
||||||
this.root = node //如果传入的字符串,确保只有一个标签作为根节点
|
this.root = node //如果传入的字符串,确保只有一个标签作为根节点
|
||||||
this.vm = vm
|
this.vm = vm
|
||||||
this.beforeReady = beforeReady
|
this.beforeReady = beforeReady
|
||||||
|
@ -33,9 +37,8 @@ function Render(node, vm, beforeReady) {
|
||||||
this.callbacks = []
|
this.callbacks = []
|
||||||
this.directives = []
|
this.directives = []
|
||||||
this.init()
|
this.init()
|
||||||
}
|
}
|
||||||
|
|
||||||
Render.prototype = {
|
|
||||||
/**
|
/**
|
||||||
* 开始扫描指定区域
|
* 开始扫描指定区域
|
||||||
* 收集绑定属性
|
* 收集绑定属性
|
||||||
|
@ -50,15 +53,13 @@ Render.prototype = {
|
||||||
} else if (typeof this.root === 'string') {
|
} else if (typeof this.root === 'string') {
|
||||||
vnodes = fromString(this.root) //转换虚拟DOM
|
vnodes = fromString(this.root) //转换虚拟DOM
|
||||||
} else {
|
} else {
|
||||||
return console.warn(
|
return console.warn('Anot.scan()第1个参数,只能是节点对象或节点字符串')
|
||||||
'Anot.scan first argument must element or HTML string'
|
|
||||||
)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
this.root = vnodes[0]
|
this.root = vnodes[0]
|
||||||
this.vnodes = vnodes
|
this.vnodes = vnodes
|
||||||
this.scanChildren(vnodes, this.vm, true)
|
this.scanChildren(vnodes, this.vm, true)
|
||||||
},
|
}
|
||||||
|
|
||||||
scanChildren(children, scope, isRoot) {
|
scanChildren(children, scope, isRoot) {
|
||||||
for (var i = 0; i < children.length; i++) {
|
for (var i = 0; i < children.length; i++) {
|
||||||
|
@ -81,7 +82,7 @@ Render.prototype = {
|
||||||
if (isRoot) {
|
if (isRoot) {
|
||||||
this.complete()
|
this.complete()
|
||||||
}
|
}
|
||||||
},
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 从文本节点获取指令
|
* 从文本节点获取指令
|
||||||
|
@ -99,7 +100,7 @@ Render.prototype = {
|
||||||
}
|
}
|
||||||
])
|
])
|
||||||
}
|
}
|
||||||
},
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 从注释节点获取指令
|
* 从注释节点获取指令
|
||||||
|
@ -112,7 +113,7 @@ Render.prototype = {
|
||||||
if (startWith(vdom.nodeValue, 'ms-for:')) {
|
if (startWith(vdom.nodeValue, 'ms-for:')) {
|
||||||
this.getForBinding(vdom, scope, parentChildren)
|
this.getForBinding(vdom, scope, parentChildren)
|
||||||
}
|
}
|
||||||
},
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 从元素节点的nodeName与属性中获取指令
|
* 从元素节点的nodeName与属性中获取指令
|
||||||
|
@ -223,7 +224,7 @@ Render.prototype = {
|
||||||
) {
|
) {
|
||||||
this.scanChildren(children, scope, false)
|
this.scanChildren(children, scope, false)
|
||||||
}
|
}
|
||||||
},
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 将绑定属性转换为指令
|
* 将绑定属性转换为指令
|
||||||
|
@ -245,7 +246,7 @@ Render.prototype = {
|
||||||
fn()
|
fn()
|
||||||
}
|
}
|
||||||
this.optimizeDirectives()
|
this.optimizeDirectives()
|
||||||
},
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 将收集到的绑定属性进行深加工,最后转换指令
|
* 将收集到的绑定属性进行深加工,最后转换指令
|
||||||
|
@ -276,7 +277,7 @@ Render.prototype = {
|
||||||
this.directives.push(directive)
|
this.directives.push(directive)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 修改指令的update与callback方法,让它们以后执行时更加高效
|
* 修改指令的update与callback方法,让它们以后执行时更加高效
|
||||||
|
@ -288,12 +289,13 @@ Render.prototype = {
|
||||||
el.update = newUpdate
|
el.update = newUpdate
|
||||||
el._isScheduled = false
|
el._isScheduled = false
|
||||||
}
|
}
|
||||||
},
|
}
|
||||||
update: function() {
|
|
||||||
|
update() {
|
||||||
for (var i = 0, el; (el = this.directives[i++]); ) {
|
for (var i = 0, el; (el = this.directives[i++]); ) {
|
||||||
el.update()
|
el.update()
|
||||||
}
|
}
|
||||||
},
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 销毁所有指令
|
* 销毁所有指令
|
||||||
|
@ -308,7 +310,7 @@ Render.prototype = {
|
||||||
for (let i in this) {
|
for (let i in this) {
|
||||||
if (i !== 'dispose') delete this[i]
|
if (i !== 'dispose') delete this[i]
|
||||||
}
|
}
|
||||||
},
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 将循环区域转换为for指令
|
* 将循环区域转换为for指令
|
||||||
|
@ -341,7 +343,7 @@ Render.prototype = {
|
||||||
parentChildren
|
parentChildren
|
||||||
}
|
}
|
||||||
])
|
])
|
||||||
},
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 在带ms-for元素节点旁添加两个注释节点,组成循环区域
|
* 在带ms-for元素节点旁添加两个注释节点,组成循环区域
|
||||||
|
@ -370,7 +372,6 @@ Render.prototype = {
|
||||||
this.getForBinding(begin, scope, parentChildren, props['data-for-rendered'])
|
this.getForBinding(begin, scope, parentChildren, props['data-for-rendered'])
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
var viewID
|
|
||||||
|
|
||||||
function newUpdate() {
|
function newUpdate() {
|
||||||
var oldVal = this.beforeUpdate()
|
var oldVal = this.beforeUpdate()
|
||||||
|
|
|
@ -8,7 +8,9 @@
|
||||||
|
|
||||||
removed <-- <-- <-- <-- <-- <-- <-- <-- <-- <-- <-- added
|
removed <-- <-- <-- <-- <-- <-- <-- <-- <-- <-- <-- added
|
||||||
*/
|
*/
|
||||||
export function Cache(maxLength) {
|
|
||||||
|
export class Cache {
|
||||||
|
constructor(maxLength) {
|
||||||
// 标识当前缓存数组的大小
|
// 标识当前缓存数组的大小
|
||||||
this.size = 0
|
this.size = 0
|
||||||
// 标识缓存数组能达到的最大长度
|
// 标识缓存数组能达到的最大长度
|
||||||
|
@ -17,15 +19,10 @@ export function Cache(maxLength) {
|
||||||
|
|
||||||
this.head = this.tail = void 0
|
this.head = this.tail = void 0
|
||||||
this._keymap = {}
|
this._keymap = {}
|
||||||
}
|
}
|
||||||
|
|
||||||
Cache.prototype = {
|
|
||||||
|
|
||||||
put(key, value) {
|
put(key, value) {
|
||||||
var entry = {
|
var entry = { key, value }
|
||||||
key: key,
|
|
||||||
value: value
|
|
||||||
}
|
|
||||||
this._keymap[key] = entry
|
this._keymap[key] = entry
|
||||||
if (this.tail) {
|
if (this.tail) {
|
||||||
// 如果存在tail(缓存数组的长度不为0),将tail指向新的 entry
|
// 如果存在tail(缓存数组的长度不为0),将tail指向新的 entry
|
||||||
|
@ -44,7 +41,7 @@ Cache.prototype = {
|
||||||
this.size++
|
this.size++
|
||||||
}
|
}
|
||||||
return value
|
return value
|
||||||
},
|
}
|
||||||
|
|
||||||
shift() {
|
shift() {
|
||||||
/* istanbul ignore next */
|
/* istanbul ignore next */
|
||||||
|
@ -54,22 +51,19 @@ Cache.prototype = {
|
||||||
// 删除 head ,并改变指向
|
// 删除 head ,并改变指向
|
||||||
this.head = this.head.newer
|
this.head = this.head.newer
|
||||||
// 同步更新 _keymap 里面的属性值
|
// 同步更新 _keymap 里面的属性值
|
||||||
this.head.older =
|
this.head.older = entry.newer = entry.older = this._keymap[
|
||||||
entry.newer =
|
entry.key
|
||||||
entry.older =
|
] = void 0
|
||||||
this._keymap[entry.key] =
|
|
||||||
void 0
|
|
||||||
delete this._keymap[entry.key] //#1029
|
delete this._keymap[entry.key] //#1029
|
||||||
// 同步更新 缓存数组的长度
|
// 同步更新 缓存数组的长度
|
||||||
this.size--
|
this.size--
|
||||||
}
|
}
|
||||||
},
|
}
|
||||||
|
|
||||||
get(key) {
|
get(key) {
|
||||||
var entry = this._keymap[key]
|
var entry = this._keymap[key]
|
||||||
// 如果查找不到含有`key`这个属性的缓存对象
|
// 如果查找不到含有`key`这个属性的缓存对象
|
||||||
if (entry === void 0)
|
if (entry === void 0) return
|
||||||
return
|
|
||||||
// 如果查找到的缓存对象已经是 tail (最近使用过的)
|
// 如果查找到的缓存对象已经是 tail (最近使用过的)
|
||||||
/* istanbul ignore if */
|
/* istanbul ignore if */
|
||||||
if (entry === this.tail) {
|
if (entry === this.tail) {
|
||||||
|
|
|
@ -24,8 +24,8 @@ export function oneObject(array, val) {
|
||||||
if (typeof array === 'string') {
|
if (typeof array === 'string') {
|
||||||
array = array.match(rword) || []
|
array = array.match(rword) || []
|
||||||
}
|
}
|
||||||
var result = {},
|
var result = {}
|
||||||
value = val !== void 0 ? val : 1
|
var value = val !== void 0 ? val : 1
|
||||||
for (var i = 0, n = array.length; i < n; i++) {
|
for (var i = 0, n = array.length; i < n; i++) {
|
||||||
result[array[i]] = value
|
result[array[i]] = value
|
||||||
}
|
}
|
||||||
|
@ -114,9 +114,10 @@ export var validators = {}
|
||||||
export var cssHooks = {}
|
export var cssHooks = {}
|
||||||
|
|
||||||
window.Anot = Anot
|
window.Anot = Anot
|
||||||
|
Anot.platform = platform
|
||||||
|
|
||||||
|
/* istanbul ignore next */
|
||||||
export function createFragment() {
|
export function createFragment() {
|
||||||
/* istanbul ignore next */
|
|
||||||
return document.createDocumentFragment()
|
return document.createDocumentFragment()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -6,22 +6,20 @@ var rarraylike = /(Array|List|Collection|Map|Arguments|Set)\]$/
|
||||||
|
|
||||||
// Anot.type
|
// Anot.type
|
||||||
var class2type = {}
|
var class2type = {}
|
||||||
'Boolean Number String Function Array Date RegExp Object Error'.replace(
|
'Boolean,Number,String,Function,Array,Date,RegExp,Object,Error,AsyncFunction,Promise,Generator,GeneratorFunction'
|
||||||
Anot.rword,
|
.split(',')
|
||||||
function(name) {
|
.forEach(function(name) {
|
||||||
class2type['[object ' + name + ']'] = name.toLowerCase()
|
class2type['[object ' + name + ']'] = name.toLowerCase()
|
||||||
}
|
})
|
||||||
)
|
|
||||||
|
|
||||||
Anot.type = function(obj) {
|
Anot.type = function(obj) {
|
||||||
//取得目标的类型
|
if (obj) {
|
||||||
if (obj == null) {
|
|
||||||
return String(obj)
|
|
||||||
}
|
|
||||||
// 早期的webkit内核浏览器实现了已废弃的ecma262v4标准,可以将正则字面量当作函数使用,因此typeof在判定正则时会返回function
|
// 早期的webkit内核浏览器实现了已废弃的ecma262v4标准,可以将正则字面量当作函数使用,因此typeof在判定正则时会返回function
|
||||||
return typeof obj === 'object' || typeof obj === 'function'
|
return typeof obj === 'object' || typeof obj === 'function'
|
||||||
? class2type[inspect.call(obj)] || 'object'
|
? class2type[inspect.call(obj)] || 'object'
|
||||||
: typeof obj
|
: typeof obj
|
||||||
|
}
|
||||||
|
return String(obj)
|
||||||
}
|
}
|
||||||
|
|
||||||
Anot.isFunction = function(fn) {
|
Anot.isFunction = function(fn) {
|
||||||
|
@ -123,8 +121,8 @@ export function isArrayLike(obj) {
|
||||||
}
|
}
|
||||||
|
|
||||||
Anot.each = function(obj, fn) {
|
Anot.each = function(obj, fn) {
|
||||||
if (obj) {
|
|
||||||
//排除null, undefined
|
//排除null, undefined
|
||||||
|
if (obj) {
|
||||||
var i = 0
|
var i = 0
|
||||||
if (isArrayLike(obj)) {
|
if (isArrayLike(obj)) {
|
||||||
for (var n = obj.length; i < n; i++) {
|
for (var n = obj.length; i < n; i++) {
|
||||||
|
|
|
@ -5,12 +5,15 @@ import {
|
||||||
propagateChanged
|
propagateChanged
|
||||||
} from './transaction'
|
} from './transaction'
|
||||||
import { Anot, platform } from '../seed/core'
|
import { Anot, platform } from '../seed/core'
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
与Computed等共享UUID
|
与Computed等共享UUID
|
||||||
*/
|
*/
|
||||||
export let obid = 1
|
export let obid = 1
|
||||||
export function Mutation(expr, value, vm) {
|
|
||||||
|
export class Mutation {
|
||||||
|
constructor(expr, value, vm) {
|
||||||
//构造函数
|
//构造函数
|
||||||
this.expr = expr
|
this.expr = expr
|
||||||
if (value) {
|
if (value) {
|
||||||
|
@ -28,9 +31,8 @@ export function Mutation(expr, value, vm) {
|
||||||
this.updateVersion()
|
this.updateVersion()
|
||||||
this.mapIDs = {}
|
this.mapIDs = {}
|
||||||
this.observers = []
|
this.observers = []
|
||||||
}
|
}
|
||||||
|
|
||||||
Mutation.prototype = {
|
|
||||||
get() {
|
get() {
|
||||||
if (Anot.trackingAction) {
|
if (Anot.trackingAction) {
|
||||||
this.collect() //被收集
|
this.collect() //被收集
|
||||||
|
@ -52,22 +54,7 @@ Mutation.prototype = {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return this.value
|
return this.value
|
||||||
},
|
}
|
||||||
|
|
||||||
collect() {
|
|
||||||
// Anot.track(name, '被收集')
|
|
||||||
reportObserved(this)
|
|
||||||
},
|
|
||||||
|
|
||||||
updateVersion() {
|
|
||||||
this.version = Math.random() + Math.random()
|
|
||||||
},
|
|
||||||
|
|
||||||
notify() {
|
|
||||||
transactionStart()
|
|
||||||
propagateChanged(this)
|
|
||||||
transactionEnd()
|
|
||||||
},
|
|
||||||
|
|
||||||
set(newValue) {
|
set(newValue) {
|
||||||
var oldValue = this.value
|
var oldValue = this.value
|
||||||
|
@ -87,4 +74,18 @@ Mutation.prototype = {
|
||||||
this.notify()
|
this.notify()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
collect() {
|
||||||
|
// Anot.track(name, '被收集')
|
||||||
|
reportObserved(this)
|
||||||
|
}
|
||||||
|
|
||||||
|
updateVersion() {
|
||||||
|
this.version = Math.random() + Math.random()
|
||||||
|
}
|
||||||
|
|
||||||
|
notify() {
|
||||||
|
transactionStart()
|
||||||
|
propagateChanged(this)
|
||||||
|
transactionEnd()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,10 +3,10 @@ import { voidTag } from './voidTag'
|
||||||
import { makeOrphan } from './makeOrphan'
|
import { makeOrphan } from './makeOrphan'
|
||||||
|
|
||||||
export function fromDOM(dom) {
|
export function fromDOM(dom) {
|
||||||
return [from(dom)]
|
return [_from(dom)]
|
||||||
}
|
}
|
||||||
|
|
||||||
export function from(node) {
|
export function _from(node) {
|
||||||
var type = node.nodeName.toLowerCase()
|
var type = node.nodeName.toLowerCase()
|
||||||
switch (type) {
|
switch (type) {
|
||||||
case '#text':
|
case '#text':
|
||||||
|
@ -24,7 +24,7 @@ export function from(node) {
|
||||||
isVoidTag: !!voidTag[type],
|
isVoidTag: !!voidTag[type],
|
||||||
props: props
|
props: props
|
||||||
}
|
}
|
||||||
if(type === 'option'){
|
if (type === 'option') {
|
||||||
//即便你设置了option.selected = true,
|
//即便你设置了option.selected = true,
|
||||||
//option.attributes也找不到selected属性
|
//option.attributes也找不到selected属性
|
||||||
props.selected = node.selected
|
props.selected = node.selected
|
||||||
|
@ -36,8 +36,8 @@ export function from(node) {
|
||||||
}
|
}
|
||||||
} else if (!vnode.isVoidTag) {
|
} else if (!vnode.isVoidTag) {
|
||||||
vnode.children = []
|
vnode.children = []
|
||||||
for (var i = 0, el; el = node.childNodes[i++];) {
|
for (var i = 0, el; (el = node.childNodes[i++]); ) {
|
||||||
var child = from(el)
|
var child = _from(el)
|
||||||
if (/\S/.test(child.nodeValue)) {
|
if (/\S/.test(child.nodeValue)) {
|
||||||
vnode.children.push(child)
|
vnode.children.push(child)
|
||||||
}
|
}
|
||||||
|
@ -61,10 +61,10 @@ function markProps(node, attrs) {
|
||||||
if (rformElement.test(node.nodeName)) {
|
if (rformElement.test(node.nodeName)) {
|
||||||
ret.type = node.type
|
ret.type = node.type
|
||||||
var a = node.getAttributeNode('value')
|
var a = node.getAttributeNode('value')
|
||||||
if (a && /\S/.test(a.value)) { //IE6,7中无法取得checkbox,radio的value
|
if (a && /\S/.test(a.value)) {
|
||||||
|
//IE6,7中无法取得checkbox,radio的value
|
||||||
ret.value = a.value
|
ret.value = a.value
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
var style = node.style.cssText
|
var style = node.style.cssText
|
||||||
if (style) {
|
if (style) {
|
||||||
|
|
|
@ -1,5 +1,29 @@
|
||||||
import { Anot, oneObject } from '../seed/core'
|
import { Anot, oneObject } from '../seed/core'
|
||||||
|
|
||||||
|
var pNestChild = oneObject('div,ul,ol,dl,table,h1,h2,h3,h4,h5,h6,form,fieldset')
|
||||||
|
var tNestChild = makeObject('tr,style,script')
|
||||||
|
var nestObject = {
|
||||||
|
p: pNestChild,
|
||||||
|
select: makeObject('option,optgroup,#text'),
|
||||||
|
optgroup: makeObject('option,#text'),
|
||||||
|
option: makeObject('#text'),
|
||||||
|
tr: makeObject('th,td,style,script'),
|
||||||
|
|
||||||
|
tbody: tNestChild,
|
||||||
|
tfoot: tNestChild,
|
||||||
|
thead: tNestChild,
|
||||||
|
colgroup: makeObject('col'),
|
||||||
|
// table: oneObject('caption,colgroup,tbody,thead,tfoot,style,script,template,#document-fragment'),
|
||||||
|
head: makeObject(
|
||||||
|
'base,basefont,bgsound,link,style,script,meta,title,noscript,noframes'
|
||||||
|
),
|
||||||
|
html: oneObject('head,body')
|
||||||
|
}
|
||||||
|
|
||||||
|
function makeObject(str) {
|
||||||
|
return oneObject(str + ',template,#document-fragment,#comment')
|
||||||
|
}
|
||||||
|
|
||||||
export function validateDOMNesting(parent, child) {
|
export function validateDOMNesting(parent, child) {
|
||||||
var parentTag = parent.nodeName
|
var parentTag = parent.nodeName
|
||||||
var tag = child.nodeName
|
var tag = child.nodeName
|
||||||
|
@ -8,16 +32,16 @@ export function validateDOMNesting(parent, child) {
|
||||||
if (parentTag === 'p') {
|
if (parentTag === 'p') {
|
||||||
if (pNestChild[tag]) {
|
if (pNestChild[tag]) {
|
||||||
console.warn(
|
console.warn(
|
||||||
'P element can not add these childlren:\n' + Object.keys(pNestChild)
|
'P标签节点不允许以下类型的子节点:\n' + Object.keys(pNestChild)
|
||||||
)
|
)
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
} else if (!parentChild[tag]) {
|
} else if (!parentChild[tag]) {
|
||||||
console.warn(
|
console.warn(
|
||||||
parentTag.toUpperCase() +
|
parentTag.toUpperCase() +
|
||||||
'element only add these children:\n' +
|
'标签节点只能增加以下子节点:\n' +
|
||||||
Object.keys(parentChild) +
|
Object.keys(parentChild) +
|
||||||
'\nbut you add ' +
|
'\n当前子节点为:' +
|
||||||
tag.toUpperCase() +
|
tag.toUpperCase() +
|
||||||
' !!'
|
' !!'
|
||||||
)
|
)
|
||||||
|
@ -26,38 +50,3 @@ export function validateDOMNesting(parent, child) {
|
||||||
}
|
}
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
|
||||||
function makeObject(str) {
|
|
||||||
return oneObject(str + ',template,#document-fragment,#comment')
|
|
||||||
}
|
|
||||||
var pNestChild = oneObject('div,ul,ol,dl,table,h1,h2,h3,h4,h5,h6,form,fieldset')
|
|
||||||
var tNestChild = makeObject('tr,style,script')
|
|
||||||
var nestObject = {
|
|
||||||
p: pNestChild,
|
|
||||||
// https://html.spec.whatwg.org/multipage/syntax.html#parsing-main-inselect
|
|
||||||
select: makeObject('option,optgroup,#text'),
|
|
||||||
optgroup: makeObject('option,#text'),
|
|
||||||
option: makeObject('#text'),
|
|
||||||
// https://html.spec.whatwg.org/multipage/syntax.html#parsing-main-intd
|
|
||||||
// https://html.spec.whatwg.org/multipage/syntax.html#parsing-main-incaption
|
|
||||||
// No special behavior since these rules fall back to "in body" mode for
|
|
||||||
// all except special table nodes which cause bad parsing behavior anyway.
|
|
||||||
|
|
||||||
// https://html.spec.whatwg.org/multipage/syntax.html#parsing-main-intr
|
|
||||||
tr: makeObject('th,td,style,script'),
|
|
||||||
|
|
||||||
// https://html.spec.whatwg.org/multipage/syntax.html#parsing-main-intbody
|
|
||||||
tbody: tNestChild,
|
|
||||||
tfoot: tNestChild,
|
|
||||||
thead: tNestChild,
|
|
||||||
// https://html.spec.whatwg.org/multipage/syntax.html#parsing-main-incolgroup
|
|
||||||
colgroup: makeObject('col'),
|
|
||||||
// https://html.spec.whatwg.org/multipage/syntax.html#parsing-main-intable
|
|
||||||
// table: oneObject('caption,colgroup,tbody,thead,tfoot,style,script,template,#document-fragment'),
|
|
||||||
// https://html.spec.whatwg.org/multipage/syntax.html#parsing-main-inhead
|
|
||||||
head: makeObject(
|
|
||||||
'base,basefont,bgsound,link,style,script,meta,title,noscript,noframes'
|
|
||||||
),
|
|
||||||
// https://html.spec.whatwg.org/multipage/semantics.html#the-html-element
|
|
||||||
html: oneObject('head,body')
|
|
||||||
}
|
|
||||||
|
|
Reference in New Issue