uni-shared.es.js 32.5 KB
Newer Older
fxy060608's avatar
fxy060608 已提交
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
import { isHTMLTag, isSVGTag, hyphenate, camelize, extend, isString, isPlainObject, isArray, capitalize } from '@vue/shared';

const BUILT_IN_TAGS = [
    'ad',
    'audio',
    'button',
    'camera',
    'canvas',
    'checkbox',
    'checkbox-group',
    'cover-image',
    'cover-view',
    'editor',
    'form',
    'functional-page-navigator',
    'icon',
    'image',
    'input',
    'label',
    'live-player',
    'live-pusher',
    'map',
    'movable-area',
    'movable-view',
    'navigator',
    'official-account',
    'open-data',
    'picker',
    'picker-view',
    'picker-view-column',
    'progress',
    'radio',
    'radio-group',
    'rich-text',
    'scroll-view',
    'slider',
    'swiper',
    'swiper-item',
    'switch',
    'text',
    'textarea',
    'video',
    'view',
    'web-view',
].map((tag) => 'uni-' + tag);
const TAGS = [
    'app',
    'layout',
    'content',
    'main',
    'top-window',
    'left-window',
    'right-window',
    'tabbar',
    'page',
    'page-head',
    'page-wrapper',
    'page-body',
    'page-refresh',
    'actionsheet',
    'modal',
    'toast',
    'resize-sensor',
    'shadow-root',
].map((tag) => 'uni-' + tag);
function isBuiltInComponent(tag) {
    return BUILT_IN_TAGS.indexOf('uni-' + tag) !== -1;
}
function isCustomElement(tag) {
    return TAGS.indexOf(tag) !== -1 || BUILT_IN_TAGS.indexOf(tag) !== -1;
}
function isNativeTag(tag) {
    return (isHTMLTag(tag) || isSVGTag(tag)) && !isBuiltInComponent(tag);
}
function isServiceNativeTag(tag) {
    return isHTMLTag(tag) || isSVGTag(tag) || isBuiltInComponent(tag);
}
function isServiceCustomElement(_tag) {
    return false;
}
const COMPONENT_SELECTOR_PREFIX = 'uni-';
const COMPONENT_PREFIX = 'v-' + COMPONENT_SELECTOR_PREFIX;

function resolveOwnerVm(vm) {
    if (!vm) {
        return;
    }
    let componentName = vm.type.name;
    while (componentName && isBuiltInComponent(hyphenate(componentName))) {
        // ownerInstance 内置组件需要使用父 vm
        vm = vm.parent;
        componentName = vm.type.name;
    }
    return vm.proxy;
fxy060608's avatar
fxy060608 已提交
95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113
}
function isElement(el) {
    // Element
    return el.nodeType === 1;
}
function resolveOwnerEl(instance) {
    const { vnode } = instance;
    if (isElement(vnode.el)) {
        return vnode.el;
    }
    const { subTree } = instance;
    // ShapeFlags.ARRAY_CHILDREN = 1<<4
    if (subTree.shapeFlag & 16) {
        const elemVNode = subTree.children.find((vnode) => isElement(vnode.el));
        if (elemVNode) {
            return elemVNode.el;
        }
    }
    return vnode.el;
fxy060608's avatar
fxy060608 已提交
114
}
Q
qiang 已提交
115

fxy060608's avatar
fxy060608 已提交
116
let lastLogTime = 0;
fxy060608's avatar
fxy060608 已提交
117
function formatLog(module, ...args) {
fxy060608's avatar
fxy060608 已提交
118 119 120 121
    const now = Date.now();
    const diff = lastLogTime ? now - lastLogTime : 0;
    lastLogTime = now;
    return `[${now}][${diff}ms][${module}]:${args
fxy060608's avatar
fxy060608 已提交
122 123 124 125
        .map((arg) => JSON.stringify(arg))
        .join(' ')}`;
}

Q
qiang 已提交
126 127 128
function formatKey(key) {
    return camelize(key.substring(5));
}
Q
qiang 已提交
129
function initCustomDataset() {
Q
qiang 已提交
130 131 132 133
    const prototype = HTMLElement.prototype;
    const setAttribute = prototype.setAttribute;
    prototype.setAttribute = function (key, value) {
        if (key.startsWith('data-') && this.tagName.startsWith('UNI-')) {
fxy060608's avatar
fxy060608 已提交
134 135
            const dataset = this.__uniDataset ||
                (this.__uniDataset = {});
Q
qiang 已提交
136 137 138 139 140 141 142 143 144 145 146 147 148 149
            dataset[formatKey(key)] = value;
        }
        setAttribute.call(this, key, value);
    };
    const removeAttribute = prototype.removeAttribute;
    prototype.removeAttribute = function (key) {
        if (this.__uniDataset &&
            key.startsWith('data-') &&
            this.tagName.startsWith('UNI-')) {
            delete this.__uniDataset[formatKey(key)];
        }
        removeAttribute.call(this, key);
    };
}
Q
qiang 已提交
150
function getCustomDataset(el) {
fxy060608's avatar
fxy060608 已提交
151
    return extend({}, el.dataset, el.__uniDataset);
Q
qiang 已提交
152
}
fxy060608's avatar
fxy060608 已提交
153

fxy060608's avatar
fxy060608 已提交
154 155 156 157 158 159 160 161 162 163 164 165
const unitRE = new RegExp(`"[^"]+"|'[^']+'|url\\([^)]+\\)|(\\d*\\.?\\d+)[r|u]px`, 'g');
function toFixed(number, precision) {
    const multiplier = Math.pow(10, precision + 1);
    const wholeNumber = Math.floor(number * multiplier);
    return (Math.round(wholeNumber / 10) * 10) / multiplier;
}
const defaultRpx2Unit = {
    unit: 'rem',
    unitRatio: 10 / 320,
    unitPrecision: 5,
};
function createRpx2Unit(unit, unitRatio, unitPrecision) {
Q
qiang 已提交
166
    // ignore: rpxCalcIncludeWidth
fxy060608's avatar
fxy060608 已提交
167 168 169 170 171 172 173 174 175
    return (val) => val.replace(unitRE, (m, $1) => {
        if (!$1) {
            return m;
        }
        const value = toFixed(parseFloat($1) * unitRatio, unitPrecision);
        return value === 0 ? '0' : `${value}${unit}`;
    });
}

