all files / parser/ index.js

98.63% Statements 72/73
88.89% Branches 16/18
100% Functions 12/12
98.63% Lines 72/73
2 statements, 1 function, 3 branches Ignored     
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140                                        234×   269× 82×   187×       664× 664× 664× 430×     234×   234×   234× 234×       73×       12×   234×   234× 234× 234×     234× 11× 12× 12×     12× 12×     11× 11×   223×   234×   32× 20×     32×     32×   593×   593× 587×     593× 593×                   34× 34× 34× 34×          
import { avalon, msie, Cache } from '../seed/core'
import { clearString, stringPool, fill, rfill, dig } from '../vtree/clearString'
 
var keyMap = avalon.oneObject("break,case,catch,continue,debugger,default,delete,do,else,false," +
    "finally,for,function,if,in,instanceof,new,null,return,switch,this," +
    "throw,true,try,typeof,var,void,while,with," + /* 关键字*/
    "abstract,boolean,byte,char,class,const,double,enum,export,extends," +
    "final,float,goto,implements,import,int,interface,long,native," +
    "package,private,protected,public,short,static,super,synchronized," +
    "throws,transient,volatile,arguments")
 
export var skipMap = avalon.mix({
    Math: 1,
    Date: 1,
    $event: 1,
    window: 1,
    __vmodel__: 1,
    avalon: 1
}, keyMap)
 
var rvmKey = /(^|[^\w\u00c0-\uFFFF_])(@|##)(?=[$\w])/g
var ruselessSp = /\s*(\.|\|)\s*/g
var rshortCircuit = /\|\|/g
var brackets = /\(([^)]*)\)/
var rpipeline = /\|(?=\?\?)/
var rregexp = /(^|[^/])\/(?!\/)(\[.+?]|\\.|[^/\\\r\n])+\/[gimyu]{0,5}(?=\s*($|[\r\n,.;})]))/g
var robjectProp = /\.[\w\.\$]+/g //对象的属性 el.xxx 中的xxx
var robjectKey = /(\{|\,)\s*([\$\w]+)\s*:/g //对象的键名与冒号 {xxx:1,yyy: 2}中的xxx, yyy
var rfilterName = /\|(\w+)/g
var rlocalVar = /[$a-zA-Z_][$a-zA-Z0-9_]*/g
 
var exprCache = new Cache(300)
 
function addScopeForLocal(str) {
    return str.replace(robjectProp, dig).
    replace(rlocalVar, function(el) {
        if (!skipMap[el]) {
            return "__vmodel__." + el
        }
        return el
    })
}
 
export function addScope(expr, type) {
    var cacheKey = expr + ':' + type
    var cache = exprCache.get(cacheKey)
    if (cache) {
        return cache.slice(0)
    }
 
    stringPool.map = {}
        //https://github.com/RubyLouvre/avalon/issues/1849
    var input = expr.replace(rregexp, function(a, b) {
            return b + dig(a.slice(b.length))
        }) //移除所有正则
    input = clearString(input) //移除所有字符串
    input = input.replace(rshortCircuit, dig). //移除所有短路运算符
    replace(ruselessSp, '$1'). //移除.|两端空白
 
    replace(robjectKey, function(_, a, b) { //移除所有键名
        return a + dig(b) + ':' //比如 ms-widget="[{is:'ms-address-wrap', $id:'address'}]"这样极端的情况 
    }).
    replace(rvmKey, '$1__vmodel__.'). //转换@与##为__vmodel__
    replace(rfilterName, function(a, b) { //移除所有过滤器的名字
        return '|' + dig(b)
    })
    input = addScopeForLocal(input) //在本地变量前添加__vmodel__
 
    var filters = input.split(rpipeline) //根据管道符切割表达式
    var body = filters.shift().replace(rfill, fill).trim()
    Iif (/\?\?\d/.test(body)) {
        body = body.replace(rfill, fill)
    }
    if (filters.length) {
        filters = filters.map(function(filter) {
            var bracketArgs = ''
            filter = filter.replace(brackets, function(a, b) {
                Eif (/\S/.test(b)) {
                    bracketArgs += ',' + b //还原字符串,正则,短路运算符
                }
                return ''
            })
            var arg = '[' + avalon.quote(filter.trim()) + bracketArgs + ']'
            return arg
 
        })
        filters = 'avalon.composeFilters(' + filters + ')(__value__)'
        filters = filters.replace(rfill, fill)
    } else {
        filters = ''
    }
    return exprCache.put(cacheKey, [body, filters])
}
var rhandleName = /^__vmodel__\.[$\w\.]+$/
var rfixIE678 = /__vmodel__\.([^(]+)\(([^)]*)\)/
export function makeHandle(body) {
    if (rhandleName.test(body)) {
        body = body + '($event)'
    }
    /* istanbul ignore if */
    Iif (msie < 9) {
        body = body.replace(rfixIE678, function(a, b, c) {
            return '__vmodel__.' + b + '.call(__vmodel__' + (/\S/.test(c) ? ',' + c : '') + ')'
        })
    }
    return body
}
export function createGetter(expr, type) {
    var arr = addScope(expr, type),
        body
    if (!arr[1]) {
        body = arr[0]
    } else {
        body = arr[1].replace(/__value__\)$/, arr[0] + ')')
    }
    try {
        return new Function('__vmodel__', 'return ' + body + ';')
            /* istanbul ignore next */
    } catch (e) {
        avalon.log('parse getter: [', expr, body, ']error')
        return avalon.noop
    }
}
 
/**
 * 生成表达式设值函数
 * @param  {String}  expr
 */
export function createSetter(expr, type) {
    var arr = addScope(expr, type)
    var body = 'try{ ' + arr[0] + ' = __value__}catch(e){avalon.log(e, "in on dir")}'
    try {
        return new Function('__vmodel__', '__value__', body + ';')
            /* istanbul ignore next */
    } catch (e) {
        avalon.log('parse setter: ', expr, ' error')
        return avalon.noop
    }
}