fxy060608's avatar
fxy060608 已提交
176 177 178 179 180 181
function passive(passive) {
    return { passive };
}
function normalizeDataset(el) {
    // TODO
    return JSON.parse(JSON.stringify(el.dataset || {}));
fxy060608's avatar
fxy060608 已提交
182 183 184 185 186
}
function normalizeTarget(el) {
    const { id, offsetTop, offsetLeft } = el;
    return {
        id,
Q
qiang 已提交
187
        dataset: getCustomDataset(el),
fxy060608's avatar
fxy060608 已提交
188 189 190
        offsetTop,
        offsetLeft,
    };
fxy060608's avatar
fxy060608 已提交
191 192 193 194 195 196 197 198 199 200 201 202 203
}
function addFont(family, source, desc) {
    const fonts = document.fonts;
    if (fonts) {
        const fontFace = new FontFace(family, source, desc);
        return fontFace.load().then(() => {
            fonts.add(fontFace);
        });
    }
    return new Promise((resolve) => {
        const style = document.createElement('style');
        const values = [];
        if (desc) {
204
            const { style, weight, stretch, unicodeRange, variant, featureSettings } = desc;
fxy060608's avatar
fxy060608 已提交
205 206 207 208 209 210 211 212 213 214 215
            style && values.push(`font-style:${style}`);
            weight && values.push(`font-weight:${weight}`);
            stretch && values.push(`font-stretch:${stretch}`);
            unicodeRange && values.push(`unicode-range:${unicodeRange}`);
            variant && values.push(`font-variant:${variant}`);
            featureSettings && values.push(`font-feature-settings:${featureSettings}`);
        }
        style.innerText = `@font-face{font-family:"${family}";src:${source};${values.join(';')}}`;
        document.head.appendChild(style);
        resolve();
    });
fxy060608's avatar
fxy060608 已提交
216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249
}
function scrollTo(scrollTop, duration) {
    if (isString(scrollTop)) {
        const el = document.querySelector(scrollTop);
        if (el) {
            scrollTop = el.getBoundingClientRect().top + window.pageYOffset;
        }
    }
    if (scrollTop < 0) {
        scrollTop = 0;
    }
    const documentElement = document.documentElement;
    const { clientHeight, scrollHeight } = documentElement;
    scrollTop = Math.min(scrollTop, scrollHeight - clientHeight);
    if (duration === 0) {
        // 部分浏览器(比如微信)中 scrollTop 的值需要通过 document.body 来控制
        documentElement.scrollTop = document.body.scrollTop = scrollTop;
        return;
    }
    if (window.scrollY === scrollTop) {
        return;
    }
    const scrollTo = (duration) => {
        if (duration <= 0) {
            window.scrollTo(0, scrollTop);
            return;
        }
        const distaince = scrollTop - window.scrollY;
        requestAnimationFrame(function () {
            window.scrollTo(0, window.scrollY + (distaince / duration) * 10);
            scrollTo(duration - 10);
        });
    };
    scrollTo(duration);
fxy060608's avatar
fxy060608 已提交
250 251
}

fxy060608's avatar
fxy060608 已提交
252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338
const encode = encodeURIComponent;
function stringifyQuery(obj, encodeStr = encode) {
    const res = obj
        ? Object.keys(obj)
            .map((key) => {
            let val = obj[key];
            if (typeof val === undefined || val === null) {
                val = '';
            }
            else if (isPlainObject(val)) {
                val = JSON.stringify(val);
            }
            return encodeStr(key) + '=' + encodeStr(val);
        })
            .filter((x) => x.length > 0)
            .join('&')
        : null;
    return res ? `?${res}` : '';
}
/**
 * Decode text using `decodeURIComponent`. Returns the original text if it
 * fails.
 *
 * @param text - string to decode
 * @returns decoded string
 */
function decode(text) {
    try {
        return decodeURIComponent('' + text);
    }
    catch (err) { }
    return '' + text;
}
function decodedQuery(query = {}) {
    const decodedQuery = {};
    Object.keys(query).forEach((name) => {
        try {
            decodedQuery[name] = decode(query[name]);
        }
        catch (e) {
            decodedQuery[name] = query[name];
        }
    });
    return decodedQuery;
}
const PLUS_RE = /\+/g; // %2B
/**
 * https://github.com/vuejs/vue-router-next/blob/master/src/query.ts
 * @internal
 *
 * @param search - search string to parse
 * @returns a query object
 */
function parseQuery(search) {
    const query = {};
    // avoid creating an object with an empty key and empty value
    // because of split('&')
    if (search === '' || search === '?')
        return query;
    const hasLeadingIM = search[0] === '?';
    const searchParams = (hasLeadingIM ? search.slice(1) : search).split('&');
    for (let i = 0; i < searchParams.length; ++i) {
        // pre decode the + into space
        const searchParam = searchParams[i].replace(PLUS_RE, ' ');
        // allow the = character
        let eqPos = searchParam.indexOf('=');
        let key = decode(eqPos < 0 ? searchParam : searchParam.slice(0, eqPos));
        let value = eqPos < 0 ? null : decode(searchParam.slice(eqPos + 1));
        if (key in query) {
            // an extra variable for ts types
            let currentValue = query[key];
            if (!isArray(currentValue)) {
                currentValue = query[key] = [currentValue];
            }
            currentValue.push(value);
        }
        else {
            query[key] = value;
        }
    }
    return query;
}

function parseUrl(url) {
    const [path, querystring] = url.split('?', 2);
    return {
        path,
fxy060608's avatar
fxy060608 已提交
339
        query: parseQuery(querystring || ''),
fxy060608's avatar
fxy060608 已提交
340 341 342
    };
}

fxy060608's avatar
fxy060608 已提交
343 344 345 346 347 348 349 350 351 352
function plusReady(callback) {
    if (typeof callback !== 'function') {
        return;
    }
    if (window.plus) {
        return callback();
    }
    document.addEventListener('plusready', callback);
}

fxy060608's avatar
fxy060608 已提交
353 354 355 356 357 358 359
class DOMException extends Error {
    constructor(message) {
        super(message);
        this.name = 'DOMException';
    }
}

fxy060608's avatar
fxy060608 已提交
360 361 362 363 364 365 366 367 368 369 370 371
function normalizeEventType(type, options) {
    if (options) {
        if (options.capture) {
            type += 'Capture';
        }
        if (options.once) {
            type += 'Once';
        }
        if (options.passive) {
            type += 'Passive';
        }
    }
fxy060608's avatar
fxy060608 已提交
372 373 374 375
    return `on${capitalize(camelize(type))}`;
}
class UniEvent {
    constructor(type, opts) {
fxy060608's avatar
fxy060608 已提交
376 377 378 379
        this.defaultPrevented = false;
        this.timeStamp = Date.now();
        this._stop = false;
        this._end = false;
fxy060608's avatar
fxy060608 已提交
380
        this.type = type;
fxy060608's avatar
fxy060608 已提交
381 382 383 384 385 386 387 388 389 390 391 392 393
        this.bubbles = !!opts.bubbles;
        this.cancelable = !!opts.cancelable;
    }
    preventDefault() {
        this.defaultPrevented = true;
    }
    stopImmediatePropagation() {
        this._end = this._stop = true;
    }
    stopPropagation() {
        this._stop = true;
    }
}
fxy060608's avatar
fxy060608 已提交
394 395 396 397 398 399 400 401 402 403 404 405
function createUniEvent(evt) {
    if (evt instanceof UniEvent) {
        return evt;
    }
    const [type] = parseEventName(evt.type);
    const uniEvent = new UniEvent(type, {
        bubbles: false,
        cancelable: false,
    });
    extend(uniEvent, evt);
    return uniEvent;
}
fxy060608's avatar
fxy060608 已提交
406
class UniEventTarget {
fxy060608's avatar
fxy060608 已提交
407 408 409
    constructor() {
        this.listeners = Object.create(null);
    }
fxy060608's avatar
fxy060608 已提交
410
    dispatchEvent(evt) {
fxy060608's avatar
fxy060608 已提交
411
        const listeners = this.listeners[evt.type];
fxy060608's avatar
fxy060608 已提交
412
        if (!listeners) {
fxy060608's avatar
fxy060608 已提交
413 414 415
            if ((process.env.NODE_ENV !== 'production')) {
                console.error(formatLog('dispatchEvent', this.nodeId), evt.type, 'not found');
            }
fxy060608's avatar
fxy060608 已提交
416 417
            return false;
        }
fxy060608's avatar
fxy060608 已提交
418 419
        // 格式化事件类型
        const event = createUniEvent(evt);
fxy060608's avatar
fxy060608 已提交
420 421
        const len = listeners.length;
        for (let i = 0; i < len; i++) {
fxy060608's avatar
fxy060608 已提交
422 423
            listeners[i].call(this, event);
            if (event._end) {
fxy060608's avatar
fxy060608 已提交
424 425 426
                break;
            }
        }
fxy060608's avatar
fxy060608 已提交
427
        return event.cancelable && event.defaultPrevented;
fxy060608's avatar
fxy060608 已提交
428 429
    }
    addEventListener(type, listener, options) {
fxy060608's avatar
fxy060608 已提交
430
        type = normalizeEventType(type, options);
fxy060608's avatar
fxy060608 已提交
431
        (this.listeners[type] || (this.listeners[type] = [])).push(listener);
fxy060608's avatar
fxy060608 已提交
432 433
    }
    removeEventListener(type, callback, options) {
fxy060608's avatar
fxy060608 已提交
434
        type = normalizeEventType(type, options);
fxy060608's avatar
fxy060608 已提交
435
        const listeners = this.listeners[type];
fxy060608's avatar
fxy060608 已提交
436 437 438 439 440 441 442 443
        if (!listeners) {
            return;
        }
        const index = listeners.indexOf(callback);
        if (index > -1) {
            listeners.splice(index, 1);
        }
    }
fxy060608's avatar
fxy060608 已提交
444 445 446 447 448 449 450 451 452 453 454 455 456
}
const optionsModifierRE = /(?:Once|Passive|Capture)$/;
function parseEventName(name) {
    let options;
    if (optionsModifierRE.test(name)) {
        options = {};
        let m;
        while ((m = name.match(optionsModifierRE))) {
            name = name.slice(0, name.length - m[0].length);
            options[m[0].toLowerCase()] = true;
        }
    }
    return [hyphenate(name.slice(2)), options];
fxy060608's avatar
fxy060608 已提交
457 458
}

fxy060608's avatar
fxy060608 已提交
459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475
const EventModifierFlags = {
    stop: 1,
    prevent: 1 << 1,
    self: 1 << 2,
};
function encodeModifier(modifiers) {
    let flag = 0;
    if (modifiers.includes('stop')) {
        flag |= EventModifierFlags.stop;
    }
    if (modifiers.includes('prevent')) {
        flag |= EventModifierFlags.prevent;
    }
    if (modifiers.includes('self')) {
        flag |= EventModifierFlags.self;
    }
    return flag;
fxy060608's avatar
fxy060608 已提交
476 477
}

fxy060608's avatar
fxy060608 已提交
478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496
const NODE_TYPE_PAGE = 0;
const NODE_TYPE_ELEMENT = 1;
const NODE_TYPE_TEXT = 3;
const NODE_TYPE_COMMENT = 8;
function sibling(node, type) {
    const { parentNode } = node;
    if (!parentNode) {
        return null;
    }
    const { childNodes } = parentNode;
    return childNodes[childNodes.indexOf(node) + (type === 'n' ? 1 : -1)] || null;
}
function removeNode(node) {
    const { parentNode } = node;
    if (parentNode) {
        parentNode.removeChild(node);
    }
}
function checkNodeId(node) {
fxy060608's avatar
fxy060608 已提交
497
    if (!node.nodeId && node.pageNode) {
fxy060608's avatar
fxy060608 已提交
498 499 500
        node.nodeId = node.pageNode.genId();
    }
}
fxy060608's avatar
fxy060608 已提交
501
// 为优化性能,各平台不使用proxy来实现node的操作拦截,而是直接通过pageNode定制
fxy060608's avatar
fxy060608 已提交
502
class UniNode extends UniEventTarget {
fxy060608's avatar
fxy060608 已提交
503
    constructor(nodeType, nodeName, container) {
fxy060608's avatar
fxy060608 已提交
504
        super();
fxy060608's avatar
fxy060608 已提交
505 506 507
        this.pageNode = null;
        this.parentNode = null;
        this._text = null;
fxy060608's avatar
fxy060608 已提交
508 509
        if (container) {
            const { pageNode } = container;
fxy060608's avatar
fxy060608 已提交
510 511 512
            if (pageNode) {
                this.pageNode = pageNode;
                this.nodeId = pageNode.genId();
fxy060608's avatar
fxy060608 已提交
513
                !pageNode.isUnmounted && pageNode.onCreate(this, nodeName);
fxy060608's avatar
fxy060608 已提交
514
            }
fxy060608's avatar
fxy060608 已提交
515
        }
fxy060608's avatar
fxy060608 已提交
516 517 518 519 520 521 522 523 524 525 526 527 528 529 530
        this.nodeType = nodeType;
        this.nodeName = nodeName;
        this.childNodes = [];
    }
    get firstChild() {
        return this.childNodes[0] || null;
    }
    get lastChild() {
        const { childNodes } = this;
        const length = childNodes.length;
        return length ? childNodes[length - 1] : null;
    }
    get nextSibling() {
        return sibling(this, 'n');
    }
fxy060608's avatar
fxy060608 已提交
531 532 533 534
    get nodeValue() {
        return null;
    }
    set nodeValue(_val) { }
fxy060608's avatar
fxy060608 已提交
535 536 537 538 539
    get textContent() {
        return this._text || '';
    }
    set textContent(text) {
        this._text = text;
fxy060608's avatar
fxy060608 已提交
540
        if (this.pageNode && !this.pageNode.isUnmounted) {
fxy060608's avatar
fxy060608 已提交
541 542
            this.pageNode.onTextContent(this, text);
        }
fxy060608's avatar
fxy060608 已提交
543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574
    }
    get parentElement() {
        const { parentNode } = this;
        if (parentNode && parentNode.nodeType === NODE_TYPE_ELEMENT) {
            return parentNode;
        }
        return null;
    }
    get previousSibling() {
        return sibling(this, 'p');
    }
    appendChild(newChild) {
        return this.insertBefore(newChild, null);
    }
    cloneNode(deep) {
        const cloned = extend(Object.create(Object.getPrototypeOf(this)), this);
        const { attributes } = cloned;
        if (attributes) {
            cloned.attributes = extend({}, attributes);
        }
        if (deep) {
            cloned.childNodes = cloned.childNodes.map((childNode) => childNode.cloneNode(true));
        }
        return cloned;
    }
    insertBefore(newChild, refChild) {
        removeNode(newChild);
        newChild.pageNode = this.pageNode;
        newChild.parentNode = this;
        checkNodeId(newChild);
        const { childNodes } = this;
        if (refChild) {
fxy060608's avatar
fxy060608 已提交
575
            const index = childNodes.indexOf(refChild);
fxy060608's avatar
fxy060608 已提交
576 577 578
            if (index === -1) {
                throw new DOMException(`Failed to execute 'insertBefore' on 'Node': The node before which the new node is to be inserted is not a child of this node.`);
            }
fxy060608's avatar
fxy060608 已提交
579
            childNodes.splice(index, 0, newChild);
fxy060608's avatar
fxy060608 已提交
580 581 582 583
        }
        else {
            childNodes.push(newChild);
        }
fxy060608's avatar
fxy060608 已提交
584
        return this.pageNode && !this.pageNode.isUnmounted
fxy060608's avatar
fxy060608 已提交
585
            ? this.pageNode.onInsertBefore(this, newChild, refChild)
fxy060608's avatar
fxy060608 已提交
586
            : newChild;
fxy060608's avatar
fxy060608 已提交
587 588 589 590 591 592 593 594 595
    }
    removeChild(oldChild) {
        const { childNodes } = this;
        const index = childNodes.indexOf(oldChild);
        if (index === -1) {
            throw new DOMException(`Failed to execute 'removeChild' on 'Node': The node to be removed is not a child of this node.`);
        }
        oldChild.parentNode = null;
        childNodes.splice(index, 1);
fxy060608's avatar
fxy060608 已提交
596 597 598
        return this.pageNode && !this.pageNode.isUnmounted
            ? this.pageNode.onRemoveChild(oldChild)
            : oldChild;
fxy060608's avatar
fxy060608 已提交
599 600
    }
}
fxy060608's avatar
fxy060608 已提交
601 602
const ATTR_CLASS = 'class';
const ATTR_STYLE = 'style';
fxy060608's avatar
fxy060608 已提交
603 604
const ATTR_INNER_HTML = 'innerHTML';
const ATTR_TEXT_CONTENT = 'textContent';
fxy060608's avatar
fxy060608 已提交
605
const ATTR_V_SHOW = '.vShow';
fxy060608's avatar
fxy060608 已提交
606
const ATTR_V_OWNER_ID = '.vOwnerId';
fxy060608's avatar
fxy060608 已提交
607
const ATTR_V_RENDERJS = '.vRenderjs';
fxy060608's avatar
fxy060608 已提交
608
const ATTR_CHANGE_PREFIX = 'change:';
fxy060608's avatar
fxy060608 已提交
609
class UniBaseNode extends UniNode {
fxy060608's avatar
fxy060608 已提交
610 611
    constructor(nodeType, nodeName, container) {
        super(nodeType, nodeName, container);
fxy060608's avatar
fxy060608 已提交
612 613
        this.attributes = Object.create(null);
        this.style = null;
fxy060608's avatar
fxy060608 已提交
614
        this.vShow = null;
fxy060608's avatar
fxy060608 已提交
615
        this._html = null;
fxy060608's avatar
fxy060608 已提交
616 617
    }
    get className() {
fxy060608's avatar
fxy060608 已提交
618
        return (this.attributes[ATTR_CLASS] || '');
fxy060608's avatar
fxy060608 已提交
619 620
    }
    set className(val) {
fxy060608's avatar
fxy060608 已提交
621
        this.setAttribute(ATTR_CLASS, val);
fxy060608's avatar
fxy060608 已提交
622 623 624 625 626 627 628 629 630
    }
    get innerHTML() {
        return '';
    }
    set innerHTML(html) {
        this._html = html;
    }
    addEventListener(type, listener, options) {
        super.addEventListener(type, listener, options);
fxy060608's avatar
fxy060608 已提交
631
        if (this.pageNode && !this.pageNode.isUnmounted) {
fxy060608's avatar
fxy060608 已提交
632 633 634 635 636 637
            if (listener.wxsEvent) {
                this.pageNode.onAddWxsEvent(this, normalizeEventType(type, options), listener.wxsEvent, encodeModifier(listener.modifiers || []));
            }
            else {
                this.pageNode.onAddEvent(this, normalizeEventType(type, options), encodeModifier(listener.modifiers || []));
            }
fxy060608's avatar
fxy060608 已提交
638
        }
fxy060608's avatar
fxy060608 已提交
639 640 641
    }
    removeEventListener(type, callback, options) {
        super.removeEventListener(type, callback, options);
fxy060608's avatar
fxy060608 已提交
642
        if (this.pageNode && !this.pageNode.isUnmounted) {
fxy060608's avatar
fxy060608 已提交
643
            this.pageNode.onRemoveEvent(this, normalizeEventType(type, options));
fxy060608's avatar
fxy060608 已提交
644
        }
fxy060608's avatar
fxy060608 已提交
645 646
    }
    getAttribute(qualifiedName) {
fxy060608's avatar
fxy060608 已提交
647 648 649
        if (qualifiedName === ATTR_STYLE) {
            return this.style;
        }
fxy060608's avatar
fxy060608 已提交
650
        return this.attributes[qualifiedName];
fxy060608's avatar
fxy060608 已提交
651 652
    }
    removeAttribute(qualifiedName) {
fxy060608's avatar
fxy060608 已提交
653 654 655 656 657 658
        if (qualifiedName == ATTR_STYLE) {
            this.style = null;
        }
        else {
            delete this.attributes[qualifiedName];
        }
fxy060608's avatar
fxy060608 已提交
659
        if (this.pageNode && !this.pageNode.isUnmounted) {
fxy060608's avatar
fxy060608 已提交
660 661
            this.pageNode.onRemoveAttribute(this, qualifiedName);
        }
fxy060608's avatar
fxy060608 已提交
662 663
    }
    setAttribute(qualifiedName, value) {
fxy060608's avatar
fxy060608 已提交
664 665 666 667 668 669
        if (qualifiedName === ATTR_STYLE) {
            this.style = value;
        }
        else {
            this.attributes[qualifiedName] = value;
        }
fxy060608's avatar
fxy060608 已提交
670
        if (this.pageNode && !this.pageNode.isUnmounted) {
fxy060608's avatar
fxy060608 已提交
671 672
            this.pageNode.onSetAttribute(this, qualifiedName, value);
        }
fxy060608's avatar
fxy060608 已提交
673
    }
fxy060608's avatar
fxy060608 已提交
674
    toJSON({ attr, normalize, } = {}) {
fxy060608's avatar
fxy060608 已提交
675
        const { attributes, style, listeners, _text } = this;
fxy060608's avatar
fxy060608 已提交
676 677
        const res = {};
        if (Object.keys(attributes).length) {
fxy060608's avatar
fxy060608 已提交
678
            res.a = normalize ? normalize(attributes) : attributes;
fxy060608's avatar
fxy060608 已提交
679
        }
fxy060608's avatar
fxy060608 已提交
680 681
        const events = Object.keys(listeners);
        if (events.length) {
fxy060608's avatar
fxy060608 已提交
682
            let w = undefined;
fxy060608's avatar
fxy060608 已提交
683 684 685 686 687
            const e = {};
            events.forEach((name) => {
                const handlers = listeners[name];
                if (handlers.length) {
                    // 可能存在多个 handler 且不同 modifiers 吗?
fxy060608's avatar
fxy060608 已提交
688 689 690 691 692 693 694 695 696 697 698
                    const { wxsEvent, modifiers } = handlers[0];
                    const modifier = encodeModifier(modifiers || []);
                    if (!wxsEvent) {
                        e[name] = modifier;
                    }
                    else {
                        if (!w) {
                            w = {};
                        }
                        w[name] = [normalize ? normalize(wxsEvent) : wxsEvent, modifier];
                    }
fxy060608's avatar
fxy060608 已提交
699 700
                }
            });
fxy060608's avatar
fxy060608 已提交
701
            res.e = normalize ? normalize(e, false) : e;
fxy060608's avatar
fxy060608 已提交
702 703 704
            if (w) {
                res.w = normalize ? normalize(w, false) : w;
            }
fxy060608's avatar
fxy060608 已提交
705
        }
fxy060608's avatar
fxy060608 已提交
706 707
        if (style !== null) {
            res.s = normalize ? normalize(style) : style;
fxy060608's avatar
fxy060608 已提交
708
        }
fxy060608's avatar
fxy060608 已提交
709
        if (!attr) {
fxy060608's avatar
fxy060608 已提交
710
            res.i = this.nodeId;
fxy060608's avatar
fxy060608 已提交
711
            res.n = this.nodeName;
fxy060608's avatar
fxy060608 已提交
712
        }
fxy060608's avatar
fxy060608 已提交
713 714
        if (_text !== null) {
            res.t = normalize ? normalize(_text) : _text;
fxy060608's avatar
fxy060608 已提交
715 716 717 718 719 720
        }
        return res;
    }
}

class UniCommentNode extends UniNode {
fxy060608's avatar
fxy060608 已提交
721 722
    constructor(text, container) {
        super(NODE_TYPE_COMMENT, '#comment', container);
fxy060608's avatar
fxy060608 已提交
723
        this._text = (process.env.NODE_ENV !== 'production') ? text : '';
fxy060608's avatar
fxy060608 已提交
724
    }
fxy060608's avatar
fxy060608 已提交
725
    toJSON(opts = {}) {
fxy060608's avatar
fxy060608 已提交
726
        // 暂时不传递 text 到 view 层,没啥意义,节省点数据量
fxy060608's avatar
fxy060608 已提交
727
        return opts.attr
fxy060608's avatar
fxy060608 已提交
728
            ? {}
fxy060608's avatar
fxy060608 已提交
729 730 731
            : {
                i: this.nodeId,
            };
fxy060608's avatar
fxy060608 已提交
732 733 734 735 736 737
        // return opts.attr
        //   ? { t: this._text as string }
        //   : {
        //       i: this.nodeId!,
        //       t: this._text as string,
        //     }
fxy060608's avatar
fxy060608 已提交
738
    }
fxy060608's avatar
fxy060608 已提交
739 740 741
}

class UniElement extends UniBaseNode {
fxy060608's avatar
fxy060608 已提交
742 743
    constructor(nodeName, container) {
        super(NODE_TYPE_ELEMENT, nodeName.toUpperCase(), container);
fxy060608's avatar
fxy060608 已提交
744 745 746 747 748 749 750 751 752 753 754 755 756 757 758
        this.tagName = this.nodeName;
    }
}
class UniInputElement extends UniElement {
    get value() {
        return this.getAttribute('value');
    }
    set value(val) {
        this.setAttribute('value', val);
    }
}
class UniTextAreaElement extends UniInputElement {
}

class UniTextNode extends UniBaseNode {
fxy060608's avatar
fxy060608 已提交
759 760
    constructor(text, container) {
        super(NODE_TYPE_TEXT, '#text', container);
fxy060608's avatar
fxy060608 已提交
761 762 763 764 765 766 767
        this._text = text;
    }
    get nodeValue() {
        return this._text || '';
    }
    set nodeValue(text) {
        this._text = text;
fxy060608's avatar
fxy060608 已提交
768
        if (this.pageNode && !this.pageNode.isUnmounted) {
fxy060608's avatar
fxy060608 已提交
769 770
            this.pageNode.onNodeValue(this, text);
        }
fxy060608's avatar
fxy060608 已提交
771 772 773
    }
}

fxy060608's avatar
fxy060608 已提交
774 775 776 777 778 779 780 781 782 783
const ACTION_TYPE_PAGE_CREATE = 1;
const ACTION_TYPE_PAGE_CREATED = 2;
const ACTION_TYPE_CREATE = 3;
const ACTION_TYPE_INSERT = 4;
const ACTION_TYPE_REMOVE = 5;
const ACTION_TYPE_SET_ATTRIBUTE = 6;
const ACTION_TYPE_REMOVE_ATTRIBUTE = 7;
const ACTION_TYPE_ADD_EVENT = 8;
const ACTION_TYPE_REMOVE_EVENT = 9;
const ACTION_TYPE_SET_TEXT = 10;
fxy060608's avatar
fxy060608 已提交
784
const ACTION_TYPE_ADD_WXS_EVENT = 12;
fxy060608's avatar
fxy060608 已提交
785
const ACTION_TYPE_PAGE_SCROLL = 15;
fxy060608's avatar
fxy060608 已提交
786 787
const ACTION_TYPE_EVENT = 20;

fxy060608's avatar
fxy060608 已提交
788
function cache(fn) {
fxy060608's avatar
fxy060608 已提交
789
    const cache = Object.create(null);
fxy060608's avatar
fxy060608 已提交
790
    return (str) => {
fxy060608's avatar
fxy060608 已提交
791 792
        const hit = cache[str];
        return hit || (cache[str] = fn(str));
fxy060608's avatar
fxy060608 已提交
793 794 795 796 797
    };
}
function cacheStringFunction(fn) {
    return cache(fn);
}
fxy060608's avatar
fxy060608 已提交
798 799
function getLen(str = '') {
    return ('' + str).replace(/[^\x00-\xff]/g, '**').length;
fxy060608's avatar
fxy060608 已提交
800 801 802
}
function removeLeadingSlash(str) {
    return str.indexOf('/') === 0 ? str.substr(1) : str;
fxy060608's avatar
fxy060608 已提交
803 804 805 806 807 808 809
}
const invokeArrayFns = (fns, arg) => {
    let ret;
    for (let i = 0; i < fns.length; i++) {
        ret = fns[i](arg);
    }
    return ret;
fxy060608's avatar
fxy060608 已提交
810 811 812 813 814
};
function updateElementStyle(element, styles) {
    for (const attrName in styles) {
        element.style[attrName] = styles[attrName];
    }
fxy060608's avatar
fxy060608 已提交
815 816 817
}
function once(fn, ctx = null) {
    let res;
fxy060608's avatar
fxy060608 已提交
818
    return ((...args) => {
fxy060608's avatar
fxy060608 已提交
819 820 821 822 823
        if (fn) {
            res = fn.apply(ctx, args);
            fn = null;
        }
        return res;
fxy060608's avatar
fxy060608 已提交
824
    });
fxy060608's avatar
fxy060608 已提交
825
}
D
DCloud_LXH 已提交
826 827 828 829 830 831 832 833 834 835 836 837 838
const sanitise = (val) => (val && JSON.parse(JSON.stringify(val))) || val;
const _completeValue = (value) => (value > 9 ? value : '0' + value);
function formatDateTime({ date = new Date(), mode = 'date' }) {
    if (mode === 'time') {
        return (_completeValue(date.getHours()) + ':' + _completeValue(date.getMinutes()));
    }
    else {
        return (date.getFullYear() +
            '-' +
            _completeValue(date.getMonth() + 1) +
            '-' +
            _completeValue(date.getDate()));
    }
Q
qiang 已提交
839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859
}
function callOptions(options, data) {
    options = options || {};
    if (typeof data === 'string') {
        data = {
            errMsg: data,
        };
    }
    if (/:ok$/.test(data.errMsg)) {
        if (typeof options.success === 'function') {
            options.success(data);
        }
    }
    else {
        if (typeof options.fail === 'function') {
            options.fail(data);
        }
    }
    if (typeof options.complete === 'function') {
        options.complete(data);
    }
fxy060608's avatar
fxy060608 已提交
860 861 862 863 864 865 866 867 868 869 870
}
function getValueByDataPath(obj, path) {
    const parts = path.split('.');
    let key = parts[0];
    if (!obj) {
        obj = {};
    }
    if (parts.length === 1) {
        return obj[key];
    }
    return getValueByDataPath(obj[key], parts.slice(1).join('.'));
D
DCloud_LXH 已提交
871
}
fxy060608's avatar
fxy060608 已提交
872

fxy060608's avatar
fxy060608 已提交
873 874 875 876 877 878 879 880 881 882 883 884 885 886 887
function debounce(fn, delay) {
    let timeout;
    const newFn = function () {
        clearTimeout(timeout);
        const timerFn = () => fn.apply(this, arguments);
        timeout = setTimeout(timerFn, delay);
    };
    newFn.cancel = function () {
        clearTimeout(timeout);
    };
    return newFn;
}

const NAVBAR_HEIGHT = 44;
const TABBAR_HEIGHT = 50;
fxy060608's avatar
fxy060608 已提交
888
const ON_REACH_BOTTOM_DISTANCE = 50;
fxy060608's avatar
fxy060608 已提交
889 890
const RESPONSIVE_MIN_WIDTH = 768;
const COMPONENT_NAME_PREFIX = 'VUni';
fxy060608's avatar
fxy060608 已提交
891
const PRIMARY_COLOR = '#007aff';
fxy060608's avatar
fxy060608 已提交
892 893
const SELECTED_COLOR = '#0062cc'; // 选中的颜色,如选项卡默认的选中颜色
const BACKGROUND_COLOR = '#f7f7f7'; // 背景色,如标题栏默认背景色
fxy060608's avatar
fxy060608 已提交
894
const UNI_SSR = '__uniSSR';
fxy060608's avatar
fxy060608 已提交
895
const UNI_SSR_TITLE = 'title';
fxy060608's avatar
fxy060608 已提交
896
const UNI_SSR_STORE = 'store';
fxy060608's avatar
fxy060608 已提交
897
const UNI_SSR_DATA = 'data';
fxy060608's avatar
fxy060608 已提交
898 899 900
const UNI_SSR_GLOBAL_DATA = 'globalData';
const SCHEME_RE = /^([a-z-]+:)?\/\//i;
const DATA_RE = /^data:.*,.*/;
fxy060608's avatar
fxy060608 已提交
901
const WEB_INVOKE_APPSERVICE = 'WEB_INVOKE_APPSERVICE';
fxy060608's avatar
fxy060608 已提交
902
const WXS_PROTOCOL = 'wxs://';
fxy060608's avatar
fxy060608 已提交
903
const JSON_PROTOCOL = 'json://';
fxy060608's avatar
fxy060608 已提交
904 905
const WXS_MODULES = 'wxsModules';
const RENDERJS_MODULES = 'renderjsModules';
fxy060608's avatar
fxy060608 已提交
906 907 908 909 910 911 912 913
// lifecycle
// App and Page
const ON_SHOW = 'onShow';
const ON_HIDE = 'onHide';
//App
const ON_LAUNCH = 'onLaunch';
const ON_ERROR = 'onError';
const ON_THEME_CHANGE = 'onThemeChange';
914
const ON_KEYBOARD_HEIGHT_CHANGE = 'onKeyboardHeightChange';
fxy060608's avatar
fxy060608 已提交
915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938
const ON_PAGE_NOT_FOUND = 'onPageNotFound';
const ON_UNHANDLE_REJECTION = 'onUnhandledRejection';
//Page
const ON_LOAD = 'onLoad';
const ON_READY = 'onReady';
const ON_UNLOAD = 'onUnload';
const ON_RESIZE = 'onResize';
const ON_BACK_PRESS = 'onBackPress';
const ON_PAGE_SCROLL = 'onPageScroll';
const ON_TAB_ITEM_TAP = 'onTabItemTap';
const ON_REACH_BOTTOM = 'onReachBottom';
const ON_PULL_DOWN_REFRESH = 'onPullDownRefresh';
const ON_SHARE_TIMELINE = 'onShareTimeline';
const ON_ADD_TO_FAVORITES = 'onAddToFavorites';
const ON_SHARE_APP_MESSAGE = 'onShareAppMessage';
// navigationBar
const ON_NAVIGATION_BAR_BUTTON_TAP = 'onNavigationBarButtonTap';
const ON_NAVIGATION_BAR_SEARCH_INPUT_CLICKED = 'onNavigationBarSearchInputClicked';
const ON_NAVIGATION_BAR_SEARCH_INPUT_CHANGED = 'onNavigationBarSearchInputChanged';
const ON_NAVIGATION_BAR_SEARCH_INPUT_CONFIRMED = 'onNavigationBarSearchInputConfirmed';
const ON_NAVIGATION_BAR_SEARCH_INPUT_FOCUS_CHANGED = 'onNavigationBarSearchInputFocusChanged';
// framework
const ON_APP_ENTER_FOREGROUND = 'onAppEnterForeground';
const ON_APP_ENTER_BACKGROUND = 'onAppEnterBackground';
fxy060608's avatar
fxy060608 已提交
939 940
const ON_WEB_INVOKE_APP_SERVICE = 'onWebInvokeAppService';
const ON_WXS_INVOKE_CALL_METHOD = 'onWxsInvokeCallMethod';
fxy060608's avatar
fxy060608 已提交
941

fxy060608's avatar
fxy060608 已提交
942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004
class EventChannel {
    constructor(id, events) {
        this.id = id;
        this.listener = {};
        this.emitCache = {};
        if (events) {
            Object.keys(events).forEach((name) => {
                this.on(name, events[name]);
            });
        }
    }
    emit(eventName, ...args) {
        const fns = this.listener[eventName];
        if (!fns) {
            return (this.emitCache[eventName] || (this.emitCache[eventName] = [])).push(args);
        }
        fns.forEach((opt) => {
            opt.fn.apply(opt.fn, args);
        });
        this.listener[eventName] = fns.filter((opt) => opt.type !== 'once');
    }
    on(eventName, fn) {
        this._addListener(eventName, 'on', fn);
        this._clearCache(eventName);
    }
    once(eventName, fn) {
        this._addListener(eventName, 'once', fn);
        this._clearCache(eventName);
    }
    off(eventName, fn) {
        const fns = this.listener[eventName];
        if (!fns) {
            return;
        }
        if (fn) {
            for (let i = 0; i < fns.length;) {
                if (fns[i].fn === fn) {
                    fns.splice(i, 1);
                    i--;
                }
                i++;
            }
        }
        else {
            delete this.listener[eventName];
        }
    }
    _clearCache(eventName) {
        const cacheArgs = this.emitCache[eventName];
        if (cacheArgs) {
            for (; cacheArgs.length > 0;) {
                this.emit.apply(this, [eventName, ...cacheArgs.shift()]);
            }
        }
    }
    _addListener(eventName, type, fn) {
        (this.listener[eventName] || (this.listener[eventName] = [])).push({
            fn,
            type,
        });
    }
}

fxy060608's avatar
fxy060608 已提交
1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015
const PAGE_HOOKS = [
    ON_BACK_PRESS,
    ON_PAGE_SCROLL,
    ON_TAB_ITEM_TAP,
    ON_REACH_BOTTOM,
    ON_PULL_DOWN_REFRESH,
];
function isRootHook(name) {
    return PAGE_HOOKS.indexOf(name) > -1;
}

fxy060608's avatar
fxy060608 已提交
1016 1017 1018 1019 1020 1021
function getEnvLocale() {
    const { env } = process;
    const lang = env.LC_ALL || env.LC_MESSAGES || env.LANG || env.LANGUAGE;
    return (lang && lang.replace(/[.:].*/, '')) || 'en';
}

fxy060608's avatar
fxy060608 已提交
1022
export { ACTION_TYPE_ADD_EVENT, ACTION_TYPE_ADD_WXS_EVENT, ACTION_TYPE_CREATE, ACTION_TYPE_EVENT, ACTION_TYPE_INSERT, ACTION_TYPE_PAGE_CREATE, ACTION_TYPE_PAGE_CREATED, ACTION_TYPE_PAGE_SCROLL, ACTION_TYPE_REMOVE, ACTION_TYPE_REMOVE_ATTRIBUTE, ACTION_TYPE_REMOVE_EVENT, ACTION_TYPE_SET_ATTRIBUTE, ACTION_TYPE_SET_TEXT, ATTR_CHANGE_PREFIX, ATTR_CLASS, ATTR_INNER_HTML, ATTR_STYLE, ATTR_TEXT_CONTENT, ATTR_V_OWNER_ID, ATTR_V_RENDERJS, ATTR_V_SHOW, BACKGROUND_COLOR, BUILT_IN_TAGS, COMPONENT_NAME_PREFIX, COMPONENT_PREFIX, COMPONENT_SELECTOR_PREFIX, DATA_RE, EventChannel, EventModifierFlags, JSON_PROTOCOL, NAVBAR_HEIGHT, NODE_TYPE_COMMENT, NODE_TYPE_ELEMENT, NODE_TYPE_PAGE, NODE_TYPE_TEXT, ON_ADD_TO_FAVORITES, ON_APP_ENTER_BACKGROUND, ON_APP_ENTER_FOREGROUND, ON_BACK_PRESS, ON_ERROR, ON_HIDE, ON_KEYBOARD_HEIGHT_CHANGE, ON_LAUNCH, ON_LOAD, ON_NAVIGATION_BAR_BUTTON_TAP, ON_NAVIGATION_BAR_SEARCH_INPUT_CHANGED, ON_NAVIGATION_BAR_SEARCH_INPUT_CLICKED, ON_NAVIGATION_BAR_SEARCH_INPUT_CONFIRMED, ON_NAVIGATION_BAR_SEARCH_INPUT_FOCUS_CHANGED, ON_PAGE_NOT_FOUND, ON_PAGE_SCROLL, ON_PULL_DOWN_REFRESH, ON_REACH_BOTTOM, ON_REACH_BOTTOM_DISTANCE, ON_READY, ON_RESIZE, ON_SHARE_APP_MESSAGE, ON_SHARE_TIMELINE, ON_SHOW, ON_TAB_ITEM_TAP, ON_THEME_CHANGE, ON_UNHANDLE_REJECTION, ON_UNLOAD, ON_WEB_INVOKE_APP_SERVICE, ON_WXS_INVOKE_CALL_METHOD, PLUS_RE, PRIMARY_COLOR, RENDERJS_MODULES, RESPONSIVE_MIN_WIDTH, SCHEME_RE, SELECTED_COLOR, TABBAR_HEIGHT, TAGS, UNI_SSR, UNI_SSR_DATA, UNI_SSR_GLOBAL_DATA, UNI_SSR_STORE, UNI_SSR_TITLE, UniBaseNode, UniCommentNode, UniElement, UniEvent, UniInputElement, UniNode, UniTextAreaElement, UniTextNode, WEB_INVOKE_APPSERVICE, WXS_MODULES, WXS_PROTOCOL, addFont, cache, cacheStringFunction, callOptions, createRpx2Unit, createUniEvent, debounce, decode, decodedQuery, defaultRpx2Unit, formatDateTime, formatLog, getCustomDataset, getEnvLocale, getLen, getValueByDataPath, initCustomDataset, invokeArrayFns, isBuiltInComponent, isCustomElement, isNativeTag, isRootHook, isServiceCustomElement, isServiceNativeTag, normalizeDataset, normalizeEventType, normalizeTarget, once, parseEventName, parseQuery, parseUrl, passive, plusReady, removeLeadingSlash, resolveOwnerEl, resolveOwnerVm, sanitise, scrollTo, stringifyQuery, updateElementStyle };