uni-h5.esm.js 390.9 KB
Newer Older
fxy060608's avatar
fxy060608 已提交
1
import {isFunction, extend, isPlainObject, isString, invokeArrayFns as invokeArrayFns$1, hyphenate, isArray, hasOwn as hasOwn$1, isObject as isObject$1, capitalize, toRawType, makeMap as makeMap$1, isPromise} from "@vue/shared";
fxy060608's avatar
fxy060608 已提交
2
import {injectHook, createVNode, inject, provide, reactive, computed, nextTick, getCurrentInstance, onBeforeMount, onMounted, onBeforeActivate, onBeforeDeactivate, openBlock, createBlock, mergeProps, toDisplayString, ref, defineComponent, resolveComponent, toHandlers, renderSlot, watch, onBeforeUnmount, withModifiers, withDirectives, vShow, vModelDynamic, createCommentVNode, createTextVNode, Fragment, renderList, vModelText, watchEffect, withCtx, KeepAlive, resolveDynamicComponent} from "vue";
fxy060608's avatar
fxy060608 已提交
3
import {once, passive, invokeArrayFns, NAVBAR_HEIGHT, parseQuery, decodedQuery, plusReady, debounce, PRIMARY_COLOR as PRIMARY_COLOR$1, removeLeadingSlash, getLen, updateElementStyle} from "@dcloudio/uni-shared";
fxy060608's avatar
fxy060608 已提交
4
import {useRoute, createRouter, createWebHistory, createWebHashHistory, isNavigationFailure, RouterView} from "vue-router";
fxy060608's avatar
fxy060608 已提交
5
function applyOptions(options, instance, publicThis) {
fxy060608's avatar
fxy060608 已提交
6 7 8
  Object.keys(options).forEach((name) => {
    if (name.indexOf("on") === 0) {
      const hook = options[name];
fxy060608's avatar
fxy060608 已提交
9
      if (isFunction(hook)) {
fxy060608's avatar
fxy060608 已提交
10
        injectHook(name, hook.bind(publicThis), instance);
fxy060608's avatar
fxy060608 已提交
11 12
      }
    }
fxy060608's avatar
fxy060608 已提交
13
  });
fxy060608's avatar
fxy060608 已提交
14 15
}
function set(target, key, val) {
fxy060608's avatar
fxy060608 已提交
16
  return target[key] = val;
fxy060608's avatar
fxy060608 已提交
17
}
fxy060608's avatar
fxy060608 已提交
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 141 142 143 144 145 146 147 148 149 150 151 152 153
const isObject = (val) => val !== null && typeof val === "object";
class BaseFormatter {
  constructor() {
    this._caches = Object.create(null);
  }
  interpolate(message, values) {
    if (!values) {
      return [message];
    }
    let tokens = this._caches[message];
    if (!tokens) {
      tokens = parse(message);
      this._caches[message] = tokens;
    }
    return compile(tokens, values);
  }
}
const RE_TOKEN_LIST_VALUE = /^(?:\d)+/;
const RE_TOKEN_NAMED_VALUE = /^(?:\w)+/;
function parse(format) {
  const tokens = [];
  let position = 0;
  let text2 = "";
  while (position < format.length) {
    let char = format[position++];
    if (char === "{") {
      if (text2) {
        tokens.push({type: "text", value: text2});
      }
      text2 = "";
      let sub = "";
      char = format[position++];
      while (char !== void 0 && char !== "}") {
        sub += char;
        char = format[position++];
      }
      const isClosed = char === "}";
      const type = RE_TOKEN_LIST_VALUE.test(sub) ? "list" : isClosed && RE_TOKEN_NAMED_VALUE.test(sub) ? "named" : "unknown";
      tokens.push({value: sub, type});
    } else if (char === "%") {
      if (format[position] !== "{") {
        text2 += char;
      }
    } else {
      text2 += char;
    }
  }
  text2 && tokens.push({type: "text", value: text2});
  return tokens;
}
function compile(tokens, values) {
  const compiled = [];
  let index2 = 0;
  const mode = Array.isArray(values) ? "list" : isObject(values) ? "named" : "unknown";
  if (mode === "unknown") {
    return compiled;
  }
  while (index2 < tokens.length) {
    const token = tokens[index2];
    switch (token.type) {
      case "text":
        compiled.push(token.value);
        break;
      case "list":
        compiled.push(values[parseInt(token.value, 10)]);
        break;
      case "named":
        if (mode === "named") {
          compiled.push(values[token.value]);
        }
        break;
    }
    index2++;
  }
  return compiled;
}
const LOCALE_ZH_HANS = "zh-Hans";
const LOCALE_ZH_HANT = "zh-Hant";
const LOCALE_EN = "en";
const LOCALE_FR = "fr";
const LOCALE_ES = "es";
const hasOwnProperty = Object.prototype.hasOwnProperty;
const hasOwn = (val, key) => hasOwnProperty.call(val, key);
const defaultFormatter = new BaseFormatter();
function include(str, parts) {
  return !!parts.find((part) => str.indexOf(part) !== -1);
}
function startsWith(str, parts) {
  return parts.find((part) => str.indexOf(part) === 0);
}
function normalizeLocale(locale, messages) {
  if (!locale) {
    return;
  }
  locale = locale.trim().replace(/_/g, "-");
  if (messages[locale]) {
    return locale;
  }
  locale = locale.toLowerCase();
  if (locale.indexOf("zh") === 0) {
    if (locale.indexOf("-hans") !== -1) {
      return LOCALE_ZH_HANS;
    }
    if (locale.indexOf("-hant") !== -1) {
      return LOCALE_ZH_HANT;
    }
    if (include(locale, ["-tw", "-hk", "-mo", "-cht"])) {
      return LOCALE_ZH_HANT;
    }
    return LOCALE_ZH_HANS;
  }
  const lang = startsWith(locale, [LOCALE_EN, LOCALE_FR, LOCALE_ES]);
  if (lang) {
    return lang;
  }
}
class I18n {
  constructor({locale, fallbackLocale, messages, watcher, formater}) {
    this.locale = LOCALE_EN;
    this.fallbackLocale = LOCALE_EN;
    this.message = {};
    this.messages = {};
    this.watchers = [];
    if (fallbackLocale) {
      this.fallbackLocale = fallbackLocale;
    }
    this.formater = formater || defaultFormatter;
    this.messages = messages || {};
    this.setLocale(locale);
    if (watcher) {
      this.watchLocale(watcher);
    }
  }
  setLocale(locale) {
    const oldLocale = this.locale;
    this.locale = normalizeLocale(locale, this.messages) || this.fallbackLocale;
fxy060608's avatar
fxy060608 已提交
154 155 156
    if (!this.messages[this.locale]) {
      this.messages[this.locale] = {};
    }
fxy060608's avatar
fxy060608 已提交
157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199
    this.message = this.messages[this.locale];
    this.watchers.forEach((watcher) => {
      watcher(this.locale, oldLocale);
    });
  }
  getLocale() {
    return this.locale;
  }
  watchLocale(fn) {
    const index2 = this.watchers.push(fn) - 1;
    return () => {
      this.watchers.splice(index2, 1);
    };
  }
  add(locale, message) {
    if (this.messages[locale]) {
      Object.assign(this.messages[locale], message);
    } else {
      this.messages[locale] = message;
    }
  }
  t(key, locale, values) {
    let message = this.message;
    if (typeof locale === "string") {
      locale = normalizeLocale(locale, this.messages);
      locale && (message = this.messages[locale]);
    } else {
      values = locale;
    }
    if (!hasOwn(message, key)) {
      console.warn(`Cannot translate the value of keypath ${key}. Use the value of keypath as default.`);
      return key;
    }
    return this.formater.interpolate(message[key], values).join("");
  }
}
function initLocaleWatcher(appVm2, i18n2) {
  appVm2.$i18n && appVm2.$i18n.vm.$watch("locale", (newLocale) => {
    i18n2.setLocale(newLocale);
  }, {
    immediate: true
  });
}
fxy060608's avatar
fxy060608 已提交
200
function initVueI18n(locale = LOCALE_EN, messages = {}, fallbackLocale = LOCALE_EN) {
fxy060608's avatar
fxy060608 已提交
201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 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
  const i18n2 = new I18n({
    locale: locale || fallbackLocale,
    fallbackLocale,
    messages
  });
  let t2 = (key, values) => {
    if (typeof getApp !== "function") {
      t2 = function(key2, values2) {
        return i18n2.t(key2, values2);
      };
    } else {
      const appVm2 = getApp().$vm;
      if (!appVm2.$t || !appVm2.$i18n) {
        t2 = function(key2, values2) {
          return i18n2.t(key2, values2);
        };
      } else {
        initLocaleWatcher(appVm2, i18n2);
        t2 = function(key2, values2) {
          const $i18n = appVm2.$i18n;
          const silentTranslationWarn = $i18n.silentTranslationWarn;
          $i18n.silentTranslationWarn = true;
          const msg = appVm2.$t(key2, values2);
          $i18n.silentTranslationWarn = silentTranslationWarn;
          if (msg !== key2) {
            return msg;
          }
          return i18n2.t(key2, $i18n.locale, values2);
        };
      }
    }
    return t2(key, values);
  };
  return {
    i18n: i18n2,
    t(key, values) {
      return t2(key, values);
    },
    add(locale2, message) {
      return i18n2.add(locale2, message);
    },
    getLocale() {
      return i18n2.getLocale();
    },
    setLocale(newLocale) {
      return i18n2.setLocale(newLocale);
    }
  };
}
fxy060608's avatar
fxy060608 已提交
250
let i18n$1;
fxy060608's avatar
fxy060608 已提交
251
function useI18n() {
fxy060608's avatar
fxy060608 已提交
252 253 254 255 256 257 258
  if (!i18n$1) {
    let language;
    {
      language = navigator.language;
    }
    i18n$1 = initVueI18n(language);
  }
fxy060608's avatar
fxy060608 已提交
259
  return i18n$1;
fxy060608's avatar
fxy060608 已提交
260
}
fxy060608's avatar
fxy060608 已提交
261
const i18n = /* @__PURE__ */ useI18n();
fxy060608's avatar
fxy060608 已提交
262 263 264 265 266
function normalizeMessages(namespace, messages) {
  return Object.keys(messages).reduce((res, name) => {
    res[namespace + name] = messages[name];
    return res;
  }, {});
fxy060608's avatar
fxy060608 已提交
267
}
fxy060608's avatar
fxy060608 已提交
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
const initI18nAsyncMsgsOnce = /* @__PURE__ */ once(() => {
  const name = "uni.async.";
  if (__UNI_FEATURE_I18N_EN__) {
    i18n.add(LOCALE_EN, normalizeMessages(name, {
      error: "The connection timed out, click the screen to try again."
    }));
  }
  if (__UNI_FEATURE_I18N_ES__) {
    i18n.add(LOCALE_ES, normalizeMessages(name, {
      error: "Se agot\xF3 el tiempo de conexi\xF3n, haga clic en la pantalla para volver a intentarlo."
    }));
  }
  if (__UNI_FEATURE_I18N_FR__) {
    i18n.add(LOCALE_FR, normalizeMessages(name, {
      error: "La connexion a expir\xE9, cliquez sur l'\xE9cran pour r\xE9essayer."
    }));
  }
  if (__UNI_FEATURE_I18N_ZH_HANS__) {
    i18n.add(LOCALE_ZH_HANS, normalizeMessages(name, {error: "\u8FDE\u63A5\u670D\u52A1\u5668\u8D85\u65F6\uFF0C\u70B9\u51FB\u5C4F\u5E55\u91CD\u8BD5"}));
  }
  if (__UNI_FEATURE_I18N_ZH_HANT__) {
    i18n.add(LOCALE_ZH_HANT, normalizeMessages(name, {error: "\u9023\u63A5\u670D\u52D9\u5668\u8D85\u6642\uFF0C\u9EDE\u64CA\u5C4F\u5E55\u91CD\u8A66"}));
  }
});
const initI18nShowModalMsgsOnce = /* @__PURE__ */ once(() => {
fxy060608's avatar
fxy060608 已提交
293 294 295
  const name = "uni.showModal.";
  if (__UNI_FEATURE_I18N_EN__) {
    i18n.add(LOCALE_EN, normalizeMessages(name, {cancel: "Cancel", confirm: "OK"}));
fxy060608's avatar
fxy060608 已提交
296
  }
fxy060608's avatar
fxy060608 已提交
297 298
  if (__UNI_FEATURE_I18N_ES__) {
    i18n.add(LOCALE_ES, normalizeMessages(name, {cancel: "Cancelar", confirm: "OK"}));
fxy060608's avatar
fxy060608 已提交
299
  }
fxy060608's avatar
fxy060608 已提交
300 301
  if (__UNI_FEATURE_I18N_FR__) {
    i18n.add(LOCALE_FR, normalizeMessages(name, {cancel: "Annuler", confirm: "OK"}));
fxy060608's avatar
fxy060608 已提交
302
  }
fxy060608's avatar
fxy060608 已提交
303 304
  if (__UNI_FEATURE_I18N_ZH_HANS__) {
    i18n.add(LOCALE_ZH_HANS, normalizeMessages(name, {cancel: "\u53D6\u6D88", confirm: "\u786E\u5B9A"}));
fxy060608's avatar
fxy060608 已提交
305
  }
fxy060608's avatar
fxy060608 已提交
306 307
  if (__UNI_FEATURE_I18N_ZH_HANT__) {
    i18n.add(LOCALE_ZH_HANT, normalizeMessages(name, {cancel: "\u53D6\u6D88", confirm: "\u78BA\u5B9A"}));
fxy060608's avatar
fxy060608 已提交
308
  }
fxy060608's avatar
fxy060608 已提交
309
});
fxy060608's avatar
fxy060608 已提交
310 311 312 313 314 315 316 317 318 319 320 321 322
function E() {
}
E.prototype = {
  on: function(name, callback, ctx) {
    var e2 = this.e || (this.e = {});
    (e2[name] || (e2[name] = [])).push({
      fn: callback,
      ctx
    });
    return this;
  },
  once: function(name, callback, ctx) {
    var self = this;
Q
qiang 已提交
323 324
    function listener2() {
      self.off(name, listener2);
fxy060608's avatar
fxy060608 已提交
325
      callback.apply(ctx, arguments);
fxy060608's avatar
fxy060608 已提交
326
    }
Q
qiang 已提交
327 328
    listener2._ = callback;
    return this.on(name, listener2, ctx);
fxy060608's avatar
fxy060608 已提交
329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351
  },
  emit: function(name) {
    var data = [].slice.call(arguments, 1);
    var evtArr = ((this.e || (this.e = {}))[name] || []).slice();
    var i2 = 0;
    var len = evtArr.length;
    for (i2; i2 < len; i2++) {
      evtArr[i2].fn.apply(evtArr[i2].ctx, data);
    }
    return this;
  },
  off: function(name, callback) {
    var e2 = this.e || (this.e = {});
    var evts = e2[name];
    var liveEvents = [];
    if (evts && callback) {
      for (var i2 = 0, len = evts.length; i2 < len; i2++) {
        if (evts[i2].fn !== callback && evts[i2].fn._ !== callback)
          liveEvents.push(evts[i2]);
      }
    }
    liveEvents.length ? e2[name] = liveEvents : delete e2[name];
    return this;
fxy060608's avatar
fxy060608 已提交
352
  }
fxy060608's avatar
fxy060608 已提交
353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369
};
function initBridge(namespace) {
  const emitter2 = new E();
  return extend(emitter2, {
    subscribe(event2, callback) {
      emitter2.on(`${namespace}.${event2}`, callback);
    },
    unsubscribe(event2, callback) {
      emitter2.off(`${namespace}.${event2}`, callback);
    },
    subscribeHandler(event2, args, pageId) {
      if (process.env.NODE_ENV !== "production") {
        console.log(`[${namespace}][subscribeHandler][${Date.now()}]:${event2}, ${JSON.stringify(args)}, ${pageId}`);
      }
      emitter2.emit(`${namespace}.${event2}`, args, pageId);
    }
  });
fxy060608's avatar
fxy060608 已提交
370
}
fxy060608's avatar
fxy060608 已提交
371
const ViewJSBridge = /* @__PURE__ */ initBridge("view");
fxy060608's avatar
fxy060608 已提交
372 373 374 375 376 377 378 379
const LONGPRESS_TIMEOUT = 350;
const LONGPRESS_THRESHOLD = 10;
const passiveOptions$2 = passive(true);
let longPressTimer = 0;
function clearLongPressTimer() {
  if (longPressTimer) {
    clearTimeout(longPressTimer);
    longPressTimer = 0;
fxy060608's avatar
fxy060608 已提交
380
  }
fxy060608's avatar
fxy060608 已提交
381
}
fxy060608's avatar
fxy060608 已提交
382 383 384 385 386 387
let startPageX = 0;
let startPageY = 0;
function touchstart(evt) {
  clearLongPressTimer();
  if (evt.touches.length !== 1) {
    return;
fxy060608's avatar
fxy060608 已提交
388
  }
fxy060608's avatar
fxy060608 已提交
389 390 391 392 393 394 395 396 397 398 399 400 401 402
  const {pageX, pageY} = evt.touches[0];
  startPageX = pageX;
  startPageY = pageY;
  longPressTimer = setTimeout(function() {
    const customEvent = new CustomEvent("longpress", {
      bubbles: true,
      cancelable: true,
      target: evt.target,
      currentTarget: evt.currentTarget
    });
    customEvent.touches = evt.touches;
    customEvent.changedTouches = evt.changedTouches;
    evt.target.dispatchEvent(customEvent);
  }, LONGPRESS_TIMEOUT);
fxy060608's avatar
fxy060608 已提交
403
}
fxy060608's avatar
fxy060608 已提交
404 405
function touchmove(evt) {
  if (!longPressTimer) {
fxy060608's avatar
fxy060608 已提交
406 407
    return;
  }
fxy060608's avatar
fxy060608 已提交
408 409
  if (evt.touches.length !== 1) {
    return clearLongPressTimer();
fxy060608's avatar
fxy060608 已提交
410
  }
fxy060608's avatar
fxy060608 已提交
411 412 413
  const {pageX, pageY} = evt.touches[0];
  if (Math.abs(pageX - startPageX) > LONGPRESS_THRESHOLD || Math.abs(pageY - startPageY) > LONGPRESS_THRESHOLD) {
    return clearLongPressTimer();
fxy060608's avatar
fxy060608 已提交
414
  }
fxy060608's avatar
fxy060608 已提交
415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434
}
function initLongPress() {
  window.addEventListener("touchstart", touchstart, passiveOptions$2);
  window.addEventListener("touchmove", touchmove, passiveOptions$2);
  window.addEventListener("touchend", clearLongPressTimer, passiveOptions$2);
  window.addEventListener("touchcancel", clearLongPressTimer, passiveOptions$2);
}
var attrs = ["top", "left", "right", "bottom"];
var inited;
var elementComputedStyle = {};
var support;
function getSupport() {
  if (!("CSS" in window) || typeof CSS.supports != "function") {
    support = "";
  } else if (CSS.supports("top: env(safe-area-inset-top)")) {
    support = "env";
  } else if (CSS.supports("top: constant(safe-area-inset-top)")) {
    support = "constant";
  } else {
    support = "";
fxy060608's avatar
fxy060608 已提交
435
  }
fxy060608's avatar
fxy060608 已提交
436 437 438 439 440 441 442 443
  return support;
}
function init() {
  support = typeof support === "string" ? support : getSupport();
  if (!support) {
    attrs.forEach(function(attr2) {
      elementComputedStyle[attr2] = 0;
    });
fxy060608's avatar
fxy060608 已提交
444
    return;
fxy060608's avatar
fxy060608 已提交
445
  }
fxy060608's avatar
fxy060608 已提交
446 447 448 449 450 451
  function setStyle(el, style) {
    var elStyle = el.style;
    Object.keys(style).forEach(function(key) {
      var val = style[key];
      elStyle[key] = val;
    });
fxy060608's avatar
fxy060608 已提交
452
  }
fxy060608's avatar
fxy060608 已提交
453 454 455 456 457 458 459 460
  var cbs = [];
  function parentReady(callback) {
    if (callback) {
      cbs.push(callback);
    } else {
      cbs.forEach(function(cb) {
        cb();
      });
fxy060608's avatar
fxy060608 已提交
461
    }
fxy060608's avatar
fxy060608 已提交
462
  }
fxy060608's avatar
fxy060608 已提交
463 464 465 466 467 468 469 470 471
  var passiveEvents = false;
  try {
    var opts = Object.defineProperty({}, "passive", {
      get: function() {
        passiveEvents = {passive: true};
      }
    });
    window.addEventListener("test", null, opts);
  } catch (e2) {
fxy060608's avatar
fxy060608 已提交
472
  }
fxy060608's avatar
fxy060608 已提交
473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528
  function addChild(parent, attr2) {
    var a1 = document.createElement("div");
    var a2 = document.createElement("div");
    var a1Children = document.createElement("div");
    var a2Children = document.createElement("div");
    var W = 100;
    var MAX = 1e4;
    var aStyle = {
      position: "absolute",
      width: W + "px",
      height: "200px",
      boxSizing: "border-box",
      overflow: "hidden",
      paddingBottom: support + "(safe-area-inset-" + attr2 + ")"
    };
    setStyle(a1, aStyle);
    setStyle(a2, aStyle);
    setStyle(a1Children, {
      transition: "0s",
      animation: "none",
      width: "400px",
      height: "400px"
    });
    setStyle(a2Children, {
      transition: "0s",
      animation: "none",
      width: "250%",
      height: "250%"
    });
    a1.appendChild(a1Children);
    a2.appendChild(a2Children);
    parent.appendChild(a1);
    parent.appendChild(a2);
    parentReady(function() {
      a1.scrollTop = a2.scrollTop = MAX;
      var a1LastScrollTop = a1.scrollTop;
      var a2LastScrollTop = a2.scrollTop;
      function onScroll() {
        if (this.scrollTop === (this === a1 ? a1LastScrollTop : a2LastScrollTop)) {
          return;
        }
        a1.scrollTop = a2.scrollTop = MAX;
        a1LastScrollTop = a1.scrollTop;
        a2LastScrollTop = a2.scrollTop;
        attrChange(attr2);
      }
      a1.addEventListener("scroll", onScroll, passiveEvents);
      a2.addEventListener("scroll", onScroll, passiveEvents);
    });
    var computedStyle = getComputedStyle(a1);
    Object.defineProperty(elementComputedStyle, attr2, {
      configurable: true,
      get: function() {
        return parseFloat(computedStyle.paddingBottom);
      }
    });
fxy060608's avatar
fxy060608 已提交
529
  }
fxy060608's avatar
fxy060608 已提交
530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546
  var parentDiv = document.createElement("div");
  setStyle(parentDiv, {
    position: "absolute",
    left: "0",
    top: "0",
    width: "0",
    height: "0",
    zIndex: "-1",
    overflow: "hidden",
    visibility: "hidden"
  });
  attrs.forEach(function(key) {
    addChild(parentDiv, key);
  });
  document.body.appendChild(parentDiv);
  parentReady();
  inited = true;
fxy060608's avatar
fxy060608 已提交
547
}
fxy060608's avatar
fxy060608 已提交
548 549 550
function getAttr(attr2) {
  if (!inited) {
    init();
fxy060608's avatar
fxy060608 已提交
551
  }
fxy060608's avatar
fxy060608 已提交
552
  return elementComputedStyle[attr2];
fxy060608's avatar
fxy060608 已提交
553
}
fxy060608's avatar
fxy060608 已提交
554 555 556 557 558 559 560 561 562 563 564 565 566 567 568
var changeAttrs = [];
function attrChange(attr2) {
  if (!changeAttrs.length) {
    setTimeout(function() {
      var style = {};
      changeAttrs.forEach(function(attr3) {
        style[attr3] = elementComputedStyle[attr3];
      });
      changeAttrs.length = 0;
      callbacks$1.forEach(function(callback) {
        callback(style);
      });
    }, 0);
  }
  changeAttrs.push(attr2);
fxy060608's avatar
fxy060608 已提交
569
}
fxy060608's avatar
fxy060608 已提交
570 571 572 573 574 575 576 577 578 579 580
var callbacks$1 = [];
function onChange(callback) {
  if (!getSupport()) {
    return;
  }
  if (!inited) {
    init();
  }
  if (typeof callback === "function") {
    callbacks$1.push(callback);
  }
fxy060608's avatar
fxy060608 已提交
581
}
fxy060608's avatar
fxy060608 已提交
582 583 584 585 586
function offChange(callback) {
  var index2 = callbacks$1.indexOf(callback);
  if (index2 >= 0) {
    callbacks$1.splice(index2, 1);
  }
fxy060608's avatar
fxy060608 已提交
587
}
fxy060608's avatar
fxy060608 已提交
588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606
var safeAreaInsets = {
  get support() {
    return (typeof support === "string" ? support : getSupport()).length != 0;
  },
  get top() {
    return getAttr("top");
  },
  get left() {
    return getAttr("left");
  },
  get right() {
    return getAttr("right");
  },
  get bottom() {
    return getAttr("bottom");
  },
  onChange,
  offChange
};
Q
qiang 已提交
607
var out = safeAreaInsets;
fxy060608's avatar
fxy060608 已提交
608
function getWindowOffset() {
fxy060608's avatar
fxy060608 已提交
609 610 611 612 613
  const style = document.documentElement.style;
  const top = parseInt(style.getPropertyValue("--window-top"));
  const bottom = parseInt(style.getPropertyValue("--window-bottom"));
  const left = parseInt(style.getPropertyValue("--window-left"));
  const right = parseInt(style.getPropertyValue("--window-right"));
fxy060608's avatar
fxy060608 已提交
614
  return {
Q
qiang 已提交
615 616 617 618
    top: top ? top + out.top : 0,
    bottom: bottom ? bottom + out.bottom : 0,
    left: left ? left + out.left : 0,
    right: right ? right + out.right : 0
fxy060608's avatar
fxy060608 已提交
619
  };
fxy060608's avatar
fxy060608 已提交
620
}
fxy060608's avatar
fxy060608 已提交
621 622 623 624 625
function findUniTarget($event, $el) {
  let target = $event.target;
  for (; target && target !== $el; target = target.parentNode) {
    if (target.tagName && target.tagName.indexOf("UNI-") === 0) {
      break;
fxy060608's avatar
fxy060608 已提交
626
    }
fxy060608's avatar
fxy060608 已提交
627
  }
fxy060608's avatar
fxy060608 已提交
628
  return target;
fxy060608's avatar
fxy060608 已提交
629
}
Q
qiang 已提交
630
function normalizeDataset$1(dataset = {}) {
fxy060608's avatar
fxy060608 已提交
631 632
  const result = JSON.parse(JSON.stringify(dataset));
  return result;
fxy060608's avatar
fxy060608 已提交
633
}
fxy060608's avatar
fxy060608 已提交
634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651
function normalizeEvent$1(name, $event, detail = {}, target, currentTarget) {
  if ($event._processed) {
    $event.type = detail.type || name;
    return $event;
  }
  if (isClickEvent($event, name)) {
    const {top} = getWindowOffset();
    detail = {
      x: $event.x,
      y: $event.y - top
    };
    normalizeClickEvent($event);
  }
  const ret = {
    _processed: true,
    type: detail.type || name,
    timeStamp: $event.timeStamp || 0,
    detail,
Q
qiang 已提交
652 653
    target: normalizeTarget$1(target, detail),
    currentTarget: normalizeTarget$1(currentTarget),
fxy060608's avatar
fxy060608 已提交
654 655 656 657 658 659 660 661
    touches: normalizeTouchList($event.touches),
    changedTouches: normalizeTouchList($event.changedTouches),
    preventDefault() {
    },
    stopPropagation() {
    }
  };
  return ret;
fxy060608's avatar
fxy060608 已提交
662
}
fxy060608's avatar
fxy060608 已提交
663 664 665 666 667 668 669 670 671
function normalizeClickEvent($event) {
  $event.touches = $event.changedTouches = [
    {
      force: 1,
      identifier: 0,
      clientX: $event.clientX,
      clientY: $event.clientY,
      pageX: $event.pageX,
      pageY: $event.pageY
fxy060608's avatar
fxy060608 已提交
672
    }
fxy060608's avatar
fxy060608 已提交
673
  ];
fxy060608's avatar
fxy060608 已提交
674
}
fxy060608's avatar
fxy060608 已提交
675 676
function isClickEvent(val, name) {
  return name === "click";
fxy060608's avatar
fxy060608 已提交
677
}
Q
qiang 已提交
678
function normalizeTarget$1(target, detail) {
fxy060608's avatar
fxy060608 已提交
679 680
  if (!target) {
    target = {};
fxy060608's avatar
fxy060608 已提交
681
  }
fxy060608's avatar
fxy060608 已提交
682 683 684 685
  const res = {
    id: target.id,
    offsetLeft: target.offsetLeft,
    offsetTop: target.offsetTop,
Q
qiang 已提交
686
    dataset: normalizeDataset$1(target.dataset)
fxy060608's avatar
fxy060608 已提交
687 688 689
  };
  if (detail) {
    extend(res, detail);
fxy060608's avatar
fxy060608 已提交
690
  }
fxy060608's avatar
fxy060608 已提交
691
  return res;
fxy060608's avatar
fxy060608 已提交
692
}
fxy060608's avatar
fxy060608 已提交
693 694 695 696 697 698 699 700 701 702 703 704 705 706
function normalizeTouchList(touches) {
  if (touches && touches instanceof TouchList) {
    const res = [];
    const {top} = getWindowOffset();
    for (let i2 = 0; i2 < touches.length; i2++) {
      const touch = touches[i2];
      res.push({
        identifier: touch.identifier,
        pageX: touch.pageX,
        pageY: touch.pageY - top,
        clientX: touch.clientX,
        clientY: touch.clientY - top,
        force: touch.force || 0
      });
fxy060608's avatar
fxy060608 已提交
707
    }
fxy060608's avatar
fxy060608 已提交
708
    return res;
fxy060608's avatar
fxy060608 已提交
709
  }
fxy060608's avatar
fxy060608 已提交
710
  return [];
fxy060608's avatar
fxy060608 已提交
711
}
fxy060608's avatar
fxy060608 已提交
712 713 714 715 716 717 718 719 720 721 722 723 724
const CLASS_RE = /^\s+|\s+$/g;
const WXS_CLASS_RE = /\s+/;
function getWxsClsArr(clsArr, classList, isAdd) {
  const wxsClsArr = [];
  let checkClassList = function(cls) {
    if (isAdd) {
      checkClassList = function(cls2) {
        return !classList.contains(cls2);
      };
    } else {
      checkClassList = function(cls2) {
        return classList.contains(cls2);
      };
fxy060608's avatar
fxy060608 已提交
725
    }
fxy060608's avatar
fxy060608 已提交
726
    return checkClassList(cls);
fxy060608's avatar
fxy060608 已提交
727
  };
fxy060608's avatar
fxy060608 已提交
728 729 730 731 732
  clsArr.forEach((cls) => {
    cls = cls.replace(CLASS_RE, "");
    checkClassList(cls) && wxsClsArr.push(cls);
  });
  return wxsClsArr;
fxy060608's avatar
fxy060608 已提交
733
}
fxy060608's avatar
fxy060608 已提交
734 735 736 737 738 739 740 741
function parseStyleText(cssText) {
  const res = {};
  const listDelimiter = /;(?![^(]*\))/g;
  const propertyDelimiter = /:(.+)/;
  cssText.split(listDelimiter).forEach(function(item) {
    if (item) {
      const tmp = item.split(propertyDelimiter);
      tmp.length > 1 && (res[tmp[0].trim()] = tmp[1].trim());
fxy060608's avatar
fxy060608 已提交
742 743
    }
  });
fxy060608's avatar
fxy060608 已提交
744
  return res;
fxy060608's avatar
fxy060608 已提交
745
}
fxy060608's avatar
fxy060608 已提交
746 747 748 749 750 751 752 753
class ComponentDescriptor {
  constructor(vm) {
    this.$vm = vm;
    this.$el = vm.$el;
  }
  selectComponent(selector) {
    if (!this.$el || !selector) {
      return;
fxy060608's avatar
fxy060608 已提交
754
    }
fxy060608's avatar
fxy060608 已提交
755 756 757 758 759 760
    const el = this.$el.querySelector(selector);
    return el && el.__vue__ && createComponentDescriptor(el.__vue__, false);
  }
  selectAllComponents(selector) {
    if (!this.$el || !selector) {
      return [];
fxy060608's avatar
fxy060608 已提交
761
    }
fxy060608's avatar
fxy060608 已提交
762 763 764 765 766
    const descriptors = [];
    const els = this.$el.querySelectorAll(selector);
    for (let i2 = 0; i2 < els.length; i2++) {
      const el = els[i2];
      el.__vue__ && descriptors.push(createComponentDescriptor(el.__vue__, false));
fxy060608's avatar
fxy060608 已提交
767
    }
fxy060608's avatar
fxy060608 已提交
768 769 770 771 772
    return descriptors;
  }
  setStyle(style) {
    if (!this.$el || !style) {
      return this;
fxy060608's avatar
fxy060608 已提交
773
    }
fxy060608's avatar
fxy060608 已提交
774 775 776 777 778 779 780 781
    if (typeof style === "string") {
      style = parseStyleText(style);
    }
    if (isPlainObject(style)) {
      this.$el.__wxsStyle = style;
      this.$vm.$forceUpdate();
    }
    return this;
fxy060608's avatar
fxy060608 已提交
782
  }
fxy060608's avatar
fxy060608 已提交
783 784 785 786 787 788 789 790 791 792 793
  addClass(...clsArr) {
    if (!this.$el || !clsArr.length) {
      return this;
    }
    const wxsClsArr = getWxsClsArr(clsArr, this.$el.classList, true);
    if (wxsClsArr.length) {
      const wxsClass = this.$el.__wxsAddClass || "";
      this.$el.__wxsAddClass = wxsClass + (wxsClass ? " " : "") + wxsClsArr.join(" ");
      this.$vm.$forceUpdate();
    }
    return this;
fxy060608's avatar
fxy060608 已提交
794
  }
fxy060608's avatar
fxy060608 已提交
795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815
  removeClass(...clsArr) {
    if (!this.$el || !clsArr.length) {
      return this;
    }
    const classList = this.$el.classList;
    const addWxsClsArr = this.$el.__wxsAddClass ? this.$el.__wxsAddClass.split(WXS_CLASS_RE) : [];
    const wxsClsArr = getWxsClsArr(clsArr, classList, false);
    if (wxsClsArr.length) {
      const removeWxsClsArr = [];
      wxsClsArr.forEach((cls) => {
        const clsIndex = addWxsClsArr.findIndex((oldCls) => oldCls === cls);
        if (clsIndex !== -1) {
          addWxsClsArr.splice(clsIndex, 1);
        }
        removeWxsClsArr.push(cls);
      });
      this.$el.__wxsRemoveClass = removeWxsClsArr;
      this.$el.__wxsAddClass = addWxsClsArr.join(" ");
      this.$vm.$forceUpdate();
    }
    return this;
fxy060608's avatar
fxy060608 已提交
816
  }
fxy060608's avatar
fxy060608 已提交
817 818
  hasClass(cls) {
    return this.$el && this.$el.classList.contains(cls);
fxy060608's avatar
fxy060608 已提交
819
  }
fxy060608's avatar
fxy060608 已提交
820 821 822 823 824
  getComputedStyle() {
    if (this.$el) {
      return window.getComputedStyle(this.$el);
    }
    return {};
fxy060608's avatar
fxy060608 已提交
825
  }
fxy060608's avatar
fxy060608 已提交
826 827
  getDataset() {
    return this.$el && this.$el.dataset;
fxy060608's avatar
fxy060608 已提交
828
  }
fxy060608's avatar
fxy060608 已提交
829 830 831 832 833 834 835 836 837 838
  callMethod(funcName, args = {}) {
    const func = this.$vm[funcName];
    if (isFunction(func)) {
      func(JSON.parse(JSON.stringify(args)));
    } else if (this.$vm._$id) {
      UniViewJSBridge.publishHandler("onWxsInvokeCallMethod", {
        cid: this.$vm._$id,
        method: funcName,
        args
      });
fxy060608's avatar
fxy060608 已提交
839 840
    }
  }
fxy060608's avatar
fxy060608 已提交
841 842 843 844 845 846 847 848
  requestAnimationFrame(callback) {
    return window.requestAnimationFrame(callback), this;
  }
  getState() {
    return this.$el && (this.$el.__wxsState || (this.$el.__wxsState = {}));
  }
  triggerEvent(eventName, detail = {}) {
    return this.$vm.$emit(eventName, detail), this;
fxy060608's avatar
fxy060608 已提交
849
  }
fxy060608's avatar
fxy060608 已提交
850
}
fxy060608's avatar
fxy060608 已提交
851 852 853
function createComponentDescriptor(vm, isOwnerInstance = true) {
  if (isOwnerInstance && vm && vm.$options.name && vm.$options.name.indexOf("VUni") === 0) {
    vm = vm.$parent;
fxy060608's avatar
fxy060608 已提交
854
  }
fxy060608's avatar
fxy060608 已提交
855 856 857
  if (vm && vm.$el) {
    if (!vm.$el.__wxsComponentDescriptor) {
      vm.$el.__wxsComponentDescriptor = new ComponentDescriptor(vm);
fxy060608's avatar
fxy060608 已提交
858
    }
fxy060608's avatar
fxy060608 已提交
859 860
    return vm.$el.__wxsComponentDescriptor;
  }
fxy060608's avatar
fxy060608 已提交
861
}
fxy060608's avatar
fxy060608 已提交
862 863
function getComponentDescriptor(instance, isOwnerInstance) {
  return createComponentDescriptor(instance || this, isOwnerInstance);
fxy060608's avatar
fxy060608 已提交
864
}
fxy060608's avatar
fxy060608 已提交
865 866 867
function handleWxsEvent($event) {
  if (!($event instanceof Event)) {
    return $event;
fxy060608's avatar
fxy060608 已提交
868
  }
fxy060608's avatar
fxy060608 已提交
869
  const currentTarget = $event.currentTarget;
fxy060608's avatar
fxy060608 已提交
870
  const instance = currentTarget && currentTarget.__vue__ && getComponentDescriptor.call(this, currentTarget.__vue__, false);
fxy060608's avatar
fxy060608 已提交
871 872
  const $origEvent = $event;
  $event = normalizeEvent$1($origEvent.type, $origEvent, {}, findUniTarget($origEvent, this.$el) || $origEvent.target, $origEvent.currentTarget);
fxy060608's avatar
fxy060608 已提交
873
  $event.instance = instance;
fxy060608's avatar
fxy060608 已提交
874 875 876 877 878 879
  $event.preventDefault = function() {
    return $origEvent.preventDefault();
  };
  $event.stopPropagation = function() {
    return $origEvent.stopPropagation();
  };
fxy060608's avatar
fxy060608 已提交
880
}
fxy060608's avatar
fxy060608 已提交
881 882 883 884 885 886 887 888 889 890
function initAppConfig$1(appConfig) {
  const globalProperties = appConfig.globalProperties;
  if (__UNI_FEATURE_WXS__) {
    globalProperties.getComponentDescriptor = getComponentDescriptor;
    Object.defineProperty(globalProperties, "$ownerInstance", {
      get() {
        return this.$getComponentDescriptor(this);
      }
    });
    globalProperties.$handleWxsEvent = handleWxsEvent;
fxy060608's avatar
fxy060608 已提交
891
  }
fxy060608's avatar
fxy060608 已提交
892 893 894 895
}
function initView(app) {
  if (__UNI_FEATURE_LONGPRESS__) {
    initLongPress();
fxy060608's avatar
fxy060608 已提交
896
  }
fxy060608's avatar
fxy060608 已提交
897
  initAppConfig$1(app._context.config);
fxy060608's avatar
fxy060608 已提交
898
}
fxy060608's avatar
fxy060608 已提交
899 900 901
const ServiceJSBridge = /* @__PURE__ */ extend(initBridge("service"), {
  invokeOnCallback(name, res) {
    return UniServiceJSBridge.emit("api." + name, res);
fxy060608's avatar
fxy060608 已提交
902
  }
fxy060608's avatar
fxy060608 已提交
903 904 905 906 907 908 909 910 911
});
function querySelector(vm, selector) {
  const el = vm.$el.querySelector(selector);
  return el && el.__vue__;
}
function querySelectorAll(vm, selector) {
  const nodeList = vm.$el.querySelectorAll(selector);
  if (nodeList) {
    return [...nodeList].map((node) => node.__vue__).filter(Boolean);
fxy060608's avatar
fxy060608 已提交
912
  }
fxy060608's avatar
fxy060608 已提交
913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938
  return [];
}
function createSelectorQuery$1() {
  return uni.createSelectorQuery().in(this);
}
function createIntersectionObserver$1(options) {
  return uni.createIntersectionObserver(this, options);
}
function selectComponent(selector) {
  return querySelector(this, selector);
}
function selectAllComponents(selector) {
  return querySelectorAll(this, selector);
}
var wxInstance = /* @__PURE__ */ Object.freeze({
  __proto__: null,
  [Symbol.toStringTag]: "Module",
  createSelectorQuery: createSelectorQuery$1,
  createIntersectionObserver: createIntersectionObserver$1,
  selectComponent,
  selectAllComponents
});
function initAppConfig(appConfig) {
  const globalProperties = appConfig.globalProperties;
  if (__UNI_FEATURE_WX__) {
    extend(globalProperties, wxInstance);
fxy060608's avatar
fxy060608 已提交
939
  }
fxy060608's avatar
fxy060608 已提交
940 941 942 943 944 945 946 947 948
}
function initService(app) {
  initAppConfig(app._context.config);
}
function getCurrentPage() {
  const pages = getCurrentPages();
  const len = pages.length;
  if (len) {
    return pages[len - 1];
fxy060608's avatar
fxy060608 已提交
949
  }
fxy060608's avatar
fxy060608 已提交
950 951 952 953 954
}
function getCurrentPageMeta() {
  const page = getCurrentPage();
  if (page) {
    return page.$page.meta;
fxy060608's avatar
fxy060608 已提交
955
  }
fxy060608's avatar
fxy060608 已提交
956 957 958 959 960
}
function getCurrentPageVm() {
  const page = getCurrentPage();
  if (page) {
    return page.$vm;
fxy060608's avatar
fxy060608 已提交
961
  }
fxy060608's avatar
fxy060608 已提交
962 963 964 965 966 967
}
function invokeHook(vm, name, args) {
  if (isString(vm)) {
    args = name;
    name = vm;
    vm = getCurrentPageVm();
fxy060608's avatar
fxy060608 已提交
968
  }
fxy060608's avatar
fxy060608 已提交
969 970
  if (!vm) {
    return;
fxy060608's avatar
fxy060608 已提交
971
  }
fxy060608's avatar
fxy060608 已提交
972 973 974 975 976 977 978 979 980 981 982 983 984
  const hooks = vm.$[name];
  return hooks && invokeArrayFns(hooks, args);
}
function PolySymbol(name) {
  return Symbol(process.env.NODE_ENV !== "production" ? "[uni-app]: " + name : name);
}
function rpx2px(str) {
  if (typeof str === "string") {
    const res = parseInt(str) || 0;
    if (str.indexOf("rpx") !== -1 || str.indexOf("upx") !== -1) {
      return uni.upx2px(res);
    }
    return res;
fxy060608's avatar
fxy060608 已提交
985
  }
fxy060608's avatar
fxy060608 已提交
986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023
  return str;
}
const ICON_PATH_CANCEL = "M20.928 10.176l-4.928 4.928-4.928-4.928-0.896 0.896 4.928 4.928-4.928 4.928 0.896 0.896 4.928-4.928 4.928 4.928 0.896-0.896-4.928-4.928 4.928-4.928-0.896-0.896zM16 2.080q-3.776 0-7.040 1.888-3.136 1.856-4.992 4.992-1.888 3.264-1.888 7.040t1.888 7.040q1.856 3.136 4.992 4.992 3.264 1.888 7.040 1.888t7.040-1.888q3.136-1.856 4.992-4.992 1.888-3.264 1.888-7.040t-1.888-7.040q-1.856-3.136-4.992-4.992-3.264-1.888-7.040-1.888zM16 28.64q-3.424 0-6.4-1.728-2.848-1.664-4.512-4.512-1.728-2.976-1.728-6.4t1.728-6.4q1.664-2.848 4.512-4.512 2.976-1.728 6.4-1.728t6.4 1.728q2.848 1.664 4.512 4.512 1.728 2.976 1.728 6.4t-1.728 6.4q-1.664 2.848-4.512 4.512-2.976 1.728-6.4 1.728z";
const ICON_PATH_CLEAR = "M16 0q-4.352 0-8.064 2.176-3.616 2.144-5.76 5.76-2.176 3.712-2.176 8.064t2.176 8.064q2.144 3.616 5.76 5.76 3.712 2.176 8.064 2.176t8.064-2.176q3.616-2.144 5.76-5.76 2.176-3.712 2.176-8.064t-2.176-8.064q-2.144-3.616-5.76-5.76-3.712-2.176-8.064-2.176zM22.688 21.408q0.32 0.32 0.304 0.752t-0.336 0.736-0.752 0.304-0.752-0.32l-5.184-5.376-5.376 5.184q-0.32 0.32-0.752 0.304t-0.736-0.336-0.304-0.752 0.32-0.752l5.376-5.184-5.184-5.376q-0.32-0.32-0.304-0.752t0.336-0.752 0.752-0.304 0.752 0.336l5.184 5.376 5.376-5.184q0.32-0.32 0.752-0.304t0.752 0.336 0.304 0.752-0.336 0.752l-5.376 5.184 5.184 5.376z";
const ICON_PATH_DOWNLOAD = "M15.808 1.696q-3.776 0-7.072 1.984-3.2 1.888-5.088 5.152-1.952 3.392-1.952 7.36 0 3.776 1.952 7.072 1.888 3.2 5.088 5.088 3.296 1.952 7.072 1.952 3.968 0 7.36-1.952 3.264-1.888 5.152-5.088 1.984-3.296 1.984-7.072 0-4-1.984-7.36-1.888-3.264-5.152-5.152-3.36-1.984-7.36-1.984zM20.864 18.592l-3.776 4.928q-0.448 0.576-1.088 0.576t-1.088-0.576l-3.776-4.928q-0.448-0.576-0.24-0.992t0.944-0.416h2.976v-8.928q0-0.256 0.176-0.432t0.4-0.176h1.216q0.224 0 0.4 0.176t0.176 0.432v8.928h2.976q0.736 0 0.944 0.416t-0.24 0.992z";
const ICON_PATH_INFO = "M15.808 0.128q-4.224 0-7.872 2.176-3.552 2.112-5.632 5.728-2.176 3.776-2.176 8.16 0 4.224 2.176 7.872 2.080 3.552 5.632 5.632 3.648 2.176 7.872 2.176 4.384 0 8.16-2.176 3.616-2.080 5.728-5.632 2.176-3.648 2.176-7.872 0-4.416-2.176-8.16-2.112-3.616-5.728-5.728-3.744-2.176-8.16-2.176zM16.864 23.776q0 0.064-0.064 0.064h-1.568q-0.096 0-0.096-0.064l-0.256-11.328q0-0.064 0.064-0.064h2.112q0.096 0 0.064 0.064l-0.256 11.328zM16 10.88q-0.576 0-0.976-0.4t-0.4-0.96 0.4-0.96 0.976-0.4 0.976 0.4 0.4 0.96-0.4 0.96-0.976 0.4z";
const ICON_PATH_SEARCH = "M20.928 22.688q-1.696 1.376-3.744 2.112-2.112 0.768-4.384 0.768-3.488 0-6.464-1.728-2.88-1.696-4.576-4.608-1.76-2.976-1.76-6.464t1.76-6.464q1.696-2.88 4.576-4.576 2.976-1.76 6.464-1.76t6.464 1.76q2.912 1.696 4.608 4.576 1.728 2.976 1.728 6.464 0 2.272-0.768 4.384-0.736 2.048-2.112 3.744l9.312 9.28-1.824 1.824-9.28-9.312zM12.8 23.008q2.784 0 5.184-1.376 2.304-1.376 3.68-3.68 1.376-2.4 1.376-5.184t-1.376-5.152q-1.376-2.336-3.68-3.68-2.4-1.408-5.184-1.408t-5.152 1.408q-2.336 1.344-3.68 3.68-1.408 2.368-1.408 5.152t1.408 5.184q1.344 2.304 3.68 3.68 2.368 1.376 5.152 1.376zM12.8 23.008v0z";
const ICON_PATH_SUCCESS_NO_CIRCLE = "M1.952 18.080q-0.32-0.352-0.416-0.88t0.128-0.976l0.16-0.352q0.224-0.416 0.64-0.528t0.8 0.176l6.496 4.704q0.384 0.288 0.912 0.272t0.88-0.336l17.312-14.272q0.352-0.288 0.848-0.256t0.848 0.352l-0.416-0.416q0.32 0.352 0.32 0.816t-0.32 0.816l-18.656 18.912q-0.32 0.352-0.8 0.352t-0.8-0.32l-7.936-8.064z";
const ICON_PATH_SUCCESS = "M15.808 0.16q-4.224 0-7.872 2.176-3.552 2.112-5.632 5.728-2.144 3.744-2.144 8.128 0 4.192 2.144 7.872 2.112 3.52 5.632 5.632 3.68 2.144 7.872 2.144 4.384 0 8.128-2.144 3.616-2.080 5.728-5.632 2.176-3.648 2.176-7.872 0-4.384-2.176-8.128-2.112-3.616-5.728-5.728-3.744-2.176-8.128-2.176zM24.832 11.328l-11.264 11.104q-0.032 0.032-0.112 0.032t-0.112-0.032l-5.216-5.376q-0.096-0.128 0-0.288l0.704-0.96q0.032-0.064 0.112-0.064t0.112 0.032l4.256 3.264q0.064 0.032 0.144 0.032t0.112-0.032l10.336-8.608q0.064-0.064 0.144-0.064t0.112 0.064l0.672 0.672q0.128 0.128 0 0.224z";
const ICON_PATH_WAITING = "M15.84 0.096q-4.224 0-7.872 2.176-3.552 2.112-5.632 5.728-2.144 3.744-2.144 8.128 0 4.192 2.144 7.872 2.112 3.52 5.632 5.632 3.68 2.144 7.872 2.144 4.384 0 8.128-2.144 3.616-2.080 5.728-5.632 2.176-3.648 2.176-7.872 0-4.384-2.176-8.128-2.112-3.616-5.728-5.728-3.744-2.176-8.128-2.176zM23.008 21.92l-0.512 0.896q-0.096 0.128-0.224 0.064l-8-3.808q-0.096-0.064-0.16-0.128-0.128-0.096-0.128-0.288l0.512-12.096q0-0.064 0.048-0.112t0.112-0.048h1.376q0.064 0 0.112 0.048t0.048 0.112l0.448 10.848 6.304 4.256q0.064 0.064 0.080 0.128t-0.016 0.128z";
const ICON_PATH_WARN = "M15.808 0.16q-4.224 0-7.872 2.176-3.552 2.112-5.632 5.728-2.144 3.744-2.144 8.128 0 4.192 2.144 7.872 2.112 3.52 5.632 5.632 3.68 2.144 7.872 2.144 4.384 0 8.128-2.144 3.616-2.080 5.728-5.632 2.176-3.648 2.176-7.872 0-4.384-2.176-8.128-2.112-3.616-5.728-5.728-3.744-2.176-8.128-2.176zM15.136 8.672h1.728q0.128 0 0.224 0.096t0.096 0.256l-0.384 10.24q0 0.064-0.048 0.112t-0.112 0.048h-1.248q-0.096 0-0.144-0.048t-0.048-0.112l-0.384-10.24q0-0.16 0.096-0.256t0.224-0.096zM16 23.328q-0.48 0-0.832-0.352t-0.352-0.848 0.352-0.848 0.832-0.352 0.832 0.352 0.352 0.848-0.352 0.848-0.832 0.352z";
function createSvgIconVNode(path, color = "#000", size = 27) {
  return createVNode("svg", {
    width: size,
    height: size,
    viewBox: "0 0 32 32"
  }, [
    createVNode("path", {
      d: path,
      fill: color
    }, null, 8, ["d", "fill"])
  ], 8, ["width", "height"]);
}
function getRealRoute(fromRoute, toRoute) {
  if (!toRoute) {
    toRoute = fromRoute;
    if (toRoute.indexOf("/") === 0) {
      return toRoute;
    }
    const pages = getCurrentPages();
    if (pages.length) {
      fromRoute = pages[pages.length - 1].$page.route;
    } else {
      fromRoute = "";
    }
  } else {
    if (toRoute.indexOf("/") === 0) {
      return toRoute;
fxy060608's avatar
fxy060608 已提交
1024 1025
    }
  }
fxy060608's avatar
fxy060608 已提交
1026 1027
  if (toRoute.indexOf("./") === 0) {
    return getRealRoute(fromRoute, toRoute.substr(2));
fxy060608's avatar
fxy060608 已提交
1028
  }
fxy060608's avatar
fxy060608 已提交
1029 1030 1031 1032
  const toRouteArray = toRoute.split("/");
  const toRouteLength = toRouteArray.length;
  let i2 = 0;
  for (; i2 < toRouteLength && toRouteArray[i2] === ".."; i2++) {
fxy060608's avatar
fxy060608 已提交
1033
  }
fxy060608's avatar
fxy060608 已提交
1034 1035 1036 1037 1038 1039
  toRouteArray.splice(0, i2);
  toRoute = toRouteArray.join("/");
  const fromRouteArray = fromRoute.length > 0 ? fromRoute.split("/") : [];
  fromRouteArray.splice(fromRouteArray.length - i2 - 1, i2 + 1);
  return "/" + fromRouteArray.concat(toRouteArray).join("/");
}
fxy060608's avatar
fxy060608 已提交
1040 1041
function errorHandler(err, instance, info) {
  if (!instance) {
fxy060608's avatar
fxy060608 已提交
1042
    throw err;
fxy060608's avatar
fxy060608 已提交
1043
  }
fxy060608's avatar
fxy060608 已提交
1044 1045 1046
  const app = getApp();
  if (!app || !app.$vm) {
    throw err;
fxy060608's avatar
fxy060608 已提交
1047
  }
fxy060608's avatar
fxy060608 已提交
1048 1049
  {
    invokeHook(app.$vm, "onError", err);
fxy060608's avatar
fxy060608 已提交
1050 1051
  }
}
fxy060608's avatar
fxy060608 已提交
1052 1053 1054 1055
function initApp$1(app) {
  const appConfig = app._context.config;
  if (isFunction(app._component.onError)) {
    appConfig.errorHandler = errorHandler;
fxy060608's avatar
fxy060608 已提交
1056
  }
fxy060608's avatar
fxy060608 已提交
1057 1058 1059 1060
  const globalProperties = appConfig.globalProperties;
  {
    globalProperties.$set = set;
    globalProperties.$applyOptions = applyOptions;
fxy060608's avatar
fxy060608 已提交
1061
  }
fxy060608's avatar
fxy060608 已提交
1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074
}
const pageMetaKey = PolySymbol(process.env.NODE_ENV !== "production" ? "UniPageMeta" : "upm");
function usePageMeta() {
  return inject(pageMetaKey);
}
function providePageMeta() {
  const pageMeta = initPageMeta();
  provide(pageMetaKey, pageMeta);
  return pageMeta;
}
function initPageMeta() {
  if (__UNI_FEATURE_PAGES__) {
    return reactive(normalizePageMeta(JSON.parse(JSON.stringify(mergePageMeta(useRoute().meta)))));
fxy060608's avatar
fxy060608 已提交
1075
  }
fxy060608's avatar
fxy060608 已提交
1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089
  return reactive(normalizePageMeta(JSON.parse(JSON.stringify(mergePageMeta(__uniRoutes[0].meta)))));
}
const PAGE_META_KEYS = [
  "navigationBar",
  "refreshOptions"
];
function mergePageMeta(pageMeta) {
  const res = Object.assign({}, __uniConfig.globalStyle, pageMeta);
  PAGE_META_KEYS.forEach((name) => {
    res[name] = Object.assign({}, __uniConfig.globalStyle[name] || {}, pageMeta[name] || {});
  });
  return res;
}
function normalizePageMeta(pageMeta) {
fxy060608's avatar
fxy060608 已提交
1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103
  if (__UNI_FEATURE_PULL_DOWN_REFRESH__) {
    const {enablePullDownRefresh, navigationBar} = pageMeta;
    if (enablePullDownRefresh) {
      const refreshOptions = Object.assign({
        support: true,
        color: "#2BD009",
        style: "circle",
        height: 70,
        range: 150,
        offset: 0
      }, pageMeta.refreshOptions || {});
      let offset = rpx2px(refreshOptions.offset);
      const {type} = navigationBar;
      if (type !== "transparent" && type !== "none") {
Q
qiang 已提交
1104
        offset += NAVBAR_HEIGHT + out.top;
fxy060608's avatar
fxy060608 已提交
1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116
      }
      refreshOptions.height = rpx2px(refreshOptions.height);
      refreshOptions.range = rpx2px(refreshOptions.range);
      pageMeta.refreshOptions = refreshOptions;
    }
  }
  if (__UNI_FEATURE_NAVIGATIONBAR__) {
    const {navigationBar} = pageMeta;
    navigationBar.backButton = pageMeta.isQuit ? false : true;
    navigationBar.titleColor = navigationBar.titleColor || "#fff";
    navigationBar.backgroundColor = navigationBar.backgroundColor || "#F7F7F7";
  }
fxy060608's avatar
fxy060608 已提交
1117 1118 1119
  if (__UNI_FEATURE_PAGES__ && history.state) {
    const type = history.state.__type__;
    if ((type === "redirectTo" || type === "reLaunch") && getCurrentPages().length === 0) {
fxy060608's avatar
fxy060608 已提交
1120 1121 1122 1123
      pageMeta.isEntry = true;
      pageMeta.isQuit = true;
    }
  }
fxy060608's avatar
fxy060608 已提交
1124
  return pageMeta;
fxy060608's avatar
fxy060608 已提交
1125
}
fxy060608's avatar
fxy060608 已提交
1126 1127 1128 1129 1130 1131
const sheetsMap = new Map();
function updateStyle(id2, content) {
  let style = sheetsMap.get(id2);
  if (style && !(style instanceof HTMLStyleElement)) {
    removeStyle(id2);
    style = void 0;
fxy060608's avatar
fxy060608 已提交
1132
  }
fxy060608's avatar
fxy060608 已提交
1133 1134 1135 1136 1137 1138 1139
  if (!style) {
    style = document.createElement("style");
    style.setAttribute("type", "text/css");
    style.innerHTML = content;
    document.head.appendChild(style);
  } else {
    style.innerHTML = content;
fxy060608's avatar
fxy060608 已提交
1140
  }
fxy060608's avatar
fxy060608 已提交
1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152
  sheetsMap.set(id2, style);
}
function removeStyle(id2) {
  let style = sheetsMap.get(id2);
  if (style) {
    if (style instanceof CSSStyleSheet) {
      document.adoptedStyleSheets.indexOf(style);
      document.adoptedStyleSheets = document.adoptedStyleSheets.filter((s) => s !== style);
    } else {
      document.head.removeChild(style);
    }
    sheetsMap.delete(id2);
fxy060608's avatar
fxy060608 已提交
1153
  }
fxy060608's avatar
fxy060608 已提交
1154 1155 1156 1157 1158 1159
}
const documentElement = document.documentElement;
let styleObj;
function updateCssVar(name, value) {
  if (!styleObj) {
    styleObj = documentElement.style;
fxy060608's avatar
fxy060608 已提交
1160
  }
fxy060608's avatar
fxy060608 已提交
1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172
  styleObj.setProperty(name, value);
}
PolySymbol(process.env.NODE_ENV !== "production" ? "layout" : "l");
const SEP = "$$";
const currentPagesMap = new Map();
function pruneCurrentPages() {
  currentPagesMap.forEach((page, id2) => {
    if (page.$.isUnmounted) {
      currentPagesMap.delete(id2);
    }
  });
}
fxy060608's avatar
fxy060608 已提交
1173 1174
function getCurrentPagesMap() {
  return currentPagesMap;
fxy060608's avatar
fxy060608 已提交
1175
}
fxy060608's avatar
fxy060608 已提交
1176 1177 1178 1179 1180 1181 1182
function getCurrentPages$1() {
  const curPages = [];
  const pages = currentPagesMap.values();
  for (const page of pages) {
    if (page.$page.meta.isTabBar) {
      if (page.$.__isActive) {
        curPages.push(page);
fxy060608's avatar
fxy060608 已提交
1183
      }
fxy060608's avatar
fxy060608 已提交
1184 1185
    } else {
      curPages.push(page);
fxy060608's avatar
fxy060608 已提交
1186
    }
fxy060608's avatar
fxy060608 已提交
1187
  }
fxy060608's avatar
fxy060608 已提交
1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202
  return curPages;
}
function removeRouteCache(routeKey) {
  const vnode = pageCacheMap.get(routeKey);
  if (vnode) {
    pageCacheMap.delete(routeKey);
    routeCache.pruneCacheEntry(vnode);
  }
}
function removePage(routeKey, removeRouteCaches = true) {
  const pageVm = currentPagesMap.get(routeKey);
  pageVm.$.__isUnload = true;
  invokeHook(pageVm, "onUnload");
  currentPagesMap.delete(routeKey);
  removeRouteCaches && removeRouteCache(routeKey);
fxy060608's avatar
fxy060608 已提交
1203 1204
}
let id = history.state && history.state.__id__ || 1;
fxy060608's avatar
fxy060608 已提交
1205
function createPageState(type, __id__) {
fxy060608's avatar
fxy060608 已提交
1206
  return {
fxy060608's avatar
fxy060608 已提交
1207
    __id__: __id__ || ++id,
fxy060608's avatar
fxy060608 已提交
1208 1209 1210 1211 1212
    __type__: type
  };
}
function initPublicPage(route) {
  if (!route) {
fxy060608's avatar
fxy060608 已提交
1213 1214
    const {path: path2, alias} = __uniRoutes[0];
    return {id, path: path2, route: alias.substr(1), fullPath: path2};
fxy060608's avatar
fxy060608 已提交
1215 1216 1217 1218 1219
  }
  const {path} = route;
  return {
    id,
    path,
fxy060608's avatar
fxy060608 已提交
1220
    route: route.meta.route,
fxy060608's avatar
fxy060608 已提交
1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247
    fullPath: route.meta.isEntry ? route.meta.pagePath : route.fullPath,
    options: {},
    meta: usePageMeta()
  };
}
function initPage(vm) {
  const route = vm.$route;
  const page = initPublicPage(route);
  vm.$vm = vm;
  vm.$page = page;
  currentPagesMap.set(normalizeRouteKey(page.path, page.id), vm);
}
function normalizeRouteKey(path, id2) {
  return path + SEP + id2;
}
function useKeepAliveRoute() {
  const route = useRoute();
  const routeKey = computed(() => normalizeRouteKey(route.path, history.state.__id__ || 1));
  return {
    routeKey,
    routeCache
  };
}
const pageCacheMap = new Map();
const routeCache = {
  get(key) {
    return pageCacheMap.get(key);
fxy060608's avatar
fxy060608 已提交
1248
  },
fxy060608's avatar
fxy060608 已提交
1249 1250 1251 1252 1253 1254 1255 1256
  set(key, value) {
    pruneRouteCache(key);
    pageCacheMap.set(key, value);
  },
  delete(key) {
    const vnode = pageCacheMap.get(key);
    if (!vnode) {
      return;
fxy060608's avatar
fxy060608 已提交
1257
    }
fxy060608's avatar
fxy060608 已提交
1258 1259 1260 1261
    pageCacheMap.delete(key);
  },
  forEach(fn) {
    pageCacheMap.forEach(fn);
fxy060608's avatar
fxy060608 已提交
1262
  }
fxy060608's avatar
fxy060608 已提交
1263
};
fxy060608's avatar
fxy060608 已提交
1264 1265 1266 1267
function pruneRouteCache(key) {
  const pageId = parseInt(key.split(SEP)[1]);
  if (!pageId) {
    return;
fxy060608's avatar
fxy060608 已提交
1268
  }
fxy060608's avatar
fxy060608 已提交
1269 1270 1271
  routeCache.forEach((vnode, key2) => {
    const cPageId = parseInt(key2.split(SEP)[1]);
    if (cPageId && cPageId > pageId) {
fxy060608's avatar
fxy060608 已提交
1272 1273 1274 1275 1276 1277
      if (__UNI_FEATURE_TABBAR__) {
        const {component} = vnode;
        if (component && component.refs.page && component.refs.page.$page.meta.isTabBar) {
          return;
        }
      }
fxy060608's avatar
fxy060608 已提交
1278 1279 1280
      routeCache.delete(key2);
      routeCache.pruneCacheEntry(vnode);
      nextTick(() => pruneCurrentPages());
fxy060608's avatar
fxy060608 已提交
1281
    }
fxy060608's avatar
fxy060608 已提交
1282
  });
fxy060608's avatar
fxy060608 已提交
1283
}
fxy060608's avatar
fxy060608 已提交
1284 1285 1286 1287 1288 1289 1290
function initRouter(app) {
  app.use(createAppRouter(createRouter(createRouterOptions())));
}
const scrollBehavior = (_to, _from, savedPosition) => {
  if (savedPosition) {
    return savedPosition;
  }
fxy060608's avatar
fxy060608 已提交
1291
};
fxy060608's avatar
fxy060608 已提交
1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302
function createRouterOptions() {
  return {
    history: initHistory(),
    strict: !!__uniConfig.router.strict,
    routes: __uniRoutes,
    scrollBehavior
  };
}
function createAppRouter(router) {
  return router;
}
fxy060608's avatar
fxy060608 已提交
1303 1304 1305 1306 1307 1308 1309 1310 1311
function removeCurrentPages(delta = 1) {
  const keys = getCurrentPages$1();
  const start = keys.length - 1;
  const end = start - delta;
  for (let i2 = start; i2 > end; i2--) {
    const page = keys[i2].$page;
    removePage(normalizeRouteKey(page.path, page.id), false);
  }
}
fxy060608's avatar
fxy060608 已提交
1312 1313 1314 1315 1316 1317 1318 1319 1320
function initHistory() {
  const history2 = __UNI_FEATURE_ROUTER_MODE__ === "history" ? createWebHistory() : createWebHashHistory();
  history2.listen((_to, _from, info) => {
    if (info.direction === "back") {
      removeCurrentPages(Math.abs(info.delta));
    }
  });
  return history2;
}
fxy060608's avatar
fxy060608 已提交
1321
var index$7 = {
fxy060608's avatar
fxy060608 已提交
1322 1323 1324 1325 1326 1327
  install(app) {
    initApp$1(app);
    initView(app);
    initService(app);
    if (__UNI_FEATURE_PAGES__) {
      initRouter(app);
fxy060608's avatar
fxy060608 已提交
1328
    }
fxy060608's avatar
fxy060608 已提交
1329
  }
fxy060608's avatar
fxy060608 已提交
1330
};
fxy060608's avatar
fxy060608 已提交
1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357
let appVm;
function getApp$1() {
  return appVm;
}
function initApp(vm) {
  appVm = vm;
  appVm.$vm = vm;
  appVm.globalData = appVm.$options.globalData || {};
}
function usePageRoute() {
  if (__UNI_FEATURE_PAGES__) {
    return useRoute();
  }
  const url = location.href;
  const searchPos = url.indexOf("?");
  const hashPos = url.indexOf("#", searchPos > -1 ? searchPos : 0);
  let query = {};
  if (searchPos > -1) {
    query = parseQuery(url.slice(searchPos + 1, hashPos > -1 ? hashPos : url.length));
  }
  return {
    meta: __uniRoutes[0].meta,
    query
  };
}
function wrapperComponentSetup(comp, {init: init2, setup, after}) {
  const oldSetup = comp.setup;
fxy060608's avatar
fxy060608 已提交
1358
  comp.setup = (props2, ctx) => {
fxy060608's avatar
fxy060608 已提交
1359 1360 1361
    const instance = getCurrentInstance();
    init2(instance.proxy);
    setup(instance);
fxy060608's avatar
fxy060608 已提交
1362
    if (oldSetup) {
fxy060608's avatar
fxy060608 已提交
1363
      return oldSetup(props2, ctx);
fxy060608's avatar
fxy060608 已提交
1364
    }
fxy060608's avatar
fxy060608 已提交
1365 1366 1367 1368 1369 1370 1371 1372
  };
  after && after(comp);
}
function setupComponent(comp, options) {
  if (comp && (comp.__esModule || comp[Symbol.toStringTag] === "Module")) {
    wrapperComponentSetup(comp.default, options);
  } else {
    wrapperComponentSetup(comp, options);
fxy060608's avatar
fxy060608 已提交
1373
  }
fxy060608's avatar
fxy060608 已提交
1374 1375 1376 1377 1378
  return comp;
}
function setupPage(comp) {
  return setupComponent(comp, {
    init: initPage,
fxy060608's avatar
fxy060608 已提交
1379
    setup(instance) {
fxy060608's avatar
fxy060608 已提交
1380
      const route = usePageRoute();
fxy060608's avatar
fxy060608 已提交
1381 1382 1383
      if (route.meta.isTabBar) {
        instance.__isActive = true;
      }
fxy060608's avatar
fxy060608 已提交
1384
      onBeforeMount(() => {
fxy060608's avatar
fxy060608 已提交
1385
        const {onLoad, onShow} = instance;
fxy060608's avatar
fxy060608 已提交
1386
        onLoad && invokeArrayFns$1(onLoad, decodedQuery(route.query));
fxy060608's avatar
fxy060608 已提交
1387
        instance.__isVisible = true;
fxy060608's avatar
fxy060608 已提交
1388 1389 1390
        onShow && invokeArrayFns$1(onShow);
      });
      onMounted(() => {
fxy060608's avatar
fxy060608 已提交
1391
        const {onReady} = instance;
fxy060608's avatar
fxy060608 已提交
1392 1393 1394
        onReady && invokeArrayFns$1(onReady);
      });
      onBeforeActivate(() => {
fxy060608's avatar
fxy060608 已提交
1395 1396 1397
        if (!instance.__isVisible) {
          instance.__isVisible = true;
          const {onShow} = instance;
fxy060608's avatar
fxy060608 已提交
1398 1399 1400 1401
          onShow && invokeArrayFns$1(onShow);
        }
      });
      onBeforeDeactivate(() => {
fxy060608's avatar
fxy060608 已提交
1402 1403 1404
        if (instance.__isVisible && !instance.__isUnload) {
          instance.__isVisible = false;
          const {onHide} = instance;
fxy060608's avatar
fxy060608 已提交
1405 1406 1407 1408 1409 1410 1411 1412 1413
          onHide && invokeArrayFns$1(onHide);
        }
      });
    }
  });
}
function setupApp(comp) {
  return setupComponent(comp, {
    init: initApp,
fxy060608's avatar
fxy060608 已提交
1414
    setup(instance) {
fxy060608's avatar
fxy060608 已提交
1415 1416
      const route = usePageRoute();
      onBeforeMount(() => {
fxy060608's avatar
fxy060608 已提交
1417
        const {onLaunch, onShow} = instance;
fxy060608's avatar
fxy060608 已提交
1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433
        onLaunch && invokeArrayFns$1(onLaunch, {
          path: route.meta.route,
          query: decodedQuery(route.query),
          scene: 1001
        });
        onShow && invokeArrayFns$1(onShow);
      });
      onMounted(() => {
        document.addEventListener("visibilitychange", function() {
          if (document.visibilityState === "visible") {
            UniServiceJSBridge.emit("onAppEnterForeground");
          } else {
            UniServiceJSBridge.emit("onAppEnterBackground");
          }
        });
      });
fxy060608's avatar
fxy060608 已提交
1434
    },
fxy060608's avatar
fxy060608 已提交
1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453
    after(comp2) {
      comp2.mpType = "app";
      comp2.render = () => (openBlock(), createBlock(LayoutComponent));
    }
  });
}
function broadcast(componentName, eventName, ...params) {
  const children = this.$children;
  const len = children.length;
  for (let i2 = 0; i2 < len; i2++) {
    const child = children[i2];
    const name = child.$options.name && child.$options.name.substr(4);
    if (~componentName.indexOf(name)) {
      child.$emit.apply(child, [eventName].concat(params));
      return false;
    } else {
      if (broadcast.apply(child, [componentName, eventName].concat([params])) === false) {
        return false;
      }
fxy060608's avatar
fxy060608 已提交
1454
    }
fxy060608's avatar
fxy060608 已提交
1455
  }
fxy060608's avatar
fxy060608 已提交
1456 1457 1458 1459 1460
}
var emitter = {
  methods: {
    $dispatch(componentName, eventName, ...params) {
      console.log("$dispatch", componentName, eventName, params);
fxy060608's avatar
fxy060608 已提交
1461
    },
fxy060608's avatar
fxy060608 已提交
1462 1463 1464
    $broadcast(componentName, eventName, ...params) {
      if (typeof componentName === "string") {
        componentName = [componentName];
fxy060608's avatar
fxy060608 已提交
1465
      }
fxy060608's avatar
fxy060608 已提交
1466
      broadcast.apply(this, [componentName, eventName].concat(params));
fxy060608's avatar
fxy060608 已提交
1467
    }
fxy060608's avatar
fxy060608 已提交
1468 1469
  }
};
fxy060608's avatar
fxy060608 已提交
1470 1471 1472
var listeners = {
  props: {
    id: {
fxy060608's avatar
fxy060608 已提交
1473
      type: String,
fxy060608's avatar
fxy060608 已提交
1474
      default: ""
fxy060608's avatar
fxy060608 已提交
1475
    }
fxy060608's avatar
fxy060608 已提交
1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490
  },
  created() {
    this._addListeners(this.id);
    this.$watch("id", (newId, oldId) => {
      this._removeListeners(oldId, true);
      this._addListeners(newId, true);
    });
  },
  beforeDestroy() {
    this._removeListeners(this.id);
  },
  methods: {
    _addListeners(id2, watch2) {
      if (watch2 && !id2) {
        return;
fxy060608's avatar
fxy060608 已提交
1491
      }
fxy060608's avatar
fxy060608 已提交
1492 1493 1494
      const {listeners: listeners2} = this.$options;
      if (!isPlainObject(listeners2)) {
        return;
fxy060608's avatar
fxy060608 已提交
1495
      }
fxy060608's avatar
fxy060608 已提交
1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508
      Object.keys(listeners2).forEach((name) => {
        if (watch2) {
          if (name.indexOf("@") !== 0 && name.indexOf("uni-") !== 0) {
            UniViewJSBridge.on(`uni-${name}-${this.$page.id}-${id2}`, this[listeners2[name]]);
          }
        } else {
          if (name.indexOf("@") === 0) {
            this.$on(`uni-${name.substr(1)}`, this[listeners2[name]]);
          } else if (name.indexOf("uni-") === 0) {
            UniViewJSBridge.on(name, this[listeners2[name]]);
          } else if (id2) {
            UniViewJSBridge.on(`uni-${name}-${this.$page.id}-${id2}`, this[listeners2[name]]);
          }
fxy060608's avatar
fxy060608 已提交
1509
        }
fxy060608's avatar
fxy060608 已提交
1510 1511 1512 1513 1514
      });
    },
    _removeListeners(id2, watch2) {
      if (watch2 && !id2) {
        return;
fxy060608's avatar
fxy060608 已提交
1515
      }
fxy060608's avatar
fxy060608 已提交
1516 1517 1518
      const {listeners: listeners2} = this.$options;
      if (!isPlainObject(listeners2)) {
        return;
fxy060608's avatar
fxy060608 已提交
1519
      }
fxy060608's avatar
fxy060608 已提交
1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534
      Object.keys(listeners2).forEach((name) => {
        if (watch2) {
          if (name.indexOf("@") !== 0 && name.indexOf("uni-") !== 0) {
            UniViewJSBridge.off(`uni-${name}-${this.$page.id}-${id2}`, this[listeners2[name]]);
          }
        } else {
          if (name.indexOf("@") === 0) {
            this.$off(`uni-${name.substr(1)}`, this[listeners2[name]]);
          } else if (name.indexOf("uni-") === 0) {
            UniViewJSBridge.off(name, this[listeners2[name]]);
          } else if (id2) {
            UniViewJSBridge.off(`uni-${name}-${this.$page.id}-${id2}`, this[listeners2[name]]);
          }
        }
      });
fxy060608's avatar
fxy060608 已提交
1535
    }
fxy060608's avatar
fxy060608 已提交
1536
  }
fxy060608's avatar
fxy060608 已提交
1537
};
fxy060608's avatar
fxy060608 已提交
1538 1539 1540 1541 1542
var hover = {
  data() {
    return {
      hovering: false
    };
fxy060608's avatar
fxy060608 已提交
1543
  },
fxy060608's avatar
fxy060608 已提交
1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559
  props: {
    hoverClass: {
      type: String,
      default: "none"
    },
    hoverStopPropagation: {
      type: Boolean,
      default: false
    },
    hoverStartTime: {
      type: [Number, String],
      default: 50
    },
    hoverStayTime: {
      type: [Number, String],
      default: 400
fxy060608's avatar
fxy060608 已提交
1560
    }
fxy060608's avatar
fxy060608 已提交
1561
  },
fxy060608's avatar
fxy060608 已提交
1562 1563 1564 1565
  methods: {
    _hoverTouchStart(evt) {
      if (evt._hoverPropagationStopped) {
        return;
fxy060608's avatar
fxy060608 已提交
1566
      }
fxy060608's avatar
fxy060608 已提交
1567 1568
      if (!this.hoverClass || this.hoverClass === "none" || this.disabled) {
        return;
fxy060608's avatar
fxy060608 已提交
1569
      }
fxy060608's avatar
fxy060608 已提交
1570 1571 1572 1573 1574
      if (evt.touches.length > 1) {
        return;
      }
      if (this.hoverStopPropagation) {
        evt._hoverPropagationStopped = true;
fxy060608's avatar
fxy060608 已提交
1575
      }
fxy060608's avatar
fxy060608 已提交
1576 1577 1578 1579 1580 1581 1582
      this._hoverTouch = true;
      this._hoverStartTimer = setTimeout(() => {
        this.hovering = true;
        if (!this._hoverTouch) {
          this._hoverReset();
        }
      }, this.hoverStartTime);
fxy060608's avatar
fxy060608 已提交
1583
    },
fxy060608's avatar
fxy060608 已提交
1584 1585 1586 1587
    _hoverTouchEnd(evt) {
      this._hoverTouch = false;
      if (this.hovering) {
        this._hoverReset();
fxy060608's avatar
fxy060608 已提交
1588
      }
fxy060608's avatar
fxy060608 已提交
1589
    },
fxy060608's avatar
fxy060608 已提交
1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602
    _hoverReset() {
      requestAnimationFrame(() => {
        clearTimeout(this._hoverStayTimer);
        this._hoverStayTimer = setTimeout(() => {
          this.hovering = false;
        }, this.hoverStayTime);
      });
    },
    _hoverTouchCancel(evt) {
      this._hoverTouch = false;
      this.hovering = false;
      clearTimeout(this._hoverStartTimer);
    }
fxy060608's avatar
fxy060608 已提交
1603 1604
  }
};
fxy060608's avatar
fxy060608 已提交
1605 1606 1607 1608 1609 1610 1611
var subscriber = {
  mounted() {
    this._toggleListeners("subscribe", this.id);
    this.$watch("id", (newId, oldId) => {
      this._toggleListeners("unsubscribe", oldId, true);
      this._toggleListeners("subscribe", newId, true);
    });
fxy060608's avatar
fxy060608 已提交
1612
  },
fxy060608's avatar
fxy060608 已提交
1613 1614 1615 1616
  beforeDestroy() {
    this._toggleListeners("unsubscribe", this.id);
    if (this._contextId) {
      this._toggleListeners("unsubscribe", this._contextId);
fxy060608's avatar
fxy060608 已提交
1617
    }
fxy060608's avatar
fxy060608 已提交
1618
  },
fxy060608's avatar
fxy060608 已提交
1619 1620 1621 1622
  methods: {
    _toggleListeners(type, id2, watch2) {
      if (watch2 && !id2) {
        return;
fxy060608's avatar
fxy060608 已提交
1623
      }
fxy060608's avatar
fxy060608 已提交
1624 1625
      if (!isFunction(this._handleSubscribe)) {
        return;
fxy060608's avatar
fxy060608 已提交
1626
      }
fxy060608's avatar
fxy060608 已提交
1627
      UniViewJSBridge[type](this.$page.id + "-" + this.$options.name.replace(/VUni([A-Z])/, "$1").toLowerCase() + "-" + id2, this._handleSubscribe);
fxy060608's avatar
fxy060608 已提交
1628
    },
fxy060608's avatar
fxy060608 已提交
1629 1630 1631 1632 1633
    _getContextInfo() {
      const id2 = `context-${this._uid}`;
      if (!this._contextId) {
        this._toggleListeners("subscribe", id2);
        this._contextId = id2;
fxy060608's avatar
fxy060608 已提交
1634
      }
fxy060608's avatar
fxy060608 已提交
1635 1636 1637 1638 1639
      return {
        name: this.$options.name.replace(/VUni([A-Z])/, "$1").toLowerCase(),
        id: id2,
        page: this.$page.id
      };
fxy060608's avatar
fxy060608 已提交
1640 1641
    }
  }
fxy060608's avatar
fxy060608 已提交
1642
};
fxy060608's avatar
fxy060608 已提交
1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661
function hideKeyboard() {
  document.activeElement.blur();
}
function iosHideKeyboard() {
}
var keyboard = {
  name: "Keyboard",
  props: {
    cursorSpacing: {
      type: [Number, String],
      default: 0
    },
    showConfirmBar: {
      type: [Boolean, String],
      default: "auto"
    },
    adjustPosition: {
      type: Boolean,
      default: true
fxy060608's avatar
fxy060608 已提交
1662
    }
fxy060608's avatar
fxy060608 已提交
1663 1664 1665 1666 1667 1668
  },
  watch: {
    focus(val) {
      if (val && false) {
        this.showSoftKeybord();
      }
fxy060608's avatar
fxy060608 已提交
1669
    }
fxy060608's avatar
fxy060608 已提交
1670 1671 1672 1673
  },
  mounted() {
    if (this.autoFocus || this.focus) {
      this.showSoftKeybord();
fxy060608's avatar
fxy060608 已提交
1674
    }
fxy060608's avatar
fxy060608 已提交
1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722
  },
  beforeDestroy() {
    this.onKeyboardHide();
  },
  methods: {
    initKeyboard(el) {
      el.addEventListener("focus", () => {
        this.hideKeyboardTemp = function() {
          hideKeyboard();
        };
        UniViewJSBridge.subscribe("hideKeyboard", this.hideKeyboardTemp);
        document.addEventListener("click", iosHideKeyboard, false);
      });
      el.addEventListener("blur", this.onKeyboardHide.bind(this));
    },
    showSoftKeybord() {
      plusReady(() => {
        plus.key.showSoftKeybord();
      });
    },
    setSoftinputTemporary() {
      plusReady(() => {
        const currentWebview = plus.webview.currentWebview();
        const style = currentWebview.getStyle() || {};
        const rect = this.$el.getBoundingClientRect();
        currentWebview.setSoftinputTemporary && currentWebview.setSoftinputTemporary({
          mode: style.softinputMode === "adjustResize" ? "adjustResize" : this.adjustPosition ? "adjustPan" : "nothing",
          position: {
            top: rect.top,
            height: rect.height + (Number(this.cursorSpacing) || 0)
          }
        });
      });
    },
    setSoftinputNavBar() {
      if (this.showConfirmBar === "auto") {
        delete this.__softinputNavBar;
        return;
      }
      plusReady(() => {
        const currentWebview = plus.webview.currentWebview();
        const {softinputNavBar} = currentWebview.getStyle() || {};
        const showConfirmBar = softinputNavBar !== "none";
        if (showConfirmBar !== this.showConfirmBar) {
          this.__softinputNavBar = softinputNavBar || "auto";
          currentWebview.setStyle({
            softinputNavBar: this.showConfirmBar ? "auto" : "none"
          });
fxy060608's avatar
fxy060608 已提交
1723
        } else {
fxy060608's avatar
fxy060608 已提交
1724
          delete this.__softinputNavBar;
fxy060608's avatar
fxy060608 已提交
1725
        }
fxy060608's avatar
fxy060608 已提交
1726 1727 1728 1729 1730 1731 1732 1733 1734 1735
      });
    },
    resetSoftinputNavBar() {
      const softinputNavBar = this.__softinputNavBar;
      if (softinputNavBar) {
        plusReady(() => {
          const currentWebview = plus.webview.currentWebview();
          currentWebview.setStyle({
            softinputNavBar
          });
fxy060608's avatar
fxy060608 已提交
1736
        });
fxy060608's avatar
fxy060608 已提交
1737 1738 1739 1740 1741 1742 1743 1744
      }
    },
    onKeyboardHide() {
      UniViewJSBridge.unsubscribe("hideKeyboard", this.hideKeyboardTemp);
      document.removeEventListener("click", iosHideKeyboard, false);
      if (String(navigator.vendor).indexOf("Apple") === 0) {
        document.documentElement.scrollTo(document.documentElement.scrollLeft, document.documentElement.scrollTop);
      }
fxy060608's avatar
fxy060608 已提交
1745
    }
fxy060608's avatar
fxy060608 已提交
1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759
  }
};
function throttle(fn, wait) {
  let last = 0;
  let timeout;
  const newFn = function(...arg) {
    const now = Date.now();
    clearTimeout(timeout);
    const waitCallback = () => {
      last = now;
      fn.apply(this, arg);
    };
    if (now - last < wait) {
      timeout = setTimeout(waitCallback, wait - (now - last));
fxy060608's avatar
fxy060608 已提交
1760 1761
      return;
    }
fxy060608's avatar
fxy060608 已提交
1762
    waitCallback();
fxy060608's avatar
fxy060608 已提交
1763
  };
fxy060608's avatar
fxy060608 已提交
1764 1765
  newFn.cancel = function() {
    clearTimeout(timeout);
fxy060608's avatar
fxy060608 已提交
1766
  };
fxy060608's avatar
fxy060608 已提交
1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779
  return newFn;
}
var baseInput = {
  name: "BaseInput",
  mixins: [emitter, keyboard],
  model: {
    prop: "value",
    event: "update:value"
  },
  props: {
    value: {
      type: [String, Number],
      default: ""
fxy060608's avatar
fxy060608 已提交
1780
    }
fxy060608's avatar
fxy060608 已提交
1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807
  },
  data() {
    return {
      valueSync: this._getValueString(this.value)
    };
  },
  created() {
    const valueChange = this.__valueChange = debounce((val) => {
      this.valueSync = this._getValueString(val);
    }, 100);
    this.$watch("value", valueChange);
    this.__triggerInput = throttle(($event, detail) => {
      this.$emit("update:value", detail.value);
      this.$trigger("input", $event, detail);
    }, 100);
    this.$triggerInput = ($event, detail) => {
      this.__valueChange.cancel();
      this.__triggerInput($event, detail);
    };
  },
  beforeDestroy() {
    this.__valueChange.cancel();
    this.__triggerInput.cancel();
  },
  methods: {
    _getValueString(value) {
      return value === null ? "" : String(value);
fxy060608's avatar
fxy060608 已提交
1808
    }
fxy060608's avatar
fxy060608 已提交
1809 1810
  }
};
fxy060608's avatar
fxy060608 已提交
1811
const _sfc_main$m = {
fxy060608's avatar
fxy060608 已提交
1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841
  name: "Audio",
  mixins: [subscriber],
  props: {
    id: {
      type: String,
      default: ""
    },
    src: {
      type: String,
      default: ""
    },
    loop: {
      type: [Boolean, String],
      default: false
    },
    controls: {
      type: [Boolean, String],
      default: false
    },
    poster: {
      type: String,
      default: ""
    },
    name: {
      type: String,
      default: ""
    },
    author: {
      type: String,
      default: ""
fxy060608's avatar
fxy060608 已提交
1842
    }
fxy060608's avatar
fxy060608 已提交
1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853
  },
  data() {
    return {
      playing: false,
      currentTime: this.getTime(0)
    };
  },
  watch: {
    src(val) {
      if (this.$refs.audio) {
        this.$refs.audio.src = this.$getRealPath(val);
fxy060608's avatar
fxy060608 已提交
1854
      }
fxy060608's avatar
fxy060608 已提交
1855
    }
fxy060608's avatar
fxy060608 已提交
1856 1857 1858 1859 1860 1861
  },
  mounted() {
    const audio = this.$refs.audio;
    audio.addEventListener("error", ($event) => {
      this.playing = false;
      this.$trigger("error", $event, {});
fxy060608's avatar
fxy060608 已提交
1862
    });
fxy060608's avatar
fxy060608 已提交
1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881
    audio.addEventListener("play", ($event) => {
      this.playing = true;
      this.$trigger("play", $event, {});
    });
    audio.addEventListener("pause", ($event) => {
      this.playing = false;
      this.$trigger("pause", $event, {});
    });
    audio.addEventListener("ended", ($event) => {
      this.playing = false;
      this.$trigger("ended", $event, {});
    });
    audio.addEventListener("timeupdate", ($event) => {
      var currentTime = audio.currentTime;
      this.currentTime = this.getTime(currentTime);
      var duration = audio.duration;
      this.$trigger("timeupdate", $event, {
        currentTime,
        duration
fxy060608's avatar
fxy060608 已提交
1882
      });
fxy060608's avatar
fxy060608 已提交
1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910
    });
    audio.src = this.$getRealPath(this.src);
  },
  methods: {
    _handleSubscribe({
      type,
      data = {}
    }) {
      var audio = this.$refs.audio;
      switch (type) {
        case "setSrc":
          audio.src = this.$getRealPath(data.src);
          this.$emit("update:src", data.src);
          break;
        case "play":
          audio.play();
          break;
        case "pause":
          audio.pause();
          break;
        case "seek":
          audio.currentTime = data.position;
          break;
      }
    },
    trigger() {
      if (this.playing) {
        this.$refs.audio.pause();
fxy060608's avatar
fxy060608 已提交
1911
      } else {
fxy060608's avatar
fxy060608 已提交
1912
        this.$refs.audio.play();
fxy060608's avatar
fxy060608 已提交
1913
      }
fxy060608's avatar
fxy060608 已提交
1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926
    },
    getTime(time) {
      var h = Math.floor(time / 3600);
      var m = Math.floor(time % 3600 / 60);
      var s = Math.floor(time % 3600 % 60);
      h = (h < 10 ? "0" : "") + h;
      m = (m < 10 ? "0" : "") + m;
      s = (s < 10 ? "0" : "") + s;
      var str = m + ":" + s;
      if (h !== "00") {
        str = h + ":" + str;
      }
      return str;
1927
    }
fxy060608's avatar
fxy060608 已提交
1928 1929
  }
};
Q
qiang 已提交
1930 1931
const _hoisted_1$e = {class: "uni-audio-default"};
const _hoisted_2$8 = {class: "uni-audio-right"};
fxy060608's avatar
fxy060608 已提交
1932 1933 1934 1935
const _hoisted_3$3 = {class: "uni-audio-time"};
const _hoisted_4$3 = {class: "uni-audio-info"};
const _hoisted_5$2 = {class: "uni-audio-name"};
const _hoisted_6$2 = {class: "uni-audio-author"};
fxy060608's avatar
fxy060608 已提交
1936
function _sfc_render$m(_ctx, _cache, $props, $setup, $data, $options) {
fxy060608's avatar
fxy060608 已提交
1937 1938 1939 1940 1941 1942 1943 1944 1945
  return openBlock(), createBlock("uni-audio", mergeProps({
    id: $props.id,
    controls: !!$props.controls
  }, _ctx.$attrs), [
    createVNode("audio", {
      ref: "audio",
      loop: $props.loop,
      style: {display: "none"}
    }, null, 8, ["loop"]),
Q
qiang 已提交
1946
    createVNode("div", _hoisted_1$e, [
fxy060608's avatar
fxy060608 已提交
1947 1948 1949 1950 1951 1952 1953 1954 1955
      createVNode("div", {
        style: "background-image: url(" + _ctx.$getRealPath($props.poster) + ");",
        class: "uni-audio-left"
      }, [
        createVNode("div", {
          class: [{play: !$data.playing, pause: $data.playing}, "uni-audio-button"],
          onClick: _cache[1] || (_cache[1] = (...args) => $options.trigger && $options.trigger(...args))
        }, null, 2)
      ], 4),
Q
qiang 已提交
1956
      createVNode("div", _hoisted_2$8, [
fxy060608's avatar
fxy060608 已提交
1957 1958 1959 1960 1961 1962 1963 1964 1965
        createVNode("div", _hoisted_3$3, toDisplayString($data.currentTime), 1),
        createVNode("div", _hoisted_4$3, [
          createVNode("div", _hoisted_5$2, toDisplayString($props.name), 1),
          createVNode("div", _hoisted_6$2, toDisplayString($props.author), 1)
        ])
      ])
    ])
  ], 16, ["id", "controls"]);
}
fxy060608's avatar
fxy060608 已提交
1966
_sfc_main$m.render = _sfc_render$m;
fxy060608's avatar
fxy060608 已提交
1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984
const hoverProps = {
  hoverClass: {
    type: String,
    default: "none"
  },
  hoverStopPropagation: {
    type: Boolean,
    default: false
  },
  hoverStartTime: {
    type: [Number, String],
    default: 50
  },
  hoverStayTime: {
    type: [Number, String],
    default: 400
  }
};
fxy060608's avatar
fxy060608 已提交
1985
function useHover(props2) {
fxy060608's avatar
fxy060608 已提交
1986 1987 1988 1989 1990 1991 1992 1993 1994
  const hovering = ref(false);
  let hoverTouch = false;
  let hoverStartTimer;
  let hoverStayTimer;
  function hoverReset() {
    requestAnimationFrame(() => {
      clearTimeout(hoverStayTimer);
      hoverStayTimer = setTimeout(() => {
        hovering.value = false;
fxy060608's avatar
fxy060608 已提交
1995
      }, parseInt(props2.hoverStayTime));
fxy060608's avatar
fxy060608 已提交
1996 1997 1998 1999
    });
  }
  function onTouchstartPassive(evt) {
    if (evt._hoverPropagationStopped) {
fxy060608's avatar
fxy060608 已提交
2000 2001
      return;
    }
fxy060608's avatar
fxy060608 已提交
2002
    if (!props2.hoverClass || props2.hoverClass === "none" || props2.disabled) {
fxy060608's avatar
fxy060608 已提交
2003
      return;
fxy060608's avatar
fxy060608 已提交
2004
    }
fxy060608's avatar
fxy060608 已提交
2005
    if (evt.touches.length > 1) {
fxy060608's avatar
fxy060608 已提交
2006 2007
      return;
    }
fxy060608's avatar
fxy060608 已提交
2008
    if (props2.hoverStopPropagation) {
fxy060608's avatar
fxy060608 已提交
2009
      evt._hoverPropagationStopped = true;
fxy060608's avatar
fxy060608 已提交
2010
    }
fxy060608's avatar
fxy060608 已提交
2011 2012 2013 2014 2015
    hoverTouch = true;
    hoverStartTimer = setTimeout(() => {
      hovering.value = true;
      if (!hoverTouch) {
        hoverReset();
fxy060608's avatar
fxy060608 已提交
2016
      }
fxy060608's avatar
fxy060608 已提交
2017
    }, parseInt(props2.hoverStartTime));
fxy060608's avatar
fxy060608 已提交
2018
  }
fxy060608's avatar
fxy060608 已提交
2019 2020 2021 2022
  function onTouchend() {
    hoverTouch = false;
    if (hovering.value) {
      hoverReset();
fxy060608's avatar
fxy060608 已提交
2023 2024
    }
  }
fxy060608's avatar
fxy060608 已提交
2025 2026 2027 2028
  function onTouchcancel() {
    hoverTouch = false;
    hovering.value = false;
    clearTimeout(hoverStartTimer);
fxy060608's avatar
fxy060608 已提交
2029
  }
fxy060608's avatar
fxy060608 已提交
2030 2031 2032 2033 2034 2035 2036 2037 2038
  return {
    hovering,
    binding: {
      onTouchstartPassive,
      onTouchend,
      onTouchcancel
    }
  };
}
fxy060608's avatar
fxy060608 已提交
2039
function useBooleanAttr(props2, keys) {
fxy060608's avatar
fxy060608 已提交
2040 2041
  if (isString(keys)) {
    keys = [keys];
fxy060608's avatar
fxy060608 已提交
2042
  }
fxy060608's avatar
fxy060608 已提交
2043
  return keys.reduce((res, key) => {
fxy060608's avatar
fxy060608 已提交
2044
    if (props2[key]) {
fxy060608's avatar
fxy060608 已提交
2045
      res[key] = true;
fxy060608's avatar
fxy060608 已提交
2046
    }
fxy060608's avatar
fxy060608 已提交
2047 2048 2049 2050
    return res;
  }, Object.create(null));
}
const uniFormKey = PolySymbol(process.env.NODE_ENV !== "production" ? "uniForm" : "uf");
fxy060608's avatar
fxy060608 已提交
2051
var index$6 = /* @__PURE__ */ defineComponent({
fxy060608's avatar
fxy060608 已提交
2052 2053 2054 2055 2056 2057 2058
  name: "Form",
  setup(_props, {
    slots,
    emit
  }) {
    provideForm(emit);
    return () => createVNode("uni-form", null, [createVNode("span", null, [slots.default && slots.default()])]);
fxy060608's avatar
fxy060608 已提交
2059
  }
fxy060608's avatar
fxy060608 已提交
2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083
});
function provideForm(emit) {
  const fields = [];
  provide(uniFormKey, {
    addField(field) {
      fields.push(field);
    },
    removeField(field) {
      fields.splice(fields.indexOf(field), 1);
    },
    submit() {
      emit("submit", {
        detail: {
          value: fields.reduce((res, field) => {
            const [name, value] = field.submit();
            name && (res[name] = value);
            return res;
          }, Object.create(null))
        }
      });
    },
    reset() {
      fields.forEach((field) => field.reset());
      emit("reset");
fxy060608's avatar
fxy060608 已提交
2084
    }
fxy060608's avatar
fxy060608 已提交
2085 2086 2087
  });
  return fields;
}
fxy060608's avatar
fxy060608 已提交
2088
var index$5 = /* @__PURE__ */ defineComponent({
fxy060608's avatar
fxy060608 已提交
2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123
  name: "Button",
  props: {
    id: {
      type: String,
      default: ""
    },
    hoverClass: {
      type: String,
      default: "button-hover"
    },
    hoverStartTime: {
      type: [Number, String],
      default: 20
    },
    hoverStayTime: {
      type: [Number, String],
      default: 70
    },
    hoverStopPropagation: {
      type: Boolean,
      default: false
    },
    disabled: {
      type: [Boolean, String],
      default: false
    },
    formType: {
      type: String,
      default: ""
    },
    openType: {
      type: String,
      default: ""
    }
  },
fxy060608's avatar
fxy060608 已提交
2124
  setup(props2, {
fxy060608's avatar
fxy060608 已提交
2125 2126 2127 2128 2129 2130
    slots
  }) {
    const uniForm = inject(uniFormKey, false);
    const {
      hovering,
      binding
fxy060608's avatar
fxy060608 已提交
2131
    } = useHover(props2);
fxy060608's avatar
fxy060608 已提交
2132
    useI18n();
fxy060608's avatar
fxy060608 已提交
2133
    function onClick() {
fxy060608's avatar
fxy060608 已提交
2134
      if (props2.disabled) {
fxy060608's avatar
fxy060608 已提交
2135 2136
        return;
      }
fxy060608's avatar
fxy060608 已提交
2137
      const formType = props2.formType;
fxy060608's avatar
fxy060608 已提交
2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150
      if (formType) {
        if (!uniForm) {
          return;
        }
        if (formType === "submit") {
          uniForm.submit();
        } else if (formType === "reset") {
          uniForm.reset();
        }
        return;
      }
    }
    return () => {
fxy060608's avatar
fxy060608 已提交
2151 2152
      const hoverClass = props2.hoverClass;
      const booleanAttrs = useBooleanAttr(props2, "disabled");
fxy060608's avatar
fxy060608 已提交
2153 2154 2155 2156 2157 2158 2159 2160 2161
      if (hoverClass && hoverClass !== "none") {
        return createVNode("uni-button", mergeProps({
          onClick,
          class: hovering.value ? hoverClass : ""
        }, binding, booleanAttrs), [slots.default && slots.default()], 16, ["onClick"]);
      }
      return createVNode("uni-button", mergeProps({
        onClick
      }, booleanAttrs), [slots.default && slots.default()], 16, ["onClick"]);
fxy060608's avatar
fxy060608 已提交
2162
    };
fxy060608's avatar
fxy060608 已提交
2163
  }
fxy060608's avatar
fxy060608 已提交
2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184
});
const pixelRatio = /* @__PURE__ */ function() {
  const canvas = document.createElement("canvas");
  canvas.height = canvas.width = 0;
  const context = canvas.getContext("2d");
  const backingStore = context.backingStorePixelRatio || context.webkitBackingStorePixelRatio || context.mozBackingStorePixelRatio || context.msBackingStorePixelRatio || context.oBackingStorePixelRatio || context.backingStorePixelRatio || 1;
  return (window.devicePixelRatio || 1) / backingStore;
}();
function wrapper(canvas) {
  canvas.width = canvas.offsetWidth * pixelRatio;
  canvas.height = canvas.offsetHeight * pixelRatio;
  canvas.getContext("2d").__hidpi__ = true;
}
function resolveColor(color) {
  color = color.slice(0);
  color[3] = color[3] / 255;
  return "rgba(" + color.join(",") + ")";
}
function processTouches(target, touches) {
  return [].map.call(touches, (touch) => {
    var boundingClientRect = target.getBoundingClientRect();
fxy060608's avatar
fxy060608 已提交
2185
    return {
fxy060608's avatar
fxy060608 已提交
2186 2187 2188
      identifier: touch.identifier,
      x: touch.clientX - boundingClientRect.left,
      y: touch.clientY - boundingClientRect.top
fxy060608's avatar
fxy060608 已提交
2189
    };
fxy060608's avatar
fxy060608 已提交
2190 2191 2192 2193 2194 2195
  });
}
var tempCanvas;
function getTempCanvas(width = 0, height = 0) {
  if (!tempCanvas) {
    tempCanvas = document.createElement("canvas");
fxy060608's avatar
fxy060608 已提交
2196
  }
fxy060608's avatar
fxy060608 已提交
2197 2198 2199 2200
  tempCanvas.width = width;
  tempCanvas.height = height;
  return tempCanvas;
}
fxy060608's avatar
fxy060608 已提交
2201
const _sfc_main$l = {
fxy060608's avatar
fxy060608 已提交
2202 2203 2204 2205 2206 2207 2208 2209 2210 2211
  name: "Canvas",
  mixins: [subscriber],
  props: {
    canvasId: {
      type: String,
      default: ""
    },
    disableScroll: {
      type: [Boolean, String],
      default: false
fxy060608's avatar
fxy060608 已提交
2212
    }
fxy060608's avatar
fxy060608 已提交
2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242
  },
  data() {
    return {
      actionsWaiting: false
    };
  },
  computed: {
    id() {
      return this.canvasId;
    },
    _listeners() {
      var $listeners = Object.assign({}, this.$listeners);
      var events = ["touchstart", "touchmove", "touchend"];
      events.forEach((event2) => {
        var existing = $listeners[event2];
        var eventHandler = [];
        if (existing) {
          eventHandler.push(($event) => {
            this.$trigger(event2, Object.assign({}, $event, {
              touches: processTouches($event.currentTarget, $event.touches),
              changedTouches: processTouches($event.currentTarget, $event.changedTouches)
            }));
          });
        }
        if (this.disableScroll && event2 === "touchmove") {
          eventHandler.push(this._touchmove);
        }
        $listeners[event2] = eventHandler;
      });
      return $listeners;
fxy060608's avatar
fxy060608 已提交
2243
    }
fxy060608's avatar
fxy060608 已提交
2244
  },
fxy060608's avatar
fxy060608 已提交
2245 2246 2247
  created() {
    this._actionsDefer = [];
    this._images = {};
fxy060608's avatar
fxy060608 已提交
2248
  },
fxy060608's avatar
fxy060608 已提交
2249 2250 2251 2252 2253
  mounted() {
    this._resize({
      width: this.$refs.sensor.$el.offsetWidth,
      height: this.$refs.sensor.$el.offsetHeight
    });
fxy060608's avatar
fxy060608 已提交
2254
  },
fxy060608's avatar
fxy060608 已提交
2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266
  beforeDestroy() {
    const canvas = this.$refs.canvas;
    canvas.height = canvas.width = 0;
  },
  methods: {
    _handleSubscribe({
      type,
      data = {}
    }) {
      var method = this[type];
      if (type.indexOf("_") !== 0 && typeof method === "function") {
        method(data);
fxy060608's avatar
fxy060608 已提交
2267
      }
fxy060608's avatar
fxy060608 已提交
2268
    },
fxy060608's avatar
fxy060608 已提交
2269 2270 2271 2272 2273 2274 2275 2276 2277 2278
    _resize() {
      var canvas = this.$refs.canvas;
      if (canvas.width > 0 && canvas.height > 0) {
        var context = canvas.getContext("2d");
        var imageData = context.getImageData(0, 0, canvas.width, canvas.height);
        wrapper(this.$refs.canvas);
        context.putImageData(imageData, 0, 0);
      } else {
        wrapper(this.$refs.canvas);
      }
fxy060608's avatar
fxy060608 已提交
2279
    },
fxy060608's avatar
fxy060608 已提交
2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290
    _touchmove(event2) {
      event2.preventDefault();
    },
    actionsChanged({
      actions,
      reserve,
      callbackId
    }) {
      var self = this;
      if (!actions) {
        return;
fxy060608's avatar
fxy060608 已提交
2291
      }
fxy060608's avatar
fxy060608 已提交
2292 2293 2294
      if (this.actionsWaiting) {
        this._actionsDefer.push([actions, reserve, callbackId]);
        return;
fxy060608's avatar
fxy060608 已提交
2295
      }
fxy060608's avatar
fxy060608 已提交
2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409
      var canvas = this.$refs.canvas;
      var c2d = canvas.getContext("2d");
      if (!reserve) {
        c2d.fillStyle = "#000000";
        c2d.strokeStyle = "#000000";
        c2d.shadowColor = "#000000";
        c2d.shadowBlur = 0;
        c2d.shadowOffsetX = 0;
        c2d.shadowOffsetY = 0;
        c2d.setTransform(1, 0, 0, 1, 0, 0);
        c2d.clearRect(0, 0, canvas.width, canvas.height);
      }
      this.preloadImage(actions);
      for (let index2 = 0; index2 < actions.length; index2++) {
        const action = actions[index2];
        let method = action.method;
        const data = action.data;
        if (/^set/.test(method) && method !== "setTransform") {
          const method1 = method[3].toLowerCase() + method.slice(4);
          let color;
          if (method1 === "fillStyle" || method1 === "strokeStyle") {
            if (data[0] === "normal") {
              color = resolveColor(data[1]);
            } else if (data[0] === "linear") {
              const LinearGradient = c2d.createLinearGradient(...data[1]);
              data[2].forEach(function(data2) {
                const offset = data2[0];
                const color2 = resolveColor(data2[1]);
                LinearGradient.addColorStop(offset, color2);
              });
              color = LinearGradient;
            } else if (data[0] === "radial") {
              const x = data[1][0];
              const y = data[1][1];
              const r = data[1][2];
              const LinearGradient = c2d.createRadialGradient(x, y, 0, x, y, r);
              data[2].forEach(function(data2) {
                const offset = data2[0];
                const color2 = resolveColor(data2[1]);
                LinearGradient.addColorStop(offset, color2);
              });
              color = LinearGradient;
            } else if (data[0] === "pattern") {
              const loaded = this.checkImageLoaded(data[1], actions.slice(index2 + 1), callbackId, function(image2) {
                if (image2) {
                  c2d[method1] = c2d.createPattern(image2, data[2]);
                }
              });
              if (!loaded) {
                break;
              }
              continue;
            }
            c2d[method1] = color;
          } else if (method1 === "globalAlpha") {
            c2d[method1] = data[0] / 255;
          } else if (method1 === "shadow") {
            var _ = ["shadowOffsetX", "shadowOffsetY", "shadowBlur", "shadowColor"];
            data.forEach(function(color_, method_) {
              c2d[_[method_]] = _[method_] === "shadowColor" ? resolveColor(color_) : color_;
            });
          } else {
            if (method1 === "fontSize") {
              c2d.font = c2d.font.replace(/\d+\.?\d*px/, data[0] + "px");
            } else {
              if (method1 === "lineDash") {
                c2d.setLineDash(data[0]);
                c2d.lineDashOffset = data[1] || 0;
              } else {
                if (method1 === "textBaseline") {
                  if (data[0] === "normal") {
                    data[0] = "alphabetic";
                  }
                  c2d[method1] = data[0];
                } else {
                  c2d[method1] = data[0];
                }
              }
            }
          }
        } else if (method === "fillPath" || method === "strokePath") {
          method = method.replace(/Path/, "");
          c2d.beginPath();
          data.forEach(function(data_) {
            c2d[data_.method].apply(c2d, data_.data);
          });
          c2d[method]();
        } else if (method === "fillText") {
          c2d.fillText.apply(c2d, data);
        } else if (method === "drawImage") {
          var A = function() {
            var dataArray = [...data];
            var url = dataArray[0];
            var otherData = dataArray.slice(1);
            self._images = self._images || {};
            if (!self.checkImageLoaded(url, actions.slice(index2 + 1), callbackId, function(image2) {
              if (image2) {
                c2d.drawImage.apply(c2d, [image2].concat([...otherData.slice(4, 8)], [...otherData.slice(0, 4)]));
              }
            }))
              return "break";
          }();
          if (A === "break") {
            break;
          }
        } else {
          if (method === "clip") {
            data.forEach(function(data_) {
              c2d[data_.method].apply(c2d, data_.data);
            });
            c2d.clip();
          } else {
            c2d[method].apply(c2d, data);
          }
fxy060608's avatar
fxy060608 已提交
2410 2411
        }
      }
fxy060608's avatar
fxy060608 已提交
2412 2413 2414 2415 2416 2417 2418
      if (!this.actionsWaiting && callbackId) {
        UniViewJSBridge.publishHandler("onDrawCanvas", {
          callbackId,
          data: {
            errMsg: "drawCanvas:ok"
          }
        }, this.$page.id);
fxy060608's avatar
fxy060608 已提交
2419 2420
      }
    },
fxy060608's avatar
fxy060608 已提交
2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493
    preloadImage: function(actions) {
      var self = this;
      actions.forEach(function(action) {
        var method = action.method;
        var data = action.data;
        var src = "";
        if (method === "drawImage") {
          src = data[0];
          src = self.$getRealPath(src);
          data[0] = src;
        } else if (method === "setFillStyle" && data[0] === "pattern") {
          src = data[1];
          src = self.$getRealPath(src);
          data[1] = src;
        }
        if (src && !self._images[src]) {
          loadImage();
        }
        function loadImage() {
          self._images[src] = new Image();
          self._images[src].onload = function() {
            self._images[src].ready = true;
          };
          function loadBlob(blob) {
            self._images[src].src = (window.URL || window.webkitURL).createObjectURL(blob);
          }
          function loadFile(path) {
            var bitmap = new plus.nativeObj.Bitmap("bitmap" + Date.now());
            bitmap.load(path, function() {
              self._images[src].src = bitmap.toBase64Data();
              bitmap.clear();
            }, function() {
              bitmap.clear();
              console.error("preloadImage error");
            });
          }
          function loadUrl(url) {
            function plusDownload() {
              plus.downloader.createDownload(url, {
                filename: "_doc/uniapp_temp/download/"
              }, function(d, status) {
                if (status === 200) {
                  loadFile(d.filename);
                } else {
                  self._images[src].src = src;
                }
              }).start();
            }
            var xhr = new XMLHttpRequest();
            xhr.open("GET", url, true);
            xhr.responseType = "blob";
            xhr.onload = function() {
              if (this.status === 200) {
                loadBlob(this.response);
              }
            };
            xhr.onerror = window.plus ? plusDownload : function() {
              self._images[src].src = src;
            };
            xhr.send();
          }
          if (window.plus && (!window.webkit || !window.webkit.messageHandlers)) {
            self._images[src].src = src;
          } else {
            if (window.plus && src.indexOf("http://") !== 0 && src.indexOf("https://") !== 0 && !/^data:.*,.*/.test(src)) {
              loadFile(src);
            } else if (/^data:.*,.*/.test(src)) {
              self._images[src].src = src;
            } else {
              loadUrl(src);
            }
          }
        }
fxy060608's avatar
fxy060608 已提交
2494
      });
fxy060608's avatar
fxy060608 已提交
2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693
    },
    checkImageLoaded: function(src, actions, callbackId, fn) {
      var self = this;
      var image2 = this._images[src];
      if (image2.ready) {
        fn(image2);
        return true;
      } else {
        this._actionsDefer.unshift([actions, true]);
        this.actionsWaiting = true;
        image2.onload = function() {
          image2.ready = true;
          fn(image2);
          self.actionsWaiting = false;
          var actions2 = self._actionsDefer.slice(0);
          self._actionsDefer = [];
          for (var action = actions2.shift(); action; ) {
            self.actionsChanged({
              actions: action[0],
              reserve: action[1],
              callbackId
            });
            action = actions2.shift();
          }
        };
        return false;
      }
    },
    getImageData({
      x = 0,
      y = 0,
      width,
      height,
      destWidth,
      destHeight,
      hidpi = true,
      callbackId
    }) {
      var imgData;
      var canvas = this.$refs.canvas;
      if (!width) {
        width = canvas.offsetWidth - x;
      }
      if (!height) {
        height = canvas.offsetHeight - y;
      }
      try {
        if (!hidpi) {
          if (!destWidth && !destHeight) {
            destWidth = Math.round(width * pixelRatio);
            destHeight = Math.round(height * pixelRatio);
          } else if (!destWidth) {
            destWidth = Math.round(width / height * destHeight);
          } else if (!destHeight) {
            destHeight = Math.round(height / width * destWidth);
          }
        } else {
          destWidth = width;
          destHeight = height;
        }
        const newCanvas = getTempCanvas(destWidth, destHeight);
        const context = newCanvas.getContext("2d");
        context.__hidpi__ = true;
        context.drawImageByCanvas(canvas, x, y, width, height, 0, 0, destWidth, destHeight, false);
        imgData = context.getImageData(0, 0, destWidth, destHeight);
        newCanvas.height = newCanvas.width = 0;
        context.__hidpi__ = false;
      } catch (error) {
        if (!callbackId) {
          return;
        }
        UniViewJSBridge.publishHandler("onCanvasMethodCallback", {
          callbackId,
          data: {
            errMsg: "canvasGetImageData:fail"
          }
        }, this.$page.id);
        return;
      }
      if (!callbackId) {
        return {
          data: Array.prototype.slice.call(imgData.data),
          width: destWidth,
          height: destHeight
        };
      } else {
        UniViewJSBridge.publishHandler("onCanvasMethodCallback", {
          callbackId,
          data: {
            errMsg: "canvasGetImageData:ok",
            data: [...imgData.data],
            width: destWidth,
            height: destHeight
          }
        }, this.$page.id);
      }
    },
    putImageData({
      data,
      x,
      y,
      width,
      height,
      callbackId
    }) {
      try {
        if (!height) {
          height = Math.round(data.length / 4 / width);
        }
        const canvas = getTempCanvas(width, height);
        const context = canvas.getContext("2d");
        context.putImageData(new ImageData(new Uint8ClampedArray(data), width, height), 0, 0);
        this.$refs.canvas.getContext("2d").drawImage(canvas, x, y, width, height);
        canvas.height = canvas.width = 0;
      } catch (error) {
        UniViewJSBridge.publishHandler("onCanvasMethodCallback", {
          callbackId,
          data: {
            errMsg: "canvasPutImageData:fail"
          }
        }, this.$page.id);
        return;
      }
      UniViewJSBridge.publishHandler("onCanvasMethodCallback", {
        callbackId,
        data: {
          errMsg: "canvasPutImageData:ok"
        }
      }, this.$page.id);
    },
    getDataUrl({
      x = 0,
      y = 0,
      width,
      height,
      destWidth,
      destHeight,
      hidpi = true,
      fileType,
      qualit,
      callbackId
    }) {
      const res = this.getImageData({
        x,
        y,
        width,
        height,
        destWidth,
        destHeight,
        hidpi
      });
      if (!res.data || !res.data.length) {
        UniViewJSBridge.publishHandler("onCanvasMethodCallback", {
          callbackId,
          data: {
            errMsg: "canvasGetDataUrl:fail"
          }
        }, this.$page.id);
        return;
      }
      let imgData;
      try {
        imgData = new ImageData(new Uint8ClampedArray(res.data), res.width, res.height);
      } catch (error) {
        UniViewJSBridge.publishHandler("onCanvasMethodCallback", {
          callbackId,
          data: {
            errMsg: "canvasGetDataUrl:fail"
          }
        }, this.$page.id);
        return;
      }
      destWidth = res.width;
      destHeight = res.height;
      const canvas = getTempCanvas(destWidth, destHeight);
      const c2d = canvas.getContext("2d");
      c2d.putImageData(imgData, 0, 0);
      let base64 = canvas.toDataURL("image/png");
      canvas.height = canvas.width = 0;
      const img = new Image();
      img.onload = () => {
        const canvas2 = getTempCanvas(destWidth, destHeight);
        if (fileType === "jpeg" || fileType === "jpg") {
          fileType = "jpeg";
          c2d.fillStyle = "#fff";
          c2d.fillRect(0, 0, destWidth, destHeight);
        }
        c2d.drawImage(img, 0, 0);
        base64 = canvas2.toDataURL(`image/${fileType}`, qualit);
        canvas2.height = canvas2.width = 0;
        UniViewJSBridge.publishHandler("onCanvasMethodCallback", {
          callbackId,
          data: {
            errMsg: "canvasGetDataUrl:ok",
            base64
          }
        }, this.$page.id);
      };
      img.src = base64;
fxy060608's avatar
fxy060608 已提交
2694
    }
fxy060608's avatar
fxy060608 已提交
2695
  }
fxy060608's avatar
fxy060608 已提交
2696
};
Q
qiang 已提交
2697
const _hoisted_1$d = {
fxy060608's avatar
fxy060608 已提交
2698 2699 2700 2701
  ref: "canvas",
  width: "300",
  height: "150"
};
Q
qiang 已提交
2702
const _hoisted_2$7 = {style: {position: "absolute", top: "0", left: "0", width: "100%", height: "100%", overflow: "hidden"}};
fxy060608's avatar
fxy060608 已提交
2703
function _sfc_render$l(_ctx, _cache, $props, $setup, $data, $options) {
fxy060608's avatar
fxy060608 已提交
2704 2705 2706 2707 2708
  const _component_v_uni_resize_sensor = resolveComponent("v-uni-resize-sensor");
  return openBlock(), createBlock("uni-canvas", mergeProps({
    "canvas-id": $props.canvasId,
    "disable-scroll": $props.disableScroll
  }, toHandlers($options._listeners)), [
Q
qiang 已提交
2709 2710
    createVNode("canvas", _hoisted_1$d, null, 512),
    createVNode("div", _hoisted_2$7, [
fxy060608's avatar
fxy060608 已提交
2711 2712 2713 2714 2715 2716 2717 2718
      renderSlot(_ctx.$slots, "default")
    ]),
    createVNode(_component_v_uni_resize_sensor, {
      ref: "sensor",
      onResize: $options._resize
    }, null, 8, ["onResize"])
  ], 16, ["canvas-id", "disable-scroll"]);
}
fxy060608's avatar
fxy060608 已提交
2719 2720
_sfc_main$l.render = _sfc_render$l;
const _sfc_main$k = {
fxy060608's avatar
fxy060608 已提交
2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742
  name: "Checkbox",
  mixins: [emitter, listeners],
  props: {
    checked: {
      type: [Boolean, String],
      default: false
    },
    id: {
      type: String,
      default: ""
    },
    disabled: {
      type: [Boolean, String],
      default: false
    },
    color: {
      type: String,
      default: "#007aff"
    },
    value: {
      type: String,
      default: ""
fxy060608's avatar
fxy060608 已提交
2743
    }
fxy060608's avatar
fxy060608 已提交
2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756
  },
  data() {
    return {
      checkboxChecked: this.checked,
      checkboxValue: this.value
    };
  },
  watch: {
    checked(val) {
      this.checkboxChecked = val;
    },
    value(val) {
      this.checkboxValue = val;
fxy060608's avatar
fxy060608 已提交
2757
    }
fxy060608's avatar
fxy060608 已提交
2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792
  },
  listeners: {
    "label-click": "_onClick",
    "@label-click": "_onClick"
  },
  created() {
    this.$dispatch("CheckboxGroup", "uni-checkbox-group-update", {
      type: "add",
      vm: this
    });
    this.$dispatch("Form", "uni-form-group-update", {
      type: "add",
      vm: this
    });
  },
  beforeDestroy() {
    this.$dispatch("CheckboxGroup", "uni-checkbox-group-update", {
      type: "remove",
      vm: this
    });
    this.$dispatch("Form", "uni-form-group-update", {
      type: "remove",
      vm: this
    });
  },
  methods: {
    _onClick($event) {
      if (this.disabled) {
        return;
      }
      this.checkboxChecked = !this.checkboxChecked;
      this.$dispatch("CheckboxGroup", "uni-checkbox-change", $event);
    },
    _resetFormData() {
      this.checkboxChecked = false;
fxy060608's avatar
fxy060608 已提交
2793 2794
    }
  }
fxy060608's avatar
fxy060608 已提交
2795
};
Q
qiang 已提交
2796
const _hoisted_1$c = {class: "uni-checkbox-wrapper"};
fxy060608's avatar
fxy060608 已提交
2797
function _sfc_render$k(_ctx, _cache, $props, $setup, $data, $options) {
fxy060608's avatar
fxy060608 已提交
2798 2799 2800
  return openBlock(), createBlock("uni-checkbox", mergeProps({disabled: $props.disabled}, _ctx.$attrs, {
    onClick: _cache[1] || (_cache[1] = (...args) => $options._onClick && $options._onClick(...args))
  }), [
Q
qiang 已提交
2801
    createVNode("div", _hoisted_1$c, [
fxy060608's avatar
fxy060608 已提交
2802 2803 2804 2805 2806 2807 2808 2809
      createVNode("div", {
        class: [[$data.checkboxChecked ? "uni-checkbox-input-checked" : ""], "uni-checkbox-input"],
        style: {color: $props.color}
      }, null, 6),
      renderSlot(_ctx.$slots, "default")
    ])
  ], 16, ["disabled"]);
}
fxy060608's avatar
fxy060608 已提交
2810 2811
_sfc_main$k.render = _sfc_render$k;
const _sfc_main$j = {
fxy060608's avatar
fxy060608 已提交
2812 2813 2814 2815 2816 2817
  name: "CheckboxGroup",
  mixins: [emitter, listeners],
  props: {
    name: {
      type: String,
      default: ""
fxy060608's avatar
fxy060608 已提交
2818
    }
fxy060608's avatar
fxy060608 已提交
2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873
  },
  data() {
    return {
      checkboxList: []
    };
  },
  listeners: {
    "@checkbox-change": "_changeHandler",
    "@checkbox-group-update": "_checkboxGroupUpdateHandler"
  },
  created() {
    this.$dispatch("Form", "uni-form-group-update", {
      type: "add",
      vm: this
    });
  },
  beforeDestroy() {
    this.$dispatch("Form", "uni-form-group-update", {
      type: "remove",
      vm: this
    });
  },
  methods: {
    _changeHandler($event) {
      const value = [];
      this.checkboxList.forEach((vm) => {
        if (vm.checkboxChecked) {
          value.push(vm.value);
        }
      });
      this.$trigger("change", $event, {
        value
      });
    },
    _checkboxGroupUpdateHandler($event) {
      if ($event.type === "add") {
        this.checkboxList.push($event.vm);
      } else {
        const index2 = this.checkboxList.indexOf($event.vm);
        this.checkboxList.splice(index2, 1);
      }
    },
    _getFormData() {
      const data = {};
      if (this.name !== "") {
        const value = [];
        this.checkboxList.forEach((vm) => {
          if (vm.checkboxChecked) {
            value.push(vm.value);
          }
        });
        data.value = value;
        data.key = this.name;
      }
      return data;
fxy060608's avatar
fxy060608 已提交
2874 2875
    }
  }
fxy060608's avatar
fxy060608 已提交
2876
};
fxy060608's avatar
fxy060608 已提交
2877
function _sfc_render$j(_ctx, _cache, $props, $setup, $data, $options) {
fxy060608's avatar
fxy060608 已提交
2878 2879 2880 2881
  return openBlock(), createBlock("uni-checkbox-group", _ctx.$attrs, [
    renderSlot(_ctx.$slots, "default")
  ], 16);
}
fxy060608's avatar
fxy060608 已提交
2882
_sfc_main$j.render = _sfc_render$j;
fxy060608's avatar
fxy060608 已提交
2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911
var startTag = /^<([-A-Za-z0-9_]+)((?:\s+[a-zA-Z_:][-a-zA-Z0-9_:.]*(?:\s*=\s*(?:(?:"[^"]*")|(?:'[^']*')|[^>\s]+))?)*)\s*(\/?)>/;
var endTag = /^<\/([-A-Za-z0-9_]+)[^>]*>/;
var attr = /([a-zA-Z_:][-a-zA-Z0-9_:.]*)(?:\s*=\s*(?:(?:"((?:\\.|[^"])*)")|(?:'((?:\\.|[^'])*)')|([^>\s]+)))?/g;
var empty = makeMap("area,base,basefont,br,col,frame,hr,img,input,link,meta,param,embed,command,keygen,source,track,wbr");
var block = makeMap("a,address,article,applet,aside,audio,blockquote,button,canvas,center,dd,del,dir,div,dl,dt,fieldset,figcaption,figure,footer,form,frameset,h1,h2,h3,h4,h5,h6,header,hgroup,hr,iframe,isindex,li,map,menu,noframes,noscript,object,ol,output,p,pre,section,script,table,tbody,td,tfoot,th,thead,tr,ul,video");
var inline = makeMap("abbr,acronym,applet,b,basefont,bdo,big,br,button,cite,code,del,dfn,em,font,i,iframe,img,input,ins,kbd,label,map,object,q,s,samp,script,select,small,span,strike,strong,sub,sup,textarea,tt,u,var");
var closeSelf = makeMap("colgroup,dd,dt,li,options,p,td,tfoot,th,thead,tr");
var fillAttrs = makeMap("checked,compact,declare,defer,disabled,ismap,multiple,nohref,noresize,noshade,nowrap,readonly,selected");
var special = makeMap("script,style");
function HTMLParser(html, handler) {
  var index2;
  var chars2;
  var match;
  var stack = [];
  var last = html;
  stack.last = function() {
    return this[this.length - 1];
  };
  while (html) {
    chars2 = true;
    if (!stack.last() || !special[stack.last()]) {
      if (html.indexOf("<!--") == 0) {
        index2 = html.indexOf("-->");
        if (index2 >= 0) {
          if (handler.comment) {
            handler.comment(html.substring(4, index2));
          }
          html = html.substring(index2 + 3);
          chars2 = false;
fxy060608's avatar
fxy060608 已提交
2912
        }
fxy060608's avatar
fxy060608 已提交
2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942
      } else if (html.indexOf("</") == 0) {
        match = html.match(endTag);
        if (match) {
          html = html.substring(match[0].length);
          match[0].replace(endTag, parseEndTag);
          chars2 = false;
        }
      } else if (html.indexOf("<") == 0) {
        match = html.match(startTag);
        if (match) {
          html = html.substring(match[0].length);
          match[0].replace(startTag, parseStartTag);
          chars2 = false;
        }
      }
      if (chars2) {
        index2 = html.indexOf("<");
        var text2 = index2 < 0 ? html : html.substring(0, index2);
        html = index2 < 0 ? "" : html.substring(index2);
        if (handler.chars) {
          handler.chars(text2);
        }
      }
    } else {
      html = html.replace(new RegExp("([\\s\\S]*?)</" + stack.last() + "[^>]*>"), function(all, text3) {
        text3 = text3.replace(/<!--([\s\S]*?)-->|<!\[CDATA\[([\s\S]*?)]]>/g, "$1$2");
        if (handler.chars) {
          handler.chars(text3);
        }
        return "";
fxy060608's avatar
fxy060608 已提交
2943
      });
fxy060608's avatar
fxy060608 已提交
2944
      parseEndTag("", stack.last());
fxy060608's avatar
fxy060608 已提交
2945
    }
fxy060608's avatar
fxy060608 已提交
2946 2947
    if (html == last) {
      throw "Parse Error: " + html;
fxy060608's avatar
fxy060608 已提交
2948
    }
fxy060608's avatar
fxy060608 已提交
2949
    last = html;
fxy060608's avatar
fxy060608 已提交
2950
  }
fxy060608's avatar
fxy060608 已提交
2951 2952 2953 2954 2955 2956 2957
  parseEndTag();
  function parseStartTag(tag, tagName, rest, unary) {
    tagName = tagName.toLowerCase();
    if (block[tagName]) {
      while (stack.last() && inline[stack.last()]) {
        parseEndTag("", stack.last());
      }
fxy060608's avatar
fxy060608 已提交
2958
    }
fxy060608's avatar
fxy060608 已提交
2959 2960
    if (closeSelf[tagName] && stack.last() == tagName) {
      parseEndTag("", tagName);
fxy060608's avatar
fxy060608 已提交
2961
    }
fxy060608's avatar
fxy060608 已提交
2962 2963 2964
    unary = empty[tagName] || !!unary;
    if (!unary) {
      stack.push(tagName);
fxy060608's avatar
fxy060608 已提交
2965
    }
fxy060608's avatar
fxy060608 已提交
2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978
    if (handler.start) {
      var attrs2 = [];
      rest.replace(attr, function(match2, name) {
        var value = arguments[2] ? arguments[2] : arguments[3] ? arguments[3] : arguments[4] ? arguments[4] : fillAttrs[name] ? name : "";
        attrs2.push({
          name,
          value,
          escaped: value.replace(/(^|[^\\])"/g, '$1\\"')
        });
      });
      if (handler.start) {
        handler.start(tagName, attrs2, unary);
      }
fxy060608's avatar
fxy060608 已提交
2979
    }
fxy060608's avatar
fxy060608 已提交
2980 2981 2982 2983
  }
  function parseEndTag(tag, tagName) {
    if (!tagName) {
      var pos = 0;
fxy060608's avatar
fxy060608 已提交
2984
    } else {
fxy060608's avatar
fxy060608 已提交
2985 2986 2987 2988 2989
      for (var pos = stack.length - 1; pos >= 0; pos--) {
        if (stack[pos] == tagName) {
          break;
        }
      }
fxy060608's avatar
fxy060608 已提交
2990
    }
fxy060608's avatar
fxy060608 已提交
2991 2992 2993 2994 2995 2996 2997
    if (pos >= 0) {
      for (var i2 = stack.length - 1; i2 >= pos; i2--) {
        if (handler.end) {
          handler.end(stack[i2]);
        }
      }
      stack.length = pos;
fxy060608's avatar
fxy060608 已提交
2998 2999
    }
  }
fxy060608's avatar
fxy060608 已提交
3000
}
fxy060608's avatar
fxy060608 已提交
3001 3002 3003 3004 3005
function makeMap(str) {
  var obj = {};
  var items = str.split(",");
  for (var i2 = 0; i2 < items.length; i2++) {
    obj[items[i2]] = true;
fxy060608's avatar
fxy060608 已提交
3006
  }
fxy060608's avatar
fxy060608 已提交
3007
  return obj;
fxy060608's avatar
fxy060608 已提交
3008
}
fxy060608's avatar
fxy060608 已提交
3009 3010 3011
function divider(Quill) {
  const BlockEmbed = Quill.import("blots/block/embed");
  class Divider extends BlockEmbed {
fxy060608's avatar
fxy060608 已提交
3012
  }
fxy060608's avatar
fxy060608 已提交
3013 3014 3015 3016 3017
  Divider.blotName = "divider";
  Divider.tagName = "HR";
  return {
    "formats/divider": Divider
  };
fxy060608's avatar
fxy060608 已提交
3018
}
fxy060608's avatar
fxy060608 已提交
3019 3020 3021
function ins(Quill) {
  const Inline = Quill.import("blots/inline");
  class Ins extends Inline {
fxy060608's avatar
fxy060608 已提交
3022
  }
fxy060608's avatar
fxy060608 已提交
3023 3024 3025 3026 3027
  Ins.blotName = "ins";
  Ins.tagName = "INS";
  return {
    "formats/ins": Ins
  };
fxy060608's avatar
fxy060608 已提交
3028
}
fxy060608's avatar
fxy060608 已提交
3029 3030 3031 3032 3033 3034 3035 3036 3037 3038
function align(Quill) {
  const {Scope, Attributor} = Quill.import("parchment");
  const config = {
    scope: Scope.BLOCK,
    whitelist: ["left", "right", "center", "justify"]
  };
  const AlignStyle = new Attributor.Style("align", "text-align", config);
  return {
    "formats/align": AlignStyle
  };
fxy060608's avatar
fxy060608 已提交
3039
}
fxy060608's avatar
fxy060608 已提交
3040 3041 3042 3043 3044 3045 3046 3047 3048 3049
function direction(Quill) {
  const {Scope, Attributor} = Quill.import("parchment");
  const config = {
    scope: Scope.BLOCK,
    whitelist: ["rtl"]
  };
  const DirectionStyle = new Attributor.Style("direction", "direction", config);
  return {
    "formats/direction": DirectionStyle
  };
fxy060608's avatar
fxy060608 已提交
3050
}
fxy060608's avatar
fxy060608 已提交
3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062
function list(Quill) {
  const Parchment = Quill.import("parchment");
  const Container = Quill.import("blots/container");
  const ListItem = Quill.import("formats/list/item");
  class List extends Container {
    static create(value) {
      const tagName = value === "ordered" ? "OL" : "UL";
      const node = super.create(tagName);
      if (value === "checked" || value === "unchecked") {
        node.setAttribute("data-checked", value === "checked");
      }
      return node;
fxy060608's avatar
fxy060608 已提交
3063
    }
fxy060608's avatar
fxy060608 已提交
3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122
    static formats(domNode) {
      if (domNode.tagName === "OL")
        return "ordered";
      if (domNode.tagName === "UL") {
        if (domNode.hasAttribute("data-checked")) {
          return domNode.getAttribute("data-checked") === "true" ? "checked" : "unchecked";
        } else {
          return "bullet";
        }
      }
      return void 0;
    }
    constructor(domNode) {
      super(domNode);
      const listEventHandler = (e2) => {
        if (e2.target.parentNode !== domNode)
          return;
        const format = this.statics.formats(domNode);
        const blot = Parchment.find(e2.target);
        if (format === "checked") {
          blot.format("list", "unchecked");
        } else if (format === "unchecked") {
          blot.format("list", "checked");
        }
      };
      domNode.addEventListener("click", listEventHandler);
    }
    format(name, value) {
      if (this.children.length > 0) {
        this.children.tail.format(name, value);
      }
    }
    formats() {
      return {[this.statics.blotName]: this.statics.formats(this.domNode)};
    }
    insertBefore(blot, ref2) {
      if (blot instanceof ListItem) {
        super.insertBefore(blot, ref2);
      } else {
        const index2 = ref2 == null ? this.length() : ref2.offset(this);
        const after = this.split(index2);
        after.parent.insertBefore(blot, after);
      }
    }
    optimize(context) {
      super.optimize(context);
      const next = this.next;
      if (next != null && next.prev === this && next.statics.blotName === this.statics.blotName && next.domNode.tagName === this.domNode.tagName && next.domNode.getAttribute("data-checked") === this.domNode.getAttribute("data-checked")) {
        next.moveChildren(this);
        next.remove();
      }
    }
    replace(target) {
      if (target.statics.blotName !== this.statics.blotName) {
        const item = Parchment.create(this.statics.defaultChild);
        target.moveChildren(item);
        this.appendChild(item);
      }
      super.replace(target);
fxy060608's avatar
fxy060608 已提交
3123 3124
    }
  }
fxy060608's avatar
fxy060608 已提交
3125 3126 3127 3128 3129
  List.blotName = "list";
  List.scope = Parchment.Scope.BLOCK_BLOT;
  List.tagName = ["OL", "UL"];
  List.defaultChild = "list-item";
  List.allowedChildren = [ListItem];
fxy060608's avatar
fxy060608 已提交
3130
  return {
fxy060608's avatar
fxy060608 已提交
3131
    "formats/list": List
fxy060608's avatar
fxy060608 已提交
3132 3133
  };
}
fxy060608's avatar
fxy060608 已提交
3134 3135 3136 3137 3138 3139
function background(Quill) {
  const {Scope} = Quill.import("parchment");
  const BackgroundStyle = Quill.import("formats/background");
  const BackgroundColorStyle = new BackgroundStyle.constructor("backgroundColor", "background-color", {
    scope: Scope.INLINE
  });
fxy060608's avatar
fxy060608 已提交
3140
  return {
fxy060608's avatar
fxy060608 已提交
3141
    "formats/backgroundColor": BackgroundColorStyle
fxy060608's avatar
fxy060608 已提交
3142 3143
  };
}
fxy060608's avatar
fxy060608 已提交
3144 3145 3146 3147
function box(Quill) {
  const {Scope, Attributor} = Quill.import("parchment");
  const config = {
    scope: Scope.BLOCK
fxy060608's avatar
fxy060608 已提交
3148
  };
fxy060608's avatar
fxy060608 已提交
3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165
  const margin = [
    "margin",
    "marginTop",
    "marginBottom",
    "marginLeft",
    "marginRight"
  ];
  const padding = [
    "padding",
    "paddingTop",
    "paddingBottom",
    "paddingLeft",
    "paddingRight"
  ];
  const result = {};
  margin.concat(padding).forEach((name) => {
    result[`formats/${name}`] = new Attributor.Style(name, hyphenate(name), config);
fxy060608's avatar
fxy060608 已提交
3166
  });
fxy060608's avatar
fxy060608 已提交
3167
  return result;
fxy060608's avatar
fxy060608 已提交
3168
}
fxy060608's avatar
fxy060608 已提交
3169 3170 3171 3172
function font(Quill) {
  const {Scope, Attributor} = Quill.import("parchment");
  const config = {
    scope: Scope.INLINE
fxy060608's avatar
fxy060608 已提交
3173
  };
fxy060608's avatar
fxy060608 已提交
3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184
  const font2 = [
    "font",
    "fontSize",
    "fontStyle",
    "fontVariant",
    "fontWeight",
    "fontFamily"
  ];
  const result = {};
  font2.forEach((name) => {
    result[`formats/${name}`] = new Attributor.Style(name, hyphenate(name), config);
fxy060608's avatar
fxy060608 已提交
3185
  });
fxy060608's avatar
fxy060608 已提交
3186
  return result;
fxy060608's avatar
fxy060608 已提交
3187
}
fxy060608's avatar
fxy060608 已提交
3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205
function text(Quill) {
  const {Scope, Attributor} = Quill.import("parchment");
  const text2 = [
    {
      name: "lineHeight",
      scope: Scope.BLOCK
    },
    {
      name: "letterSpacing",
      scope: Scope.INLINE
    },
    {
      name: "textDecoration",
      scope: Scope.INLINE
    },
    {
      name: "textIndent",
      scope: Scope.BLOCK
fxy060608's avatar
fxy060608 已提交
3206
    }
fxy060608's avatar
fxy060608 已提交
3207 3208 3209 3210 3211 3212 3213 3214
  ];
  const result = {};
  text2.forEach(({name, scope}) => {
    result[`formats/${name}`] = new Attributor.Style(name, hyphenate(name), {
      scope
    });
  });
  return result;
fxy060608's avatar
fxy060608 已提交
3215
}
fxy060608's avatar
fxy060608 已提交
3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233
function image(Quill) {
  const Image2 = Quill.import("formats/image");
  const ATTRIBUTES = [
    "alt",
    "height",
    "width",
    "data-custom",
    "class",
    "data-local"
  ];
  Image2.sanitize = (url) => url;
  Image2.formats = function formats(domNode) {
    return ATTRIBUTES.reduce(function(formats2, attribute) {
      if (domNode.hasAttribute(attribute)) {
        formats2[attribute] = domNode.getAttribute(attribute);
      }
      return formats2;
    }, {});
fxy060608's avatar
fxy060608 已提交
3234
  };
fxy060608's avatar
fxy060608 已提交
3235 3236 3237 3238 3239 3240 3241 3242 3243 3244
  const format = Image2.prototype.format;
  Image2.prototype.format = function(name, value) {
    if (ATTRIBUTES.indexOf(name) > -1) {
      if (value) {
        this.domNode.setAttribute(name, value);
      } else {
        this.domNode.removeAttribute(name);
      }
    } else {
      format.call(this, name, value);
fxy060608's avatar
fxy060608 已提交
3245
    }
fxy060608's avatar
fxy060608 已提交
3246
  };
fxy060608's avatar
fxy060608 已提交
3247
}
fxy060608's avatar
fxy060608 已提交
3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263
function register(Quill) {
  const formats = {
    divider,
    ins,
    align,
    direction,
    list,
    background,
    box,
    font,
    text,
    image
  };
  const options = {};
  Object.values(formats).forEach((value) => Object.assign(options, value(Quill)));
  Quill.register(options, true);
fxy060608's avatar
fxy060608 已提交
3264
}
fxy060608's avatar
fxy060608 已提交
3265
const _sfc_main$i = {
fxy060608's avatar
fxy060608 已提交
3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291
  name: "Editor",
  mixins: [subscriber, emitter, keyboard],
  props: {
    id: {
      type: String,
      default: ""
    },
    readOnly: {
      type: [Boolean, String],
      default: false
    },
    placeholder: {
      type: String,
      default: ""
    },
    showImgSize: {
      type: [Boolean, String],
      default: false
    },
    showImgToolbar: {
      type: [Boolean, String],
      default: false
    },
    showImgResize: {
      type: [Boolean, String],
      default: false
fxy060608's avatar
fxy060608 已提交
3292
    }
fxy060608's avatar
fxy060608 已提交
3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308
  },
  data() {
    return {
      quillReady: false
    };
  },
  computed: {},
  watch: {
    readOnly(value) {
      if (this.quillReady) {
        const quill = this.quill;
        quill.enable(!value);
        if (!value) {
          quill.blur();
        }
      }
fxy060608's avatar
fxy060608 已提交
3309
    },
fxy060608's avatar
fxy060608 已提交
3310 3311 3312 3313
    placeholder(value) {
      if (this.quillReady) {
        this.quill.root.setAttribute("data-placeholder", value);
      }
fxy060608's avatar
fxy060608 已提交
3314
    }
fxy060608's avatar
fxy060608 已提交
3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454
  },
  mounted() {
    const imageResizeModules = [];
    if (this.showImgSize) {
      imageResizeModules.push("DisplaySize");
    }
    if (this.showImgToolbar) {
      imageResizeModules.push("Toolbar");
    }
    if (this.showImgResize) {
      imageResizeModules.push("Resize");
    }
    this.loadQuill(() => {
      if (imageResizeModules.length) {
        this.loadImageResizeModule(() => {
          this.initQuill(imageResizeModules);
        });
      } else {
        this.initQuill(imageResizeModules);
      }
    });
  },
  methods: {
    _handleSubscribe({
      type,
      data
    }) {
      const {options, callbackId} = data;
      const quill = this.quill;
      const Quill = window.Quill;
      let res;
      let range;
      let errMsg;
      if (this.quillReady) {
        switch (type) {
          case "format":
            {
              let {name = "", value = false} = options;
              range = quill.getSelection(true);
              let format = quill.getFormat(range)[name] || false;
              if (["bold", "italic", "underline", "strike", "ins"].includes(name)) {
                value = !format;
              } else if (name === "direction") {
                value = value === "rtl" && format ? false : value;
                const align2 = quill.getFormat(range).align;
                if (value === "rtl" && !align2) {
                  quill.format("align", "right", Quill.sources.USER);
                } else if (!value && align2 === "right") {
                  quill.format("align", false, Quill.sources.USER);
                }
              } else if (name === "indent") {
                const rtl = quill.getFormat(range).direction === "rtl";
                value = value === "+1";
                if (rtl) {
                  value = !value;
                }
                value = value ? "+1" : "-1";
              } else {
                if (name === "list") {
                  value = value === "check" ? "unchecked" : value;
                  format = format === "checked" ? "unchecked" : format;
                }
                value = format && format !== (value || false) || !format && value ? value : !format;
              }
              quill.format(name, value, Quill.sources.USER);
            }
            break;
          case "insertDivider":
            range = quill.getSelection(true);
            quill.insertText(range.index, "\n", Quill.sources.USER);
            quill.insertEmbed(range.index + 1, "divider", true, Quill.sources.USER);
            quill.setSelection(range.index + 2, Quill.sources.SILENT);
            break;
          case "insertImage":
            {
              range = quill.getSelection(true);
              const {src = "", alt = "", width = "", height = "", extClass = "", data: data2 = {}} = options;
              const path = this.$getRealPath(src);
              quill.insertEmbed(range.index, "image", path, Quill.sources.USER);
              const local = /^(file|blob):/.test(path) ? path : false;
              quill.formatText(range.index, 1, "data-local", local);
              quill.formatText(range.index, 1, "alt", alt);
              quill.formatText(range.index, 1, "width", width);
              quill.formatText(range.index, 1, "height", height);
              quill.formatText(range.index, 1, "class", extClass);
              quill.formatText(range.index, 1, "data-custom", Object.keys(data2).map((key) => `${key}=${data2[key]}`).join("&"));
              quill.setSelection(range.index + 1, Quill.sources.SILENT);
            }
            break;
          case "insertText":
            {
              range = quill.getSelection(true);
              const {text: text2 = ""} = options;
              quill.insertText(range.index, text2, Quill.sources.USER);
              quill.setSelection(range.index + text2.length, 0, Quill.sources.SILENT);
            }
            break;
          case "setContents":
            {
              const {delta, html} = options;
              if (typeof delta === "object") {
                quill.setContents(delta, Quill.sources.SILENT);
              } else if (typeof html === "string") {
                quill.setContents(this.html2delta(html), Quill.sources.SILENT);
              } else {
                errMsg = "contents is missing";
              }
            }
            break;
          case "getContents":
            res = this.getContents();
            break;
          case "clear":
            quill.setContents([]);
            break;
          case "removeFormat":
            {
              range = quill.getSelection(true);
              const parchment = Quill.import("parchment");
              if (range.length) {
                quill.removeFormat(range, Quill.sources.USER);
              } else {
                Object.keys(quill.getFormat(range)).forEach((key) => {
                  if (parchment.query(key, parchment.Scope.INLINE)) {
                    quill.format(key, false);
                  }
                });
              }
            }
            break;
          case "undo":
            quill.history.undo();
            break;
          case "redo":
            quill.history.redo();
            break;
        }
        this.updateStatus(range);
      } else {
        errMsg = "not ready";
fxy060608's avatar
fxy060608 已提交
3455
      }
fxy060608's avatar
fxy060608 已提交
3456 3457 3458 3459 3460 3461 3462
      if (callbackId) {
        UniViewJSBridge.publishHandler("onEditorMethodCallback", {
          callbackId,
          data: Object.assign({}, res, {
            errMsg: `${type}:${errMsg ? "fail " + errMsg : "ok"}`
          })
        }, this.$page.id);
fxy060608's avatar
fxy060608 已提交
3463
      }
fxy060608's avatar
fxy060608 已提交
3464 3465 3466 3467 3468 3469
    },
    loadQuill(callback) {
      if (typeof window.Quill === "function") {
        if (typeof callback === "function") {
          callback();
        }
fxy060608's avatar
fxy060608 已提交
3470 3471
        return;
      }
fxy060608's avatar
fxy060608 已提交
3472 3473 3474 3475 3476 3477 3478 3479 3480 3481
      const script = document.createElement("script");
      script.src = window.plus ? "./__uniappquill.js" : "https://unpkg.com/quill@1.3.7/dist/quill.min.js";
      document.body.appendChild(script);
      script.onload = callback;
    },
    loadImageResizeModule(callback) {
      if (typeof window.ImageResize === "function") {
        if (typeof callback === "function") {
          callback();
        }
fxy060608's avatar
fxy060608 已提交
3482 3483
        return;
      }
fxy060608's avatar
fxy060608 已提交
3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512
      const script = document.createElement("script");
      script.src = window.plus ? "./__uniappquillimageresize.js" : "https://unpkg.com/quill-image-resize-mp@3.0.1/image-resize.min.js";
      document.body.appendChild(script);
      script.onload = callback;
    },
    initQuill(imageResizeModules) {
      const Quill = window.Quill;
      register(Quill);
      const options = {
        toolbar: false,
        readOnly: this.readOnly,
        placeholder: this.placeholder,
        modules: {}
      };
      if (imageResizeModules.length) {
        Quill.register("modules/ImageResize", window.ImageResize.default);
        options.modules.ImageResize = {
          modules: imageResizeModules
        };
      }
      const quill = this.quill = new Quill(this.$el, options);
      const $el = quill.root;
      const events = ["focus", "blur", "input"];
      events.forEach((name) => {
        $el.addEventListener(name, ($event) => {
          if (name === "input") {
            $event.stopPropagation();
          } else {
            this.$trigger(name, $event, this.getContents());
fxy060608's avatar
fxy060608 已提交
3513
          }
fxy060608's avatar
fxy060608 已提交
3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526
        });
      });
      quill.on(Quill.events.TEXT_CHANGE, () => {
        this.$trigger("input", {}, this.getContents());
      });
      quill.on(Quill.events.SELECTION_CHANGE, this.updateStatus.bind(this));
      quill.on(Quill.events.SCROLL_OPTIMIZE, () => {
        const range = quill.selection.getRange()[0];
        this.updateStatus(range);
      });
      quill.clipboard.addMatcher(Node.ELEMENT_NODE, (node, delta) => {
        if (this.skipMatcher) {
          return delta;
fxy060608's avatar
fxy060608 已提交
3527
        }
fxy060608's avatar
fxy060608 已提交
3528 3529
        delta.ops = delta.ops.filter(({insert}) => typeof insert === "string").map(({insert}) => ({insert}));
        return delta;
fxy060608's avatar
fxy060608 已提交
3530
      });
fxy060608's avatar
fxy060608 已提交
3531 3532 3533
      this.initKeyboard($el);
      this.quillReady = true;
      this.$trigger("ready", event, {});
fxy060608's avatar
fxy060608 已提交
3534
    },
fxy060608's avatar
fxy060608 已提交
3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554
    getContents() {
      const quill = this.quill;
      const html = quill.root.innerHTML;
      const text2 = quill.getText();
      const delta = quill.getContents();
      return {
        html,
        text: text2,
        delta
      };
    },
    html2delta(html) {
      const tags = ["span", "strong", "b", "ins", "em", "i", "u", "a", "del", "s", "sub", "sup", "img", "div", "p", "h1", "h2", "h3", "h4", "h5", "h6", "hr", "ol", "ul", "li", "br"];
      let content = "";
      let disable;
      HTMLParser(html, {
        start: function(tag, attrs2, unary) {
          if (!tags.includes(tag)) {
            disable = !unary;
            return;
fxy060608's avatar
fxy060608 已提交
3555
          }
fxy060608's avatar
fxy060608 已提交
3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568
          disable = false;
          const arrts = attrs2.map(({name, value}) => `${name}="${value}"`).join(" ");
          const start = `<${tag} ${arrts} ${unary ? "/" : ""}>`;
          content += start;
        },
        end: function(tag) {
          if (!disable) {
            content += `</${tag}>`;
          }
        },
        chars: function(text2) {
          if (!disable) {
            content += text2;
fxy060608's avatar
fxy060608 已提交
3569 3570 3571
          }
        }
      });
fxy060608's avatar
fxy060608 已提交
3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583
      this.skipMatcher = true;
      const delta = this.quill.clipboard.convert(content);
      this.skipMatcher = false;
      return delta;
    },
    updateStatus(range) {
      const status = range ? this.quill.getFormat(range) : {};
      const keys = Object.keys(status);
      if (keys.length !== Object.keys(this.__status || {}).length || keys.find((key) => status[key] !== this.__status[key])) {
        this.__status = status;
        this.$trigger("statuschange", {}, status);
      }
fxy060608's avatar
fxy060608 已提交
3584
    }
fxy060608's avatar
fxy060608 已提交
3585 3586
  }
};
fxy060608's avatar
fxy060608 已提交
3587
function _sfc_render$i(_ctx, _cache, $props, $setup, $data, $options) {
fxy060608's avatar
fxy060608 已提交
3588 3589 3590 3591 3592
  return openBlock(), createBlock("uni-editor", mergeProps({
    id: $props.id,
    class: "ql-container"
  }, _ctx.$attrs), null, 16, ["id"]);
}
fxy060608's avatar
fxy060608 已提交
3593
_sfc_main$i.render = _sfc_render$i;
fxy060608's avatar
fxy060608 已提交
3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635
const INFO_COLOR = "#10aeff";
const WARN_COLOR = "#f76260";
const GREY_COLOR = "#b2b2b2";
const CANCEL_COLOR = "#f43530";
const ICONS = {
  success: {
    d: ICON_PATH_SUCCESS,
    c: PRIMARY_COLOR$1
  },
  success_no_circle: {
    d: ICON_PATH_SUCCESS_NO_CIRCLE,
    c: PRIMARY_COLOR$1
  },
  info: {
    d: ICON_PATH_INFO,
    c: INFO_COLOR
  },
  warn: {
    d: ICON_PATH_WARN,
    c: WARN_COLOR
  },
  waiting: {
    d: ICON_PATH_WAITING,
    c: INFO_COLOR
  },
  cancel: {
    d: ICON_PATH_CANCEL,
    c: CANCEL_COLOR
  },
  download: {
    d: ICON_PATH_DOWNLOAD,
    c: PRIMARY_COLOR$1
  },
  search: {
    d: ICON_PATH_SEARCH,
    c: GREY_COLOR
  },
  clear: {
    d: ICON_PATH_CLEAR,
    c: GREY_COLOR
  }
};
fxy060608's avatar
fxy060608 已提交
3636
var index$4 = /* @__PURE__ */ defineComponent({
fxy060608's avatar
fxy060608 已提交
3637
  name: "Icon",
fxy060608's avatar
fxy060608 已提交
3638
  props: {
fxy060608's avatar
fxy060608 已提交
3639
    type: {
fxy060608's avatar
fxy060608 已提交
3640
      type: String,
fxy060608's avatar
fxy060608 已提交
3641 3642
      required: true,
      default: ""
fxy060608's avatar
fxy060608 已提交
3643
    },
fxy060608's avatar
fxy060608 已提交
3644 3645 3646
    size: {
      type: [String, Number],
      default: 23
fxy060608's avatar
fxy060608 已提交
3647
    },
fxy060608's avatar
fxy060608 已提交
3648 3649 3650
    color: {
      type: String,
      default: ""
fxy060608's avatar
fxy060608 已提交
3651
    }
fxy060608's avatar
fxy060608 已提交
3652
  },
fxy060608's avatar
fxy060608 已提交
3653 3654 3655
  setup(props2) {
    const path = computed(() => ICONS[props2.type]);
    return () => createVNode("uni-icon", null, [path.value.d && createSvgIconVNode(path.value.d, props2.color || path.value.c, rpx2px(props2.size))]);
fxy060608's avatar
fxy060608 已提交
3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700
  }
});
function findElem(vm) {
  return vm.$el;
}
const SCHEME_RE = /^([a-z-]+:)?\/\//i;
const DATA_RE = /^data:.*,.*/;
function addBase(filePath) {
  const base = __uniConfig.router.base;
  if (!base) {
    return filePath;
  }
  if (base !== "/") {
    if (("/" + filePath).indexOf(base) === 0) {
      return "/" + filePath;
    }
  }
  return base + filePath;
}
function getRealPath(filePath) {
  if (__uniConfig.router.base === "./") {
    filePath = filePath.replace(/^\.\/static\//, "/static/");
  }
  if (filePath.indexOf("/") === 0) {
    if (filePath.indexOf("//") === 0) {
      filePath = "https:" + filePath;
    } else {
      return addBase(filePath.substr(1));
    }
  }
  if (SCHEME_RE.test(filePath) || DATA_RE.test(filePath) || filePath.indexOf("blob:") === 0) {
    return filePath;
  }
  const pages = getCurrentPages();
  if (pages.length) {
    return addBase(getRealRoute(pages[pages.length - 1].$page.route, filePath).substr(1));
  }
  return filePath;
}
const ua = navigator.userAgent;
const isAndroid = /android/i.test(ua);
const isIOS$1 = /iphone|ipad|ipod/i.test(ua);
const isWindows = ua.match(/Windows NT ([\d|\d.\d]*)/i);
const isMac = /Macintosh|Mac/i.test(ua);
const isLinux = /Linux|X11/i.test(ua);
fxy060608's avatar
fxy060608 已提交
3701
const isIPadOS = isMac && navigator.maxTouchPoints > 0;
fxy060608's avatar
fxy060608 已提交
3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759
function getScreenFix() {
  return /^Apple/.test(navigator.vendor) && typeof window.orientation === "number";
}
function isLandscape(screenFix) {
  return screenFix && Math.abs(window.orientation) === 90;
}
function getScreenWidth(screenFix, landscape) {
  return screenFix ? Math[landscape ? "max" : "min"](screen.width, screen.height) : screen.width;
}
function getScreenHeight(screenFix, landscape) {
  return screenFix ? Math[landscape ? "min" : "max"](screen.height, screen.width) : screen.height;
}
function getWindowWidth(screenWidth) {
  return Math.min(window.innerWidth, document.documentElement.clientWidth, screenWidth) || screenWidth;
}
function getBaseSystemInfo() {
  const screenFix = getScreenFix();
  const windowWidth = getWindowWidth(getScreenWidth(screenFix, isLandscape(screenFix)));
  return {
    platform: isIOS$1 ? "ios" : "other",
    pixelRatio: window.devicePixelRatio,
    windowWidth
  };
}
function operateVideoPlayer(videoId, vm, type, data) {
  const pageId = vm.$page.id;
  UniServiceJSBridge.publishHandler(pageId + "-video-" + videoId, {
    videoId,
    type,
    data
  }, pageId);
}
var chars = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
var lookup = new Uint8Array(256);
for (var i$1 = 0; i$1 < chars.length; i$1++) {
  lookup[chars.charCodeAt(i$1)] = i$1;
}
function encode$1(arraybuffer) {
  var bytes = new Uint8Array(arraybuffer), i2, len = bytes.length, base64 = "";
  for (i2 = 0; i2 < len; i2 += 3) {
    base64 += chars[bytes[i2] >> 2];
    base64 += chars[(bytes[i2] & 3) << 4 | bytes[i2 + 1] >> 4];
    base64 += chars[(bytes[i2 + 1] & 15) << 2 | bytes[i2 + 2] >> 6];
    base64 += chars[bytes[i2 + 2] & 63];
  }
  if (len % 3 === 2) {
    base64 = base64.substring(0, base64.length - 1) + "=";
  } else if (len % 3 === 1) {
    base64 = base64.substring(0, base64.length - 2) + "==";
  }
  return base64;
}
function decode(base64) {
  var bufferLength = base64.length * 0.75, len = base64.length, i2, p2 = 0, encoded1, encoded2, encoded3, encoded4;
  if (base64[base64.length - 1] === "=") {
    bufferLength--;
    if (base64[base64.length - 2] === "=") {
      bufferLength--;
fxy060608's avatar
fxy060608 已提交
3760
    }
fxy060608's avatar
fxy060608 已提交
3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773
  }
  var arraybuffer = new ArrayBuffer(bufferLength), bytes = new Uint8Array(arraybuffer);
  for (i2 = 0; i2 < len; i2 += 4) {
    encoded1 = lookup[base64.charCodeAt(i2)];
    encoded2 = lookup[base64.charCodeAt(i2 + 1)];
    encoded3 = lookup[base64.charCodeAt(i2 + 2)];
    encoded4 = lookup[base64.charCodeAt(i2 + 3)];
    bytes[p2++] = encoded1 << 2 | encoded2 >> 4;
    bytes[p2++] = (encoded2 & 15) << 4 | encoded3 >> 2;
    bytes[p2++] = (encoded3 & 3) << 6 | encoded4 & 63;
  }
  return arraybuffer;
}
D
DCloud_LXH 已提交
3774
const CHOOSE_SIZE_TYPES = ["original", "compressed"];
fxy060608's avatar
fxy060608 已提交
3775
const CHOOSE_SOURCE_TYPES = ["album", "camera"];
fxy060608's avatar
fxy060608 已提交
3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786
const HTTP_METHODS = [
  "GET",
  "OPTIONS",
  "HEAD",
  "POST",
  "PUT",
  "DELETE",
  "TRACE",
  "CONNECT"
];
function elemInArray(str, arr) {
fxy060608's avatar
fxy060608 已提交
3787
  if (!str || arr.indexOf(str) === -1) {
fxy060608's avatar
fxy060608 已提交
3788 3789 3790 3791
    return arr[0];
  }
  return str;
}
fxy060608's avatar
fxy060608 已提交
3792 3793 3794 3795 3796 3797
function elemsInArray(strArr, optionalVal) {
  if (!isArray(strArr) || strArr.length === 0 || strArr.find((val) => optionalVal.indexOf(val) === -1)) {
    return optionalVal;
  }
  return strArr;
}
fxy060608's avatar
fxy060608 已提交
3798 3799 3800 3801 3802 3803 3804 3805
function validateProtocolFail(name, msg) {
  console.warn(`${name}: ${msg}`);
}
function validateProtocol(name, data, protocol) {
  for (const key in protocol) {
    const errMsg = validateProp(key, data[key], protocol[key], !hasOwn$1(data, key));
    if (isString(errMsg)) {
      validateProtocolFail(name, errMsg);
fxy060608's avatar
fxy060608 已提交
3806 3807 3808
    }
  }
}
fxy060608's avatar
fxy060608 已提交
3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825
function validateProtocols(name, args, protocol) {
  if (!protocol) {
    return;
  }
  if (!isArray(protocol)) {
    return validateProtocol(name, args[0] || Object.create(null), protocol);
  }
  const len = protocol.length;
  const argsLen = args.length;
  for (let i2 = 0; i2 < len; i2++) {
    const opts = protocol[i2];
    const data = Object.create(null);
    if (argsLen > i2) {
      data[opts.name] = args[i2];
    }
    validateProtocol(name, data, {[opts.name]: opts});
  }
fxy060608's avatar
fxy060608 已提交
3826
}
fxy060608's avatar
fxy060608 已提交
3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845
function validateProp(name, value, prop, isAbsent) {
  if (!isPlainObject(prop)) {
    prop = {type: prop};
  }
  const {type, required, validator} = prop;
  if (required && isAbsent) {
    return 'Missing required args: "' + name + '"';
  }
  if (value == null && !required) {
    return;
  }
  if (type != null) {
    let isValid = false;
    const types = isArray(type) ? type : [type];
    const expectedTypes = [];
    for (let i2 = 0; i2 < types.length && !isValid; i2++) {
      const {valid, expectedType} = assertType(value, types[i2]);
      expectedTypes.push(expectedType || "");
      isValid = valid;
fxy060608's avatar
fxy060608 已提交
3846
    }
fxy060608's avatar
fxy060608 已提交
3847 3848
    if (!isValid) {
      return getInvalidTypeMessage(name, value, expectedTypes);
fxy060608's avatar
fxy060608 已提交
3849
    }
fxy060608's avatar
fxy060608 已提交
3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863
  }
  if (validator) {
    return validator(value);
  }
}
const isSimpleType = /* @__PURE__ */ makeMap$1("String,Number,Boolean,Function,Symbol");
function assertType(value, type) {
  let valid;
  const expectedType = getType(type);
  if (isSimpleType(expectedType)) {
    const t2 = typeof value;
    valid = t2 === expectedType.toLowerCase();
    if (!valid && t2 === "object") {
      valid = value instanceof type;
fxy060608's avatar
fxy060608 已提交
3864
    }
fxy060608's avatar
fxy060608 已提交
3865 3866 3867 3868 3869 3870 3871
  } else if (expectedType === "Object") {
    valid = isObject$1(value);
  } else if (expectedType === "Array") {
    valid = isArray(value);
  } else {
    {
      valid = value instanceof type;
fxy060608's avatar
fxy060608 已提交
3872 3873
    }
  }
fxy060608's avatar
fxy060608 已提交
3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919
  return {
    valid,
    expectedType
  };
}
function getInvalidTypeMessage(name, value, expectedTypes) {
  let message = `Invalid args: type check failed for args "${name}". Expected ${expectedTypes.map(capitalize).join(", ")}`;
  const expectedType = expectedTypes[0];
  const receivedType = toRawType(value);
  const expectedValue = styleValue(value, expectedType);
  const receivedValue = styleValue(value, receivedType);
  if (expectedTypes.length === 1 && isExplicable(expectedType) && !isBoolean(expectedType, receivedType)) {
    message += ` with value ${expectedValue}`;
  }
  message += `, got ${receivedType} `;
  if (isExplicable(receivedType)) {
    message += `with value ${receivedValue}.`;
  }
  return message;
}
function getType(ctor) {
  const match = ctor && ctor.toString().match(/^\s*function (\w+)/);
  return match ? match[1] : "";
}
function styleValue(value, type) {
  if (type === "String") {
    return `"${value}"`;
  } else if (type === "Number") {
    return `${Number(value)}`;
  } else {
    return `${value}`;
  }
}
function isExplicable(type) {
  const explicitTypes = ["string", "number", "boolean"];
  return explicitTypes.some((elem) => type.toLowerCase() === elem);
}
function isBoolean(...args) {
  return args.some((elem) => elem.toLowerCase() === "boolean");
}
function tryCatch(fn) {
  return function() {
    try {
      return fn.apply(fn, arguments);
    } catch (e2) {
      console.error(e2);
fxy060608's avatar
fxy060608 已提交
3920
    }
fxy060608's avatar
fxy060608 已提交
3921
  };
fxy060608's avatar
fxy060608 已提交
3922 3923 3924 3925 3926 3927 3928 3929
}
let invokeCallbackId = 1;
const invokeCallbacks = {};
function addInvokeCallback(id2, name, callback, keepAlive = false) {
  invokeCallbacks[id2] = {
    name,
    keepAlive,
    callback
fxy060608's avatar
fxy060608 已提交
3930
  };
fxy060608's avatar
fxy060608 已提交
3931
  return id2;
fxy060608's avatar
fxy060608 已提交
3932
}
fxy060608's avatar
fxy060608 已提交
3933 3934 3935 3936 3937 3938 3939 3940
function invokeCallback(id2, res, extras) {
  if (typeof id2 === "number") {
    const opts = invokeCallbacks[id2];
    if (opts) {
      if (!opts.keepAlive) {
        delete invokeCallbacks[id2];
      }
      return opts.callback(res, extras);
fxy060608's avatar
fxy060608 已提交
3941
    }
fxy060608's avatar
fxy060608 已提交
3942 3943 3944 3945 3946 3947 3948
  }
  return res;
}
function findInvokeCallbackByName(name) {
  for (const key in invokeCallbacks) {
    if (invokeCallbacks[key].name === name) {
      return true;
fxy060608's avatar
fxy060608 已提交
3949 3950
    }
  }
fxy060608's avatar
fxy060608 已提交
3951 3952 3953 3954 3955 3956 3957
  return false;
}
function removeKeepAliveApiCallback(name, callback) {
  for (const key in invokeCallbacks) {
    const item = invokeCallbacks[key];
    if (item.callback === callback && item.name === name) {
      delete invokeCallbacks[key];
fxy060608's avatar
fxy060608 已提交
3958
    }
fxy060608's avatar
fxy060608 已提交
3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969
  }
}
function offKeepAliveApiCallback(name) {
  UniServiceJSBridge.off("api." + name);
}
function onKeepAliveApiCallback(name) {
  UniServiceJSBridge.on("api." + name, (res) => {
    for (const key in invokeCallbacks) {
      const opts = invokeCallbacks[key];
      if (opts.name === name) {
        opts.callback(res);
fxy060608's avatar
fxy060608 已提交
3970 3971
      }
    }
fxy060608's avatar
fxy060608 已提交
3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058
  });
}
function createKeepAliveApiCallback(name, callback) {
  return addInvokeCallback(invokeCallbackId++, name, callback, true);
}
const API_SUCCESS = "success";
const API_FAIL = "fail";
const API_COMPLETE = "complete";
function getApiCallbacks(args) {
  const apiCallbacks = {};
  for (const name in args) {
    const fn = args[name];
    if (isFunction(fn)) {
      apiCallbacks[name] = tryCatch(fn);
      delete args[name];
    }
  }
  return apiCallbacks;
}
function normalizeErrMsg(errMsg, name) {
  if (!errMsg || errMsg.indexOf(":fail") === -1) {
    return name + ":ok";
  }
  return name + errMsg.substring(errMsg.indexOf(":fail"));
}
function createAsyncApiCallback(name, args = {}, {beforeAll, beforeSuccess} = {}) {
  if (!isPlainObject(args)) {
    args = {};
  }
  const {success, fail, complete} = getApiCallbacks(args);
  const hasSuccess = isFunction(success);
  const hasFail = isFunction(fail);
  const hasComplete = isFunction(complete);
  const callbackId = invokeCallbackId++;
  addInvokeCallback(callbackId, name, (res) => {
    res = res || {};
    res.errMsg = normalizeErrMsg(res.errMsg, name);
    isFunction(beforeAll) && beforeAll(res);
    if (res.errMsg === name + ":ok") {
      isFunction(beforeSuccess) && beforeSuccess(res);
      hasSuccess && success(res);
    } else {
      hasFail && fail(res);
    }
    hasComplete && complete(res);
  });
  return callbackId;
}
const callbacks = [API_SUCCESS, API_FAIL, API_COMPLETE];
function hasCallback(args) {
  if (isPlainObject(args) && callbacks.find((cb) => isFunction(args[cb]))) {
    return true;
  }
  return false;
}
function handlePromise(promise) {
  if (__UNI_FEATURE_PROMISE__) {
    return promise.then((data) => {
      return [null, data];
    }).catch((err) => [err]);
  }
  return promise;
}
function promisify(fn) {
  return (args = {}) => {
    if (hasCallback(args)) {
      return fn(args);
    }
    return handlePromise(new Promise((resolve, reject) => {
      fn(Object.assign(args, {success: resolve, fail: reject}));
    }));
  };
}
function formatApiArgs(args, options) {
  const params = args[0];
  if (!options || !isPlainObject(options.formatArgs) && isPlainObject(params)) {
    return;
  }
  const formatArgs = options.formatArgs;
  const keys = Object.keys(formatArgs);
  for (let i2 = 0; i2 < keys.length; i2++) {
    const name = keys[i2];
    const formatterOrDefaultValue = formatArgs[name];
    if (isFunction(formatterOrDefaultValue)) {
      const errMsg = formatterOrDefaultValue(args[0][name], params);
      if (isString(errMsg)) {
        return errMsg;
fxy060608's avatar
fxy060608 已提交
4059
      }
fxy060608's avatar
fxy060608 已提交
4060 4061 4062
    } else {
      if (!hasOwn$1(params, name)) {
        params[name] = formatterOrDefaultValue;
fxy060608's avatar
fxy060608 已提交
4063 4064
      }
    }
fxy060608's avatar
fxy060608 已提交
4065 4066
  }
}
fxy060608's avatar
fxy060608 已提交
4067 4068 4069 4070 4071 4072 4073 4074 4075
function invokeSuccess(id2, name, res) {
  return invokeCallback(id2, extend(res || {}, {errMsg: name + ":ok"}));
}
function invokeFail(id2, name, err) {
  return invokeCallback(id2, {errMsg: name + ":fail" + (err ? " " + err : "")});
}
function beforeInvokeApi(name, args, protocol, options) {
  if (process.env.NODE_ENV !== "production") {
    validateProtocols(name, args, protocol);
fxy060608's avatar
fxy060608 已提交
4076
  }
fxy060608's avatar
fxy060608 已提交
4077 4078 4079 4080 4081
  if (options && options.beforeInvoke) {
    const errMsg2 = options.beforeInvoke(args);
    if (isString(errMsg2)) {
      return errMsg2;
    }
fxy060608's avatar
fxy060608 已提交
4082
  }
fxy060608's avatar
fxy060608 已提交
4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098
  const errMsg = formatApiArgs(args, options);
  if (errMsg) {
    return errMsg;
  }
}
function checkCallback(callback) {
  if (!isFunction(callback)) {
    throw new Error('Invalid args: type check failed for args "callback". Expected Function');
  }
}
function wrapperOnApi(name, fn, options) {
  return (callback) => {
    checkCallback(callback);
    const errMsg = beforeInvokeApi(name, [callback], void 0, options);
    if (errMsg) {
      throw new Error(errMsg);
fxy060608's avatar
fxy060608 已提交
4099
    }
fxy060608's avatar
fxy060608 已提交
4100 4101 4102 4103 4104
    const isFirstInvokeOnApi = !findInvokeCallbackByName(name);
    createKeepAliveApiCallback(name, callback);
    if (isFirstInvokeOnApi) {
      onKeepAliveApiCallback(name);
      fn();
fxy060608's avatar
fxy060608 已提交
4105
    }
fxy060608's avatar
fxy060608 已提交
4106 4107 4108 4109 4110 4111 4112 4113
  };
}
function wrapperOffApi(name, fn, options) {
  return (callback) => {
    checkCallback(callback);
    const errMsg = beforeInvokeApi(name, [callback], void 0, options);
    if (errMsg) {
      throw new Error(errMsg);
fxy060608's avatar
fxy060608 已提交
4114
    }
fxy060608's avatar
fxy060608 已提交
4115 4116 4117 4118 4119 4120
    name = name.replace("off", "on");
    removeKeepAliveApiCallback(name, callback);
    const hasInvokeOnApi = findInvokeCallbackByName(name);
    if (!hasInvokeOnApi) {
      offKeepAliveApiCallback(name);
      fn();
fxy060608's avatar
fxy060608 已提交
4121
    }
fxy060608's avatar
fxy060608 已提交
4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235
  };
}
function wrapperTaskApi(name, fn, protocol, options) {
  return (args) => {
    const id2 = createAsyncApiCallback(name, args, options);
    const errMsg = beforeInvokeApi(name, [args], protocol, options);
    if (errMsg) {
      return invokeFail(id2, name, errMsg);
    }
    return fn(args, {
      resolve: (res) => invokeSuccess(id2, name, res),
      reject: (err) => invokeFail(id2, name, err)
    });
  };
}
function wrapperSyncApi(name, fn, protocol, options) {
  return (...args) => {
    const errMsg = beforeInvokeApi(name, args, protocol, options);
    if (errMsg) {
      throw new Error(errMsg);
    }
    return fn.apply(null, args);
  };
}
function wrapperAsyncApi(name, fn, protocol, options) {
  return wrapperTaskApi(name, fn, protocol, options);
}
function defineOnApi(name, fn, options) {
  return wrapperOnApi(name, fn, options);
}
function defineOffApi(name, fn, options) {
  return wrapperOffApi(name, fn, options);
}
function defineTaskApi(name, fn, protocol, options) {
  return promisify(wrapperTaskApi(name, fn, process.env.NODE_ENV !== "production" ? protocol : void 0, options));
}
function defineSyncApi(name, fn, protocol, options) {
  return wrapperSyncApi(name, fn, process.env.NODE_ENV !== "production" ? protocol : void 0, options);
}
function defineAsyncApi(name, fn, protocol, options) {
  return promisify(wrapperAsyncApi(name, fn, process.env.NODE_ENV !== "production" ? protocol : void 0, options));
}
const API_BASE64_TO_ARRAY_BUFFER = "base64ToArrayBuffer";
const Base64ToArrayBufferProtocol = [
  {
    name: "base64",
    type: String,
    required: true
  }
];
const API_ARRAY_BUFFER_TO_BASE64 = "arrayBufferToBase64";
const ArrayBufferToBase64Protocol = [
  {
    name: "arrayBuffer",
    type: [ArrayBuffer, Uint8Array],
    required: true
  }
];
const base64ToArrayBuffer = defineSyncApi(API_BASE64_TO_ARRAY_BUFFER, (base64) => {
  return decode(base64);
}, Base64ToArrayBufferProtocol);
const arrayBufferToBase64 = defineSyncApi(API_ARRAY_BUFFER_TO_BASE64, (arrayBuffer) => {
  return encode$1(arrayBuffer);
}, ArrayBufferToBase64Protocol);
const API_UPX2PX = "upx2px";
const Upx2pxProtocol = [
  {
    name: "upx",
    type: [Number, String],
    required: true
  }
];
const EPS = 1e-4;
const BASE_DEVICE_WIDTH = 750;
let isIOS = false;
let deviceWidth = 0;
let deviceDPR = 0;
function checkDeviceWidth() {
  const {platform, pixelRatio: pixelRatio2, windowWidth} = getBaseSystemInfo();
  deviceWidth = windowWidth;
  deviceDPR = pixelRatio2;
  isIOS = platform === "ios";
}
const upx2px = defineSyncApi(API_UPX2PX, (number, newDeviceWidth) => {
  if (deviceWidth === 0) {
    checkDeviceWidth();
  }
  number = Number(number);
  if (number === 0) {
    return 0;
  }
  let result = number / BASE_DEVICE_WIDTH * (newDeviceWidth || deviceWidth);
  if (result < 0) {
    result = -result;
  }
  result = Math.floor(result + EPS);
  if (result === 0) {
    if (deviceDPR === 1 || !isIOS) {
      result = 1;
    } else {
      result = 0.5;
    }
  }
  return number < 0 ? -result : result;
}, Upx2pxProtocol);
const globalInterceptors = {};
const scopedInterceptors = {};
const API_ADD_INTERCEPTOR = "addInterceptor";
const API_REMOVE_INTERCEPTOR = "removeInterceptor";
const AddInterceptorProtocol = [
  {
    name: "method",
    type: [String, Object],
    required: true
fxy060608's avatar
fxy060608 已提交
4236
  }
fxy060608's avatar
fxy060608 已提交
4237 4238 4239 4240 4241 4242
];
const RemoveInterceptorProtocol = AddInterceptorProtocol;
function mergeInterceptorHook(interceptors, interceptor) {
  Object.keys(interceptor).forEach((hook) => {
    if (isFunction(interceptor[hook])) {
      interceptors[hook] = mergeHook(interceptors[hook], interceptor[hook]);
fxy060608's avatar
fxy060608 已提交
4243
    }
fxy060608's avatar
fxy060608 已提交
4244 4245 4246 4247 4248
  });
}
function removeInterceptorHook(interceptors, interceptor) {
  if (!interceptors || !interceptor) {
    return;
fxy060608's avatar
fxy060608 已提交
4249
  }
fxy060608's avatar
fxy060608 已提交
4250 4251 4252
  Object.keys(interceptor).forEach((hook) => {
    if (isFunction(interceptor[hook])) {
      removeHook(interceptors[hook], interceptor[hook]);
fxy060608's avatar
fxy060608 已提交
4253
    }
fxy060608's avatar
fxy060608 已提交
4254
  });
fxy060608's avatar
fxy060608 已提交
4255
}
fxy060608's avatar
fxy060608 已提交
4256 4257 4258 4259 4260 4261 4262 4263 4264
function mergeHook(parentVal, childVal) {
  const res = childVal ? parentVal ? parentVal.concat(childVal) : isArray(childVal) ? childVal : [childVal] : parentVal;
  return res ? dedupeHooks(res) : res;
}
function dedupeHooks(hooks) {
  const res = [];
  for (let i2 = 0; i2 < hooks.length; i2++) {
    if (res.indexOf(hooks[i2]) === -1) {
      res.push(hooks[i2]);
fxy060608's avatar
fxy060608 已提交
4265
    }
fxy060608's avatar
fxy060608 已提交
4266 4267
  }
  return res;
fxy060608's avatar
fxy060608 已提交
4268
}
fxy060608's avatar
fxy060608 已提交
4269 4270 4271 4272 4273 4274 4275
function removeHook(hooks, hook) {
  if (!hooks) {
    return;
  }
  const index2 = hooks.indexOf(hook);
  if (index2 !== -1) {
    hooks.splice(index2, 1);
fxy060608's avatar
fxy060608 已提交
4276
  }
fxy060608's avatar
fxy060608 已提交
4277
}
fxy060608's avatar
fxy060608 已提交
4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290
const addInterceptor = defineSyncApi(API_ADD_INTERCEPTOR, (method, interceptor) => {
  if (typeof method === "string" && isPlainObject(interceptor)) {
    mergeInterceptorHook(scopedInterceptors[method] || (scopedInterceptors[method] = {}), interceptor);
  } else if (isPlainObject(method)) {
    mergeInterceptorHook(globalInterceptors, method);
  }
}, AddInterceptorProtocol);
const removeInterceptor = defineSyncApi(API_REMOVE_INTERCEPTOR, (method, interceptor) => {
  if (typeof method === "string") {
    if (isPlainObject(interceptor)) {
      removeInterceptorHook(scopedInterceptors[method], interceptor);
    } else {
      delete scopedInterceptors[method];
fxy060608's avatar
fxy060608 已提交
4291
    }
fxy060608's avatar
fxy060608 已提交
4292 4293 4294 4295 4296 4297 4298 4299
  } else if (isPlainObject(method)) {
    removeInterceptorHook(globalInterceptors, method);
  }
}, RemoveInterceptorProtocol);
const promiseInterceptor = {
  returnValue(res) {
    if (!isPromise(res)) {
      return res;
fxy060608's avatar
fxy060608 已提交
4300
    }
fxy060608's avatar
fxy060608 已提交
4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350
    return res.then((res2) => {
      return res2[1];
    }).catch((res2) => {
      return res2[0];
    });
  }
};
const API_CREATE_VIDEO_CONTEXT = "createVideoContext";
const RATES = [0.5, 0.8, 1, 1.25, 1.5, 2];
class VideoContext {
  constructor(id2, vm) {
    this.id = id2;
    this.vm = vm;
  }
  play() {
    operateVideoPlayer(this.id, this.vm, "play");
  }
  pause() {
    operateVideoPlayer(this.id, this.vm, "pause");
  }
  stop() {
    operateVideoPlayer(this.id, this.vm, "stop");
  }
  seek(position) {
    operateVideoPlayer(this.id, this.vm, "seek", {
      position
    });
  }
  sendDanmu(args) {
    operateVideoPlayer(this.id, this.vm, "sendDanmu", args);
  }
  playbackRate(rate) {
    if (!~RATES.indexOf(rate)) {
      rate = 1;
    }
    operateVideoPlayer(this.id, this.vm, "playbackRate", {
      rate
    });
  }
  requestFullScreen(args = {}) {
    operateVideoPlayer(this.id, this.vm, "requestFullScreen", args);
  }
  exitFullScreen() {
    operateVideoPlayer(this.id, this.vm, "exitFullScreen");
  }
  showStatusBar() {
    operateVideoPlayer(this.id, this.vm, "showStatusBar");
  }
  hideStatusBar() {
    operateVideoPlayer(this.id, this.vm, "hideStatusBar");
fxy060608's avatar
fxy060608 已提交
4351
  }
fxy060608's avatar
fxy060608 已提交
4352
}
fxy060608's avatar
fxy060608 已提交
4353 4354 4355
const createVideoContext = defineSyncApi(API_CREATE_VIDEO_CONTEXT, (id2, context) => {
  if (context) {
    return new VideoContext(id2, context);
fxy060608's avatar
fxy060608 已提交
4356
  }
fxy060608's avatar
fxy060608 已提交
4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367
  return new VideoContext(id2, getCurrentPageVm());
});
const defaultOptions = {
  thresholds: [0],
  initialRatio: 0,
  observeAll: false
};
const MARGINS = ["top", "right", "bottom", "left"];
let reqComponentObserverId = 1;
function normalizeRootMargin(margins = {}) {
  return MARGINS.map((name) => `${Number(margins[name]) || 0}px`).join(" ");
fxy060608's avatar
fxy060608 已提交
4368
}
fxy060608's avatar
fxy060608 已提交
4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387
class ServiceIntersectionObserver {
  constructor(component, options) {
    this._pageId = component.$page && component.$page.id;
    this._component = component;
    this._options = extend({}, defaultOptions, options);
  }
  relativeTo(selector, margins) {
    this._options.relativeToSelector = selector;
    this._options.rootMargin = normalizeRootMargin(margins);
    return this;
  }
  relativeToViewport(margins) {
    this._options.relativeToSelector = void 0;
    this._options.rootMargin = normalizeRootMargin(margins);
    return this;
  }
  observe(selector, callback) {
    if (!isFunction(callback)) {
      return;
fxy060608's avatar
fxy060608 已提交
4388
    }
fxy060608's avatar
fxy060608 已提交
4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428
    this._options.selector = selector;
    this._reqId = reqComponentObserverId++;
    addIntersectionObserver({
      reqId: this._reqId,
      component: this._component,
      options: this._options,
      callback
    }, this._pageId);
  }
  disconnect() {
    this._reqId && removeIntersectionObserver({reqId: this._reqId, component: this._component}, this._pageId);
  }
}
const createIntersectionObserver = defineSyncApi("createIntersectionObserver", (context, options) => {
  if (context && !context.$page) {
    options = context;
    context = null;
  }
  if (context) {
    return new ServiceIntersectionObserver(context, options);
  }
  return new ServiceIntersectionObserver(getCurrentPageVm(), options);
});
const createSelectorQuery = () => {
};
const API_ON_TAB_BAR_MID_BUTTON_TAP = "onTabBarMidButtonTap";
const onTabBarMidButtonTap = defineOnApi(API_ON_TAB_BAR_MID_BUTTON_TAP, () => {
});
const API_CAN_I_USE = "canIUse";
const CanIUseProtocol = [
  {
    name: "schema",
    type: String,
    required: true
  }
];
const API_MAKE_PHONE_CALL = "makePhoneCall";
const MakePhoneCallProtocol = {
  phoneNumber: String
};
Q
qiang 已提交
4429 4430 4431 4432
const API_ON_ACCELEROMETER = "onAccelerometer";
const API_OFF_ACCELEROMETER = "offAccelerometer";
const API_START_ACCELEROMETER = "startAccelerometer";
const API_STOP_ACCELEROMETER = "stopAccelerometer";
Q
qiang 已提交
4433 4434 4435 4436
const API_ON_COMPASS = "onCompass";
const API_OFF_COMPASS = "offCompass";
const API_START_COMPASS = "startCompass";
const API_STOP_COMPASS = "stopCompass";
fxy060608's avatar
fxy060608 已提交
4437 4438
const API_VIBRATE_SHORT = "vibrateShort";
const API_VIBRATE_LONG = "vibrateLong";
Q
qiang 已提交
4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478
const API_GET_STORAGE = "getStorage";
const GetStorageProtocol = {
  key: {
    type: String,
    required: true
  }
};
const API_GET_STORAGE_SYNC = "getStorageSync";
const GetStorageSyncProtocol = [
  {
    name: "key",
    type: String,
    required: true
  }
];
const API_SET_STORAGE = "setStorage";
const SetStorageProtocol = {
  key: {
    type: String,
    required: true
  },
  data: {
    required: true
  }
};
const API_SET_STORAGE_SYNC = "setStorageSync";
const SetStorageSyncProtocol = [
  {
    name: "key",
    type: String,
    required: true
  },
  {
    name: "data",
    required: true
  }
];
const API_REMOVE_STORAGE = "removeStorage";
const RemoveStorageProtocol = GetStorageProtocol;
const RemoveStorageSyncProtocol = GetStorageSyncProtocol;
fxy060608's avatar
fxy060608 已提交
4479
const API_GET_FILE_INFO = "getFileInfo";
Q
qiang 已提交
4480 4481 4482 4483 4484 4485 4486
const GetFileInfoOptions = {
  formatArgs: {
    filePath(filePath, params) {
      params.filePath = getRealPath(filePath);
    }
  }
};
fxy060608's avatar
fxy060608 已提交
4487 4488 4489 4490 4491 4492 4493
const GetFileInfoProtocol = {
  filePath: {
    type: String,
    required: true
  }
};
const API_OPEN_DOCUMENT = "openDocument";
Q
qiang 已提交
4494 4495 4496 4497 4498 4499 4500
const OpenDocumentOptions = {
  formatArgs: {
    filePath(filePath, params) {
      params.filePath = getRealPath(filePath);
    }
  }
};
fxy060608's avatar
fxy060608 已提交
4501 4502 4503 4504
const OpenDocumentProtocol = {
  filePath: {
    type: String,
    required: true
fxy060608's avatar
fxy060608 已提交
4505
  },
fxy060608's avatar
fxy060608 已提交
4506 4507
  fileType: String
};
Q
qiang 已提交
4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528
const API_GET_LOCATION = "getLocation";
const coordTypes = ["WGS84", "GCJ02"];
const GetLocationOptions = {
  formatArgs: {
    type(value, params) {
      value = (value || "").toUpperCase();
      if (coordTypes.indexOf(value) === -1) {
        params.type = coordTypes[0];
      } else {
        params.type = value;
      }
    },
    altitude(value, params) {
      params.altitude = value ? value : false;
    }
  }
};
const GetLocationProtocol = {
  type: String,
  altitude: Boolean
};
D
DCloud_LXH 已提交
4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582
const API_CHOOSE_IMAGE = "chooseImage";
const ChooseImageOptions = {
  formatArgs: {
    count(value, params) {
      if (!value || value <= 0) {
        params.count = 9;
      }
    },
    sizeType(sizeType, params) {
      params.sizeType = elemsInArray(sizeType, CHOOSE_SIZE_TYPES);
    },
    sourceType(sourceType, params) {
      params.sourceType = elemsInArray(sourceType, CHOOSE_SOURCE_TYPES);
    },
    extension(extension, params) {
      if (extension instanceof Array && extension.length === 0) {
        return "param extension should not be empty.";
      }
      if (!extension)
        params.extension = [""];
    }
  }
};
const ChooseImageProtocol = {
  count: Number,
  sizeType: [Array, String],
  sourceType: Array,
  extension: Array
};
const API_CHOOSE_VIDEO = "chooseVideo";
const ChooseVideoOptions = {
  formatArgs: {
    sourceType(sourceType, params) {
      params.sourceType = elemsInArray(sourceType, CHOOSE_SOURCE_TYPES);
    },
    compressed: true,
    maxDuration: 60,
    camera: "back",
    extension(extension, params) {
      if (extension instanceof Array && extension.length === 0) {
        return "param extension should not be empty.";
      }
      if (!extension)
        params.extension = [""];
    }
  }
};
const ChooseVideoProtocol = {
  sourceType: Array,
  compressed: Boolean,
  maxDuration: Number,
  camera: String,
  extension: Array
};
fxy060608's avatar
fxy060608 已提交
4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616
const API_CHOOSE_FILE = "chooseFile";
const CHOOSE_MEDIA_TYPE = [
  "all",
  "image",
  "video"
];
const ChooseFileOptions = {
  formatArgs: {
    count(count, params) {
      if (!count || count <= 0) {
        params.count = 100;
      }
    },
    sourceType(sourceType, params) {
      params.sourceType = elemsInArray(sourceType, CHOOSE_SOURCE_TYPES);
    },
    type(type, params) {
      params.type = elemInArray(type, CHOOSE_MEDIA_TYPE);
    },
    extension(extension, params) {
      if (extension instanceof Array && extension.length === 0) {
        return "param extension should not be empty.";
      }
      if (!extension)
        params.extension = [""];
    }
  }
};
const ChooseFileProtocol = {
  count: Number,
  sourceType: Array,
  type: String,
  extension: Array
};
fxy060608's avatar
fxy060608 已提交
4617 4618 4619 4620 4621
const API_GET_IMAGE_INFO = "getImageInfo";
const GetImageInfoOptions = {
  formatArgs: {
    src(src, params) {
      params.src = getRealPath(src);
fxy060608's avatar
fxy060608 已提交
4622
    }
fxy060608's avatar
fxy060608 已提交
4623 4624 4625 4626 4627 4628 4629 4630
  }
};
const GetImageInfoProtocol = {
  src: {
    type: String,
    required: true
  }
};
Q
qiang 已提交
4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644
const API_GET_VIDEO_INFO = "getVideoInfo";
const GetVideoInfoOptions = {
  formatArgs: {
    src(src, params) {
      params.src = getRealPath(src);
    }
  }
};
const GetVideoInfoProtocol = {
  src: {
    type: String,
    required: true
  }
};
fxy060608's avatar
fxy060608 已提交
4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670
const API_REQUEST = "request";
const dataType = {
  JSON: "json"
};
const RESPONSE_TYPE = ["text", "arraybuffer"];
const DEFAULT_RESPONSE_TYPE = "text";
const encode = encodeURIComponent;
function stringifyQuery(url, data) {
  let str = url.split("#");
  const hash = str[1] || "";
  str = str[0].split("?");
  let query = str[1] || "";
  url = str[0];
  const search = query.split("&").filter((item) => item);
  const params = {};
  search.forEach((item) => {
    const part = item.split("=");
    params[part[0]] = part[1];
  });
  for (const key in data) {
    if (hasOwn$1(data, key)) {
      let v2 = data[key];
      if (typeof v2 === "undefined" || v2 === null) {
        v2 = "";
      } else if (isPlainObject(v2)) {
        v2 = JSON.stringify(v2);
fxy060608's avatar
fxy060608 已提交
4671
      }
fxy060608's avatar
fxy060608 已提交
4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700
      params[encode(key)] = encode(v2);
    }
  }
  query = Object.keys(params).map((item) => `${item}=${params[item]}`).join("&");
  return url + (query ? "?" + query : "") + (hash ? "#" + hash : "");
}
const RequestProtocol = {
  method: String,
  data: [Object, String, Array, ArrayBuffer],
  url: {
    type: String,
    required: true
  },
  header: Object,
  dataType: String,
  responseType: String,
  withCredentials: Boolean
};
const RequestOptions = {
  formatArgs: {
    method(value, params) {
      params.method = elemInArray((value || "").toUpperCase(), HTTP_METHODS);
    },
    data(value, params) {
      params.data = value || "";
    },
    url(value, params) {
      if (params.method === HTTP_METHODS[0] && isPlainObject(params.data) && Object.keys(params.data).length) {
        params.url = stringifyQuery(value, params.data);
fxy060608's avatar
fxy060608 已提交
4701
      }
fxy060608's avatar
fxy060608 已提交
4702 4703 4704 4705 4706 4707
    },
    header(value, params) {
      const header = params.header = value || {};
      if (params.method !== HTTP_METHODS[0]) {
        if (!Object.keys(header).find((key) => key.toLowerCase() === "content-type")) {
          header["Content-Type"] = "application/json";
fxy060608's avatar
fxy060608 已提交
4708
        }
fxy060608's avatar
fxy060608 已提交
4709
      }
fxy060608's avatar
fxy060608 已提交
4710 4711 4712 4713 4714 4715 4716 4717
    },
    dataType(value, params) {
      params.dataType = (value || dataType.JSON).toLowerCase();
    },
    responseType(value, params) {
      params.responseType = (value || "").toLowerCase();
      if (RESPONSE_TYPE.indexOf(params.responseType) === -1) {
        params.responseType = DEFAULT_RESPONSE_TYPE;
fxy060608's avatar
fxy060608 已提交
4718
      }
fxy060608's avatar
fxy060608 已提交
4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740
    }
  }
};
const API_DOWNLOAD_FILE = "downloadFile";
const DownloadFileOptions = {
  formatArgs: {
    header(value, params) {
      params.header = value || {};
    }
  }
};
const DownloadFileProtocol = {
  url: {
    type: String,
    required: true
  },
  header: Object,
  timeout: Number
};
const API_UPLOAD_FILE = "uploadFile";
const UploadFileOptions = {
  formatArgs: {
Q
qiang 已提交
4741 4742 4743 4744 4745
    filePath(filePath, params) {
      if (filePath) {
        params.filePath = getRealPath(filePath);
      }
    },
fxy060608's avatar
fxy060608 已提交
4746 4747
    header(value, params) {
      params.header = value || {};
Q
qiang 已提交
4748
    },
fxy060608's avatar
fxy060608 已提交
4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770
    formData(value, params) {
      params.formData = value || {};
    }
  }
};
const UploadFileProtocol = {
  url: {
    type: String,
    required: true
  },
  files: Array,
  filePath: String,
  name: String,
  header: Object,
  formData: Object,
  timeout: Number
};
const API_CONNECT_SOCKET = "connectSocket";
const ConnectSocketOptions = {
  formatArgs: {
    header(value, params) {
      params.header = value || {};
Q
qiang 已提交
4771
    },
fxy060608's avatar
fxy060608 已提交
4772 4773
    method(value, params) {
      params.method = elemInArray((value || "").toUpperCase(), HTTP_METHODS);
Q
qiang 已提交
4774
    },
fxy060608's avatar
fxy060608 已提交
4775 4776 4777
    protocols(protocols, params) {
      if (typeof protocols === "string") {
        params.protocols = [protocols];
fxy060608's avatar
fxy060608 已提交
4778
      }
fxy060608's avatar
fxy060608 已提交
4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886
    }
  }
};
const ConnectSocketProtocol = {
  url: {
    type: String,
    required: true
  },
  header: {
    type: Object
  },
  method: String,
  protocols: [Array, String]
};
const API_SEND_SOCKET_MESSAGE = "sendSocketMessage";
const SendSocketMessageProtocol = {
  data: [String, ArrayBuffer]
};
const API_CLOSE_SOCKET = "closeSocket";
const CloseSocketProtocol = {
  code: Number,
  reason: String
};
function encodeQueryString(url) {
  if (typeof url !== "string") {
    return url;
  }
  const index2 = url.indexOf("?");
  if (index2 === -1) {
    return url;
  }
  const query = url.substr(index2 + 1).trim().replace(/^(\?|#|&)/, "");
  if (!query) {
    return url;
  }
  url = url.substr(0, index2);
  const params = [];
  query.split("&").forEach((param) => {
    const parts = param.replace(/\+/g, " ").split("=");
    const key = parts.shift();
    const val = parts.length > 0 ? parts.join("=") : "";
    params.push(key + "=" + encodeURIComponent(val));
  });
  return params.length ? url + "?" + params.join("&") : url;
}
const ANIMATION_IN = [
  "slide-in-right",
  "slide-in-left",
  "slide-in-top",
  "slide-in-bottom",
  "fade-in",
  "zoom-out",
  "zoom-fade-out",
  "pop-in",
  "none"
];
const ANIMATION_OUT = [
  "slide-out-right",
  "slide-out-left",
  "slide-out-top",
  "slide-out-bottom",
  "fade-out",
  "zoom-in",
  "zoom-fade-in",
  "pop-out",
  "none"
];
const BaseRouteProtocol = {
  url: {
    type: String,
    required: true
  }
};
const API_NAVIGATE_TO = "navigateTo";
const API_REDIRECT_TO = "redirectTo";
const API_RE_LAUNCH = "reLaunch";
const API_SWITCH_TAB = "switchTab";
const API_NAVIGATE_BACK = "navigateBack";
const API_PRELOAD_PAGE = "preloadPage";
const API_UN_PRELOAD_PAGE = "unPreloadPage";
const NavigateToProtocol = /* @__PURE__ */ extend({}, BaseRouteProtocol, createAnimationProtocol(ANIMATION_IN));
const NavigateBackProtocol = /* @__PURE__ */ extend({
  delta: {
    type: Number
  }
}, createAnimationProtocol(ANIMATION_OUT));
const RedirectToProtocol = BaseRouteProtocol;
const ReLaunchProtocol = BaseRouteProtocol;
const SwitchTabProtocol = BaseRouteProtocol;
const NavigateToOptions = /* @__PURE__ */ createRouteOptions(API_NAVIGATE_TO);
const RedirectToOptions = /* @__PURE__ */ createRouteOptions(API_REDIRECT_TO);
const ReLaunchOptions = /* @__PURE__ */ createRouteOptions(API_RE_LAUNCH);
const SwitchTabOptions = /* @__PURE__ */ createRouteOptions(API_SWITCH_TAB);
const NavigateBackOptions = {
  formatArgs: {
    delta(value, params) {
      value = parseInt(value + "") || 1;
      params.delta = Math.min(getCurrentPages().length - 1, value);
    }
  }
};
function createAnimationProtocol(animationTypes) {
  return {
    animationType: {
      type: String,
      validator(type) {
        if (type && animationTypes.indexOf(type) === -1) {
          return "`" + type + "` is not supported for `animationType` (supported values are: `" + animationTypes.join("`|`") + "`)";
fxy060608's avatar
fxy060608 已提交
4887 4888
        }
      }
fxy060608's avatar
fxy060608 已提交
4889
    },
fxy060608's avatar
fxy060608 已提交
4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908
    animationDuration: {
      type: Number
    }
  };
}
let navigatorLock;
function beforeRoute() {
  navigatorLock = "";
}
function createRouteOptions(type) {
  return {
    formatArgs: {
      url: createNormalizeUrl(type)
    },
    beforeAll: beforeRoute
  };
}
function createNormalizeUrl(type) {
  return function normalizeUrl(url, params) {
fxy060608's avatar
fxy060608 已提交
4909 4910 4911
    if (!url) {
      return `Missing required args: "url"`;
    }
fxy060608's avatar
fxy060608 已提交
4912 4913
    url = getRealRoute(url);
    const pagePath = url.split("?")[0];
fxy060608's avatar
fxy060608 已提交
4914
    const routeOptions = __uniRoutes.find(({path, alias}) => path === pagePath || alias === pagePath);
fxy060608's avatar
fxy060608 已提交
4915 4916 4917 4918 4919 4920
    if (!routeOptions) {
      return "page `" + url + "` is not found";
    }
    if (type === API_NAVIGATE_TO || type === API_REDIRECT_TO) {
      if (routeOptions.meta.isTabBar) {
        return `can not ${type} a tabbar page`;
fxy060608's avatar
fxy060608 已提交
4921
      }
fxy060608's avatar
fxy060608 已提交
4922 4923 4924 4925 4926 4927 4928 4929 4930
    } else if (type === API_SWITCH_TAB) {
      if (!routeOptions.meta.isTabBar) {
        return "can not switch to no-tabBar page";
      }
    }
    if ((type === API_SWITCH_TAB || type === API_PRELOAD_PAGE) && routeOptions.meta.isTabBar && params.openType !== "appLaunch") {
      url = pagePath;
    }
    if (routeOptions.meta.isEntry) {
fxy060608's avatar
fxy060608 已提交
4931
      url = url.replace(routeOptions.alias, "/");
fxy060608's avatar
fxy060608 已提交
4932 4933 4934 4935 4936 4937 4938 4939 4940 4941
    }
    params.url = encodeQueryString(url);
    if (type === API_UN_PRELOAD_PAGE) {
      return;
    } else if (type === API_PRELOAD_PAGE) {
      if (routeOptions.meta.isTabBar) {
        const pages = getCurrentPages(true);
        const tabBarPagePath = routeOptions.path.substr(1);
        if (pages.find((page) => page.route === tabBarPagePath)) {
          return "tabBar page `" + tabBarPagePath + "` already exists";
fxy060608's avatar
fxy060608 已提交
4942
        }
fxy060608's avatar
fxy060608 已提交
4943
      }
fxy060608's avatar
fxy060608 已提交
4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960
      return;
    }
    if (navigatorLock === url && params.openType !== "appLaunch") {
      return `${navigatorLock} locked`;
    }
    if (__uniConfig.ready) {
      navigatorLock = url;
    }
  };
}
const FRONT_COLORS = ["#ffffff", "#000000"];
const API_SET_NAVIGATION_BAR_COLOR = "setNavigationBarColor";
const SetNavigationBarColorOptions = {
  formatArgs: {
    animation(animation, params) {
      if (!animation) {
        animation = {duration: 0, timingFunc: "linear"};
fxy060608's avatar
fxy060608 已提交
4961
      }
fxy060608's avatar
fxy060608 已提交
4962 4963 4964
      params.animation = {
        duration: animation.duration || 0,
        timingFunc: animation.timingFunc || "linear"
fxy060608's avatar
fxy060608 已提交
4965
      };
fxy060608's avatar
fxy060608 已提交
4966 4967 4968
    }
  }
};
fxy060608's avatar
fxy060608 已提交
4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983
const SetNavigationBarColorProtocol = {
  frontColor: {
    type: String,
    required: true,
    validator(frontColor) {
      if (FRONT_COLORS.indexOf(frontColor) === -1) {
        return `invalid frontColor "${frontColor}"`;
      }
    }
  },
  backgroundColor: {
    type: String,
    required: true
  },
  animation: Object
fxy060608's avatar
fxy060608 已提交
4984
};
fxy060608's avatar
fxy060608 已提交
4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006
const API_SET_NAVIGATION_BAR_TITLE = "setNavigationBarTitle";
const SetNavigationBarTitleProtocol = {
  title: {
    type: String,
    required: true
  }
};
const API_SHOW_NAVIGATION_BAR_LOADING = "showNavigationBarLoading";
const API_HIDE_NAVIGATION_BAR_LOADING = "hideNavigationBarLoading";
const PRIMARY_COLOR = "#007aff";
const API_SHOW_MODAL = "showModal";
const ShowModalProtocol = {
  title: String,
  content: String,
  showCancel: Boolean,
  cancelText: String,
  cancelColor: String,
  confirmText: String,
  confirmColor: String
};
const ShowModalOptions = {
  beforeInvoke() {
fxy060608's avatar
fxy060608 已提交
5007
    initI18nShowModalMsgsOnce();
fxy060608's avatar
fxy060608 已提交
5008 5009 5010 5011 5012 5013 5014 5015 5016 5017
  },
  formatArgs: {
    title: "",
    content: "",
    showCancel: true,
    cancelText(_value, params) {
      if (!hasOwn$1(params, "cancelText")) {
        const {t: t2} = useI18n();
        params.cancelText = t2("uni.showModal.cancel");
      }
fxy060608's avatar
fxy060608 已提交
5018
    },
fxy060608's avatar
fxy060608 已提交
5019 5020 5021 5022 5023 5024
    cancelColor: "#000",
    confirmText(_value, params) {
      if (!hasOwn$1(params, "confirmText")) {
        const {t: t2} = useI18n();
        params.confirmText = t2("uni.showModal.confirm");
      }
fxy060608's avatar
fxy060608 已提交
5025
    },
fxy060608's avatar
fxy060608 已提交
5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043
    confirmColor: PRIMARY_COLOR
  }
};
const API_SHOW_TOAST = "showToast";
const ShowToastProtocol = {
  title: String,
  icon: String,
  image: String,
  duration: Number,
  mask: Boolean
};
const ShowToastOptions = {
  formatArgs: {
    title: "",
    icon(value, params) {
      if (["success", "loading", "none"].indexOf(value) === -1) {
        params.icon = "success";
      }
fxy060608's avatar
fxy060608 已提交
5044
    },
fxy060608's avatar
fxy060608 已提交
5045 5046 5047 5048
    image(value, params) {
      if (value) {
        params.image = getRealPath(value);
      }
fxy060608's avatar
fxy060608 已提交
5049
    },
fxy060608's avatar
fxy060608 已提交
5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069
    duration: 1500,
    mask: false
  }
};
const API_SHOW_LOADING = "showLoading";
const ShowLoadingProtocol = {
  title: String,
  mask: Boolean
};
const ShowLoadingOptions = {
  formatArgs: {
    title: "",
    mask: false
  }
};
const API_SHOW_ACTION_SHEET = "showActionSheet";
const ShowActionSheetProtocol = {
  itemList: {
    type: Array,
    required: true
fxy060608's avatar
fxy060608 已提交
5070
  },
fxy060608's avatar
fxy060608 已提交
5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090
  itemColor: String
};
const ShowActionSheetOptions = {
  formatArgs: {
    itemColor: "#000"
  }
};
const API_HIDE_TOAST = "hideToast";
const API_HIDE_LOADING = "hideLoading";
const IndexProtocol = {
  index: {
    type: Number,
    required: true
  }
};
const IndexOptions = {
  beforeInvoke() {
    const pageMeta = getCurrentPageMeta();
    if (pageMeta && !pageMeta.isTabBar) {
      return "not TabBar page";
fxy060608's avatar
fxy060608 已提交
5091 5092
    }
  },
fxy060608's avatar
fxy060608 已提交
5093 5094 5095 5096
  formatArgs: {
    index(value) {
      if (!__uniConfig.tabBar.list[value]) {
        return "tabbar item not found";
fxy060608's avatar
fxy060608 已提交
5097
      }
fxy060608's avatar
fxy060608 已提交
5098
    }
fxy060608's avatar
fxy060608 已提交
5099
  }
fxy060608's avatar
fxy060608 已提交
5100
};
fxy060608's avatar
fxy060608 已提交
5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114
const API_SET_TAB_BAR_ITEM = "setTabBarItem";
const SetTabBarItemProtocol = /* @__PURE__ */ extend({
  text: String,
  iconPath: String,
  selectedIconPath: String,
  pagePath: String
}, IndexProtocol);
const SetTabBarItemOptions = {
  beforeInvoke: IndexOptions.beforeInvoke,
  formatArgs: /* @__PURE__ */ extend({
    pagePath(value, params) {
      if (value) {
        params.pagePath = removeLeadingSlash(value);
      }
fxy060608's avatar
fxy060608 已提交
5115
    }
fxy060608's avatar
fxy060608 已提交
5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133
  }, IndexOptions.formatArgs)
};
const API_SET_TAB_BAR_STYLE = "setTabBarStyle";
const SetTabBarStyleProtocol = {
  color: String,
  selectedColor: String,
  backgroundColor: String,
  backgroundImage: String,
  backgroundRepeat: String,
  borderStyle: String
};
const GRADIENT_RE = /^(linear|radial)-gradient\(.+?\);?$/;
const SetTabBarStyleOptions = {
  beforeInvoke: IndexOptions.beforeInvoke,
  formatArgs: {
    backgroundImage(value, params) {
      if (value && !GRADIENT_RE.test(value)) {
        params.backgroundImage = getRealPath(value);
fxy060608's avatar
fxy060608 已提交
5134
      }
fxy060608's avatar
fxy060608 已提交
5135
    },
fxy060608's avatar
fxy060608 已提交
5136 5137 5138
    borderStyle(value, params) {
      if (value) {
        params.borderStyle = value === "white" ? "white" : "black";
fxy060608's avatar
fxy060608 已提交
5139
      }
fxy060608's avatar
fxy060608 已提交
5140 5141 5142
    }
  }
};
fxy060608's avatar
fxy060608 已提交
5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170
const API_HIDE_TAB_BAR = "hideTabBar";
const HideTabBarProtocol = {
  animation: Boolean
};
const API_SHOW_TAB_BAR = "showTabBar";
const ShowTabBarProtocol = HideTabBarProtocol;
const API_HIDE_TAB_BAR_RED_DOT = "hideTabBarRedDot";
const HideTabBarRedDotProtocol = IndexProtocol;
const HideTabBarRedDotOptions = IndexOptions;
const API_SHOW_TAB_BAR_RED_DOT = "showTabBarRedDot";
const ShowTabBarRedDotProtocol = IndexProtocol;
const ShowTabBarRedDotOptions = IndexOptions;
const API_REMOVE_TAB_BAR_BADGE = "removeTabBarBadge";
const RemoveTabBarBadgeProtocol = IndexProtocol;
const RemoveTabBarBadgeOptions = IndexOptions;
const API_SET_TAB_BAR_BADGE = "setTabBarBadge";
const SetTabBarBadgeProtocol = /* @__PURE__ */ extend({
  text: {
    type: String,
    required: true
  }
}, IndexProtocol);
const SetTabBarBadgeOptions = {
  beforeInvoke: IndexOptions.beforeInvoke,
  formatArgs: /* @__PURE__ */ extend({
    text(value, params) {
      if (getLen(value) >= 4) {
        params.text = "...";
fxy060608's avatar
fxy060608 已提交
5171
      }
fxy060608's avatar
fxy060608 已提交
5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183
    }
  }, IndexOptions.formatArgs)
};
const initIntersectionObserverPolyfill = function() {
  if (typeof window !== "object") {
    return;
  }
  if ("IntersectionObserver" in window && "IntersectionObserverEntry" in window && "intersectionRatio" in window.IntersectionObserverEntry.prototype) {
    if (!("isIntersecting" in window.IntersectionObserverEntry.prototype)) {
      Object.defineProperty(window.IntersectionObserverEntry.prototype, "isIntersecting", {
        get: function() {
          return this.intersectionRatio > 0;
fxy060608's avatar
fxy060608 已提交
5184 5185
        }
      });
fxy060608's avatar
fxy060608 已提交
5186
    }
fxy060608's avatar
fxy060608 已提交
5187
    return;
fxy060608's avatar
fxy060608 已提交
5188
  }
fxy060608's avatar
fxy060608 已提交
5189 5190 5191 5192 5193
  function getFrameElement(doc) {
    try {
      return doc.defaultView && doc.defaultView.frameElement || null;
    } catch (e2) {
      return null;
fxy060608's avatar
fxy060608 已提交
5194
    }
fxy060608's avatar
fxy060608 已提交
5195 5196 5197 5198 5199 5200 5201
  }
  var document2 = function(startDoc) {
    var doc = startDoc;
    var frame = getFrameElement(doc);
    while (frame) {
      doc = frame.ownerDocument;
      frame = getFrameElement(doc);
fxy060608's avatar
fxy060608 已提交
5202
    }
fxy060608's avatar
fxy060608 已提交
5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222
    return doc;
  }(window.document);
  var registry = [];
  var crossOriginUpdater = null;
  var crossOriginRect = null;
  function IntersectionObserverEntry(entry) {
    this.time = entry.time;
    this.target = entry.target;
    this.rootBounds = ensureDOMRect(entry.rootBounds);
    this.boundingClientRect = ensureDOMRect(entry.boundingClientRect);
    this.intersectionRect = ensureDOMRect(entry.intersectionRect || getEmptyRect());
    this.isIntersecting = !!entry.intersectionRect;
    var targetRect = this.boundingClientRect;
    var targetArea = targetRect.width * targetRect.height;
    var intersectionRect = this.intersectionRect;
    var intersectionArea = intersectionRect.width * intersectionRect.height;
    if (targetArea) {
      this.intersectionRatio = Number((intersectionArea / targetArea).toFixed(4));
    } else {
      this.intersectionRatio = this.isIntersecting ? 1 : 0;
fxy060608's avatar
fxy060608 已提交
5223 5224
    }
  }
fxy060608's avatar
fxy060608 已提交
5225 5226 5227 5228
  function IntersectionObserver2(callback, opt_options) {
    var options = opt_options || {};
    if (typeof callback != "function") {
      throw new Error("callback must be a function");
fxy060608's avatar
fxy060608 已提交
5229
    }
fxy060608's avatar
fxy060608 已提交
5230 5231
    if (options.root && options.root.nodeType != 1 && options.root.nodeType != 9) {
      throw new Error("root must be a Document or Element");
fxy060608's avatar
fxy060608 已提交
5232
    }
fxy060608's avatar
fxy060608 已提交
5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244
    this._checkForIntersections = throttle2(this._checkForIntersections.bind(this), this.THROTTLE_TIMEOUT);
    this._callback = callback;
    this._observationTargets = [];
    this._queuedEntries = [];
    this._rootMarginValues = this._parseRootMargin(options.rootMargin);
    this.thresholds = this._initThresholds(options.threshold);
    this.root = options.root || null;
    this.rootMargin = this._rootMarginValues.map(function(margin) {
      return margin.value + margin.unit;
    }).join(" ");
    this._monitoringDocuments = [];
    this._monitoringUnsubscribes = [];
fxy060608's avatar
fxy060608 已提交
5245
  }
fxy060608's avatar
fxy060608 已提交
5246 5247 5248 5249 5250 5251 5252 5253
  IntersectionObserver2.prototype.THROTTLE_TIMEOUT = 100;
  IntersectionObserver2.prototype.POLL_INTERVAL = null;
  IntersectionObserver2.prototype.USE_MUTATION_OBSERVER = true;
  IntersectionObserver2._setupCrossOriginUpdater = function() {
    if (!crossOriginUpdater) {
      crossOriginUpdater = function(boundingClientRect, intersectionRect) {
        if (!boundingClientRect || !intersectionRect) {
          crossOriginRect = getEmptyRect();
fxy060608's avatar
fxy060608 已提交
5254
        } else {
fxy060608's avatar
fxy060608 已提交
5255
          crossOriginRect = convertFromParentRect(boundingClientRect, intersectionRect);
fxy060608's avatar
fxy060608 已提交
5256
        }
fxy060608's avatar
fxy060608 已提交
5257 5258 5259
        registry.forEach(function(observer) {
          observer._checkForIntersections();
        });
fxy060608's avatar
fxy060608 已提交
5260
      };
fxy060608's avatar
fxy060608 已提交
5261
    }
fxy060608's avatar
fxy060608 已提交
5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273
    return crossOriginUpdater;
  };
  IntersectionObserver2._resetCrossOriginUpdater = function() {
    crossOriginUpdater = null;
    crossOriginRect = null;
  };
  IntersectionObserver2.prototype.observe = function(target) {
    var isTargetAlreadyObserved = this._observationTargets.some(function(item) {
      return item.element == target;
    });
    if (isTargetAlreadyObserved) {
      return;
fxy060608's avatar
fxy060608 已提交
5274
    }
fxy060608's avatar
fxy060608 已提交
5275 5276
    if (!(target && target.nodeType == 1)) {
      throw new Error("target must be an Element");
fxy060608's avatar
fxy060608 已提交
5277
    }
fxy060608's avatar
fxy060608 已提交
5278 5279 5280 5281
    this._registerInstance();
    this._observationTargets.push({element: target, entry: null});
    this._monitorIntersections(target.ownerDocument);
    this._checkForIntersections();
fxy060608's avatar
fxy060608 已提交
5282
  };
fxy060608's avatar
fxy060608 已提交
5283 5284 5285 5286 5287 5288 5289 5290
  IntersectionObserver2.prototype.unobserve = function(target) {
    this._observationTargets = this._observationTargets.filter(function(item) {
      return item.element != target;
    });
    this._unmonitorIntersections(target.ownerDocument);
    if (this._observationTargets.length == 0) {
      this._unregisterInstance();
    }
fxy060608's avatar
fxy060608 已提交
5291
  };
fxy060608's avatar
fxy060608 已提交
5292 5293 5294 5295
  IntersectionObserver2.prototype.disconnect = function() {
    this._observationTargets = [];
    this._unmonitorAllIntersections();
    this._unregisterInstance();
fxy060608's avatar
fxy060608 已提交
5296
  };
fxy060608's avatar
fxy060608 已提交
5297 5298 5299 5300
  IntersectionObserver2.prototype.takeRecords = function() {
    var records = this._queuedEntries.slice();
    this._queuedEntries = [];
    return records;
fxy060608's avatar
fxy060608 已提交
5301
  };
fxy060608's avatar
fxy060608 已提交
5302 5303 5304 5305 5306 5307 5308
  IntersectionObserver2.prototype._initThresholds = function(opt_threshold) {
    var threshold = opt_threshold || [0];
    if (!Array.isArray(threshold))
      threshold = [threshold];
    return threshold.sort().filter(function(t2, i2, a2) {
      if (typeof t2 != "number" || isNaN(t2) || t2 < 0 || t2 > 1) {
        throw new Error("threshold must be a number between 0 and 1 inclusively");
fxy060608's avatar
fxy060608 已提交
5309
      }
fxy060608's avatar
fxy060608 已提交
5310 5311
      return t2 !== a2[i2 - 1];
    });
fxy060608's avatar
fxy060608 已提交
5312
  };
fxy060608's avatar
fxy060608 已提交
5313 5314 5315 5316 5317 5318
  IntersectionObserver2.prototype._parseRootMargin = function(opt_rootMargin) {
    var marginString = opt_rootMargin || "0px";
    var margins = marginString.split(/\s+/).map(function(margin) {
      var parts = /^(-?\d*\.?\d+)(px|%)$/.exec(margin);
      if (!parts) {
        throw new Error("rootMargin must be specified in pixels or percent");
fxy060608's avatar
fxy060608 已提交
5319
      }
fxy060608's avatar
fxy060608 已提交
5320 5321 5322 5323 5324 5325
      return {value: parseFloat(parts[1]), unit: parts[2]};
    });
    margins[1] = margins[1] || margins[0];
    margins[2] = margins[2] || margins[0];
    margins[3] = margins[3] || margins[1];
    return margins;
fxy060608's avatar
fxy060608 已提交
5326
  };
fxy060608's avatar
fxy060608 已提交
5327 5328 5329 5330
  IntersectionObserver2.prototype._monitorIntersections = function(doc) {
    var win = doc.defaultView;
    if (!win) {
      return;
fxy060608's avatar
fxy060608 已提交
5331
    }
fxy060608's avatar
fxy060608 已提交
5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358
    if (this._monitoringDocuments.indexOf(doc) != -1) {
      return;
    }
    var callback = this._checkForIntersections;
    var monitoringInterval = null;
    var domObserver = null;
    if (this.POLL_INTERVAL) {
      monitoringInterval = win.setInterval(callback, this.POLL_INTERVAL);
    } else {
      addEvent(win, "resize", callback, true);
      addEvent(doc, "scroll", callback, true);
      if (this.USE_MUTATION_OBSERVER && "MutationObserver" in win) {
        domObserver = new win.MutationObserver(callback);
        domObserver.observe(doc, {
          attributes: true,
          childList: true,
          characterData: true,
          subtree: true
        });
      }
    }
    this._monitoringDocuments.push(doc);
    this._monitoringUnsubscribes.push(function() {
      var win2 = doc.defaultView;
      if (win2) {
        if (monitoringInterval) {
          win2.clearInterval(monitoringInterval);
fxy060608's avatar
fxy060608 已提交
5359
        }
fxy060608's avatar
fxy060608 已提交
5360
        removeEvent(win2, "resize", callback, true);
fxy060608's avatar
fxy060608 已提交
5361
      }
fxy060608's avatar
fxy060608 已提交
5362 5363 5364 5365 5366 5367 5368 5369 5370 5371
      removeEvent(doc, "scroll", callback, true);
      if (domObserver) {
        domObserver.disconnect();
      }
    });
    var rootDoc = this.root && (this.root.ownerDocument || this.root) || document2;
    if (doc != rootDoc) {
      var frame = getFrameElement(doc);
      if (frame) {
        this._monitorIntersections(frame.ownerDocument);
fxy060608's avatar
fxy060608 已提交
5372
      }
fxy060608's avatar
fxy060608 已提交
5373
    }
fxy060608's avatar
fxy060608 已提交
5374 5375 5376 5377 5378
  };
  IntersectionObserver2.prototype._unmonitorIntersections = function(doc) {
    var index2 = this._monitoringDocuments.indexOf(doc);
    if (index2 == -1) {
      return;
fxy060608's avatar
fxy060608 已提交
5379
    }
fxy060608's avatar
fxy060608 已提交
5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396
    var rootDoc = this.root && (this.root.ownerDocument || this.root) || document2;
    var hasDependentTargets = this._observationTargets.some(function(item) {
      var itemDoc = item.element.ownerDocument;
      if (itemDoc == doc) {
        return true;
      }
      while (itemDoc && itemDoc != rootDoc) {
        var frame2 = getFrameElement(itemDoc);
        itemDoc = frame2 && frame2.ownerDocument;
        if (itemDoc == doc) {
          return true;
        }
      }
      return false;
    });
    if (hasDependentTargets) {
      return;
fxy060608's avatar
fxy060608 已提交
5397
    }
fxy060608's avatar
fxy060608 已提交
5398 5399 5400 5401 5402 5403 5404 5405 5406
    var unsubscribe = this._monitoringUnsubscribes[index2];
    this._monitoringDocuments.splice(index2, 1);
    this._monitoringUnsubscribes.splice(index2, 1);
    unsubscribe();
    if (doc != rootDoc) {
      var frame = getFrameElement(doc);
      if (frame) {
        this._unmonitorIntersections(frame.ownerDocument);
      }
fxy060608's avatar
fxy060608 已提交
5407
    }
fxy060608's avatar
fxy060608 已提交
5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447
  };
  IntersectionObserver2.prototype._unmonitorAllIntersections = function() {
    var unsubscribes = this._monitoringUnsubscribes.slice(0);
    this._monitoringDocuments.length = 0;
    this._monitoringUnsubscribes.length = 0;
    for (var i2 = 0; i2 < unsubscribes.length; i2++) {
      unsubscribes[i2]();
    }
  };
  IntersectionObserver2.prototype._checkForIntersections = function() {
    if (!this.root && crossOriginUpdater && !crossOriginRect) {
      return;
    }
    var rootIsInDom = this._rootIsInDom();
    var rootRect = rootIsInDom ? this._getRootRect() : getEmptyRect();
    this._observationTargets.forEach(function(item) {
      var target = item.element;
      var targetRect = getBoundingClientRect(target);
      var rootContainsTarget = this._rootContainsTarget(target);
      var oldEntry = item.entry;
      var intersectionRect = rootIsInDom && rootContainsTarget && this._computeTargetAndRootIntersection(target, targetRect, rootRect);
      var rootBounds = null;
      if (!this._rootContainsTarget(target)) {
        rootBounds = getEmptyRect();
      } else if (!crossOriginUpdater || this.root) {
        rootBounds = rootRect;
      }
      var newEntry = item.entry = new IntersectionObserverEntry({
        time: now(),
        target,
        boundingClientRect: targetRect,
        rootBounds,
        intersectionRect
      });
      if (!oldEntry) {
        this._queuedEntries.push(newEntry);
      } else if (rootIsInDom && rootContainsTarget) {
        if (this._hasCrossedThreshold(oldEntry, newEntry)) {
          this._queuedEntries.push(newEntry);
        }
fxy060608's avatar
fxy060608 已提交
5448
      } else {
fxy060608's avatar
fxy060608 已提交
5449 5450 5451
        if (oldEntry && oldEntry.isIntersecting) {
          this._queuedEntries.push(newEntry);
        }
fxy060608's avatar
fxy060608 已提交
5452
      }
fxy060608's avatar
fxy060608 已提交
5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478
    }, this);
    if (this._queuedEntries.length) {
      this._callback(this.takeRecords(), this);
    }
  };
  IntersectionObserver2.prototype._computeTargetAndRootIntersection = function(target, targetRect, rootRect) {
    if (window.getComputedStyle(target).display == "none")
      return;
    var intersectionRect = targetRect;
    var parent = getParentNode(target);
    var atRoot = false;
    while (!atRoot && parent) {
      var parentRect = null;
      var parentComputedStyle = parent.nodeType == 1 ? window.getComputedStyle(parent) : {};
      if (parentComputedStyle.display == "none")
        return null;
      if (parent == this.root || parent.nodeType == 9) {
        atRoot = true;
        if (parent == this.root || parent == document2) {
          if (crossOriginUpdater && !this.root) {
            if (!crossOriginRect || crossOriginRect.width == 0 && crossOriginRect.height == 0) {
              parent = null;
              parentRect = null;
              intersectionRect = null;
            } else {
              parentRect = crossOriginRect;
fxy060608's avatar
fxy060608 已提交
5479
            }
fxy060608's avatar
fxy060608 已提交
5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493
          } else {
            parentRect = rootRect;
          }
        } else {
          var frame = getParentNode(parent);
          var frameRect = frame && getBoundingClientRect(frame);
          var frameIntersect = frame && this._computeTargetAndRootIntersection(frame, frameRect, rootRect);
          if (frameRect && frameIntersect) {
            parent = frame;
            parentRect = convertFromParentRect(frameRect, frameIntersect);
          } else {
            parent = null;
            intersectionRect = null;
          }
fxy060608's avatar
fxy060608 已提交
5494 5495
        }
      } else {
fxy060608's avatar
fxy060608 已提交
5496 5497 5498
        var doc = parent.ownerDocument;
        if (parent != doc.body && parent != doc.documentElement && parentComputedStyle.overflow != "visible") {
          parentRect = getBoundingClientRect(parent);
fxy060608's avatar
fxy060608 已提交
5499
        }
fxy060608's avatar
fxy060608 已提交
5500
      }
fxy060608's avatar
fxy060608 已提交
5501 5502
      if (parentRect) {
        intersectionRect = computeRectIntersection(parentRect, intersectionRect);
fxy060608's avatar
fxy060608 已提交
5503
      }
fxy060608's avatar
fxy060608 已提交
5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524
      if (!intersectionRect)
        break;
      parent = parent && getParentNode(parent);
    }
    return intersectionRect;
  };
  IntersectionObserver2.prototype._getRootRect = function() {
    var rootRect;
    if (this.root && !isDoc(this.root)) {
      rootRect = getBoundingClientRect(this.root);
    } else {
      var doc = isDoc(this.root) ? this.root : document2;
      var html = doc.documentElement;
      var body = doc.body;
      rootRect = {
        top: 0,
        left: 0,
        right: html.clientWidth || body.clientWidth,
        width: html.clientWidth || body.clientWidth,
        bottom: html.clientHeight || body.clientHeight,
        height: html.clientHeight || body.clientHeight
fxy060608's avatar
fxy060608 已提交
5525
      };
fxy060608's avatar
fxy060608 已提交
5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551
    }
    return this._expandRectByRootMargin(rootRect);
  };
  IntersectionObserver2.prototype._expandRectByRootMargin = function(rect) {
    var margins = this._rootMarginValues.map(function(margin, i2) {
      return margin.unit == "px" ? margin.value : margin.value * (i2 % 2 ? rect.width : rect.height) / 100;
    });
    var newRect = {
      top: rect.top - margins[0],
      right: rect.right + margins[1],
      bottom: rect.bottom + margins[2],
      left: rect.left - margins[3]
    };
    newRect.width = newRect.right - newRect.left;
    newRect.height = newRect.bottom - newRect.top;
    return newRect;
  };
  IntersectionObserver2.prototype._hasCrossedThreshold = function(oldEntry, newEntry) {
    var oldRatio = oldEntry && oldEntry.isIntersecting ? oldEntry.intersectionRatio || 0 : -1;
    var newRatio = newEntry.isIntersecting ? newEntry.intersectionRatio || 0 : -1;
    if (oldRatio === newRatio)
      return;
    for (var i2 = 0; i2 < this.thresholds.length; i2++) {
      var threshold = this.thresholds[i2];
      if (threshold == oldRatio || threshold == newRatio || threshold < oldRatio !== threshold < newRatio) {
        return true;
fxy060608's avatar
fxy060608 已提交
5552
      }
fxy060608's avatar
fxy060608 已提交
5553
    }
fxy060608's avatar
fxy060608 已提交
5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573
  };
  IntersectionObserver2.prototype._rootIsInDom = function() {
    return !this.root || containsDeep(document2, this.root);
  };
  IntersectionObserver2.prototype._rootContainsTarget = function(target) {
    var rootDoc = this.root && (this.root.ownerDocument || this.root) || document2;
    return containsDeep(rootDoc, target) && (!this.root || rootDoc == target.ownerDocument);
  };
  IntersectionObserver2.prototype._registerInstance = function() {
    if (registry.indexOf(this) < 0) {
      registry.push(this);
    }
  };
  IntersectionObserver2.prototype._unregisterInstance = function() {
    var index2 = registry.indexOf(this);
    if (index2 != -1)
      registry.splice(index2, 1);
  };
  function now() {
    return window.performance && performance.now && performance.now();
fxy060608's avatar
fxy060608 已提交
5574
  }
fxy060608's avatar
fxy060608 已提交
5575 5576 5577 5578 5579 5580 5581 5582 5583 5584
  function throttle2(fn, timeout) {
    var timer = null;
    return function() {
      if (!timer) {
        timer = setTimeout(function() {
          fn();
          timer = null;
        }, timeout);
      }
    };
fxy060608's avatar
fxy060608 已提交
5585
  }
fxy060608's avatar
fxy060608 已提交
5586 5587 5588 5589 5590
  function addEvent(node, event2, fn, opt_useCapture) {
    if (typeof node.addEventListener == "function") {
      node.addEventListener(event2, fn, opt_useCapture || false);
    } else if (typeof node.attachEvent == "function") {
      node.attachEvent("on" + event2, fn);
fxy060608's avatar
fxy060608 已提交
5591 5592
    }
  }
fxy060608's avatar
fxy060608 已提交
5593 5594 5595 5596 5597
  function removeEvent(node, event2, fn, opt_useCapture) {
    if (typeof node.removeEventListener == "function") {
      node.removeEventListener(event2, fn, opt_useCapture || false);
    } else if (typeof node.detatchEvent == "function") {
      node.detatchEvent("on" + event2, fn);
fxy060608's avatar
fxy060608 已提交
5598
    }
fxy060608's avatar
fxy060608 已提交
5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636
  }
  function computeRectIntersection(rect1, rect2) {
    var top = Math.max(rect1.top, rect2.top);
    var bottom = Math.min(rect1.bottom, rect2.bottom);
    var left = Math.max(rect1.left, rect2.left);
    var right = Math.min(rect1.right, rect2.right);
    var width = right - left;
    var height = bottom - top;
    return width >= 0 && height >= 0 && {
      top,
      bottom,
      left,
      right,
      width,
      height
    } || null;
  }
  function getBoundingClientRect(el) {
    var rect;
    try {
      rect = el.getBoundingClientRect();
    } catch (err) {
    }
    if (!rect)
      return getEmptyRect();
    if (!(rect.width && rect.height)) {
      rect = {
        top: rect.top,
        right: rect.right,
        bottom: rect.bottom,
        left: rect.left,
        width: rect.right - rect.left,
        height: rect.bottom - rect.top
      };
    }
    return rect;
  }
  function getEmptyRect() {
fxy060608's avatar
fxy060608 已提交
5637
    return {
fxy060608's avatar
fxy060608 已提交
5638 5639 5640 5641 5642 5643
      top: 0,
      bottom: 0,
      left: 0,
      right: 0,
      width: 0,
      height: 0
fxy060608's avatar
fxy060608 已提交
5644
    };
fxy060608's avatar
fxy060608 已提交
5645 5646 5647 5648
  }
  function ensureDOMRect(rect) {
    if (!rect || "x" in rect) {
      return rect;
fxy060608's avatar
fxy060608 已提交
5649
    }
fxy060608's avatar
fxy060608 已提交
5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678
    return {
      top: rect.top,
      y: rect.top,
      bottom: rect.bottom,
      left: rect.left,
      x: rect.left,
      right: rect.right,
      width: rect.width,
      height: rect.height
    };
  }
  function convertFromParentRect(parentBoundingRect, parentIntersectionRect) {
    var top = parentIntersectionRect.top - parentBoundingRect.top;
    var left = parentIntersectionRect.left - parentBoundingRect.left;
    return {
      top,
      left,
      height: parentIntersectionRect.height,
      width: parentIntersectionRect.width,
      bottom: top + parentIntersectionRect.height,
      right: left + parentIntersectionRect.width
    };
  }
  function containsDeep(parent, child) {
    var node = child;
    while (node) {
      if (node == parent)
        return true;
      node = getParentNode(node);
fxy060608's avatar
fxy060608 已提交
5679
    }
fxy060608's avatar
fxy060608 已提交
5680 5681 5682 5683 5684 5685
    return false;
  }
  function getParentNode(node) {
    var parent = node.parentNode;
    if (node.nodeType == 9 && node != document2) {
      return getFrameElement(node);
fxy060608's avatar
fxy060608 已提交
5686
    }
fxy060608's avatar
fxy060608 已提交
5687 5688
    if (parent && parent.assignedSlot) {
      parent = parent.assignedSlot.parentNode;
fxy060608's avatar
fxy060608 已提交
5689
    }
fxy060608's avatar
fxy060608 已提交
5690 5691
    if (parent && parent.nodeType == 11 && parent.host) {
      return parent.host;
fxy060608's avatar
fxy060608 已提交
5692
    }
fxy060608's avatar
fxy060608 已提交
5693 5694 5695 5696
    return parent;
  }
  function isDoc(node) {
    return node && node.nodeType === 9;
fxy060608's avatar
fxy060608 已提交
5697
  }
fxy060608's avatar
fxy060608 已提交
5698 5699
  window.IntersectionObserver = IntersectionObserver2;
  window.IntersectionObserverEntry = IntersectionObserverEntry;
fxy060608's avatar
fxy060608 已提交
5700
};
fxy060608's avatar
fxy060608 已提交
5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758
function normalizeRect(rect) {
  const {bottom, height, left, right, top, width} = rect || {};
  return {
    bottom,
    height,
    left,
    right,
    top,
    width
  };
}
function requestComponentObserver($el, options, callback) {
  initIntersectionObserverPolyfill();
  const root = options.relativeToSelector ? $el.querySelector(options.relativeToSelector) : null;
  const intersectionObserver = new IntersectionObserver((entries) => {
    entries.forEach((entrie) => {
      callback({
        intersectionRatio: entrie.intersectionRatio,
        intersectionRect: normalizeRect(entrie.intersectionRect),
        boundingClientRect: normalizeRect(entrie.boundingClientRect),
        relativeRect: normalizeRect(entrie.rootBounds),
        time: Date.now()
      });
    });
  }, {
    root,
    rootMargin: options.rootMargin,
    threshold: options.thresholds
  });
  if (options.observeAll) {
    intersectionObserver.USE_MUTATION_OBSERVER = true;
    const nodeList = $el.querySelectorAll(options.selector);
    for (let i2 = 0; i2 < nodeList.length; i2++) {
      intersectionObserver.observe(nodeList[i2]);
    }
  } else {
    intersectionObserver.USE_MUTATION_OBSERVER = false;
    const el = $el.querySelector(options.selector);
    if (!el) {
      console.warn(`Node ${options.selector} is not found. Intersection observer will not trigger.`);
    } else {
      intersectionObserver.observe(el);
    }
  }
  return intersectionObserver;
}
function addIntersectionObserver({reqId, component, options, callback}, _pageId) {
  const $el = findElem(component);
  ($el.__io || ($el.__io = {}))[reqId] = requestComponentObserver($el, options, callback);
}
function removeIntersectionObserver({reqId, component}, _pageId) {
  const $el = findElem(component);
  const intersectionObserver = $el.__io && $el.__io[reqId];
  if (intersectionObserver) {
    intersectionObserver.disconnect();
    delete $el.__io[reqId];
  }
}
fxy060608's avatar
fxy060608 已提交
5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787
function useCustomEvent(ref2, emit) {
  return (name, evt, detail) => {
    emit(name, normalizeCustomEvent(name, evt, ref2.value, detail || {}));
  };
}
function normalizeDataset(el) {
  return el.dataset;
}
function normalizeTarget(el) {
  const {id: id2, tagName, offsetTop, offsetLeft} = el;
  return {
    id: id2,
    tagName,
    dataset: normalizeDataset(el),
    offsetTop,
    offsetLeft
  };
}
function normalizeCustomEvent(name, domEvt, el, detail) {
  const target = normalizeTarget(el);
  const evt = {
    type: detail.type || name,
    timeStamp: domEvt.timeStamp || 0,
    target,
    currentTarget: target,
    detail
  };
  return evt;
}
5788
const _sfc_main$h = {
fxy060608's avatar
fxy060608 已提交
5789
  name: "ResizeSensor",
fxy060608's avatar
fxy060608 已提交
5790
  props: {
fxy060608's avatar
fxy060608 已提交
5791
    initial: {
fxy060608's avatar
fxy060608 已提交
5792 5793
      type: [Boolean, String],
      default: false
fxy060608's avatar
fxy060608 已提交
5794 5795
    }
  },
fxy060608's avatar
fxy060608 已提交
5796 5797
  emits: ["resize"],
  data: function() {
fxy060608's avatar
fxy060608 已提交
5798
    return {
fxy060608's avatar
fxy060608 已提交
5799 5800 5801
      size: {
        width: -1,
        height: -1
fxy060608's avatar
fxy060608 已提交
5802
      }
fxy060608's avatar
fxy060608 已提交
5803
    };
fxy060608's avatar
fxy060608 已提交
5804 5805
  },
  watch: {
fxy060608's avatar
fxy060608 已提交
5806 5807 5808 5809
    size: {
      deep: true,
      handler: function(size) {
        this.$emit("resize", Object.assign({}, size));
fxy060608's avatar
fxy060608 已提交
5810 5811 5812
      }
    }
  },
fxy060608's avatar
fxy060608 已提交
5813 5814 5815 5816 5817 5818 5819 5820 5821
  mounted: function() {
    if (this.initial === true) {
      this.$nextTick(this.update);
    }
    if (this.$el.offsetParent !== this.$el.parentNode) {
      this.$el.parentNode.style.position = "relative";
    }
    if (!("AnimationEvent" in window)) {
      this.reset();
fxy060608's avatar
fxy060608 已提交
5822 5823 5824
    }
  },
  methods: {
fxy060608's avatar
fxy060608 已提交
5825 5826 5827 5828 5829 5830 5831
    reset: function() {
      var expand = this.$el.firstChild;
      var shrink = this.$el.lastChild;
      expand.scrollLeft = 1e5;
      expand.scrollTop = 1e5;
      shrink.scrollLeft = 1e5;
      shrink.scrollTop = 1e5;
fxy060608's avatar
fxy060608 已提交
5832
    },
fxy060608's avatar
fxy060608 已提交
5833 5834 5835 5836
    update: function() {
      this.size.width = this.$el.offsetWidth;
      this.size.height = this.$el.offsetHeight;
      this.reset();
fxy060608's avatar
fxy060608 已提交
5837 5838 5839
    }
  }
};
fxy060608's avatar
fxy060608 已提交
5840 5841
const _hoisted_1$b = /* @__PURE__ */ createVNode("div", null, null, -1);
const _hoisted_2$6 = /* @__PURE__ */ createVNode("div", null, null, -1);
5842
function _sfc_render$h(_ctx, _cache, $props, $setup, $data, $options) {
fxy060608's avatar
fxy060608 已提交
5843 5844 5845
  return openBlock(), createBlock("uni-resize-sensor", {
    onAnimationstartOnce: _cache[3] || (_cache[3] = (...args) => $options.update && $options.update(...args))
  }, [
fxy060608's avatar
fxy060608 已提交
5846
    createVNode("div", {
fxy060608's avatar
fxy060608 已提交
5847 5848 5849 5850 5851 5852 5853 5854 5855 5856
      onScroll: _cache[1] || (_cache[1] = (...args) => $options.update && $options.update(...args))
    }, [
      _hoisted_1$b
    ], 32),
    createVNode("div", {
      onScroll: _cache[2] || (_cache[2] = (...args) => $options.update && $options.update(...args))
    }, [
      _hoisted_2$6
    ], 32)
  ], 32);
fxy060608's avatar
fxy060608 已提交
5857
}
5858
_sfc_main$h.render = _sfc_render$h;
fxy060608's avatar
fxy060608 已提交
5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082
const props = {
  src: {
    type: String,
    default: ""
  },
  mode: {
    type: String,
    default: "scaleToFill"
  },
  lazyLoad: {
    type: [Boolean, String],
    default: false
  },
  draggable: {
    type: Boolean,
    default: true
  }
};
const FIX_MODES = {
  widthFix: ["width", "height"],
  heightFix: ["height", "width"]
};
const IMAGE_MODES = {
  aspectFit: ["center center", "contain"],
  aspectFill: ["center center", "cover"],
  widthFix: [, "100% 100%"],
  heightFix: [, "100% 100%"],
  top: ["center top"],
  bottom: ["center bottom"],
  center: ["center center"],
  left: ["left center"],
  right: ["right center"],
  "top left": ["left top"],
  "top right": ["right top"],
  "bottom left": ["left bottom"],
  "bottom right": ["right bottom"]
};
var index$3 = /* @__PURE__ */ defineComponent({
  name: "Image",
  props,
  setup(props2, {
    emit
  }) {
    const rootRef = ref(null);
    const state = useImageState(rootRef, props2);
    const trigger = useCustomEvent(rootRef, emit);
    const {
      fixSize,
      resetSize
    } = useImageSize(rootRef, props2, state);
    useImageLoader(state, {
      trigger,
      fixSize,
      resetSize
    });
    return () => {
      const {
        mode
      } = props2;
      const {
        imgSrc,
        modeStyle
      } = state;
      return createVNode("uni-image", {
        ref: rootRef
      }, [createVNode("div", {
        style: modeStyle
      }, null, 4), imgSrc && createVNode("img", {
        src: imgSrc,
        draggable: props2.draggable
      }, null, 8, ["src", "draggable"]), FIX_MODES[mode] && createVNode(_sfc_main$h, {
        onResize: fixSize
      }, null, 8, ["onResize"])], 512);
    };
  }
});
function useImageState(rootRef, props2) {
  const imgSrc = ref("");
  const modeStyleRef = computed(() => {
    let size = "auto";
    let position = "";
    const opts = IMAGE_MODES[props2.mode];
    if (!opts) {
      position = "0% 0%";
      size = "100% 100%";
    } else {
      opts[0] && (position = opts[0]);
      opts[1] && (size = opts[1]);
    }
    const srcVal = imgSrc.value;
    return `background-image:${srcVal ? 'url("' + srcVal + '")' : "none"};background-position:${position};background-size:${size};background-repeat:no-repeat;`;
  });
  const state = reactive({
    rootEl: rootRef,
    src: computed(() => getRealPath(props2.src)),
    origWidth: 0,
    origHeight: 0,
    origStyle: {
      width: "",
      height: ""
    },
    modeStyle: modeStyleRef,
    imgSrc
  });
  onMounted(() => {
    const rootEl = rootRef.value;
    const style = rootEl.style;
    state.origWidth = Number(style.width) || 0;
    state.origHeight = Number(style.height) || 0;
  });
  return state;
}
function useImageLoader(state, {
  trigger,
  fixSize,
  resetSize
}) {
  let img;
  const loadImage = (src) => {
    if (!src) {
      resetImage();
      resetSize();
      return;
    }
    if (!img) {
      img = new Image();
    }
    img.onload = (evt) => {
      const {
        width,
        height
      } = img;
      state.origWidth = width;
      state.origHeight = height;
      state.imgSrc = src;
      fixSize();
      resetImage();
      trigger("load", evt, {
        width,
        height
      });
    };
    img.onerror = (evt) => {
      const {
        src: src2
      } = state;
      state.origWidth = 0;
      state.origHeight = 0;
      state.imgSrc = "";
      resetImage();
      trigger("error", evt, {
        errMsg: `GET ${src2} 404 (Not Found)`
      });
    };
    img.src = src;
  };
  const resetImage = () => {
    if (img) {
      img.onload = null;
      img.onerror = null;
      img = null;
    }
  };
  watch(() => state.src, (value) => loadImage(value));
  onMounted(() => loadImage(state.src));
  onBeforeUnmount(() => resetImage());
}
const isChrome = navigator.vendor === "Google Inc.";
function fixNumber(num) {
  if (isChrome && num > 10) {
    num = Math.round(num / 2) * 2;
  }
  return num;
}
function useImageSize(rootRef, props2, state) {
  const fixSize = () => {
    const {
      mode
    } = props2;
    const names = FIX_MODES[mode];
    if (!names) {
      return;
    }
    const {
      origWidth,
      origHeight
    } = state;
    const ratio = origWidth && origHeight ? origWidth / origHeight : 0;
    if (!ratio) {
      return;
    }
    const rootEl = rootRef.value;
    const rect = rootEl.getBoundingClientRect();
    const value = rect[names[0]];
    if (value) {
      rootEl.style[names[1]] = fixNumber(value / ratio) + "px";
    }
  };
  const resetSize = () => {
    const {
      style
    } = rootRef.value;
    const {
      origStyle: {
        width,
        height
      }
    } = state;
    style.width = width;
    style.height = height;
  };
  watch(() => props2.mode, (value, oldValue) => {
    if (FIX_MODES[oldValue]) {
      resetSize();
    }
    if (FIX_MODES[value]) {
      fixSize();
    }
  });
  return {
    fixSize,
    resetSize
  };
}
6083
function useFormField(nameKey, valueKey) {
fxy060608's avatar
fxy060608 已提交
6084
  const uniForm = inject(uniFormKey, false);
6085 6086 6087
  if (!uniForm) {
    return;
  }
fxy060608's avatar
fxy060608 已提交
6088
  const instance = getCurrentInstance();
6089 6090
  const ctx = {
    submit() {
fxy060608's avatar
fxy060608 已提交
6091
      const proxy = instance.proxy;
6092 6093 6094
      return [proxy[nameKey], proxy[valueKey]];
    },
    reset() {
fxy060608's avatar
fxy060608 已提交
6095
      instance.proxy[valueKey] = "";
6096 6097 6098 6099 6100 6101 6102
    }
  };
  uniForm.addField(ctx);
  onBeforeUnmount(() => {
    uniForm.removeField(ctx);
  });
}
fxy060608's avatar
fxy060608 已提交
6103 6104
const INPUT_TYPES = ["text", "number", "idcard", "digit", "password"];
const NUMBER_TYPES = ["number", "digit"];
6105
const _sfc_main$g = {
fxy060608's avatar
fxy060608 已提交
6106 6107
  name: "Input",
  mixins: [baseInput],
fxy060608's avatar
fxy060608 已提交
6108
  props: {
fxy060608's avatar
fxy060608 已提交
6109 6110 6111
    name: {
      type: String,
      default: ""
fxy060608's avatar
fxy060608 已提交
6112
    },
fxy060608's avatar
fxy060608 已提交
6113 6114 6115 6116 6117
    type: {
      type: String,
      default: "text"
    },
    password: {
fxy060608's avatar
fxy060608 已提交
6118 6119 6120
      type: [Boolean, String],
      default: false
    },
fxy060608's avatar
fxy060608 已提交
6121
    placeholder: {
fxy060608's avatar
fxy060608 已提交
6122
      type: String,
fxy060608's avatar
fxy060608 已提交
6123
      default: ""
fxy060608's avatar
fxy060608 已提交
6124
    },
fxy060608's avatar
fxy060608 已提交
6125
    placeholderStyle: {
fxy060608's avatar
fxy060608 已提交
6126
      type: String,
fxy060608's avatar
fxy060608 已提交
6127
      default: ""
fxy060608's avatar
fxy060608 已提交
6128
    },
fxy060608's avatar
fxy060608 已提交
6129
    placeholderClass: {
fxy060608's avatar
fxy060608 已提交
6130
      type: String,
fxy060608's avatar
fxy060608 已提交
6131
      default: "input-placeholder"
fxy060608's avatar
fxy060608 已提交
6132
    },
fxy060608's avatar
fxy060608 已提交
6133
    disabled: {
fxy060608's avatar
fxy060608 已提交
6134 6135 6136
      type: [Boolean, String],
      default: false
    },
fxy060608's avatar
fxy060608 已提交
6137 6138 6139 6140 6141 6142 6143 6144 6145
    maxlength: {
      type: [Number, String],
      default: 140
    },
    focus: {
      type: [Boolean, String],
      default: false
    },
    confirmType: {
fxy060608's avatar
fxy060608 已提交
6146
      type: String,
fxy060608's avatar
fxy060608 已提交
6147
      default: "done"
fxy060608's avatar
fxy060608 已提交
6148
    }
fxy060608's avatar
fxy060608 已提交
6149 6150 6151
  },
  data() {
    return {
fxy060608's avatar
fxy060608 已提交
6152 6153 6154
      composing: false,
      wrapperHeight: 0,
      cachedValue: ""
fxy060608's avatar
fxy060608 已提交
6155 6156 6157
    };
  },
  computed: {
fxy060608's avatar
fxy060608 已提交
6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174
    inputType: function() {
      let type = "";
      switch (this.type) {
        case "text":
          this.confirmType === "search" && (type = "search");
          break;
        case "idcard":
          type = "text";
          break;
        case "digit":
          type = "number";
          break;
        default:
          type = ~INPUT_TYPES.indexOf(this.type) ? this.type : "text";
          break;
      }
      return this.password ? "password" : type;
fxy060608's avatar
fxy060608 已提交
6175
    },
fxy060608's avatar
fxy060608 已提交
6176 6177
    step() {
      return ~NUMBER_TYPES.indexOf(this.type) ? "0.000000000000000001" : "";
fxy060608's avatar
fxy060608 已提交
6178 6179 6180
    }
  },
  watch: {
fxy060608's avatar
fxy060608 已提交
6181 6182
    focus(val) {
      this.$refs.input && this.$refs.input[val ? "focus" : "blur"]();
fxy060608's avatar
fxy060608 已提交
6183
    },
fxy060608's avatar
fxy060608 已提交
6184 6185 6186
    maxlength(value) {
      const realValue = this.valueSync.slice(0, parseInt(value, 10));
      realValue !== this.valueSync && (this.valueSync = realValue);
fxy060608's avatar
fxy060608 已提交
6187 6188
    }
  },
6189 6190
  setup() {
    useFormField("name", "valueSync");
fxy060608's avatar
fxy060608 已提交
6191
  },
fxy060608's avatar
fxy060608 已提交
6192 6193 6194 6195 6196 6197 6198 6199 6200 6201
  mounted() {
    if (this.confirmType === "search") {
      const formElem = document.createElement("form");
      formElem.action = "";
      formElem.onsubmit = function() {
        return false;
      };
      formElem.className = "uni-input-form";
      formElem.appendChild(this.$refs.input);
      this.$refs.wrapper.appendChild(formElem);
fxy060608's avatar
fxy060608 已提交
6202
    }
fxy060608's avatar
fxy060608 已提交
6203 6204 6205
    const instance = getCurrentInstance();
    if (instance && instance.vnode.scopeId) {
      this.$refs.placeholder.setAttribute(instance.vnode.scopeId, "");
fxy060608's avatar
fxy060608 已提交
6206
    }
fxy060608's avatar
fxy060608 已提交
6207
    this.initKeyboard(this.$refs.input);
fxy060608's avatar
fxy060608 已提交
6208
  },
fxy060608's avatar
fxy060608 已提交
6209
  methods: {
fxy060608's avatar
fxy060608 已提交
6210 6211 6212 6213 6214
    _onKeyup($event) {
      if ($event.keyCode === 13) {
        this.$trigger("confirm", $event, {
          value: $event.target.value
        });
fxy060608's avatar
fxy060608 已提交
6215 6216
      }
    },
fxy060608's avatar
fxy060608 已提交
6217 6218 6219 6220 6221 6222 6223 6224
    _onInput($event) {
      if (this.composing) {
        return;
      }
      if (~NUMBER_TYPES.indexOf(this.type)) {
        if (this.$refs.input.validity && !this.$refs.input.validity.valid) {
          $event.target.value = this.cachedValue;
          this.valueSync = $event.target.value;
fxy060608's avatar
fxy060608 已提交
6225 6226
          return;
        } else {
fxy060608's avatar
fxy060608 已提交
6227 6228 6229 6230 6231 6232 6233 6234 6235
          this.cachedValue = this.valueSync;
        }
      }
      if (this.inputType === "number") {
        const maxlength = parseInt(this.maxlength, 10);
        if (maxlength > 0 && $event.target.value.length > maxlength) {
          $event.target.value = $event.target.value.slice(0, maxlength);
          this.valueSync = $event.target.value;
          return;
fxy060608's avatar
fxy060608 已提交
6236
        }
fxy060608's avatar
fxy060608 已提交
6237 6238 6239
      }
      this.$triggerInput($event, {
        value: this.valueSync
fxy060608's avatar
fxy060608 已提交
6240
      });
fxy060608's avatar
fxy060608 已提交
6241
    },
fxy060608's avatar
fxy060608 已提交
6242 6243 6244 6245
    _onFocus($event) {
      this.$trigger("focus", $event, {
        value: $event.target.value
      });
fxy060608's avatar
fxy060608 已提交
6246
    },
fxy060608's avatar
fxy060608 已提交
6247 6248 6249 6250
    _onBlur($event) {
      this.$trigger("blur", $event, {
        value: $event.target.value
      });
fxy060608's avatar
fxy060608 已提交
6251
    },
fxy060608's avatar
fxy060608 已提交
6252 6253 6254
    _onComposition($event) {
      if ($event.type === "compositionstart") {
        this.composing = true;
fxy060608's avatar
fxy060608 已提交
6255
      } else {
fxy060608's avatar
fxy060608 已提交
6256
        this.composing = false;
fxy060608's avatar
fxy060608 已提交
6257 6258
      }
    },
fxy060608's avatar
fxy060608 已提交
6259 6260 6261 6262 6263 6264 6265 6266
    _resetFormData() {
      this.valueSync = "";
    },
    _getFormData() {
      return this.name ? {
        value: this.valueSync,
        key: this.name
      } : {};
fxy060608's avatar
fxy060608 已提交
6267
    }
fxy060608's avatar
fxy060608 已提交
6268
  }
fxy060608's avatar
fxy060608 已提交
6269
};
6270
const _hoisted_1$a = {
fxy060608's avatar
fxy060608 已提交
6271 6272
  ref: "wrapper",
  class: "uni-input-wrapper"
fxy060608's avatar
fxy060608 已提交
6273
};
6274
function _sfc_render$g(_ctx, _cache, $props, $setup, $data, $options) {
fxy060608's avatar
fxy060608 已提交
6275 6276 6277 6278
  return openBlock(), createBlock("uni-input", mergeProps({
    onChange: _cache[8] || (_cache[8] = withModifiers(() => {
    }, ["stop"]))
  }, _ctx.$attrs), [
6279
    createVNode("div", _hoisted_1$a, [
fxy060608's avatar
fxy060608 已提交
6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308
      withDirectives(createVNode("div", {
        ref: "placeholder",
        style: $props.placeholderStyle,
        class: [$props.placeholderClass, "uni-input-placeholder"],
        textContent: toDisplayString($props.placeholder)
      }, null, 14, ["textContent"]), [
        [vShow, !($data.composing || _ctx.valueSync.length)]
      ]),
      withDirectives(createVNode("input", {
        ref: "input",
        "onUpdate:modelValue": _cache[1] || (_cache[1] = ($event) => _ctx.valueSync = $event),
        disabled: $props.disabled,
        type: $options.inputType,
        maxlength: $props.maxlength,
        step: $options.step,
        autofocus: $props.focus,
        class: "uni-input-input",
        autocomplete: "off",
        onFocus: _cache[2] || (_cache[2] = (...args) => $options._onFocus && $options._onFocus(...args)),
        onBlur: _cache[3] || (_cache[3] = (...args) => $options._onBlur && $options._onBlur(...args)),
        onInput: _cache[4] || (_cache[4] = withModifiers((...args) => $options._onInput && $options._onInput(...args), ["stop"])),
        onCompositionstart: _cache[5] || (_cache[5] = (...args) => $options._onComposition && $options._onComposition(...args)),
        onCompositionend: _cache[6] || (_cache[6] = (...args) => $options._onComposition && $options._onComposition(...args)),
        onKeyup: _cache[7] || (_cache[7] = withModifiers((...args) => $options._onKeyup && $options._onKeyup(...args), ["stop"]))
      }, null, 40, ["disabled", "type", "maxlength", "step", "autofocus"]), [
        [vModelDynamic, _ctx.valueSync]
      ])
    ], 512)
  ], 16);
fxy060608's avatar
fxy060608 已提交
6309
}
6310 6311
_sfc_main$g.render = _sfc_render$g;
const _sfc_main$f = {
fxy060608's avatar
fxy060608 已提交
6312 6313 6314 6315 6316 6317
  name: "Label",
  mixins: [emitter],
  props: {
    for: {
      type: String,
      default: ""
fxy060608's avatar
fxy060608 已提交
6318
    }
fxy060608's avatar
fxy060608 已提交
6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329
  },
  computed: {
    pointer() {
      return this.for || this.$slots.default && this.$slots.default.length;
    }
  },
  methods: {
    _onClick($event) {
      let stopPropagation = /^uni-(checkbox|radio|switch)-/.test($event.target.className);
      if (!stopPropagation) {
        stopPropagation = /^uni-(checkbox|radio|switch|button)$/i.test($event.target.tagName);
fxy060608's avatar
fxy060608 已提交
6330
      }
fxy060608's avatar
fxy060608 已提交
6331
      if (stopPropagation) {
fxy060608's avatar
fxy060608 已提交
6332
        return;
fxy060608's avatar
fxy060608 已提交
6333
      }
fxy060608's avatar
fxy060608 已提交
6334 6335 6336 6337
      if (this.for) {
        UniViewJSBridge.emit("uni-label-click-" + this.$page.id + "-" + this.for, $event, true);
      } else {
        this.$broadcast(["Checkbox", "Radio", "Switch", "Button"], "uni-label-click", $event, true);
fxy060608's avatar
fxy060608 已提交
6338
      }
fxy060608's avatar
fxy060608 已提交
6339
    }
fxy060608's avatar
fxy060608 已提交
6340 6341
  }
};
6342
function _sfc_render$f(_ctx, _cache, $props, $setup, $data, $options) {
fxy060608's avatar
fxy060608 已提交
6343 6344 6345 6346 6347 6348 6349
  return openBlock(), createBlock("uni-label", mergeProps({
    class: {"uni-label-pointer": $options.pointer}
  }, _ctx.$attrs, {
    onClick: _cache[1] || (_cache[1] = (...args) => $options._onClick && $options._onClick(...args))
  }), [
    renderSlot(_ctx.$slots, "default")
  ], 16);
fxy060608's avatar
fxy060608 已提交
6350
}
6351
_sfc_main$f.render = _sfc_render$f;
fxy060608's avatar
fxy060608 已提交
6352 6353 6354 6355 6356 6357
const addListenerToElement = function(element, type, callback, capture) {
  element.addEventListener(type, ($event) => {
    if (typeof callback === "function") {
      if (callback($event) === false) {
        $event.preventDefault();
        $event.stopPropagation();
fxy060608's avatar
fxy060608 已提交
6358
      }
fxy060608's avatar
fxy060608 已提交
6359
    }
fxy060608's avatar
fxy060608 已提交
6360 6361 6362 6363 6364 6365 6366 6367
  }, {
    passive: false
  });
};
var touchtrack = {
  beforeDestroy() {
    document.removeEventListener("mousemove", this.__mouseMoveEventListener);
    document.removeEventListener("mouseup", this.__mouseUpEventListener);
fxy060608's avatar
fxy060608 已提交
6368 6369
  },
  methods: {
fxy060608's avatar
fxy060608 已提交
6370 6371 6372 6373 6374 6375 6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395 6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421 6422 6423 6424 6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6438 6439 6440 6441 6442 6443 6444 6445 6446 6447 6448 6449 6450 6451 6452 6453 6454 6455 6456 6457 6458
    touchtrack: function(element, method, useCancel) {
      const self = this;
      let x0 = 0;
      let y0 = 0;
      let x1 = 0;
      let y1 = 0;
      const fn = function($event, state, x, y) {
        if (self[method]({
          target: $event.target,
          currentTarget: $event.currentTarget,
          preventDefault: $event.preventDefault.bind($event),
          stopPropagation: $event.stopPropagation.bind($event),
          touches: $event.touches,
          changedTouches: $event.changedTouches,
          detail: {
            state,
            x0: x,
            y0: y,
            dx: x - x0,
            dy: y - y0,
            ddx: x - x1,
            ddy: y - y1,
            timeStamp: $event.timeStamp
          }
        }) === false) {
          return false;
        }
      };
      let $eventOld = null;
      let hasTouchStart;
      let hasMouseDown;
      addListenerToElement(element, "touchstart", function($event) {
        hasTouchStart = true;
        if ($event.touches.length === 1 && !$eventOld) {
          $eventOld = $event;
          x0 = x1 = $event.touches[0].pageX;
          y0 = y1 = $event.touches[0].pageY;
          return fn($event, "start", x0, y0);
        }
      });
      addListenerToElement(element, "mousedown", function($event) {
        hasMouseDown = true;
        if (!hasTouchStart && !$eventOld) {
          $eventOld = $event;
          x0 = x1 = $event.pageX;
          y0 = y1 = $event.pageY;
          return fn($event, "start", x0, y0);
        }
      });
      addListenerToElement(element, "touchmove", function($event) {
        if ($event.touches.length === 1 && $eventOld) {
          const res = fn($event, "move", $event.touches[0].pageX, $event.touches[0].pageY);
          x1 = $event.touches[0].pageX;
          y1 = $event.touches[0].pageY;
          return res;
        }
      });
      const mouseMoveEventListener = this.__mouseMoveEventListener = function($event) {
        if (!hasTouchStart && hasMouseDown && $eventOld) {
          const res = fn($event, "move", $event.pageX, $event.pageY);
          x1 = $event.pageX;
          y1 = $event.pageY;
          return res;
        }
      };
      document.addEventListener("mousemove", mouseMoveEventListener);
      addListenerToElement(element, "touchend", function($event) {
        if ($event.touches.length === 0 && $eventOld) {
          hasTouchStart = false;
          $eventOld = null;
          return fn($event, "end", $event.changedTouches[0].pageX, $event.changedTouches[0].pageY);
        }
      });
      const mouseUpEventListener = this.__mouseUpEventListener = function($event) {
        hasMouseDown = false;
        if (!hasTouchStart && $eventOld) {
          $eventOld = null;
          return fn($event, "end", $event.pageX, $event.pageY);
        }
      };
      document.addEventListener("mouseup", mouseUpEventListener);
      addListenerToElement(element, "touchcancel", function($event) {
        if ($eventOld) {
          hasTouchStart = false;
          const $eventTemp = $eventOld;
          $eventOld = null;
          return fn($event, useCancel ? "cancel" : "end", $eventTemp.touches[0].pageX, $eventTemp.touches[0].pageY);
        }
      });
fxy060608's avatar
fxy060608 已提交
6459 6460 6461
    }
  }
};
fxy060608's avatar
fxy060608 已提交
6462 6463
function e(e2, t2, n) {
  return e2 > t2 - n && e2 < t2 + n;
fxy060608's avatar
fxy060608 已提交
6464
}
fxy060608's avatar
fxy060608 已提交
6465 6466 6467 6468 6469 6470 6471 6472 6473 6474 6475
function t(t2, n) {
  return e(t2, 0, n);
}
function Decline() {
}
Decline.prototype.x = function(e2) {
  return Math.sqrt(e2);
};
function Friction$1(e2, t2) {
  this._m = e2;
  this._f = 1e3 * t2;
fxy060608's avatar
fxy060608 已提交
6476
  this._startTime = 0;
fxy060608's avatar
fxy060608 已提交
6477
  this._v = 0;
fxy060608's avatar
fxy060608 已提交
6478
}
fxy060608's avatar
fxy060608 已提交
6479 6480 6481 6482 6483 6484 6485 6486
Friction$1.prototype.setV = function(x, y) {
  var n = Math.pow(Math.pow(x, 2) + Math.pow(y, 2), 0.5);
  this._x_v = x;
  this._y_v = y;
  this._x_a = -this._f * this._x_v / n;
  this._y_a = -this._f * this._y_v / n;
  this._t = Math.abs(x / this._x_a) || Math.abs(y / this._y_a);
  this._lastDt = null;
fxy060608's avatar
fxy060608 已提交
6487 6488
  this._startTime = new Date().getTime();
};
fxy060608's avatar
fxy060608 已提交
6489 6490 6491
Friction$1.prototype.setS = function(x, y) {
  this._x_s = x;
  this._y_s = y;
fxy060608's avatar
fxy060608 已提交
6492
};
fxy060608's avatar
fxy060608 已提交
6493 6494 6495
Friction$1.prototype.s = function(t2) {
  if (t2 === void 0) {
    t2 = (new Date().getTime() - this._startTime) / 1e3;
fxy060608's avatar
fxy060608 已提交
6496
  }
fxy060608's avatar
fxy060608 已提交
6497 6498 6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512
  if (t2 > this._t) {
    t2 = this._t;
    this._lastDt = t2;
  }
  var x = this._x_v * t2 + 0.5 * this._x_a * Math.pow(t2, 2) + this._x_s;
  var y = this._y_v * t2 + 0.5 * this._y_a * Math.pow(t2, 2) + this._y_s;
  if (this._x_a > 0 && x < this._endPositionX || this._x_a < 0 && x > this._endPositionX) {
    x = this._endPositionX;
  }
  if (this._y_a > 0 && y < this._endPositionY || this._y_a < 0 && y > this._endPositionY) {
    y = this._endPositionY;
  }
  return {
    x,
    y
  };
fxy060608's avatar
fxy060608 已提交
6513
};
fxy060608's avatar
fxy060608 已提交
6514 6515 6516
Friction$1.prototype.ds = function(t2) {
  if (t2 === void 0) {
    t2 = (new Date().getTime() - this._startTime) / 1e3;
fxy060608's avatar
fxy060608 已提交
6517
  }
fxy060608's avatar
fxy060608 已提交
6518 6519 6520 6521 6522 6523 6524
  if (t2 > this._t) {
    t2 = this._t;
  }
  return {
    dx: this._x_v + this._x_a * t2,
    dy: this._y_v + this._y_a * t2
  };
fxy060608's avatar
fxy060608 已提交
6525
};
fxy060608's avatar
fxy060608 已提交
6526 6527 6528 6529 6530
Friction$1.prototype.delta = function() {
  return {
    x: -1.5 * Math.pow(this._x_v, 2) / this._x_a || 0,
    y: -1.5 * Math.pow(this._y_v, 2) / this._y_a || 0
  };
fxy060608's avatar
fxy060608 已提交
6531
};
fxy060608's avatar
fxy060608 已提交
6532 6533
Friction$1.prototype.dt = function() {
  return -this._x_v / this._x_a;
fxy060608's avatar
fxy060608 已提交
6534
};
fxy060608's avatar
fxy060608 已提交
6535 6536 6537 6538
Friction$1.prototype.done = function() {
  var t2 = e(this.s().x, this._endPositionX) || e(this.s().y, this._endPositionY) || this._lastDt === this._t;
  this._lastDt = null;
  return t2;
fxy060608's avatar
fxy060608 已提交
6539
};
fxy060608's avatar
fxy060608 已提交
6540 6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6551
Friction$1.prototype.setEnd = function(x, y) {
  this._endPositionX = x;
  this._endPositionY = y;
};
Friction$1.prototype.reconfigure = function(m, f2) {
  this._m = m;
  this._f = 1e3 * f2;
};
function Spring$1(m, k, c) {
  this._m = m;
  this._k = k;
  this._c = c;
fxy060608's avatar
fxy060608 已提交
6552 6553 6554 6555
  this._solution = null;
  this._endPosition = 0;
  this._startTime = 0;
}
fxy060608's avatar
fxy060608 已提交
6556
Spring$1.prototype._solve = function(e2, t2) {
fxy060608's avatar
fxy060608 已提交
6557
  var n = this._c;
fxy060608's avatar
fxy060608 已提交
6558
  var i2 = this._m;
fxy060608's avatar
fxy060608 已提交
6559
  var r = this._k;
fxy060608's avatar
fxy060608 已提交
6560
  var o2 = n * n - 4 * i2 * r;
fxy060608's avatar
fxy060608 已提交
6561
  if (o2 === 0) {
fxy060608's avatar
fxy060608 已提交
6562 6563 6564
    const a2 = -n / (2 * i2);
    const s = e2;
    const l = t2 / (a2 * e2);
fxy060608's avatar
fxy060608 已提交
6565 6566
    return {
      x: function(e3) {
fxy060608's avatar
fxy060608 已提交
6567
        return (s + l * e3) * Math.pow(Math.E, a2 * e3);
fxy060608's avatar
fxy060608 已提交
6568 6569
      },
      dx: function(e3) {
fxy060608's avatar
fxy060608 已提交
6570 6571
        var t3 = Math.pow(Math.E, a2 * e3);
        return a2 * (s + l * e3) * t3 + l * t3;
fxy060608's avatar
fxy060608 已提交
6572
      }
fxy060608's avatar
fxy060608 已提交
6573 6574 6575
    };
  }
  if (o2 > 0) {
fxy060608's avatar
fxy060608 已提交
6576 6577 6578 6579
    const c = (-n - Math.sqrt(o2)) / (2 * i2);
    const u = (-n + Math.sqrt(o2)) / (2 * i2);
    const d = (t2 - c * e2) / (u - c);
    const h = e2 - d;
fxy060608's avatar
fxy060608 已提交
6580 6581
    return {
      x: function(e3) {
fxy060608's avatar
fxy060608 已提交
6582 6583
        var t3;
        var n2;
fxy060608's avatar
fxy060608 已提交
6584 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594
        if (e3 === this._t) {
          t3 = this._powER1T;
          n2 = this._powER2T;
        }
        this._t = e3;
        if (!t3) {
          t3 = this._powER1T = Math.pow(Math.E, c * e3);
        }
        if (!n2) {
          n2 = this._powER2T = Math.pow(Math.E, u * e3);
        }
fxy060608's avatar
fxy060608 已提交
6595
        return h * t3 + d * n2;
fxy060608's avatar
fxy060608 已提交
6596 6597
      },
      dx: function(e3) {
fxy060608's avatar
fxy060608 已提交
6598 6599
        var t3;
        var n2;
fxy060608's avatar
fxy060608 已提交
6600 6601 6602
        if (e3 === this._t) {
          t3 = this._powER1T;
          n2 = this._powER2T;
fxy060608's avatar
fxy060608 已提交
6603
        }
fxy060608's avatar
fxy060608 已提交
6604 6605 6606 6607 6608 6609 6610
        this._t = e3;
        if (!t3) {
          t3 = this._powER1T = Math.pow(Math.E, c * e3);
        }
        if (!n2) {
          n2 = this._powER2T = Math.pow(Math.E, u * e3);
        }
fxy060608's avatar
fxy060608 已提交
6611
        return h * c * t3 + d * u * n2;
fxy060608's avatar
fxy060608 已提交
6612
      }
fxy060608's avatar
fxy060608 已提交
6613 6614
    };
  }
fxy060608's avatar
fxy060608 已提交
6615 6616 6617 6618
  var p2 = Math.sqrt(4 * i2 * r - n * n) / (2 * i2);
  var f2 = -n / 2 * i2;
  var v2 = e2;
  var g2 = (t2 - f2 * e2) / p2;
fxy060608's avatar
fxy060608 已提交
6619 6620
  return {
    x: function(e3) {
fxy060608's avatar
fxy060608 已提交
6621
      return Math.pow(Math.E, f2 * e3) * (v2 * Math.cos(p2 * e3) + g2 * Math.sin(p2 * e3));
fxy060608's avatar
fxy060608 已提交
6622 6623
    },
    dx: function(e3) {
fxy060608's avatar
fxy060608 已提交
6624 6625 6626 6627
      var t3 = Math.pow(Math.E, f2 * e3);
      var n2 = Math.cos(p2 * e3);
      var i3 = Math.sin(p2 * e3);
      return t3 * (g2 * p2 * n2 - v2 * p2 * i3) + f2 * t3 * (g2 * i3 + v2 * n2);
fxy060608's avatar
fxy060608 已提交
6628 6629 6630
    }
  };
};
fxy060608's avatar
fxy060608 已提交
6631
Spring$1.prototype.x = function(e2) {
fxy060608's avatar
fxy060608 已提交
6632 6633 6634 6635 6636
  if (e2 === void 0) {
    e2 = (new Date().getTime() - this._startTime) / 1e3;
  }
  return this._solution ? this._endPosition + this._solution.x(e2) : 0;
};
fxy060608's avatar
fxy060608 已提交
6637
Spring$1.prototype.dx = function(e2) {
fxy060608's avatar
fxy060608 已提交
6638 6639 6640 6641 6642
  if (e2 === void 0) {
    e2 = (new Date().getTime() - this._startTime) / 1e3;
  }
  return this._solution ? this._solution.dx(e2) : 0;
};
fxy060608's avatar
fxy060608 已提交
6643 6644 6645
Spring$1.prototype.setEnd = function(e2, n, i2) {
  if (!i2) {
    i2 = new Date().getTime();
fxy060608's avatar
fxy060608 已提交
6646
  }
fxy060608's avatar
fxy060608 已提交
6647 6648 6649
  if (e2 !== this._endPosition || !t(n, 0.1)) {
    n = n || 0;
    var r = this._endPosition;
fxy060608's avatar
fxy060608 已提交
6650
    if (this._solution) {
fxy060608's avatar
fxy060608 已提交
6651 6652
      if (t(n, 0.1)) {
        n = this._solution.dx((i2 - this._startTime) / 1e3);
fxy060608's avatar
fxy060608 已提交
6653
      }
fxy060608's avatar
fxy060608 已提交
6654 6655 6656
      r = this._solution.x((i2 - this._startTime) / 1e3);
      if (t(n, 0.1)) {
        n = 0;
fxy060608's avatar
fxy060608 已提交
6657
      }
fxy060608's avatar
fxy060608 已提交
6658 6659
      if (t(r, 0.1)) {
        r = 0;
fxy060608's avatar
fxy060608 已提交
6660
      }
fxy060608's avatar
fxy060608 已提交
6661
      r += this._endPosition;
fxy060608's avatar
fxy060608 已提交
6662
    }
fxy060608's avatar
fxy060608 已提交
6663
    if (!(this._solution && t(r - e2, 0.1) && t(n, 0.1))) {
fxy060608's avatar
fxy060608 已提交
6664
      this._endPosition = e2;
fxy060608's avatar
fxy060608 已提交
6665 6666
      this._solution = this._solve(r - this._endPosition, n);
      this._startTime = i2;
fxy060608's avatar
fxy060608 已提交
6667 6668 6669
    }
  }
};
fxy060608's avatar
fxy060608 已提交
6670
Spring$1.prototype.snap = function(e2) {
fxy060608's avatar
fxy060608 已提交
6671 6672 6673 6674 6675
  this._startTime = new Date().getTime();
  this._endPosition = e2;
  this._solution = {
    x: function() {
      return 0;
fxy060608's avatar
fxy060608 已提交
6676
    },
fxy060608's avatar
fxy060608 已提交
6677 6678 6679 6680 6681
    dx: function() {
      return 0;
    }
  };
};
fxy060608's avatar
fxy060608 已提交
6682 6683 6684
Spring$1.prototype.done = function(n) {
  if (!n) {
    n = new Date().getTime();
fxy060608's avatar
fxy060608 已提交
6685
  }
fxy060608's avatar
fxy060608 已提交
6686
  return e(this.x(), this._endPosition, 0.1) && t(this.dx(), 0.1);
fxy060608's avatar
fxy060608 已提交
6687
};
fxy060608's avatar
fxy060608 已提交
6688 6689
Spring$1.prototype.reconfigure = function(m, t2, c) {
  this._m = m;
fxy060608's avatar
fxy060608 已提交
6690
  this._k = t2;
fxy060608's avatar
fxy060608 已提交
6691
  this._c = c;
fxy060608's avatar
fxy060608 已提交
6692 6693 6694 6695 6696
  if (!this.done()) {
    this._solution = this._solve(this.x() - this._endPosition, this.dx());
    this._startTime = new Date().getTime();
  }
};
fxy060608's avatar
fxy060608 已提交
6697
Spring$1.prototype.springConstant = function() {
fxy060608's avatar
fxy060608 已提交
6698 6699
  return this._k;
};
fxy060608's avatar
fxy060608 已提交
6700
Spring$1.prototype.damping = function() {
fxy060608's avatar
fxy060608 已提交
6701 6702
  return this._c;
};
fxy060608's avatar
fxy060608 已提交
6703
Spring$1.prototype.configuration = function() {
fxy060608's avatar
fxy060608 已提交
6704 6705 6706 6707 6708 6709 6710 6711 6712 6713 6714 6715 6716
  function e2(e3, t3) {
    e3.reconfigure(1, t3, e3.damping());
  }
  function t2(e3, t3) {
    e3.reconfigure(1, e3.springConstant(), t3);
  }
  return [
    {
      label: "Spring Constant",
      read: this.springConstant.bind(this),
      write: e2.bind(this, this),
      min: 100,
      max: 1e3
fxy060608's avatar
fxy060608 已提交
6717
    },
fxy060608's avatar
fxy060608 已提交
6718 6719 6720 6721 6722 6723
    {
      label: "Damping",
      read: this.damping.bind(this),
      write: t2.bind(this, this),
      min: 1,
      max: 500
fxy060608's avatar
fxy060608 已提交
6724
    }
fxy060608's avatar
fxy060608 已提交
6725 6726
  ];
};
fxy060608's avatar
fxy060608 已提交
6727 6728 6729 6730
function STD(e2, t2, n) {
  this._springX = new Spring$1(e2, t2, n);
  this._springY = new Spring$1(e2, t2, n);
  this._springScale = new Spring$1(e2, t2, n);
fxy060608's avatar
fxy060608 已提交
6731 6732
  this._startTime = 0;
}
fxy060608's avatar
fxy060608 已提交
6733 6734 6735 6736 6737 6738
STD.prototype.setEnd = function(e2, t2, n, i2) {
  var r = new Date().getTime();
  this._springX.setEnd(e2, i2, r);
  this._springY.setEnd(t2, i2, r);
  this._springScale.setEnd(n, i2, r);
  this._startTime = r;
fxy060608's avatar
fxy060608 已提交
6739
};
fxy060608's avatar
fxy060608 已提交
6740 6741 6742 6743 6744 6745 6746
STD.prototype.x = function() {
  var e2 = (new Date().getTime() - this._startTime) / 1e3;
  return {
    x: this._springX.x(e2),
    y: this._springY.x(e2),
    scale: this._springScale.x(e2)
  };
fxy060608's avatar
fxy060608 已提交
6747
};
fxy060608's avatar
fxy060608 已提交
6748 6749 6750 6751 6752 6753 6754 6755 6756 6757 6758 6759 6760 6761 6762 6763 6764
STD.prototype.done = function() {
  var e2 = new Date().getTime();
  return this._springX.done(e2) && this._springY.done(e2) && this._springScale.done(e2);
};
STD.prototype.reconfigure = function(e2, t2, n) {
  this._springX.reconfigure(e2, t2, n);
  this._springY.reconfigure(e2, t2, n);
  this._springScale.reconfigure(e2, t2, n);
};
var requesting = false;
function _requestAnimationFrame(e2) {
  if (!requesting) {
    requesting = true;
    requestAnimationFrame(function() {
      e2();
      requesting = false;
    });
fxy060608's avatar
fxy060608 已提交
6765
  }
fxy060608's avatar
fxy060608 已提交
6766 6767 6768 6769
}
function p(t2, n) {
  if (t2 === n) {
    return 0;
fxy060608's avatar
fxy060608 已提交
6770
  }
fxy060608's avatar
fxy060608 已提交
6771 6772 6773 6774 6775 6776
  var i2 = t2.offsetLeft;
  return t2.offsetParent ? i2 += p(t2.offsetParent, n) : 0;
}
function f(t2, n) {
  if (t2 === n) {
    return 0;
fxy060608's avatar
fxy060608 已提交
6777
  }
fxy060608's avatar
fxy060608 已提交
6778 6779 6780 6781 6782 6783 6784 6785 6786 6787
  var i2 = t2.offsetTop;
  return t2.offsetParent ? i2 += f(t2.offsetParent, n) : 0;
}
function v(a2, b) {
  return +((1e3 * a2 - 1e3 * b) / 1e3).toFixed(1);
}
function g(e2, t2, n) {
  var i2 = function(e3) {
    if (e3 && e3.id) {
      cancelAnimationFrame(e3.id);
fxy060608's avatar
fxy060608 已提交
6788
    }
fxy060608's avatar
fxy060608 已提交
6789 6790
    if (e3) {
      e3.cancelled = true;
fxy060608's avatar
fxy060608 已提交
6791
    }
fxy060608's avatar
fxy060608 已提交
6792 6793
  };
  var r = {
fxy060608's avatar
fxy060608 已提交
6794 6795 6796
    id: 0,
    cancelled: false
  };
fxy060608's avatar
fxy060608 已提交
6797 6798 6799 6800 6801 6802 6803 6804
  function fn(n2, i3, r2, o2) {
    if (!n2 || !n2.cancelled) {
      r2(i3);
      var a2 = e2.done();
      if (!a2) {
        if (!n2.cancelled) {
          n2.id = requestAnimationFrame(fn.bind(null, n2, i3, r2, o2));
        }
fxy060608's avatar
fxy060608 已提交
6805
      }
fxy060608's avatar
fxy060608 已提交
6806 6807
      if (a2 && o2) {
        o2(i3);
fxy060608's avatar
fxy060608 已提交
6808
      }
fxy060608's avatar
fxy060608 已提交
6809 6810
    }
  }
fxy060608's avatar
fxy060608 已提交
6811 6812 6813 6814 6815 6816
  fn(r, e2, t2, n);
  return {
    cancel: i2.bind(null, r),
    model: e2
  };
}
6817
const _sfc_main$e = {
fxy060608's avatar
fxy060608 已提交
6818 6819 6820 6821 6822 6823 6824 6825 6826 6827 6828 6829 6830 6831 6832 6833 6834 6835 6836 6837 6838 6839 6840 6841 6842 6843 6844 6845 6846 6847 6848 6849 6850 6851 6852 6853 6854 6855 6856 6857 6858 6859 6860 6861 6862 6863 6864 6865 6866 6867 6868 6869 6870 6871
  name: "MovableView",
  mixins: [touchtrack],
  props: {
    direction: {
      type: String,
      default: "none"
    },
    inertia: {
      type: [Boolean, String],
      default: false
    },
    outOfBounds: {
      type: [Boolean, String],
      default: false
    },
    x: {
      type: [Number, String],
      default: 0
    },
    y: {
      type: [Number, String],
      default: 0
    },
    damping: {
      type: [Number, String],
      default: 20
    },
    friction: {
      type: [Number, String],
      default: 2
    },
    disabled: {
      type: [Boolean, String],
      default: false
    },
    scale: {
      type: [Boolean, String],
      default: false
    },
    scaleMin: {
      type: [Number, String],
      default: 0.5
    },
    scaleMax: {
      type: [Number, String],
      default: 10
    },
    scaleValue: {
      type: [Number, String],
      default: 1
    },
    animation: {
      type: [Boolean, String],
      default: true
fxy060608's avatar
fxy060608 已提交
6872
    }
fxy060608's avatar
fxy060608 已提交
6873 6874 6875 6876 6877 6878 6879 6880 6881 6882 6883 6884
  },
  data() {
    return {
      xSync: this._getPx(this.x),
      ySync: this._getPx(this.y),
      scaleValueSync: Number(this.scaleValue) || 1,
      width: 0,
      height: 0,
      minX: 0,
      minY: 0,
      maxX: 0,
      maxY: 0
fxy060608's avatar
fxy060608 已提交
6885
    };
fxy060608's avatar
fxy060608 已提交
6886 6887 6888 6889 6890
  },
  computed: {
    dampingNumber() {
      var val = Number(this.damping);
      return isNaN(val) ? 20 : val;
fxy060608's avatar
fxy060608 已提交
6891
    },
fxy060608's avatar
fxy060608 已提交
6892 6893 6894
    frictionNumber() {
      var val = Number(this.friction);
      return isNaN(val) || val <= 0 ? 2 : val;
fxy060608's avatar
fxy060608 已提交
6895
    },
fxy060608's avatar
fxy060608 已提交
6896 6897 6898
    scaleMinNumber() {
      var val = Number(this.scaleMin);
      return isNaN(val) ? 0.5 : val;
fxy060608's avatar
fxy060608 已提交
6899
    },
fxy060608's avatar
fxy060608 已提交
6900 6901 6902
    scaleMaxNumber() {
      var val = Number(this.scaleMax);
      return isNaN(val) ? 10 : val;
fxy060608's avatar
fxy060608 已提交
6903
    },
fxy060608's avatar
fxy060608 已提交
6904 6905
    xMove() {
      return this.direction === "all" || this.direction === "horizontal";
fxy060608's avatar
fxy060608 已提交
6906
    },
fxy060608's avatar
fxy060608 已提交
6907 6908 6909 6910 6911 6912 6913
    yMove() {
      return this.direction === "all" || this.direction === "vertical";
    }
  },
  watch: {
    x(val) {
      this.xSync = this._getPx(val);
fxy060608's avatar
fxy060608 已提交
6914
    },
fxy060608's avatar
fxy060608 已提交
6915 6916
    xSync(val) {
      this._setX(val);
fxy060608's avatar
fxy060608 已提交
6917
    },
fxy060608's avatar
fxy060608 已提交
6918 6919
    y(val) {
      this.ySync = this._getPx(val);
fxy060608's avatar
fxy060608 已提交
6920
    },
fxy060608's avatar
fxy060608 已提交
6921 6922
    ySync(val) {
      this._setY(val);
fxy060608's avatar
fxy060608 已提交
6923
    },
fxy060608's avatar
fxy060608 已提交
6924 6925
    scaleValue(val) {
      this.scaleValueSync = Number(val) || 0;
fxy060608's avatar
fxy060608 已提交
6926
    },
fxy060608's avatar
fxy060608 已提交
6927 6928
    scaleValueSync(val) {
      this._setScaleValue(val);
fxy060608's avatar
fxy060608 已提交
6929
    },
fxy060608's avatar
fxy060608 已提交
6930 6931
    scaleMinNumber() {
      this._setScaleMinOrMax();
fxy060608's avatar
fxy060608 已提交
6932
    },
fxy060608's avatar
fxy060608 已提交
6933 6934
    scaleMaxNumber() {
      this._setScaleMinOrMax();
fxy060608's avatar
fxy060608 已提交
6935
    }
fxy060608's avatar
fxy060608 已提交
6936
  },
fxy060608's avatar
fxy060608 已提交
6937 6938 6939 6940 6941 6942 6943 6944 6945 6946 6947 6948 6949 6950 6951 6952 6953 6954 6955 6956 6957
  created: function() {
    this._offset = {
      x: 0,
      y: 0
    };
    this._scaleOffset = {
      x: 0,
      y: 0
    };
    this._translateX = 0;
    this._translateY = 0;
    this._scale = 1;
    this._oldScale = 1;
    this._STD = new STD(1, 9 * Math.pow(this.dampingNumber, 2) / 40, this.dampingNumber);
    this._friction = new Friction$1(1, this.frictionNumber);
    this._declineX = new Decline();
    this._declineY = new Decline();
    this.__touchInfo = {
      historyX: [0, 0],
      historyY: [0, 0],
      historyT: [0, 0]
fxy060608's avatar
fxy060608 已提交
6958 6959
    };
  },
fxy060608's avatar
fxy060608 已提交
6960 6961 6962 6963 6964 6965
  mounted: function() {
    this.touchtrack(this.$el, "_onTrack");
    this.setParent();
    this._friction.reconfigure(1, this.frictionNumber);
    this._STD.reconfigure(1, 9 * Math.pow(this.dampingNumber, 2) / 40, this.dampingNumber);
    this.$el.style.transformOrigin = "center";
fxy060608's avatar
fxy060608 已提交
6966
  },
fxy060608's avatar
fxy060608 已提交
6967 6968 6969 6970
  methods: {
    _getPx(val) {
      if (/\d+[ur]px$/i.test(val)) {
        return uni.upx2px(parseFloat(val));
fxy060608's avatar
fxy060608 已提交
6971
      }
fxy060608's avatar
fxy060608 已提交
6972 6973 6974 6975 6976 6977
      return Number(val) || 0;
    },
    _setX: function(val) {
      if (this.xMove) {
        if (val + this._scaleOffset.x === this._translateX) {
          return this._translateX;
fxy060608's avatar
fxy060608 已提交
6978
        } else {
fxy060608's avatar
fxy060608 已提交
6979 6980
          if (this._SFA) {
            this._SFA.cancel();
fxy060608's avatar
fxy060608 已提交
6981
          }
fxy060608's avatar
fxy060608 已提交
6982
          this._animationTo(val + this._scaleOffset.x, this.ySync + this._scaleOffset.y, this._scale);
fxy060608's avatar
fxy060608 已提交
6983
        }
fxy060608's avatar
fxy060608 已提交
6984
      }
fxy060608's avatar
fxy060608 已提交
6985
      return val;
fxy060608's avatar
fxy060608 已提交
6986
    },
fxy060608's avatar
fxy060608 已提交
6987 6988 6989 6990
    _setY: function(val) {
      if (this.yMove) {
        if (val + this._scaleOffset.y === this._translateY) {
          return this._translateY;
fxy060608's avatar
fxy060608 已提交
6991
        } else {
fxy060608's avatar
fxy060608 已提交
6992 6993 6994 6995
          if (this._SFA) {
            this._SFA.cancel();
          }
          this._animationTo(this.xSync + this._scaleOffset.x, val + this._scaleOffset.y, this._scale);
fxy060608's avatar
fxy060608 已提交
6996
        }
fxy060608's avatar
fxy060608 已提交
6997
      }
fxy060608's avatar
fxy060608 已提交
6998 6999 7000 7001 7002
      return val;
    },
    _setScaleMinOrMax: function() {
      if (!this.scale) {
        return false;
fxy060608's avatar
fxy060608 已提交
7003
      }
fxy060608's avatar
fxy060608 已提交
7004 7005 7006 7007 7008 7009
      this._updateScale(this._scale, true);
      this._updateOldScale(this._scale);
    },
    _setScaleValue: function(scale) {
      if (!this.scale) {
        return false;
fxy060608's avatar
fxy060608 已提交
7010
      }
fxy060608's avatar
fxy060608 已提交
7011 7012 7013 7014
      scale = this._adjustScale(scale);
      this._updateScale(scale, true);
      this._updateOldScale(scale);
      return scale;
fxy060608's avatar
fxy060608 已提交
7015
    },
fxy060608's avatar
fxy060608 已提交
7016 7017 7018 7019 7020
    __handleTouchStart: function() {
      if (!this._isScaling) {
        if (!this.disabled) {
          if (this._FA) {
            this._FA.cancel();
fxy060608's avatar
fxy060608 已提交
7021
          }
fxy060608's avatar
fxy060608 已提交
7022 7023
          if (this._SFA) {
            this._SFA.cancel();
fxy060608's avatar
fxy060608 已提交
7024
          }
fxy060608's avatar
fxy060608 已提交
7025 7026 7027 7028 7029
          this.__touchInfo.historyX = [0, 0];
          this.__touchInfo.historyY = [0, 0];
          this.__touchInfo.historyT = [0, 0];
          if (this.xMove) {
            this.__baseX = this._translateX;
fxy060608's avatar
fxy060608 已提交
7030
          }
fxy060608's avatar
fxy060608 已提交
7031 7032
          if (this.yMove) {
            this.__baseY = this._translateY;
fxy060608's avatar
fxy060608 已提交
7033
          }
fxy060608's avatar
fxy060608 已提交
7034 7035 7036 7037
          this.$el.style.willChange = "transform";
          this._checkCanMove = null;
          this._firstMoveDirection = null;
          this._isTouching = true;
fxy060608's avatar
fxy060608 已提交
7038
        }
fxy060608's avatar
fxy060608 已提交
7039
      }
fxy060608's avatar
fxy060608 已提交
7040
    },
fxy060608's avatar
fxy060608 已提交
7041 7042 7043 7044 7045 7046 7047
    __handleTouchMove: function(event2) {
      var self = this;
      if (!this._isScaling && !this.disabled && this._isTouching) {
        let x = this._translateX;
        let y = this._translateY;
        if (this._firstMoveDirection === null) {
          this._firstMoveDirection = Math.abs(event2.detail.dx / event2.detail.dy) > 1 ? "htouchmove" : "vtouchmove";
fxy060608's avatar
fxy060608 已提交
7048
        }
fxy060608's avatar
fxy060608 已提交
7049 7050 7051 7052 7053 7054
        if (this.xMove) {
          x = event2.detail.dx + this.__baseX;
          this.__touchInfo.historyX.shift();
          this.__touchInfo.historyX.push(x);
          if (!this.yMove && this._checkCanMove === null) {
            this._checkCanMove = Math.abs(event2.detail.dx / event2.detail.dy) < 1;
fxy060608's avatar
fxy060608 已提交
7055 7056
          }
        }
fxy060608's avatar
fxy060608 已提交
7057 7058 7059 7060 7061 7062 7063
        if (this.yMove) {
          y = event2.detail.dy + this.__baseY;
          this.__touchInfo.historyY.shift();
          this.__touchInfo.historyY.push(y);
          if (!this.xMove && this._checkCanMove === null) {
            this._checkCanMove = Math.abs(event2.detail.dy / event2.detail.dx) < 1;
          }
fxy060608's avatar
fxy060608 已提交
7064
        }
fxy060608's avatar
fxy060608 已提交
7065 7066 7067 7068 7069 7070 7071 7072 7073
        this.__touchInfo.historyT.shift();
        this.__touchInfo.historyT.push(event2.detail.timeStamp);
        if (!this._checkCanMove) {
          event2.preventDefault();
          let source = "touch";
          if (x < this.minX) {
            if (this.outOfBounds) {
              source = "touch-out-of-bounds";
              x = this.minX - this._declineX.x(this.minX - x);
fxy060608's avatar
fxy060608 已提交
7074
            } else {
fxy060608's avatar
fxy060608 已提交
7075 7076 7077 7078 7079 7080 7081 7082
              x = this.minX;
            }
          } else if (x > this.maxX) {
            if (this.outOfBounds) {
              source = "touch-out-of-bounds";
              x = this.maxX + this._declineX.x(x - this.maxX);
            } else {
              x = this.maxX;
fxy060608's avatar
fxy060608 已提交
7083 7084
            }
          }
fxy060608's avatar
fxy060608 已提交
7085 7086 7087 7088
          if (y < this.minY) {
            if (this.outOfBounds) {
              source = "touch-out-of-bounds";
              y = this.minY - this._declineY.x(this.minY - y);
fxy060608's avatar
fxy060608 已提交
7089
            } else {
fxy060608's avatar
fxy060608 已提交
7090 7091 7092 7093 7094 7095 7096 7097 7098 7099
              y = this.minY;
            }
          } else {
            if (y > this.maxY) {
              if (this.outOfBounds) {
                source = "touch-out-of-bounds";
                y = this.maxY + this._declineY.x(y - this.maxY);
              } else {
                y = this.maxY;
              }
fxy060608's avatar
fxy060608 已提交
7100 7101
            }
          }
fxy060608's avatar
fxy060608 已提交
7102 7103 7104
          _requestAnimationFrame(function() {
            self._setTransform(x, y, self._scale, source);
          });
fxy060608's avatar
fxy060608 已提交
7105 7106 7107
        }
      }
    },
fxy060608's avatar
fxy060608 已提交
7108 7109 7110 7111 7112 7113 7114 7115 7116 7117 7118 7119 7120 7121 7122 7123 7124 7125 7126 7127 7128 7129 7130 7131 7132 7133 7134 7135 7136 7137 7138 7139 7140 7141 7142 7143 7144 7145 7146 7147 7148 7149
    __handleTouchEnd: function() {
      var self = this;
      if (!this._isScaling && !this.disabled && this._isTouching) {
        this.$el.style.willChange = "auto";
        this._isTouching = false;
        if (!this._checkCanMove && !this._revise("out-of-bounds") && this.inertia) {
          const xv = 1e3 * (this.__touchInfo.historyX[1] - this.__touchInfo.historyX[0]) / (this.__touchInfo.historyT[1] - this.__touchInfo.historyT[0]);
          const yv = 1e3 * (this.__touchInfo.historyY[1] - this.__touchInfo.historyY[0]) / (this.__touchInfo.historyT[1] - this.__touchInfo.historyT[0]);
          this._friction.setV(xv, yv);
          this._friction.setS(this._translateX, this._translateY);
          const x0 = this._friction.delta().x;
          const y0 = this._friction.delta().y;
          let x = x0 + this._translateX;
          let y = y0 + this._translateY;
          if (x < this.minX) {
            x = this.minX;
            y = this._translateY + (this.minX - this._translateX) * y0 / x0;
          } else {
            if (x > this.maxX) {
              x = this.maxX;
              y = this._translateY + (this.maxX - this._translateX) * y0 / x0;
            }
          }
          if (y < this.minY) {
            y = this.minY;
            x = this._translateX + (this.minY - this._translateY) * x0 / y0;
          } else {
            if (y > this.maxY) {
              y = this.maxY;
              x = this._translateX + (this.maxY - this._translateY) * x0 / y0;
            }
          }
          this._friction.setEnd(x, y);
          this._FA = g(this._friction, function() {
            var t2 = self._friction.s();
            var x2 = t2.x;
            var y2 = t2.y;
            self._setTransform(x2, y2, self._scale, "friction");
          }, function() {
            self._FA.cancel();
          });
        }
fxy060608's avatar
fxy060608 已提交
7150 7151
      }
    },
fxy060608's avatar
fxy060608 已提交
7152 7153 7154 7155
    _onTrack: function(event2) {
      switch (event2.detail.state) {
        case "start":
          this.__handleTouchStart();
fxy060608's avatar
fxy060608 已提交
7156
          break;
fxy060608's avatar
fxy060608 已提交
7157 7158
        case "move":
          this.__handleTouchMove(event2);
fxy060608's avatar
fxy060608 已提交
7159
          break;
fxy060608's avatar
fxy060608 已提交
7160 7161
        case "end":
          this.__handleTouchEnd();
fxy060608's avatar
fxy060608 已提交
7162 7163
      }
    },
fxy060608's avatar
fxy060608 已提交
7164 7165 7166 7167 7168 7169 7170 7171 7172 7173 7174 7175 7176 7177 7178 7179 7180 7181 7182 7183
    _getLimitXY: function(x, y) {
      var outOfBounds = false;
      if (x > this.maxX) {
        x = this.maxX;
        outOfBounds = true;
      } else {
        if (x < this.minX) {
          x = this.minX;
          outOfBounds = true;
        }
      }
      if (y > this.maxY) {
        y = this.maxY;
        outOfBounds = true;
      } else {
        if (y < this.minY) {
          y = this.minY;
          outOfBounds = true;
        }
      }
fxy060608's avatar
fxy060608 已提交
7184
      return {
fxy060608's avatar
fxy060608 已提交
7185 7186 7187
        x,
        y,
        outOfBounds
fxy060608's avatar
fxy060608 已提交
7188 7189
      };
    },
fxy060608's avatar
fxy060608 已提交
7190 7191 7192 7193 7194 7195 7196 7197 7198 7199 7200 7201 7202 7203 7204 7205 7206 7207 7208 7209 7210
    setParent: function() {
      if (!this.$parent._isMounted) {
        return;
      }
      if (this._FA) {
        this._FA.cancel();
      }
      if (this._SFA) {
        this._SFA.cancel();
      }
      var scale = this.scale ? this.scaleValueSync : 1;
      this._updateOffset();
      this._updateWH(scale);
      this._updateBoundary();
      this._translateX = this.xSync + this._scaleOffset.x;
      this._translateY = this.ySync + this._scaleOffset.y;
      var limitXY = this._getLimitXY(this._translateX, this._translateY);
      var x = limitXY.x;
      var y = limitXY.y;
      this._setTransform(x, y, scale, "", true);
      this._updateOldScale(scale);
fxy060608's avatar
fxy060608 已提交
7211
    },
fxy060608's avatar
fxy060608 已提交
7212 7213 7214
    _updateOffset: function() {
      this._offset.x = p(this.$el, this.$parent.$el);
      this._offset.y = f(this.$el, this.$parent.$el);
fxy060608's avatar
fxy060608 已提交
7215
    },
fxy060608's avatar
fxy060608 已提交
7216 7217 7218 7219 7220 7221 7222 7223 7224 7225
    _updateWH: function(scale) {
      scale = scale || this._scale;
      scale = this._adjustScale(scale);
      var rect = this.$el.getBoundingClientRect();
      this.height = rect.height / this._scale;
      this.width = rect.width / this._scale;
      var height = this.height * scale;
      var width = this.width * scale;
      this._scaleOffset.x = (width - this.width) / 2;
      this._scaleOffset.y = (height - this.height) / 2;
fxy060608's avatar
fxy060608 已提交
7226
    },
fxy060608's avatar
fxy060608 已提交
7227 7228 7229 7230 7231 7232 7233 7234 7235
    _updateBoundary: function() {
      var x = 0 - this._offset.x + this._scaleOffset.x;
      var width = this.$parent.width - this.width - this._offset.x - this._scaleOffset.x;
      this.minX = Math.min(x, width);
      this.maxX = Math.max(x, width);
      var y = 0 - this._offset.y + this._scaleOffset.y;
      var height = this.$parent.height - this.height - this._offset.y - this._scaleOffset.y;
      this.minY = Math.min(y, height);
      this.maxY = Math.max(y, height);
fxy060608's avatar
fxy060608 已提交
7236
    },
fxy060608's avatar
fxy060608 已提交
7237 7238
    _beginScale: function() {
      this._isScaling = true;
fxy060608's avatar
fxy060608 已提交
7239
    },
fxy060608's avatar
fxy060608 已提交
7240 7241 7242
    _endScale: function() {
      this._isScaling = false;
      this._updateOldScale(this._scale);
fxy060608's avatar
fxy060608 已提交
7243
    },
fxy060608's avatar
fxy060608 已提交
7244 7245 7246 7247 7248 7249 7250
    _setScale: function(scale) {
      if (this.scale) {
        scale = this._adjustScale(scale);
        scale = this._oldScale * scale;
        this._beginScale();
        this._updateScale(scale);
      }
fxy060608's avatar
fxy060608 已提交
7251
    },
fxy060608's avatar
fxy060608 已提交
7252 7253 7254 7255 7256 7257 7258 7259 7260 7261 7262 7263 7264 7265 7266 7267 7268
    _updateScale: function(scale, animat) {
      var self = this;
      if (this.scale) {
        scale = this._adjustScale(scale);
        this._updateWH(scale);
        this._updateBoundary();
        const limitXY = this._getLimitXY(this._translateX, this._translateY);
        const x = limitXY.x;
        const y = limitXY.y;
        if (animat) {
          this._animationTo(x, y, scale, "", true, true);
        } else {
          _requestAnimationFrame(function() {
            self._setTransform(x, y, scale, "", true, true);
          });
        }
      }
fxy060608's avatar
fxy060608 已提交
7269
    },
fxy060608's avatar
fxy060608 已提交
7270 7271
    _updateOldScale: function(scale) {
      this._oldScale = scale;
fxy060608's avatar
fxy060608 已提交
7272
    },
fxy060608's avatar
fxy060608 已提交
7273 7274 7275 7276
    _adjustScale: function(scale) {
      scale = Math.max(0.5, this.scaleMinNumber, scale);
      scale = Math.min(10, this.scaleMaxNumber, scale);
      return scale;
fxy060608's avatar
fxy060608 已提交
7277
    },
fxy060608's avatar
fxy060608 已提交
7278 7279 7280 7281 7282 7283 7284 7285 7286 7287 7288 7289 7290 7291 7292 7293 7294 7295 7296 7297 7298 7299 7300 7301 7302 7303 7304 7305 7306 7307 7308 7309 7310 7311 7312 7313 7314 7315 7316 7317
    _animationTo: function(x, y, scale, source, r, o2) {
      var self = this;
      if (this._FA) {
        this._FA.cancel();
      }
      if (this._SFA) {
        this._SFA.cancel();
      }
      if (!this.xMove) {
        x = this._translateX;
      }
      if (!this.yMove) {
        y = this._translateY;
      }
      if (!this.scale) {
        scale = this._scale;
      }
      var limitXY = this._getLimitXY(x, y);
      x = limitXY.x;
      y = limitXY.y;
      if (!this.animation) {
        this._setTransform(x, y, scale, source, r, o2);
        return;
      }
      this._STD._springX._solution = null;
      this._STD._springY._solution = null;
      this._STD._springScale._solution = null;
      this._STD._springX._endPosition = this._translateX;
      this._STD._springY._endPosition = this._translateY;
      this._STD._springScale._endPosition = this._scale;
      this._STD.setEnd(x, y, scale, 1);
      this._SFA = g(this._STD, function() {
        var data = self._STD.x();
        var x2 = data.x;
        var y2 = data.y;
        var scale2 = data.scale;
        self._setTransform(x2, y2, scale2, source, r, o2);
      }, function() {
        self._SFA.cancel();
      });
fxy060608's avatar
fxy060608 已提交
7318
    },
fxy060608's avatar
fxy060608 已提交
7319 7320 7321 7322 7323 7324 7325 7326 7327
    _revise: function(source) {
      var limitXY = this._getLimitXY(this._translateX, this._translateY);
      var x = limitXY.x;
      var y = limitXY.y;
      var outOfBounds = limitXY.outOfBounds;
      if (outOfBounds) {
        this._animationTo(x, y, this._scale, source);
      }
      return outOfBounds;
fxy060608's avatar
fxy060608 已提交
7328
    },
fxy060608's avatar
fxy060608 已提交
7329 7330 7331
    _setTransform: function(x, y, scale, source = "", r, o2) {
      if (!(x !== null && x.toString() !== "NaN" && typeof x === "number")) {
        x = this._translateX || 0;
fxy060608's avatar
fxy060608 已提交
7332
      }
fxy060608's avatar
fxy060608 已提交
7333 7334
      if (!(y !== null && y.toString() !== "NaN" && typeof y === "number")) {
        y = this._translateY || 0;
fxy060608's avatar
fxy060608 已提交
7335
      }
fxy060608's avatar
fxy060608 已提交
7336 7337 7338 7339 7340 7341 7342 7343 7344 7345 7346
      x = Number(x.toFixed(1));
      y = Number(y.toFixed(1));
      scale = Number(scale.toFixed(1));
      if (!(this._translateX === x && this._translateY === y)) {
        if (!r) {
          this.$trigger("change", {}, {
            x: v(x, this._scaleOffset.x),
            y: v(y, this._scaleOffset.y),
            source
          });
        }
fxy060608's avatar
fxy060608 已提交
7347
      }
fxy060608's avatar
fxy060608 已提交
7348 7349 7350 7351 7352 7353 7354 7355 7356 7357 7358 7359 7360 7361 7362 7363 7364 7365
      if (!this.scale) {
        scale = this._scale;
      }
      scale = this._adjustScale(scale);
      scale = +scale.toFixed(3);
      if (o2 && scale !== this._scale) {
        this.$trigger("scale", {}, {
          x,
          y,
          scale
        });
      }
      var transform = "translateX(" + x + "px) translateY(" + y + "px) translateZ(0px) scale(" + scale + ")";
      this.$el.style.transform = transform;
      this.$el.style.webkitTransform = transform;
      this._translateX = x;
      this._translateY = y;
      this._scale = scale;
fxy060608's avatar
fxy060608 已提交
7366 7367 7368
    }
  }
};
7369
function _sfc_render$e(_ctx, _cache, $props, $setup, $data, $options) {
fxy060608's avatar
fxy060608 已提交
7370 7371 7372
  const _component_v_uni_resize_sensor = resolveComponent("v-uni-resize-sensor");
  return openBlock(), createBlock("uni-movable-view", _ctx.$attrs, [
    createVNode(_component_v_uni_resize_sensor, {onResize: $options.setParent}, null, 8, ["onResize"]),
fxy060608's avatar
fxy060608 已提交
7373 7374 7375
    renderSlot(_ctx.$slots, "default")
  ], 16);
}
7376
_sfc_main$e.render = _sfc_render$e;
fxy060608's avatar
fxy060608 已提交
7377 7378 7379 7380 7381 7382 7383
const OPEN_TYPES = [
  "navigate",
  "redirect",
  "switchTab",
  "reLaunch",
  "navigateBack"
];
7384
const _sfc_main$d = {
fxy060608's avatar
fxy060608 已提交
7385 7386
  name: "Navigator",
  mixins: [hover],
fxy060608's avatar
fxy060608 已提交
7387
  props: {
fxy060608's avatar
fxy060608 已提交
7388
    hoverClass: {
fxy060608's avatar
fxy060608 已提交
7389
      type: String,
fxy060608's avatar
fxy060608 已提交
7390 7391 7392
      default: "navigator-hover"
    },
    url: {
fxy060608's avatar
fxy060608 已提交
7393 7394
      type: String,
      default: ""
fxy060608's avatar
fxy060608 已提交
7395
    },
fxy060608's avatar
fxy060608 已提交
7396
    openType: {
fxy060608's avatar
fxy060608 已提交
7397
      type: String,
fxy060608's avatar
fxy060608 已提交
7398 7399 7400 7401
      default: "navigate",
      validator(value) {
        return ~OPEN_TYPES.indexOf(value);
      }
fxy060608's avatar
fxy060608 已提交
7402
    },
fxy060608's avatar
fxy060608 已提交
7403 7404 7405
    delta: {
      type: Number,
      default: 1
fxy060608's avatar
fxy060608 已提交
7406
    },
fxy060608's avatar
fxy060608 已提交
7407 7408 7409
    hoverStartTime: {
      type: [Number, String],
      default: 20
fxy060608's avatar
fxy060608 已提交
7410
    },
fxy060608's avatar
fxy060608 已提交
7411 7412 7413 7414 7415
    hoverStayTime: {
      type: [Number, String],
      default: 600
    },
    exists: {
fxy060608's avatar
fxy060608 已提交
7416
      type: String,
fxy060608's avatar
fxy060608 已提交
7417
      default: ""
fxy060608's avatar
fxy060608 已提交
7418 7419 7420 7421
    }
  },
  methods: {
    _onClick($event) {
fxy060608's avatar
fxy060608 已提交
7422 7423
      if (this.openType !== "navigateBack" && !this.url) {
        console.error("<navigator/> should have url attribute when using navigateTo, redirectTo, reLaunch or switchTab");
fxy060608's avatar
fxy060608 已提交
7424
        return;
fxy060608's avatar
fxy060608 已提交
7425
      }
fxy060608's avatar
fxy060608 已提交
7426 7427 7428 7429 7430 7431 7432 7433 7434 7435 7436 7437 7438 7439 7440 7441 7442 7443 7444 7445 7446 7447 7448 7449 7450 7451 7452 7453 7454
      switch (this.openType) {
        case "navigate":
          uni.navigateTo({
            url: this.url
          });
          break;
        case "redirect":
          uni.redirectTo({
            url: this.url,
            exists: this.exists
          });
          break;
        case "switchTab":
          uni.switchTab({
            url: this.url
          });
          break;
        case "reLaunch":
          uni.reLaunch({
            url: this.url
          });
          break;
        case "navigateBack":
          uni.navigateBack({
            delta: this.delta
          });
          break;
      }
    }
fxy060608's avatar
fxy060608 已提交
7455
  }
fxy060608's avatar
fxy060608 已提交
7456
};
7457
function _sfc_render$d(_ctx, _cache, $props, $setup, $data, $options) {
fxy060608's avatar
fxy060608 已提交
7458 7459 7460 7461 7462 7463 7464 7465 7466 7467 7468 7469 7470 7471 7472
  return $props.hoverClass && $props.hoverClass !== "none" ? (openBlock(), createBlock("uni-navigator", {
    key: 0,
    class: [_ctx.hovering ? $props.hoverClass : ""],
    onTouchstart: _cache[1] || (_cache[1] = (...args) => _ctx._hoverTouchStart && _ctx._hoverTouchStart(...args)),
    onTouchend: _cache[2] || (_cache[2] = (...args) => _ctx._hoverTouchEnd && _ctx._hoverTouchEnd(...args)),
    onTouchcancel: _cache[3] || (_cache[3] = (...args) => _ctx._hoverTouchCancel && _ctx._hoverTouchCancel(...args)),
    onClick: _cache[4] || (_cache[4] = (...args) => $options._onClick && $options._onClick(...args))
  }, [
    renderSlot(_ctx.$slots, "default")
  ], 34)) : (openBlock(), createBlock("uni-navigator", {
    key: 1,
    onClick: _cache[5] || (_cache[5] = (...args) => $options._onClick && $options._onClick(...args))
  }, [
    renderSlot(_ctx.$slots, "default")
  ]));
fxy060608's avatar
fxy060608 已提交
7473
}
7474
_sfc_main$d.render = _sfc_render$d;
fxy060608's avatar
fxy060608 已提交
7475 7476 7477 7478 7479
const VALUES = {
  activeColor: "#007AFF",
  backgroundColor: "#EBEBEB",
  activeMode: "backwards"
};
7480
const _sfc_main$c = {
fxy060608's avatar
fxy060608 已提交
7481
  name: "Progress",
fxy060608's avatar
fxy060608 已提交
7482
  props: {
fxy060608's avatar
fxy060608 已提交
7483 7484 7485 7486 7487 7488
    percent: {
      type: [Number, String],
      default: 0,
      validator(value) {
        return !isNaN(parseFloat(value, 10));
      }
fxy060608's avatar
fxy060608 已提交
7489
    },
fxy060608's avatar
fxy060608 已提交
7490
    showInfo: {
fxy060608's avatar
fxy060608 已提交
7491 7492 7493
      type: [Boolean, String],
      default: false
    },
fxy060608's avatar
fxy060608 已提交
7494
    strokeWidth: {
fxy060608's avatar
fxy060608 已提交
7495
      type: [Number, String],
fxy060608's avatar
fxy060608 已提交
7496 7497 7498 7499
      default: 6,
      validator(value) {
        return !isNaN(parseFloat(value, 10));
      }
fxy060608's avatar
fxy060608 已提交
7500
    },
fxy060608's avatar
fxy060608 已提交
7501
    color: {
fxy060608's avatar
fxy060608 已提交
7502
      type: String,
fxy060608's avatar
fxy060608 已提交
7503
      default: VALUES.activeColor
fxy060608's avatar
fxy060608 已提交
7504
    },
fxy060608's avatar
fxy060608 已提交
7505
    activeColor: {
fxy060608's avatar
fxy060608 已提交
7506
      type: String,
fxy060608's avatar
fxy060608 已提交
7507
      default: VALUES.activeColor
fxy060608's avatar
fxy060608 已提交
7508
    },
fxy060608's avatar
fxy060608 已提交
7509
    backgroundColor: {
fxy060608's avatar
fxy060608 已提交
7510
      type: String,
fxy060608's avatar
fxy060608 已提交
7511
      default: VALUES.backgroundColor
fxy060608's avatar
fxy060608 已提交
7512
    },
fxy060608's avatar
fxy060608 已提交
7513
    active: {
fxy060608's avatar
fxy060608 已提交
7514 7515 7516
      type: [Boolean, String],
      default: false
    },
fxy060608's avatar
fxy060608 已提交
7517 7518 7519
    activeMode: {
      type: String,
      default: VALUES.activeMode
fxy060608's avatar
fxy060608 已提交
7520 7521
    }
  },
fxy060608's avatar
fxy060608 已提交
7522 7523
  data() {
    return {
fxy060608's avatar
fxy060608 已提交
7524 7525 7526
      currentPercent: 0,
      strokeTimer: 0,
      lastPercent: 0
fxy060608's avatar
fxy060608 已提交
7527 7528
    };
  },
fxy060608's avatar
fxy060608 已提交
7529
  computed: {
fxy060608's avatar
fxy060608 已提交
7530 7531
    outerBarStyle() {
      return `background-color: ${this.backgroundColor}; height: ${this.strokeWidth}px;`;
fxy060608's avatar
fxy060608 已提交
7532
    },
fxy060608's avatar
fxy060608 已提交
7533 7534 7535 7536 7537 7538 7539 7540
    innerBarStyle() {
      let backgroundColor = "";
      if (this.color !== VALUES.activeColor && this.activeColor === VALUES.activeColor) {
        backgroundColor = this.color;
      } else {
        backgroundColor = this.activeColor;
      }
      return `width: ${this.currentPercent}%;background-color: ${backgroundColor}`;
fxy060608's avatar
fxy060608 已提交
7541
    },
fxy060608's avatar
fxy060608 已提交
7542 7543 7544 7545 7546
    realPercent() {
      let realValue = parseFloat(this.percent, 10);
      realValue < 0 && (realValue = 0);
      realValue > 100 && (realValue = 100);
      return realValue;
fxy060608's avatar
fxy060608 已提交
7547
    }
fxy060608's avatar
fxy060608 已提交
7548
  },
fxy060608's avatar
fxy060608 已提交
7549
  watch: {
fxy060608's avatar
fxy060608 已提交
7550 7551 7552 7553 7554 7555 7556 7557 7558 7559 7560 7561 7562 7563 7564 7565 7566 7567 7568 7569 7570 7571 7572 7573 7574 7575 7576
    realPercent(newValue, oldValue) {
      this.strokeTimer && clearInterval(this.strokeTimer);
      this.lastPercent = oldValue || 0;
      this._activeAnimation();
    }
  },
  created() {
    this._activeAnimation();
  },
  methods: {
    _activeAnimation() {
      if (this.active) {
        this.currentPercent = this.activeMode === VALUES.activeMode ? 0 : this.lastPercent;
        this.strokeTimer = setInterval(() => {
          if (this.currentPercent + 1 > this.realPercent) {
            this.currentPercent = this.realPercent;
            this.strokeTimer && clearInterval(this.strokeTimer);
          } else {
            this.currentPercent += 1;
          }
        }, 30);
      } else {
        this.currentPercent = this.realPercent;
      }
    }
  }
};
7577
const _hoisted_1$9 = {
fxy060608's avatar
fxy060608 已提交
7578 7579 7580
  key: 0,
  class: "uni-progress-info"
};
7581
function _sfc_render$c(_ctx, _cache, $props, $setup, $data, $options) {
fxy060608's avatar
fxy060608 已提交
7582 7583 7584 7585 7586 7587 7588 7589 7590 7591
  return openBlock(), createBlock("uni-progress", mergeProps({class: "uni-progress"}, _ctx.$attrs), [
    createVNode("div", {
      style: $options.outerBarStyle,
      class: "uni-progress-bar"
    }, [
      createVNode("div", {
        style: $options.innerBarStyle,
        class: "uni-progress-inner-bar"
      }, null, 4)
    ], 4),
7592
    $props.showInfo ? (openBlock(), createBlock("p", _hoisted_1$9, toDisplayString($data.currentPercent) + "% ", 1)) : createCommentVNode("", true)
fxy060608's avatar
fxy060608 已提交
7593 7594
  ], 16);
}
7595 7596
_sfc_main$c.render = _sfc_render$c;
const _sfc_main$b = {
fxy060608's avatar
fxy060608 已提交
7597 7598 7599 7600 7601 7602
  name: "Radio",
  mixins: [emitter, listeners],
  props: {
    checked: {
      type: [Boolean, String],
      default: false
fxy060608's avatar
fxy060608 已提交
7603
    },
fxy060608's avatar
fxy060608 已提交
7604 7605 7606
    id: {
      type: String,
      default: ""
fxy060608's avatar
fxy060608 已提交
7607
    },
fxy060608's avatar
fxy060608 已提交
7608 7609 7610 7611 7612 7613 7614 7615 7616 7617 7618 7619 7620 7621 7622 7623 7624 7625 7626 7627 7628 7629
    disabled: {
      type: [Boolean, String],
      default: false
    },
    color: {
      type: String,
      default: "#007AFF"
    },
    value: {
      type: String,
      default: ""
    }
  },
  data() {
    return {
      radioChecked: this.checked,
      radioValue: this.value
    };
  },
  computed: {
    checkedStyle() {
      return `background-color: ${this.color};border-color: ${this.color};`;
fxy060608's avatar
fxy060608 已提交
7630 7631
    }
  },
fxy060608's avatar
fxy060608 已提交
7632 7633 7634 7635 7636 7637 7638 7639 7640 7641 7642 7643
  watch: {
    checked(val) {
      this.radioChecked = val;
    },
    value(val) {
      this.radioValue = val;
    }
  },
  listeners: {
    "label-click": "_onClick",
    "@label-click": "_onClick"
  },
fxy060608's avatar
fxy060608 已提交
7644
  created() {
fxy060608's avatar
fxy060608 已提交
7645 7646 7647 7648
    this.$dispatch("RadioGroup", "uni-radio-group-update", {
      type: "add",
      vm: this
    });
fxy060608's avatar
fxy060608 已提交
7649 7650 7651 7652 7653
    this.$dispatch("Form", "uni-form-group-update", {
      type: "add",
      vm: this
    });
  },
fxy060608's avatar
fxy060608 已提交
7654 7655 7656 7657
  beforeDestroy() {
    this.$dispatch("RadioGroup", "uni-radio-group-update", {
      type: "remove",
      vm: this
fxy060608's avatar
fxy060608 已提交
7658
    });
fxy060608's avatar
fxy060608 已提交
7659 7660 7661 7662 7663 7664 7665 7666 7667
    this.$dispatch("Form", "uni-form-group-update", {
      type: "remove",
      vm: this
    });
  },
  methods: {
    _onClick($event) {
      if (this.disabled || this.radioChecked) {
        return;
fxy060608's avatar
fxy060608 已提交
7668
      }
fxy060608's avatar
fxy060608 已提交
7669 7670 7671 7672 7673
      this.radioChecked = true;
      this.$dispatch("RadioGroup", "uni-radio-change", $event, this);
    },
    _resetFormData() {
      this.radioChecked = this.min;
fxy060608's avatar
fxy060608 已提交
7674
    }
fxy060608's avatar
fxy060608 已提交
7675 7676
  }
};
7677 7678
const _hoisted_1$8 = {class: "uni-radio-wrapper"};
function _sfc_render$b(_ctx, _cache, $props, $setup, $data, $options) {
fxy060608's avatar
fxy060608 已提交
7679 7680 7681
  return openBlock(), createBlock("uni-radio", mergeProps({disabled: $props.disabled}, _ctx.$attrs, {
    onClick: _cache[1] || (_cache[1] = (...args) => $options._onClick && $options._onClick(...args))
  }), [
7682
    createVNode("div", _hoisted_1$8, [
fxy060608's avatar
fxy060608 已提交
7683 7684 7685 7686 7687 7688 7689 7690
      createVNode("div", {
        class: [$data.radioChecked ? "uni-radio-input-checked" : "", "uni-radio-input"],
        style: $data.radioChecked ? $options.checkedStyle : ""
      }, null, 6),
      renderSlot(_ctx.$slots, "default")
    ])
  ], 16, ["disabled"]);
}
7691 7692
_sfc_main$b.render = _sfc_render$b;
const _sfc_main$a = {
fxy060608's avatar
fxy060608 已提交
7693 7694 7695 7696 7697 7698 7699 7700 7701 7702 7703 7704 7705 7706 7707 7708 7709 7710 7711 7712 7713 7714 7715 7716 7717
  name: "RadioGroup",
  mixins: [emitter, listeners],
  props: {
    name: {
      type: String,
      default: ""
    }
  },
  data() {
    return {
      radioList: []
    };
  },
  listeners: {
    "@radio-change": "_changeHandler",
    "@radio-group-update": "_radioGroupUpdateHandler"
  },
  mounted() {
    this._resetRadioGroupValue(this.radioList.length - 1);
  },
  created() {
    this.$dispatch("Form", "uni-form-group-update", {
      type: "add",
      vm: this
    });
fxy060608's avatar
fxy060608 已提交
7718 7719 7720 7721 7722 7723 7724 7725
  },
  beforeDestroy() {
    this.$dispatch("Form", "uni-form-group-update", {
      type: "remove",
      vm: this
    });
  },
  methods: {
fxy060608's avatar
fxy060608 已提交
7726 7727 7728 7729 7730
    _changeHandler($event, vm) {
      const index2 = this.radioList.indexOf(vm);
      this._resetRadioGroupValue(index2, true);
      this.$trigger("change", $event, {
        value: vm.radioValue
fxy060608's avatar
fxy060608 已提交
7731
      });
fxy060608's avatar
fxy060608 已提交
7732
    },
fxy060608's avatar
fxy060608 已提交
7733 7734 7735 7736 7737 7738
    _radioGroupUpdateHandler($event) {
      if ($event.type === "add") {
        this.radioList.push($event.vm);
      } else {
        const index2 = this.radioList.indexOf($event.vm);
        this.radioList.splice(index2, 1);
fxy060608's avatar
fxy060608 已提交
7739 7740
      }
    },
fxy060608's avatar
fxy060608 已提交
7741 7742 7743 7744 7745 7746 7747 7748 7749 7750 7751 7752 7753 7754 7755 7756 7757
    _resetRadioGroupValue(key, change) {
      this.radioList.forEach((value, index2) => {
        if (index2 === key) {
          return;
        }
        if (change) {
          this.radioList[index2].radioChecked = false;
        } else {
          this.radioList.forEach((v2, i2) => {
            if (index2 >= i2) {
              return;
            }
            if (this.radioList[i2].radioChecked) {
              this.radioList[index2].radioChecked = false;
            }
          });
        }
fxy060608's avatar
fxy060608 已提交
7758
      });
fxy060608's avatar
fxy060608 已提交
7759
    },
fxy060608's avatar
fxy060608 已提交
7760
    _getFormData() {
fxy060608's avatar
fxy060608 已提交
7761 7762 7763 7764 7765 7766 7767 7768 7769 7770 7771 7772
      const data = {};
      if (this.name !== "") {
        let value = "";
        this.radioList.forEach((vm) => {
          if (vm.radioChecked) {
            value = vm.value;
          }
        });
        data.value = value;
        data.key = this.name;
      }
      return data;
fxy060608's avatar
fxy060608 已提交
7773 7774 7775
    }
  }
};
7776
function _sfc_render$a(_ctx, _cache, $props, $setup, $data, $options) {
fxy060608's avatar
fxy060608 已提交
7777
  return openBlock(), createBlock("uni-radio-group", _ctx.$attrs, [
fxy060608's avatar
fxy060608 已提交
7778
    renderSlot(_ctx.$slots, "default")
fxy060608's avatar
fxy060608 已提交
7779
  ], 16);
fxy060608's avatar
fxy060608 已提交
7780
}
7781
_sfc_main$a.render = _sfc_render$a;
fxy060608's avatar
fxy060608 已提交
7782 7783
function removeDOCTYPE(html) {
  return html.replace(/<\?xml.*\?>\n/, "").replace(/<!doctype.*>\n/, "").replace(/<!DOCTYPE.*>\n/, "");
fxy060608's avatar
fxy060608 已提交
7784
}
fxy060608's avatar
fxy060608 已提交
7785 7786 7787 7788 7789 7790
function parseAttrs(attrs2) {
  return attrs2.reduce(function(pre, attr2) {
    let value = attr2.value;
    const name = attr2.name;
    if (value.match(/ /) && name !== "style") {
      value = value.split(" ");
fxy060608's avatar
fxy060608 已提交
7791
    }
fxy060608's avatar
fxy060608 已提交
7792 7793 7794 7795 7796 7797 7798 7799
    if (pre[name]) {
      if (Array.isArray(pre[name])) {
        pre[name].push(value);
      } else {
        pre[name] = [pre[name], value];
      }
    } else {
      pre[name] = value;
fxy060608's avatar
fxy060608 已提交
7800
    }
fxy060608's avatar
fxy060608 已提交
7801 7802
    return pre;
  }, {});
fxy060608's avatar
fxy060608 已提交
7803
}
fxy060608's avatar
fxy060608 已提交
7804 7805 7806 7807 7808 7809 7810 7811 7812 7813 7814 7815 7816 7817
function parseHtml(html) {
  html = removeDOCTYPE(html);
  const stacks = [];
  const results = {
    node: "root",
    children: []
  };
  HTMLParser(html, {
    start: function(tag, attrs2, unary) {
      const node = {
        name: tag
      };
      if (attrs2.length !== 0) {
        node.attrs = parseAttrs(attrs2);
fxy060608's avatar
fxy060608 已提交
7818
      }
fxy060608's avatar
fxy060608 已提交
7819 7820 7821 7822 7823 7824 7825 7826 7827 7828 7829 7830 7831 7832 7833 7834 7835 7836 7837 7838 7839 7840 7841 7842 7843 7844 7845 7846 7847 7848 7849 7850 7851 7852 7853 7854 7855 7856 7857 7858 7859 7860 7861 7862 7863 7864 7865
      if (unary) {
        const parent = stacks[0] || results;
        if (!parent.children) {
          parent.children = [];
        }
        parent.children.push(node);
      } else {
        stacks.unshift(node);
      }
    },
    end: function(tag) {
      const node = stacks.shift();
      if (node.name !== tag)
        console.error("invalid state: mismatch end tag");
      if (stacks.length === 0) {
        results.children.push(node);
      } else {
        const parent = stacks[0];
        if (!parent.children) {
          parent.children = [];
        }
        parent.children.push(node);
      }
    },
    chars: function(text2) {
      const node = {
        type: "text",
        text: text2
      };
      if (stacks.length === 0) {
        results.children.push(node);
      } else {
        const parent = stacks[0];
        if (!parent.children) {
          parent.children = [];
        }
        parent.children.push(node);
      }
    },
    comment: function(text2) {
      const node = {
        node: "comment",
        text: text2
      };
      const parent = stacks[0];
      if (!parent.children) {
        parent.children = [];
fxy060608's avatar
fxy060608 已提交
7866
      }
fxy060608's avatar
fxy060608 已提交
7867
      parent.children.push(node);
fxy060608's avatar
fxy060608 已提交
7868
    }
fxy060608's avatar
fxy060608 已提交
7869 7870
  });
  return results.children;
fxy060608's avatar
fxy060608 已提交
7871
}
fxy060608's avatar
fxy060608 已提交
7872 7873 7874 7875 7876 7877 7878 7879 7880 7881 7882 7883 7884 7885 7886 7887 7888 7889 7890 7891 7892 7893 7894 7895 7896 7897 7898 7899 7900 7901 7902 7903 7904 7905 7906 7907 7908 7909 7910 7911 7912 7913 7914 7915 7916 7917 7918 7919 7920 7921 7922 7923 7924 7925 7926 7927 7928
const TAGS = {
  a: "",
  abbr: "",
  b: "",
  blockquote: "",
  br: "",
  code: "",
  col: ["span", "width"],
  colgroup: ["span", "width"],
  dd: "",
  del: "",
  div: "",
  dl: "",
  dt: "",
  em: "",
  fieldset: "",
  h1: "",
  h2: "",
  h3: "",
  h4: "",
  h5: "",
  h6: "",
  hr: "",
  i: "",
  img: ["alt", "src", "height", "width"],
  ins: "",
  label: "",
  legend: "",
  li: "",
  ol: ["start", "type"],
  p: "",
  q: "",
  span: "",
  strong: "",
  sub: "",
  sup: "",
  table: ["width"],
  tbody: "",
  td: ["colspan", "rowspan", "height", "width"],
  tfoot: "",
  th: ["colspan", "rowspan", "height", "width"],
  thead: "",
  tr: "",
  ul: ""
};
const CHARS = {
  amp: "&",
  gt: ">",
  lt: "<",
  nbsp: " ",
  quot: '"',
  apos: "'"
};
function decodeEntities(htmlString) {
  return htmlString.replace(/&(([a-zA-Z]+)|(#x{0,1}[\da-zA-Z]+));/gi, function(match, stage) {
    if (hasOwn$1(CHARS, stage) && CHARS[stage]) {
      return CHARS[stage];
fxy060608's avatar
fxy060608 已提交
7929
    }
fxy060608's avatar
fxy060608 已提交
7930 7931
    if (/^#[0-9]{1,4}$/.test(stage)) {
      return String.fromCharCode(stage.slice(1));
fxy060608's avatar
fxy060608 已提交
7932
    }
fxy060608's avatar
fxy060608 已提交
7933 7934
    if (/^#x[0-9a-f]{1,4}$/i.test(stage)) {
      return String.fromCharCode("0" + stage.slice(1));
fxy060608's avatar
fxy060608 已提交
7935
    }
fxy060608's avatar
fxy060608 已提交
7936 7937 7938 7939
    const wrap = document.createElement("div");
    wrap.innerHTML = match;
    return wrap.innerText || wrap.textContent;
  });
fxy060608's avatar
fxy060608 已提交
7940
}
fxy060608's avatar
fxy060608 已提交
7941 7942 7943 7944
function parseNodes(nodes, parentNode) {
  nodes.forEach(function(node) {
    if (!isPlainObject(node)) {
      return;
fxy060608's avatar
fxy060608 已提交
7945
    }
fxy060608's avatar
fxy060608 已提交
7946 7947 7948 7949 7950 7951 7952 7953 7954 7955 7956 7957 7958 7959 7960 7961 7962 7963 7964 7965 7966 7967 7968 7969 7970 7971 7972 7973 7974 7975 7976 7977 7978 7979 7980 7981 7982 7983
    if (!hasOwn$1(node, "type") || node.type === "node") {
      if (!(typeof node.name === "string" && node.name)) {
        return;
      }
      const tagName = node.name.toLowerCase();
      if (!hasOwn$1(TAGS, tagName)) {
        return;
      }
      const elem = document.createElement(tagName);
      if (!elem) {
        return;
      }
      const attrs2 = node.attrs;
      if (isPlainObject(attrs2)) {
        const tagAttrs = TAGS[tagName] || [];
        Object.keys(attrs2).forEach(function(name) {
          let value = attrs2[name];
          switch (name) {
            case "class":
              Array.isArray(value) && (value = value.join(" "));
            case "style":
              elem.setAttribute(name, value);
              break;
            default:
              if (tagAttrs.indexOf(name) !== -1) {
                elem.setAttribute(name, value);
              }
          }
        });
      }
      const children = node.children;
      if (Array.isArray(children) && children.length) {
        parseNodes(node.children, elem);
      }
      parentNode.appendChild(elem);
    } else {
      if (node.type === "text" && typeof node.text === "string" && node.text !== "") {
        parentNode.appendChild(document.createTextNode(decodeEntities(node.text)));
fxy060608's avatar
fxy060608 已提交
7984 7985
      }
    }
fxy060608's avatar
fxy060608 已提交
7986 7987
  });
  return parentNode;
fxy060608's avatar
fxy060608 已提交
7988
}
7989
const _sfc_main$9 = {
fxy060608's avatar
fxy060608 已提交
7990 7991 7992 7993 7994 7995 7996
  name: "RichText",
  props: {
    nodes: {
      type: [Array, String],
      default: function() {
        return [];
      }
fxy060608's avatar
fxy060608 已提交
7997
    }
fxy060608's avatar
fxy060608 已提交
7998 7999 8000 8001
  },
  watch: {
    nodes(value) {
      this._renderNodes(value);
fxy060608's avatar
fxy060608 已提交
8002
    }
fxy060608's avatar
fxy060608 已提交
8003 8004 8005 8006 8007 8008 8009 8010
  },
  mounted() {
    this._renderNodes(this.nodes);
  },
  methods: {
    _renderNodes(nodes) {
      if (typeof nodes === "string") {
        nodes = parseHtml(nodes);
fxy060608's avatar
fxy060608 已提交
8011
      }
fxy060608's avatar
fxy060608 已提交
8012 8013 8014
      const nodeList = parseNodes(nodes, document.createDocumentFragment());
      this.$el.firstChild.innerHTML = "";
      this.$el.firstChild.appendChild(nodeList);
fxy060608's avatar
fxy060608 已提交
8015 8016
    }
  }
fxy060608's avatar
fxy060608 已提交
8017
};
8018 8019
const _hoisted_1$7 = /* @__PURE__ */ createVNode("div", null, null, -1);
function _sfc_render$9(_ctx, _cache, $props, $setup, $data, $options) {
fxy060608's avatar
fxy060608 已提交
8020
  return openBlock(), createBlock("uni-rich-text", _ctx.$attrs, [
8021
    _hoisted_1$7
fxy060608's avatar
fxy060608 已提交
8022
  ], 16);
fxy060608's avatar
fxy060608 已提交
8023
}
8024
_sfc_main$9.render = _sfc_render$9;
fxy060608's avatar
fxy060608 已提交
8025 8026 8027 8028 8029 8030
function Friction(e2) {
  this._drag = e2;
  this._dragLog = Math.log(e2);
  this._x = 0;
  this._v = 0;
  this._startTime = 0;
fxy060608's avatar
fxy060608 已提交
8031
}
fxy060608's avatar
fxy060608 已提交
8032 8033 8034 8035 8036 8037 8038 8039 8040 8041 8042
Friction.prototype.set = function(e2, t2) {
  this._x = e2;
  this._v = t2;
  this._startTime = new Date().getTime();
};
Friction.prototype.setVelocityByEnd = function(e2) {
  this._v = (e2 - this._x) * this._dragLog / (Math.pow(this._drag, 100) - 1);
};
Friction.prototype.x = function(e2) {
  if (e2 === void 0) {
    e2 = (new Date().getTime() - this._startTime) / 1e3;
fxy060608's avatar
fxy060608 已提交
8043
  }
fxy060608's avatar
fxy060608 已提交
8044 8045 8046 8047 8048 8049 8050 8051 8052 8053 8054 8055 8056 8057 8058 8059 8060 8061 8062 8063 8064 8065 8066 8067 8068 8069 8070 8071 8072 8073 8074 8075 8076 8077 8078 8079 8080 8081
  var t2;
  t2 = e2 === this._dt && this._powDragDt ? this._powDragDt : this._powDragDt = Math.pow(this._drag, e2);
  this._dt = e2;
  return this._x + this._v * t2 / this._dragLog - this._v / this._dragLog;
};
Friction.prototype.dx = function(e2) {
  if (e2 === void 0) {
    e2 = (new Date().getTime() - this._startTime) / 1e3;
  }
  var t2;
  t2 = e2 === this._dt && this._powDragDt ? this._powDragDt : this._powDragDt = Math.pow(this._drag, e2);
  this._dt = e2;
  return this._v * t2;
};
Friction.prototype.done = function() {
  return Math.abs(this.dx()) < 3;
};
Friction.prototype.reconfigure = function(e2) {
  var t2 = this.x();
  var n = this.dx();
  this._drag = e2;
  this._dragLog = Math.log(e2);
  this.set(t2, n);
};
Friction.prototype.configuration = function() {
  var e2 = this;
  return [
    {
      label: "Friction",
      read: function() {
        return e2._drag;
      },
      write: function(t2) {
        e2.reconfigure(t2);
      },
      min: 1e-3,
      max: 0.1,
      step: 1e-3
fxy060608's avatar
fxy060608 已提交
8082
    }
fxy060608's avatar
fxy060608 已提交
8083 8084 8085 8086
  ];
};
function o(e2, t2, n) {
  return e2 > t2 - n && e2 < t2 + n;
fxy060608's avatar
fxy060608 已提交
8087
}
fxy060608's avatar
fxy060608 已提交
8088 8089
function a(e2, t2) {
  return o(e2, 0, t2);
fxy060608's avatar
fxy060608 已提交
8090
}
fxy060608's avatar
fxy060608 已提交
8091 8092 8093 8094 8095 8096 8097
function Spring(e2, t2, n) {
  this._m = e2;
  this._k = t2;
  this._c = n;
  this._solution = null;
  this._endPosition = 0;
  this._startTime = 0;
fxy060608's avatar
fxy060608 已提交
8098
}
fxy060608's avatar
fxy060608 已提交
8099 8100 8101 8102 8103 8104 8105 8106 8107 8108 8109 8110 8111 8112 8113 8114 8115 8116 8117 8118 8119 8120 8121 8122 8123 8124 8125 8126 8127 8128 8129 8130 8131 8132 8133 8134 8135 8136 8137 8138 8139 8140 8141 8142 8143 8144 8145 8146 8147 8148 8149 8150 8151 8152 8153 8154 8155 8156 8157 8158 8159 8160 8161 8162 8163 8164 8165 8166 8167 8168 8169 8170
Spring.prototype._solve = function(e2, t2) {
  var n = this._c;
  var i2 = this._m;
  var r = this._k;
  var o2 = n * n - 4 * i2 * r;
  if (o2 === 0) {
    const a3 = -n / (2 * i2);
    const s2 = e2;
    const l2 = t2 / (a3 * e2);
    return {
      x: function(e3) {
        return (s2 + l2 * e3) * Math.pow(Math.E, a3 * e3);
      },
      dx: function(e3) {
        var t3 = Math.pow(Math.E, a3 * e3);
        return a3 * (s2 + l2 * e3) * t3 + l2 * t3;
      }
    };
  }
  if (o2 > 0) {
    const c = (-n - Math.sqrt(o2)) / (2 * i2);
    const u = (-n + Math.sqrt(o2)) / (2 * i2);
    const l2 = (t2 - c * e2) / (u - c);
    const s2 = e2 - l2;
    return {
      x: function(e3) {
        let t3;
        let n2;
        if (e3 === this._t) {
          t3 = this._powER1T;
          n2 = this._powER2T;
        }
        this._t = e3;
        if (!t3) {
          t3 = this._powER1T = Math.pow(Math.E, c * e3);
        }
        if (!n2) {
          n2 = this._powER2T = Math.pow(Math.E, u * e3);
        }
        return s2 * t3 + l2 * n2;
      },
      dx: function(e3) {
        let t3;
        let n2;
        if (e3 === this._t) {
          t3 = this._powER1T;
          n2 = this._powER2T;
        }
        this._t = e3;
        if (!t3) {
          t3 = this._powER1T = Math.pow(Math.E, c * e3);
        }
        if (!n2) {
          n2 = this._powER2T = Math.pow(Math.E, u * e3);
        }
        return s2 * c * t3 + l2 * u * n2;
      }
    };
  }
  var d = Math.sqrt(4 * i2 * r - n * n) / (2 * i2);
  var a2 = -n / 2 * i2;
  var s = e2;
  var l = (t2 - a2 * e2) / d;
  return {
    x: function(e3) {
      return Math.pow(Math.E, a2 * e3) * (s * Math.cos(d * e3) + l * Math.sin(d * e3));
    },
    dx: function(e3) {
      var t3 = Math.pow(Math.E, a2 * e3);
      var n2 = Math.cos(d * e3);
      var i3 = Math.sin(d * e3);
      return t3 * (l * d * n2 - s * d * i3) + a2 * t3 * (l * i3 + s * n2);
fxy060608's avatar
fxy060608 已提交
8171
    }
fxy060608's avatar
fxy060608 已提交
8172
  };
fxy060608's avatar
fxy060608 已提交
8173 8174 8175 8176
};
Spring.prototype.x = function(e2) {
  if (e2 === void 0) {
    e2 = (new Date().getTime() - this._startTime) / 1e3;
fxy060608's avatar
fxy060608 已提交
8177
  }
fxy060608's avatar
fxy060608 已提交
8178 8179 8180 8181 8182 8183 8184 8185 8186 8187 8188 8189 8190 8191 8192 8193 8194 8195 8196 8197 8198 8199 8200 8201 8202 8203 8204
  return this._solution ? this._endPosition + this._solution.x(e2) : 0;
};
Spring.prototype.dx = function(e2) {
  if (e2 === void 0) {
    e2 = (new Date().getTime() - this._startTime) / 1e3;
  }
  return this._solution ? this._solution.dx(e2) : 0;
};
Spring.prototype.setEnd = function(e2, t2, n) {
  if (!n) {
    n = new Date().getTime();
  }
  if (e2 !== this._endPosition || !a(t2, 0.4)) {
    t2 = t2 || 0;
    var i2 = this._endPosition;
    if (this._solution) {
      if (a(t2, 0.4)) {
        t2 = this._solution.dx((n - this._startTime) / 1e3);
      }
      i2 = this._solution.x((n - this._startTime) / 1e3);
      if (a(t2, 0.4)) {
        t2 = 0;
      }
      if (a(i2, 0.4)) {
        i2 = 0;
      }
      i2 += this._endPosition;
fxy060608's avatar
fxy060608 已提交
8205
    }
fxy060608's avatar
fxy060608 已提交
8206 8207 8208 8209
    if (!(this._solution && a(i2 - e2, 0.4) && a(t2, 0.4))) {
      this._endPosition = e2;
      this._solution = this._solve(i2 - this._endPosition, t2);
      this._startTime = n;
fxy060608's avatar
fxy060608 已提交
8210
    }
fxy060608's avatar
fxy060608 已提交
8211 8212 8213 8214 8215 8216 8217 8218 8219 8220 8221
  }
};
Spring.prototype.snap = function(e2) {
  this._startTime = new Date().getTime();
  this._endPosition = e2;
  this._solution = {
    x: function() {
      return 0;
    },
    dx: function() {
      return 0;
fxy060608's avatar
fxy060608 已提交
8222
    }
fxy060608's avatar
fxy060608 已提交
8223
  };
fxy060608's avatar
fxy060608 已提交
8224 8225 8226 8227
};
Spring.prototype.done = function(e2) {
  if (!e2) {
    e2 = new Date().getTime();
fxy060608's avatar
fxy060608 已提交
8228
  }
fxy060608's avatar
fxy060608 已提交
8229 8230 8231 8232 8233 8234 8235 8236 8237
  return o(this.x(), this._endPosition, 0.4) && a(this.dx(), 0.4);
};
Spring.prototype.reconfigure = function(e2, t2, n) {
  this._m = e2;
  this._k = t2;
  this._c = n;
  if (!this.done()) {
    this._solution = this._solve(this.x() - this._endPosition, this.dx());
    this._startTime = new Date().getTime();
fxy060608's avatar
fxy060608 已提交
8238
  }
fxy060608's avatar
fxy060608 已提交
8239 8240 8241 8242 8243 8244 8245 8246 8247 8248
};
Spring.prototype.springConstant = function() {
  return this._k;
};
Spring.prototype.damping = function() {
  return this._c;
};
Spring.prototype.configuration = function() {
  function e2(e3, t3) {
    e3.reconfigure(1, t3, e3.damping());
fxy060608's avatar
fxy060608 已提交
8249
  }
fxy060608's avatar
fxy060608 已提交
8250 8251 8252 8253 8254 8255 8256 8257 8258 8259 8260 8261 8262 8263 8264 8265 8266 8267 8268 8269 8270 8271 8272 8273 8274 8275 8276
  function t2(e3, t3) {
    e3.reconfigure(1, e3.springConstant(), t3);
  }
  return [
    {
      label: "Spring Constant",
      read: this.springConstant.bind(this),
      write: e2.bind(this, this),
      min: 100,
      max: 1e3
    },
    {
      label: "Damping",
      read: this.damping.bind(this),
      write: t2.bind(this, this),
      min: 1,
      max: 500
    }
  ];
};
function Scroll(extent, friction, spring) {
  this._extent = extent;
  this._friction = friction || new Friction(0.01);
  this._spring = spring || new Spring(1, 90, 20);
  this._startTime = 0;
  this._springing = false;
  this._springOffset = 0;
fxy060608's avatar
fxy060608 已提交
8277
}
fxy060608's avatar
fxy060608 已提交
8278 8279 8280 8281 8282 8283 8284 8285 8286 8287 8288 8289 8290 8291 8292 8293 8294 8295 8296 8297 8298 8299
Scroll.prototype.snap = function(e2, t2) {
  this._springOffset = 0;
  this._springing = true;
  this._spring.snap(e2);
  this._spring.setEnd(t2);
};
Scroll.prototype.set = function(e2, t2) {
  this._friction.set(e2, t2);
  if (e2 > 0 && t2 >= 0) {
    this._springOffset = 0;
    this._springing = true;
    this._spring.snap(e2);
    this._spring.setEnd(0);
  } else {
    if (e2 < -this._extent && t2 <= 0) {
      this._springOffset = 0;
      this._springing = true;
      this._spring.snap(e2);
      this._spring.setEnd(-this._extent);
    } else {
      this._springing = false;
    }
fxy060608's avatar
fxy060608 已提交
8300
  }
fxy060608's avatar
fxy060608 已提交
8301 8302 8303 8304
  this._startTime = new Date().getTime();
};
Scroll.prototype.x = function(e2) {
  if (!this._startTime) {
fxy060608's avatar
fxy060608 已提交
8305 8306
    return 0;
  }
fxy060608's avatar
fxy060608 已提交
8307 8308
  if (!e2) {
    e2 = (new Date().getTime() - this._startTime) / 1e3;
fxy060608's avatar
fxy060608 已提交
8309
  }
fxy060608's avatar
fxy060608 已提交
8310 8311 8312 8313 8314 8315 8316 8317 8318 8319
  if (this._springing) {
    return this._spring.x() + this._springOffset;
  }
  var t2 = this._friction.x(e2);
  var n = this.dx(e2);
  if (t2 > 0 && n >= 0 || t2 < -this._extent && n <= 0) {
    this._springing = true;
    this._spring.setEnd(0, n);
    if (t2 < -this._extent) {
      this._springOffset = -this._extent;
fxy060608's avatar
fxy060608 已提交
8320
    } else {
fxy060608's avatar
fxy060608 已提交
8321
      this._springOffset = 0;
fxy060608's avatar
fxy060608 已提交
8322
    }
fxy060608's avatar
fxy060608 已提交
8323
    t2 = this._spring.x() + this._springOffset;
fxy060608's avatar
fxy060608 已提交
8324
  }
fxy060608's avatar
fxy060608 已提交
8325 8326 8327 8328 8329 8330 8331 8332 8333 8334 8335 8336 8337 8338 8339 8340 8341 8342 8343 8344 8345 8346 8347 8348 8349 8350 8351 8352 8353 8354 8355 8356 8357
  return t2;
};
Scroll.prototype.dx = function(e2) {
  var t2 = 0;
  t2 = this._lastTime === e2 ? this._lastDx : this._springing ? this._spring.dx(e2) : this._friction.dx(e2);
  this._lastTime = e2;
  this._lastDx = t2;
  return t2;
};
Scroll.prototype.done = function() {
  return this._springing ? this._spring.done() : this._friction.done();
};
Scroll.prototype.setVelocityByEnd = function(e2) {
  this._friction.setVelocityByEnd(e2);
};
Scroll.prototype.configuration = function() {
  var e2 = this._friction.configuration();
  e2.push.apply(e2, this._spring.configuration());
  return e2;
};
function i(scroll, t2, n) {
  function i2(t3, scroll2, r2, o3) {
    if (!t3 || !t3.cancelled) {
      r2(scroll2);
      var a2 = scroll2.done();
      if (!a2) {
        if (!t3.cancelled) {
          t3.id = requestAnimationFrame(i2.bind(null, t3, scroll2, r2, o3));
        }
      }
      if (a2 && o3) {
        o3(scroll2);
      }
fxy060608's avatar
fxy060608 已提交
8358
    }
fxy060608's avatar
fxy060608 已提交
8359
  }
fxy060608's avatar
fxy060608 已提交
8360 8361 8362
  function r(scroll2) {
    if (scroll2 && scroll2.id) {
      cancelAnimationFrame(scroll2.id);
fxy060608's avatar
fxy060608 已提交
8363
    }
fxy060608's avatar
fxy060608 已提交
8364 8365 8366 8367 8368 8369 8370 8371 8372 8373 8374 8375 8376
    if (scroll2) {
      scroll2.cancelled = true;
    }
  }
  var o2 = {
    id: 0,
    cancelled: false
  };
  i2(o2, scroll, t2, n);
  return {
    cancel: r.bind(null, o2),
    model: scroll
  };
fxy060608's avatar
fxy060608 已提交
8377
}
fxy060608's avatar
fxy060608 已提交
8378 8379 8380 8381 8382 8383 8384 8385 8386 8387 8388 8389 8390 8391 8392 8393 8394 8395 8396 8397
function Scroller(element, options) {
  options = options || {};
  this._element = element;
  this._options = options;
  this._enableSnap = options.enableSnap || false;
  this._itemSize = options.itemSize || 0;
  this._enableX = options.enableX || false;
  this._enableY = options.enableY || false;
  this._shouldDispatchScrollEvent = !!options.onScroll;
  if (this._enableX) {
    this._extent = (options.scrollWidth || this._element.offsetWidth) - this._element.parentElement.offsetWidth;
    this._scrollWidth = options.scrollWidth;
  } else {
    this._extent = (options.scrollHeight || this._element.offsetHeight) - this._element.parentElement.offsetHeight;
    this._scrollHeight = options.scrollHeight;
  }
  this._position = 0;
  this._scroll = new Scroll(this._extent, options.friction, options.spring);
  this._onTransitionEnd = this.onTransitionEnd.bind(this);
  this.updatePosition();
fxy060608's avatar
fxy060608 已提交
8398
}
fxy060608's avatar
fxy060608 已提交
8399 8400 8401 8402 8403 8404 8405 8406
Scroller.prototype.onTouchStart = function() {
  this._startPosition = this._position;
  this._lastChangePos = this._startPosition;
  if (this._startPosition > 0) {
    this._startPosition /= 0.5;
  } else {
    if (this._startPosition < -this._extent) {
      this._startPosition = (this._startPosition + this._extent) / 0.5 - this._extent;
fxy060608's avatar
fxy060608 已提交
8407
    }
fxy060608's avatar
fxy060608 已提交
8408
  }
fxy060608's avatar
fxy060608 已提交
8409 8410 8411
  if (this._animation) {
    this._animation.cancel();
    this._scrolling = false;
fxy060608's avatar
fxy060608 已提交
8412
  }
fxy060608's avatar
fxy060608 已提交
8413 8414 8415 8416 8417 8418 8419 8420
  this.updatePosition();
};
Scroller.prototype.onTouchMove = function(x, y) {
  var startPosition = this._startPosition;
  if (this._enableX) {
    startPosition += x;
  } else if (this._enableY) {
    startPosition += y;
fxy060608's avatar
fxy060608 已提交
8421
  }
fxy060608's avatar
fxy060608 已提交
8422 8423 8424 8425
  if (startPosition > 0) {
    startPosition *= 0.5;
  } else if (startPosition < -this._extent) {
    startPosition = 0.5 * (startPosition + this._extent) - this._extent;
fxy060608's avatar
fxy060608 已提交
8426
  }
fxy060608's avatar
fxy060608 已提交
8427 8428 8429 8430 8431 8432 8433 8434 8435 8436 8437 8438 8439
  this._position = startPosition;
  this.updatePosition();
  this.dispatchScroll();
};
Scroller.prototype.onTouchEnd = function(e2, r, o2) {
  if (this._enableSnap && this._position > -this._extent && this._position < 0) {
    if (this._enableY && (Math.abs(r) < this._itemSize && Math.abs(o2.y) < 300 || Math.abs(o2.y) < 150)) {
      this.snap();
      return;
    }
    if (this._enableX && (Math.abs(e2) < this._itemSize && Math.abs(o2.x) < 300 || Math.abs(o2.x) < 150)) {
      this.snap();
      return;
fxy060608's avatar
fxy060608 已提交
8440
    }
fxy060608's avatar
fxy060608 已提交
8441
  }
fxy060608's avatar
fxy060608 已提交
8442 8443 8444 8445 8446 8447 8448 8449 8450 8451 8452
  if (this._enableX) {
    this._scroll.set(this._position, o2.x);
  } else if (this._enableY) {
    this._scroll.set(this._position, o2.y);
  }
  if (this._enableSnap) {
    var s = this._scroll._friction.x(100);
    var l = s % this._itemSize;
    var c = Math.abs(l) > this._itemSize / 2 ? s - (this._itemSize - Math.abs(l)) : s - l;
    if (c <= 0 && c >= -this._extent) {
      this._scroll.setVelocityByEnd(c);
fxy060608's avatar
fxy060608 已提交
8453
    }
fxy060608's avatar
fxy060608 已提交
8454
  }
fxy060608's avatar
fxy060608 已提交
8455 8456 8457 8458 8459 8460 8461 8462 8463 8464 8465 8466 8467 8468 8469 8470 8471 8472 8473 8474 8475 8476 8477 8478 8479 8480 8481 8482 8483 8484 8485 8486
  this._lastTime = Date.now();
  this._lastDelay = 0;
  this._scrolling = true;
  this._lastChangePos = this._position;
  this._lastIdx = Math.floor(Math.abs(this._position / this._itemSize));
  this._animation = i(this._scroll, () => {
    var e3 = Date.now();
    var i2 = (e3 - this._scroll._startTime) / 1e3;
    var r2 = this._scroll.x(i2);
    this._position = r2;
    this.updatePosition();
    var o3 = this._scroll.dx(i2);
    if (this._shouldDispatchScrollEvent && e3 - this._lastTime > this._lastDelay) {
      this.dispatchScroll();
      this._lastDelay = Math.abs(2e3 / o3);
      this._lastTime = e3;
    }
  }, () => {
    if (this._enableSnap) {
      if (c <= 0 && c >= -this._extent) {
        this._position = c;
        this.updatePosition();
      }
      if (typeof this._options.onSnap === "function") {
        this._options.onSnap(Math.floor(Math.abs(this._position) / this._itemSize));
      }
    }
    if (this._shouldDispatchScrollEvent) {
      this.dispatchScroll();
    }
    this._scrolling = false;
  });
fxy060608's avatar
fxy060608 已提交
8487
};
fxy060608's avatar
fxy060608 已提交
8488 8489 8490 8491 8492 8493 8494 8495 8496
Scroller.prototype.onTransitionEnd = function() {
  this._element.style.transition = "";
  this._element.style.webkitTransition = "";
  this._element.removeEventListener("transitionend", this._onTransitionEnd);
  this._element.removeEventListener("webkitTransitionEnd", this._onTransitionEnd);
  if (this._snapping) {
    this._snapping = false;
  }
  this.dispatchScroll();
fxy060608's avatar
fxy060608 已提交
8497
};
fxy060608's avatar
fxy060608 已提交
8498 8499 8500 8501 8502 8503 8504 8505 8506
Scroller.prototype.snap = function() {
  var e2 = this._itemSize;
  var t2 = this._position % e2;
  var i2 = Math.abs(t2) > this._itemSize / 2 ? this._position - (e2 - Math.abs(t2)) : this._position - t2;
  if (this._position !== i2) {
    this._snapping = true;
    this.scrollTo(-i2);
    if (typeof this._options.onSnap === "function") {
      this._options.onSnap(Math.floor(Math.abs(this._position) / this._itemSize));
fxy060608's avatar
fxy060608 已提交
8507
    }
fxy060608's avatar
fxy060608 已提交
8508
  }
fxy060608's avatar
fxy060608 已提交
8509 8510 8511 8512 8513
};
Scroller.prototype.scrollTo = function(e2, t2) {
  if (this._animation) {
    this._animation.cancel();
    this._scrolling = false;
fxy060608's avatar
fxy060608 已提交
8514
  }
fxy060608's avatar
fxy060608 已提交
8515 8516 8517 8518 8519 8520 8521 8522
  if (typeof e2 === "number") {
    this._position = -e2;
  }
  if (this._position < -this._extent) {
    this._position = -this._extent;
  } else {
    if (this._position > 0) {
      this._position = 0;
fxy060608's avatar
fxy060608 已提交
8523
    }
fxy060608's avatar
fxy060608 已提交
8524
  }
fxy060608's avatar
fxy060608 已提交
8525 8526 8527 8528 8529 8530 8531 8532 8533 8534 8535 8536 8537 8538 8539 8540 8541 8542 8543 8544
  this._element.style.transition = "transform " + (t2 || 0.2) + "s ease-out";
  this._element.style.webkitTransition = "-webkit-transform " + (t2 || 0.2) + "s ease-out";
  this.updatePosition();
  this._element.addEventListener("transitionend", this._onTransitionEnd);
  this._element.addEventListener("webkitTransitionEnd", this._onTransitionEnd);
};
Scroller.prototype.dispatchScroll = function() {
  if (typeof this._options.onScroll === "function" && Math.round(this._lastPos) !== Math.round(this._position)) {
    this._lastPos = this._position;
    var e2 = {
      target: {
        scrollLeft: this._enableX ? -this._position : 0,
        scrollTop: this._enableY ? -this._position : 0,
        scrollHeight: this._scrollHeight || this._element.offsetHeight,
        scrollWidth: this._scrollWidth || this._element.offsetWidth,
        offsetHeight: this._element.parentElement.offsetHeight,
        offsetWidth: this._element.parentElement.offsetWidth
      }
    };
    this._options.onScroll(e2);
fxy060608's avatar
fxy060608 已提交
8545
  }
fxy060608's avatar
fxy060608 已提交
8546 8547 8548 8549 8550 8551 8552 8553 8554 8555
};
Scroller.prototype.update = function(e2, t2, n) {
  var i2 = 0;
  var r = this._position;
  if (this._enableX) {
    i2 = this._element.childNodes.length ? (t2 || this._element.offsetWidth) - this._element.parentElement.offsetWidth : 0;
    this._scrollWidth = t2;
  } else {
    i2 = this._element.childNodes.length ? (t2 || this._element.offsetHeight) - this._element.parentElement.offsetHeight : 0;
    this._scrollHeight = t2;
fxy060608's avatar
fxy060608 已提交
8556
  }
fxy060608's avatar
fxy060608 已提交
8557 8558
  if (typeof e2 === "number") {
    this._position = -e2;
fxy060608's avatar
fxy060608 已提交
8559
  }
fxy060608's avatar
fxy060608 已提交
8560 8561 8562 8563 8564 8565
  if (this._position < -i2) {
    this._position = -i2;
  } else {
    if (this._position > 0) {
      this._position = 0;
    }
fxy060608's avatar
fxy060608 已提交
8566
  }
fxy060608's avatar
fxy060608 已提交
8567 8568 8569 8570 8571 8572 8573 8574 8575 8576
  this._itemSize = n || this._itemSize;
  this.updatePosition();
  if (r !== this._position) {
    this.dispatchScroll();
    if (typeof this._options.onSnap === "function") {
      this._options.onSnap(Math.floor(Math.abs(this._position) / this._itemSize));
    }
  }
  this._extent = i2;
  this._scroll._extent = i2;
fxy060608's avatar
fxy060608 已提交
8577
};
fxy060608's avatar
fxy060608 已提交
8578 8579 8580 8581 8582 8583 8584 8585 8586 8587 8588 8589 8590 8591 8592 8593 8594 8595 8596 8597 8598 8599 8600 8601 8602 8603 8604 8605 8606 8607 8608 8609 8610 8611 8612 8613 8614 8615 8616 8617 8618 8619 8620 8621 8622 8623 8624 8625 8626 8627 8628 8629 8630 8631 8632 8633 8634 8635 8636 8637 8638 8639 8640 8641 8642 8643 8644 8645 8646 8647 8648 8649 8650 8651 8652 8653 8654 8655 8656 8657 8658 8659 8660 8661 8662 8663 8664
Scroller.prototype.updatePosition = function() {
  var transform = "";
  if (this._enableX) {
    transform = "translateX(" + this._position + "px) translateZ(0)";
  } else {
    if (this._enableY) {
      transform = "translateY(" + this._position + "px) translateZ(0)";
    }
  }
  this._element.style.webkitTransform = transform;
  this._element.style.transform = transform;
};
Scroller.prototype.isScrolling = function() {
  return this._scrolling || this._snapping;
};
var scroller = {
  methods: {
    initScroller: function(element, options) {
      this._touchInfo = {
        trackingID: -1,
        maxDy: 0,
        maxDx: 0
      };
      this._scroller = new Scroller(element, options);
      this.__handleTouchStart = this._handleTouchStart.bind(this);
      this.__handleTouchMove = this._handleTouchMove.bind(this);
      this.__handleTouchEnd = this._handleTouchEnd.bind(this);
      this._initedScroller = true;
    },
    _findDelta: function(event2) {
      var touchInfo = this._touchInfo;
      return event2.detail.state === "move" || event2.detail.state === "end" ? {
        x: event2.detail.dx,
        y: event2.detail.dy
      } : {
        x: event2.screenX - touchInfo.x,
        y: event2.screenY - touchInfo.y
      };
    },
    _handleTouchStart: function(e2) {
      var t2 = this._touchInfo;
      var n = this._scroller;
      if (n) {
        if (e2.detail.state === "start") {
          t2.trackingID = "touch";
          t2.x = e2.detail.x;
          t2.y = e2.detail.y;
        } else {
          t2.trackingID = "mouse";
          t2.x = e2.screenX;
          t2.y = e2.screenY;
        }
        t2.maxDx = 0;
        t2.maxDy = 0;
        t2.historyX = [0];
        t2.historyY = [0];
        t2.historyTime = [e2.detail.timeStamp];
        t2.listener = n;
        if (n.onTouchStart) {
          n.onTouchStart();
        }
        event.preventDefault();
      }
    },
    _handleTouchMove: function(event2) {
      var touchInfo = this._touchInfo;
      if (touchInfo.trackingID !== -1) {
        event2.preventDefault();
        var delta = this._findDelta(event2);
        if (delta) {
          for (touchInfo.maxDy = Math.max(touchInfo.maxDy, Math.abs(delta.y)), touchInfo.maxDx = Math.max(touchInfo.maxDx, Math.abs(delta.x)), touchInfo.historyX.push(delta.x), touchInfo.historyY.push(delta.y), touchInfo.historyTime.push(event2.detail.timeStamp); touchInfo.historyTime.length > 10; ) {
            touchInfo.historyTime.shift();
            touchInfo.historyX.shift();
            touchInfo.historyY.shift();
          }
          if (touchInfo.listener && touchInfo.listener.onTouchMove) {
            touchInfo.listener.onTouchMove(delta.x, delta.y, event2.detail.timeStamp);
          }
        }
      }
    },
    _handleTouchEnd: function(event2) {
      var touchInfo = this._touchInfo;
      if (touchInfo.trackingID !== -1) {
        event2.preventDefault();
        var delta = this._findDelta(event2);
        if (delta) {
Q
qiang 已提交
8665
          var listener2 = touchInfo.listener;
fxy060608's avatar
fxy060608 已提交
8666 8667 8668 8669 8670 8671 8672 8673 8674 8675 8676 8677 8678 8679 8680 8681 8682 8683 8684 8685 8686 8687
          touchInfo.trackingID = -1;
          touchInfo.listener = null;
          var r = touchInfo.historyTime.length;
          var o2 = {
            x: 0,
            y: 0
          };
          if (r > 2) {
            for (var a2 = touchInfo.historyTime.length - 1, s = touchInfo.historyTime[a2], l = touchInfo.historyX[a2], c = touchInfo.historyY[a2]; a2 > 0; ) {
              a2--;
              var u = touchInfo.historyTime[a2];
              var d = s - u;
              if (d > 30 && d < 50) {
                o2.x = (l - touchInfo.historyX[a2]) / (d / 1e3);
                o2.y = (c - touchInfo.historyY[a2]) / (d / 1e3);
                break;
              }
            }
          }
          touchInfo.historyTime = [];
          touchInfo.historyX = [];
          touchInfo.historyY = [];
Q
qiang 已提交
8688 8689
          if (listener2 && listener2.onTouchEnd) {
            listener2.onTouchEnd(delta.x, delta.y, o2);
fxy060608's avatar
fxy060608 已提交
8690 8691 8692 8693 8694 8695
          }
        }
      }
    }
  }
};
fxy060608's avatar
fxy060608 已提交
8696
const passiveOptions$1 = passive(true);
8697
const _sfc_main$8 = {
fxy060608's avatar
fxy060608 已提交
8698 8699 8700 8701 8702 8703 8704 8705 8706 8707 8708 8709 8710 8711 8712 8713 8714 8715 8716 8717 8718 8719 8720 8721 8722 8723 8724 8725 8726 8727 8728 8729 8730 8731 8732 8733 8734 8735 8736 8737 8738 8739 8740 8741 8742 8743 8744 8745 8746 8747 8748 8749 8750 8751 8752 8753 8754 8755 8756 8757 8758 8759 8760 8761 8762 8763 8764 8765 8766 8767 8768 8769 8770 8771 8772 8773 8774 8775 8776 8777 8778 8779 8780 8781 8782 8783 8784 8785 8786 8787 8788 8789 8790 8791 8792 8793 8794 8795 8796 8797 8798 8799 8800 8801 8802 8803 8804 8805 8806 8807 8808 8809 8810 8811 8812 8813 8814 8815 8816 8817 8818 8819 8820 8821 8822 8823 8824 8825 8826 8827 8828 8829 8830 8831 8832 8833 8834 8835 8836 8837 8838 8839 8840 8841 8842 8843 8844 8845 8846 8847 8848 8849 8850 8851 8852 8853 8854 8855 8856 8857 8858 8859 8860 8861 8862 8863 8864 8865 8866 8867 8868 8869 8870 8871 8872 8873 8874 8875 8876 8877 8878 8879 8880 8881 8882 8883 8884 8885 8886 8887
  name: "ScrollView",
  mixins: [scroller],
  props: {
    scrollX: {
      type: [Boolean, String],
      default: false
    },
    scrollY: {
      type: [Boolean, String],
      default: false
    },
    upperThreshold: {
      type: [Number, String],
      default: 50
    },
    lowerThreshold: {
      type: [Number, String],
      default: 50
    },
    scrollTop: {
      type: [Number, String],
      default: 0
    },
    scrollLeft: {
      type: [Number, String],
      default: 0
    },
    scrollIntoView: {
      type: String,
      default: ""
    },
    scrollWithAnimation: {
      type: [Boolean, String],
      default: false
    },
    enableBackToTop: {
      type: [Boolean, String],
      default: false
    },
    refresherEnabled: {
      type: [Boolean, String],
      default: false
    },
    refresherThreshold: {
      type: Number,
      default: 45
    },
    refresherDefaultStyle: {
      type: String,
      default: "back"
    },
    refresherBackground: {
      type: String,
      default: "#fff"
    },
    refresherTriggered: {
      type: [Boolean, String],
      default: false
    }
  },
  data() {
    return {
      lastScrollTop: this.scrollTopNumber,
      lastScrollLeft: this.scrollLeftNumber,
      lastScrollToUpperTime: 0,
      lastScrollToLowerTime: 0,
      refresherHeight: 0,
      refreshRotate: 0,
      refreshState: ""
    };
  },
  computed: {
    upperThresholdNumber() {
      var val = Number(this.upperThreshold);
      return isNaN(val) ? 50 : val;
    },
    lowerThresholdNumber() {
      var val = Number(this.lowerThreshold);
      return isNaN(val) ? 50 : val;
    },
    scrollTopNumber() {
      return Number(this.scrollTop) || 0;
    },
    scrollLeftNumber() {
      return Number(this.scrollLeft) || 0;
    }
  },
  watch: {
    scrollTopNumber(val) {
      this._scrollTopChanged(val);
    },
    scrollLeftNumber(val) {
      this._scrollLeftChanged(val);
    },
    scrollIntoView(val) {
      this._scrollIntoViewChanged(val);
    },
    refresherTriggered(val) {
      if (val === true) {
        this._setRefreshState("refreshing");
      } else if (val === false) {
        this._setRefreshState("restore");
      }
    }
  },
  mounted() {
    var self = this;
    this._attached = true;
    this._scrollTopChanged(this.scrollTopNumber);
    this._scrollLeftChanged(this.scrollLeftNumber);
    this._scrollIntoViewChanged(this.scrollIntoView);
    this.__handleScroll = function(e2) {
      event.preventDefault();
      event.stopPropagation();
      self._handleScroll.bind(self, event)();
    };
    var touchStart = null;
    var needStop = null;
    this.__handleTouchMove = function(event2) {
      var x = event2.touches[0].pageX;
      var y = event2.touches[0].pageY;
      var main = self.$refs.main;
      if (needStop === null) {
        if (Math.abs(x - touchStart.x) > Math.abs(y - touchStart.y)) {
          if (self.scrollX) {
            if (main.scrollLeft === 0 && x > touchStart.x) {
              needStop = false;
              return;
            } else if (main.scrollWidth === main.offsetWidth + main.scrollLeft && x < touchStart.x) {
              needStop = false;
              return;
            }
            needStop = true;
          } else {
            needStop = false;
          }
        } else {
          if (self.scrollY) {
            if (main.scrollTop === 0 && y > touchStart.y) {
              needStop = false;
              return;
            } else if (main.scrollHeight === main.offsetHeight + main.scrollTop && y < touchStart.y) {
              needStop = false;
              return;
            }
            needStop = true;
          } else {
            needStop = false;
          }
        }
      }
      if (needStop) {
        event2.stopPropagation();
      }
      if (self.refresherEnabled && self.refreshState === "pulling") {
        const dy = y - touchStart.y;
        self.refresherHeight = dy;
        let rotate = dy / self.refresherThreshold;
        if (rotate > 1) {
          rotate = 1;
        } else {
          rotate = rotate * 360;
        }
        self.refreshRotate = rotate;
        self.$trigger("refresherpulling", event2, {
          deltaY: dy
        });
      }
    };
    this.__handleTouchStart = function(event2) {
      if (event2.touches.length === 1) {
        needStop = null;
        touchStart = {
          x: event2.touches[0].pageX,
          y: event2.touches[0].pageY
        };
        if (self.refresherEnabled && self.refreshState !== "refreshing" && self.$refs.main.scrollTop === 0) {
          self.refreshState = "pulling";
        }
      }
    };
    this.__handleTouchEnd = function(event2) {
      touchStart = null;
      if (self.refresherHeight >= self.refresherThreshold) {
        self._setRefreshState("refreshing");
      } else {
        self.refresherHeight = 0;
        self.$trigger("refresherabort", event2, {});
      }
    };
fxy060608's avatar
fxy060608 已提交
8888 8889
    this.$refs.main.addEventListener("touchstart", this.__handleTouchStart, passiveOptions$1);
    this.$refs.main.addEventListener("touchmove", this.__handleTouchMove, passiveOptions$1);
fxy060608's avatar
fxy060608 已提交
8890
    this.$refs.main.addEventListener("scroll", this.__handleScroll, passive(false));
fxy060608's avatar
fxy060608 已提交
8891
    this.$refs.main.addEventListener("touchend", this.__handleTouchEnd, passiveOptions$1);
fxy060608's avatar
fxy060608 已提交
8892 8893 8894 8895 8896 8897
  },
  activated() {
    this.scrollY && (this.$refs.main.scrollTop = this.lastScrollTop);
    this.scrollX && (this.$refs.main.scrollLeft = this.lastScrollLeft);
  },
  beforeDestroy() {
fxy060608's avatar
fxy060608 已提交
8898 8899
    this.$refs.main.removeEventListener("touchstart", this.__handleTouchStart, passiveOptions$1);
    this.$refs.main.removeEventListener("touchmove", this.__handleTouchMove, passiveOptions$1);
fxy060608's avatar
fxy060608 已提交
8900
    this.$refs.main.removeEventListener("scroll", this.__handleScroll, passive(false));
fxy060608's avatar
fxy060608 已提交
8901
    this.$refs.main.removeEventListener("touchend", this.__handleTouchEnd, passiveOptions$1);
fxy060608's avatar
fxy060608 已提交
8902 8903 8904 8905 8906 8907 8908 8909 8910 8911 8912 8913 8914 8915 8916 8917 8918 8919 8920 8921 8922 8923 8924 8925 8926 8927 8928 8929 8930 8931 8932 8933 8934 8935 8936 8937 8938 8939 8940 8941 8942 8943 8944 8945 8946 8947 8948 8949 8950 8951 8952 8953 8954 8955 8956 8957 8958 8959 8960 8961 8962 8963 8964 8965 8966 8967 8968 8969 8970 8971 8972 8973 8974 8975 8976 8977 8978 8979 8980 8981 8982 8983 8984 8985 8986 8987 8988 8989 8990 8991 8992 8993 8994 8995 8996 8997 8998 8999 9000 9001 9002 9003 9004 9005 9006 9007 9008 9009 9010 9011 9012 9013 9014 9015 9016 9017 9018 9019 9020 9021 9022 9023 9024 9025 9026 9027 9028 9029 9030 9031 9032 9033 9034 9035 9036 9037 9038 9039 9040 9041 9042 9043 9044 9045 9046 9047 9048 9049 9050 9051 9052 9053 9054 9055 9056 9057 9058 9059 9060 9061 9062 9063 9064 9065 9066 9067 9068 9069 9070 9071 9072 9073 9074 9075 9076 9077 9078 9079 9080 9081 9082 9083 9084 9085 9086 9087 9088 9089 9090 9091 9092 9093 9094 9095 9096 9097 9098 9099 9100 9101 9102
  },
  methods: {
    scrollTo: function(t2, n) {
      var i2 = this.$refs.main;
      t2 < 0 ? t2 = 0 : n === "x" && t2 > i2.scrollWidth - i2.offsetWidth ? t2 = i2.scrollWidth - i2.offsetWidth : n === "y" && t2 > i2.scrollHeight - i2.offsetHeight && (t2 = i2.scrollHeight - i2.offsetHeight);
      var r = 0;
      var o2 = "";
      n === "x" ? r = i2.scrollLeft - t2 : n === "y" && (r = i2.scrollTop - t2);
      if (r !== 0) {
        this.$refs.content.style.transition = "transform .3s ease-out";
        this.$refs.content.style.webkitTransition = "-webkit-transform .3s ease-out";
        if (n === "x") {
          o2 = "translateX(" + r + "px) translateZ(0)";
        } else {
          n === "y" && (o2 = "translateY(" + r + "px) translateZ(0)");
        }
        this.$refs.content.removeEventListener("transitionend", this.__transitionEnd);
        this.$refs.content.removeEventListener("webkitTransitionEnd", this.__transitionEnd);
        this.__transitionEnd = this._transitionEnd.bind(this, t2, n);
        this.$refs.content.addEventListener("transitionend", this.__transitionEnd);
        this.$refs.content.addEventListener("webkitTransitionEnd", this.__transitionEnd);
        if (n === "x") {
          i2.style.overflowX = "hidden";
        } else if (n === "y") {
          i2.style.overflowY = "hidden";
        }
        this.$refs.content.style.transform = o2;
        this.$refs.content.style.webkitTransform = o2;
      }
    },
    _handleTrack: function($event) {
      if ($event.detail.state === "start") {
        this._x = $event.detail.x;
        this._y = $event.detail.y;
        this._noBubble = null;
        return;
      }
      if ($event.detail.state === "end") {
        this._noBubble = false;
      }
      if (this._noBubble === null && this.scrollY) {
        if (Math.abs(this._y - $event.detail.y) / Math.abs(this._x - $event.detail.x) > 1) {
          this._noBubble = true;
        } else {
          this._noBubble = false;
        }
      }
      if (this._noBubble === null && this.scrollX) {
        if (Math.abs(this._x - $event.detail.x) / Math.abs(this._y - $event.detail.y) > 1) {
          this._noBubble = true;
        } else {
          this._noBubble = false;
        }
      }
      this._x = $event.detail.x;
      this._y = $event.detail.y;
      if (this._noBubble) {
        $event.stopPropagation();
      }
    },
    _handleScroll: function($event) {
      if (!($event.timeStamp - this._lastScrollTime < 20)) {
        this._lastScrollTime = $event.timeStamp;
        const target = $event.target;
        this.$trigger("scroll", $event, {
          scrollLeft: target.scrollLeft,
          scrollTop: target.scrollTop,
          scrollHeight: target.scrollHeight,
          scrollWidth: target.scrollWidth,
          deltaX: this.lastScrollLeft - target.scrollLeft,
          deltaY: this.lastScrollTop - target.scrollTop
        });
        if (this.scrollY) {
          if (target.scrollTop <= this.upperThresholdNumber && this.lastScrollTop - target.scrollTop > 0 && $event.timeStamp - this.lastScrollToUpperTime > 200) {
            this.$trigger("scrolltoupper", $event, {
              direction: "top"
            });
            this.lastScrollToUpperTime = $event.timeStamp;
          }
          if (target.scrollTop + target.offsetHeight + this.lowerThresholdNumber >= target.scrollHeight && this.lastScrollTop - target.scrollTop < 0 && $event.timeStamp - this.lastScrollToLowerTime > 200) {
            this.$trigger("scrolltolower", $event, {
              direction: "bottom"
            });
            this.lastScrollToLowerTime = $event.timeStamp;
          }
        }
        if (this.scrollX) {
          if (target.scrollLeft <= this.upperThresholdNumber && this.lastScrollLeft - target.scrollLeft > 0 && $event.timeStamp - this.lastScrollToUpperTime > 200) {
            this.$trigger("scrolltoupper", $event, {
              direction: "left"
            });
            this.lastScrollToUpperTime = $event.timeStamp;
          }
          if (target.scrollLeft + target.offsetWidth + this.lowerThresholdNumber >= target.scrollWidth && this.lastScrollLeft - target.scrollLeft < 0 && $event.timeStamp - this.lastScrollToLowerTime > 200) {
            this.$trigger("scrolltolower", $event, {
              direction: "right"
            });
            this.lastScrollToLowerTime = $event.timeStamp;
          }
        }
        this.lastScrollTop = target.scrollTop;
        this.lastScrollLeft = target.scrollLeft;
      }
    },
    _scrollTopChanged: function(val) {
      if (this.scrollY) {
        if (this._innerSetScrollTop) {
          this._innerSetScrollTop = false;
        } else {
          if (this.scrollWithAnimation) {
            this.scrollTo(val, "y");
          } else {
            this.$refs.main.scrollTop = val;
          }
        }
      }
    },
    _scrollLeftChanged: function(val) {
      if (this.scrollX) {
        if (this._innerSetScrollLeft) {
          this._innerSetScrollLeft = false;
        } else {
          if (this.scrollWithAnimation) {
            this.scrollTo(val, "x");
          } else {
            this.$refs.main.scrollLeft = val;
          }
        }
      }
    },
    _scrollIntoViewChanged: function(val) {
      if (val) {
        if (!/^[_a-zA-Z][-_a-zA-Z0-9:]*$/.test(val)) {
          console.group('scroll-into-view="' + val + '" \u6709\u8BEF');
          console.error("id \u5C5E\u6027\u503C\u683C\u5F0F\u9519\u8BEF\u3002\u5982\u4E0D\u80FD\u4EE5\u6570\u5B57\u5F00\u5934\u3002");
          console.groupEnd();
          return;
        }
        var element = this.$el.querySelector("#" + val);
        if (element) {
          var mainRect = this.$refs.main.getBoundingClientRect();
          var elRect = element.getBoundingClientRect();
          if (this.scrollX) {
            var left = elRect.left - mainRect.left;
            var scrollLeft = this.$refs.main.scrollLeft;
            var x = scrollLeft + left;
            if (this.scrollWithAnimation) {
              this.scrollTo(x, "x");
            } else {
              this.$refs.main.scrollLeft = x;
            }
          }
          if (this.scrollY) {
            var top = elRect.top - mainRect.top;
            var scrollTop = this.$refs.main.scrollTop;
            var y = scrollTop + top;
            if (this.scrollWithAnimation) {
              this.scrollTo(y, "y");
            } else {
              this.$refs.main.scrollTop = y;
            }
          }
        }
      }
    },
    _transitionEnd: function(val, type) {
      this.$refs.content.style.transition = "";
      this.$refs.content.style.webkitTransition = "";
      this.$refs.content.style.transform = "";
      this.$refs.content.style.webkitTransform = "";
      var main = this.$refs.main;
      if (type === "x") {
        main.style.overflowX = this.scrollX ? "auto" : "hidden";
        main.scrollLeft = val;
      } else if (type === "y") {
        main.style.overflowY = this.scrollY ? "auto" : "hidden";
        main.scrollTop = val;
      }
      this.$refs.content.removeEventListener("transitionend", this.__transitionEnd);
      this.$refs.content.removeEventListener("webkitTransitionEnd", this.__transitionEnd);
    },
    _setRefreshState(state) {
      switch (state) {
        case "refreshing":
          this.refresherHeight = this.refresherThreshold;
          this.$trigger("refresherrefresh", event, {});
          break;
        case "restore":
          this.refresherHeight = 0;
          this.$trigger("refresherrestore", {}, {});
          break;
      }
      this.refreshState = state;
    },
    getScrollPosition() {
      const main = this.$refs.main;
      return {
        scrollLeft: main.scrollLeft,
        scrollTop: main.scrollTop
      };
    }
fxy060608's avatar
fxy060608 已提交
9103
  }
fxy060608's avatar
fxy060608 已提交
9104
};
9105
const _hoisted_1$6 = {
fxy060608's avatar
fxy060608 已提交
9106 9107 9108
  ref: "wrap",
  class: "uni-scroll-view"
};
fxy060608's avatar
fxy060608 已提交
9109
const _hoisted_2$5 = {
fxy060608's avatar
fxy060608 已提交
9110 9111 9112
  ref: "content",
  class: "uni-scroll-view-content"
};
fxy060608's avatar
fxy060608 已提交
9113
const _hoisted_3$2 = {
fxy060608's avatar
fxy060608 已提交
9114 9115 9116
  key: 0,
  class: "uni-scroll-view-refresh"
};
fxy060608's avatar
fxy060608 已提交
9117 9118 9119
const _hoisted_4$2 = {class: "uni-scroll-view-refresh-inner"};
const _hoisted_5$1 = /* @__PURE__ */ createVNode("path", {d: "M17.65 6.35C16.2 4.9 14.21 4 12 4c-4.42 0-7.99 3.58-7.99 8s3.57 8 7.99 8c3.73 0 6.84-2.55 7.73-6h-2.08c-.82 2.33-3.04 4-5.65 4-3.31 0-6-2.69-6-6s2.69-6 6-6c1.66 0 3.14.69 4.22 1.78L13 11h7V4l-2.35 2.35z"}, null, -1);
const _hoisted_6$1 = /* @__PURE__ */ createVNode("path", {
fxy060608's avatar
fxy060608 已提交
9120 9121 9122
  d: "M0 0h24v24H0z",
  fill: "none"
}, null, -1);
fxy060608's avatar
fxy060608 已提交
9123
const _hoisted_7$1 = {
fxy060608's avatar
fxy060608 已提交
9124 9125 9126 9127 9128 9129
  key: 1,
  class: "uni-scroll-view-refresh__spinner",
  width: "24",
  height: "24",
  viewBox: "25 25 50 50"
};
fxy060608's avatar
fxy060608 已提交
9130
const _hoisted_8$1 = /* @__PURE__ */ createVNode("circle", {
fxy060608's avatar
fxy060608 已提交
9131 9132 9133 9134 9135 9136 9137
  cx: "50",
  cy: "50",
  r: "20",
  fill: "none",
  style: {color: "#2bd009"},
  "stroke-width": "3"
}, null, -1);
9138
function _sfc_render$8(_ctx, _cache, $props, $setup, $data, $options) {
fxy060608's avatar
fxy060608 已提交
9139
  return openBlock(), createBlock("uni-scroll-view", _ctx.$attrs, [
9140
    createVNode("div", _hoisted_1$6, [
fxy060608's avatar
fxy060608 已提交
9141 9142 9143 9144 9145 9146 9147 9148
      createVNode("div", {
        ref: "main",
        style: {
          "overflow-x": $props.scrollX ? "auto" : "hidden",
          "overflow-y": $props.scrollY ? "auto" : "hidden"
        },
        class: "uni-scroll-view"
      }, [
fxy060608's avatar
fxy060608 已提交
9149
        createVNode("div", _hoisted_2$5, [
fxy060608's avatar
fxy060608 已提交
9150 9151 9152 9153 9154 9155 9156 9157 9158
          $props.refresherEnabled ? (openBlock(), createBlock("div", {
            key: 0,
            ref: "refresherinner",
            style: {
              "background-color": $props.refresherBackground,
              height: $data.refresherHeight + "px"
            },
            class: "uni-scroll-view-refresher"
          }, [
fxy060608's avatar
fxy060608 已提交
9159 9160
            $props.refresherDefaultStyle !== "none" ? (openBlock(), createBlock("div", _hoisted_3$2, [
              createVNode("div", _hoisted_4$2, [
fxy060608's avatar
fxy060608 已提交
9161 9162 9163 9164 9165 9166 9167 9168 9169
                $data.refreshState == "pulling" ? (openBlock(), createBlock("svg", {
                  key: 0,
                  style: {transform: "rotate(" + $data.refreshRotate + "deg)"},
                  fill: "#2BD009",
                  class: "uni-scroll-view-refresh__icon",
                  width: "24",
                  height: "24",
                  viewBox: "0 0 24 24"
                }, [
fxy060608's avatar
fxy060608 已提交
9170 9171
                  _hoisted_5$1,
                  _hoisted_6$1
fxy060608's avatar
fxy060608 已提交
9172
                ], 4)) : createCommentVNode("", true),
fxy060608's avatar
fxy060608 已提交
9173 9174
                $data.refreshState == "refreshing" ? (openBlock(), createBlock("svg", _hoisted_7$1, [
                  _hoisted_8$1
fxy060608's avatar
fxy060608 已提交
9175 9176 9177 9178 9179 9180 9181 9182 9183 9184 9185
                ])) : createCommentVNode("", true)
              ])
            ])) : createCommentVNode("", true),
            $props.refresherDefaultStyle == "none" ? renderSlot(_ctx.$slots, "refresher", {key: 1}) : createCommentVNode("", true)
          ], 4)) : createCommentVNode("", true),
          renderSlot(_ctx.$slots, "default")
        ], 512)
      ], 4)
    ], 512)
  ], 16);
}
9186 9187
_sfc_main$8.render = _sfc_render$8;
const _sfc_main$7 = {
fxy060608's avatar
fxy060608 已提交
9188 9189 9190 9191 9192 9193 9194 9195 9196 9197 9198 9199 9200 9201 9202 9203 9204 9205 9206 9207 9208 9209 9210 9211 9212 9213 9214 9215 9216 9217 9218 9219 9220 9221 9222 9223 9224 9225 9226 9227 9228 9229 9230 9231 9232 9233 9234 9235 9236 9237 9238 9239 9240 9241 9242 9243 9244 9245 9246 9247 9248 9249 9250 9251 9252 9253 9254 9255 9256 9257 9258 9259 9260 9261 9262 9263 9264 9265 9266 9267 9268 9269 9270 9271 9272 9273 9274 9275 9276 9277 9278 9279 9280 9281 9282 9283 9284 9285 9286 9287 9288 9289 9290 9291 9292 9293 9294 9295 9296 9297 9298 9299 9300 9301 9302 9303 9304 9305 9306 9307 9308 9309 9310 9311 9312 9313 9314 9315 9316 9317 9318 9319 9320 9321 9322 9323 9324 9325 9326 9327 9328 9329 9330 9331 9332 9333 9334 9335 9336 9337 9338 9339 9340 9341 9342 9343 9344
  name: "Slider",
  mixins: [emitter, listeners, touchtrack],
  props: {
    name: {
      type: String,
      default: ""
    },
    min: {
      type: [Number, String],
      default: 0
    },
    max: {
      type: [Number, String],
      default: 100
    },
    value: {
      type: [Number, String],
      default: 0
    },
    step: {
      type: [Number, String],
      default: 1
    },
    disabled: {
      type: [Boolean, String],
      default: false
    },
    color: {
      type: String,
      default: "#e9e9e9"
    },
    backgroundColor: {
      type: String,
      default: "#e9e9e9"
    },
    activeColor: {
      type: String,
      default: "#007aff"
    },
    selectedColor: {
      type: String,
      default: "#007aff"
    },
    blockColor: {
      type: String,
      default: "#ffffff"
    },
    blockSize: {
      type: [Number, String],
      default: 28
    },
    showValue: {
      type: [Boolean, String],
      default: false
    }
  },
  data() {
    return {
      sliderValue: Number(this.value)
    };
  },
  computed: {
    setBlockStyle() {
      return {
        width: this.blockSize + "px",
        height: this.blockSize + "px",
        marginLeft: -this.blockSize / 2 + "px",
        marginTop: -this.blockSize / 2 + "px",
        left: this._getValueWidth(),
        backgroundColor: this.blockColor
      };
    },
    setBgColor() {
      return {
        backgroundColor: this._getBgColor()
      };
    },
    setBlockBg() {
      return {
        left: this._getValueWidth()
      };
    },
    setActiveColor() {
      return {
        backgroundColor: this._getActiveColor(),
        width: this._getValueWidth()
      };
    }
  },
  watch: {
    value(val) {
      this.sliderValue = Number(val);
    }
  },
  mounted() {
    this.touchtrack(this.$refs["uni-slider-handle"], "_onTrack");
  },
  created() {
    this.$dispatch("Form", "uni-form-group-update", {
      type: "add",
      vm: this
    });
  },
  beforeDestroy() {
    this.$dispatch("Form", "uni-form-group-update", {
      type: "remove",
      vm: this
    });
  },
  methods: {
    _onUserChangedValue(e2) {
      const slider = this.$refs["uni-slider"];
      const offsetWidth = slider.offsetWidth;
      const boxLeft = slider.getBoundingClientRect().left;
      const value = (e2.x - boxLeft) * (this.max - this.min) / offsetWidth + Number(this.min);
      this.sliderValue = this._filterValue(value);
    },
    _filterValue(e2) {
      return e2 < this.min ? this.min : e2 > this.max ? this.max : Math.round((e2 - this.min) / this.step) * this.step + Number(this.min);
    },
    _getValueWidth() {
      return 100 * (this.sliderValue - this.min) / (this.max - this.min) + "%";
    },
    _getBgColor() {
      return this.backgroundColor !== "#e9e9e9" ? this.backgroundColor : this.color !== "#007aff" ? this.color : "#007aff";
    },
    _getActiveColor() {
      return this.activeColor !== "#007aff" ? this.activeColor : this.selectedColor !== "#e9e9e9" ? this.selectedColor : "#e9e9e9";
    },
    _onTrack: function(e2) {
      if (!this.disabled) {
        return e2.detail.state === "move" ? (this._onUserChangedValue({
          x: e2.detail.x0
        }), this.$trigger("changing", e2, {
          value: this.sliderValue
        }), false) : e2.detail.state === "end" && this.$trigger("change", e2, {
          value: this.sliderValue
        });
      }
    },
    _onClick($event) {
      if (this.disabled) {
        return;
      }
      this._onUserChangedValue($event);
      this.$trigger("change", $event, {
        value: this.sliderValue
      });
    },
    _resetFormData() {
      this.sliderValue = this.min;
    },
    _getFormData() {
      const data = {};
      if (this.name !== "") {
        data.value = this.sliderValue;
        data.key = this.name;
fxy060608's avatar
fxy060608 已提交
9345
      }
fxy060608's avatar
fxy060608 已提交
9346
      return data;
fxy060608's avatar
fxy060608 已提交
9347
    }
fxy060608's avatar
fxy060608 已提交
9348 9349
  }
};
9350
const _hoisted_1$5 = {class: "uni-slider-wrapper"};
fxy060608's avatar
fxy060608 已提交
9351
const _hoisted_2$4 = {class: "uni-slider-tap-area"};
9352
function _sfc_render$7(_ctx, _cache, $props, $setup, $data, $options) {
fxy060608's avatar
fxy060608 已提交
9353 9354 9355
  return openBlock(), createBlock("uni-slider", mergeProps({ref: "uni-slider"}, _ctx.$attrs, {
    onClick: _cache[1] || (_cache[1] = (...args) => $options._onClick && $options._onClick(...args))
  }), [
9356
    createVNode("div", _hoisted_1$5, [
fxy060608's avatar
fxy060608 已提交
9357
      createVNode("div", _hoisted_2$4, [
fxy060608's avatar
fxy060608 已提交
9358 9359 9360 9361 9362 9363 9364 9365 9366 9367 9368 9369 9370 9371 9372 9373 9374 9375 9376 9377 9378 9379 9380 9381 9382 9383
        createVNode("div", {
          style: $options.setBgColor,
          class: "uni-slider-handle-wrapper"
        }, [
          createVNode("div", {
            ref: "uni-slider-handle",
            style: $options.setBlockBg,
            class: "uni-slider-handle"
          }, null, 4),
          createVNode("div", {
            style: $options.setBlockStyle,
            class: "uni-slider-thumb"
          }, null, 4),
          createVNode("div", {
            style: $options.setActiveColor,
            class: "uni-slider-track"
          }, null, 4)
        ], 4)
      ]),
      withDirectives(createVNode("span", {class: "uni-slider-value"}, toDisplayString($data.sliderValue), 513), [
        [vShow, $props.showValue]
      ])
    ]),
    renderSlot(_ctx.$slots, "default")
  ], 16);
}
9384 9385
_sfc_main$7.render = _sfc_render$7;
const _sfc_main$6 = {
fxy060608's avatar
fxy060608 已提交
9386 9387 9388 9389 9390 9391
  name: "SwiperItem",
  props: {
    itemId: {
      type: String,
      default: ""
    }
fxy060608's avatar
fxy060608 已提交
9392
  },
fxy060608's avatar
fxy060608 已提交
9393 9394 9395 9396 9397 9398 9399 9400 9401 9402
  mounted: function() {
    var $el = this.$el;
    $el.style.position = "absolute";
    $el.style.width = "100%";
    $el.style.height = "100%";
    var callbacks2 = this.$vnode._callbacks;
    if (callbacks2) {
      callbacks2.forEach((callback) => {
        callback();
      });
fxy060608's avatar
fxy060608 已提交
9403
    }
fxy060608's avatar
fxy060608 已提交
9404 9405
  }
};
9406
function _sfc_render$6(_ctx, _cache, $props, $setup, $data, $options) {
fxy060608's avatar
fxy060608 已提交
9407 9408 9409
  return openBlock(), createBlock("uni-swiper-item", _ctx.$attrs, [
    renderSlot(_ctx.$slots, "default")
  ], 16);
fxy060608's avatar
fxy060608 已提交
9410
}
9411 9412
_sfc_main$6.render = _sfc_render$6;
const _sfc_main$5 = {
fxy060608's avatar
fxy060608 已提交
9413 9414 9415 9416 9417 9418 9419 9420 9421 9422 9423 9424 9425 9426 9427 9428 9429 9430 9431 9432 9433 9434 9435 9436 9437 9438 9439
  name: "Switch",
  mixins: [emitter, listeners],
  props: {
    name: {
      type: String,
      default: ""
    },
    checked: {
      type: [Boolean, String],
      default: false
    },
    type: {
      type: String,
      default: "switch"
    },
    id: {
      type: String,
      default: ""
    },
    disabled: {
      type: [Boolean, String],
      default: false
    },
    color: {
      type: String,
      default: "#007aff"
    }
fxy060608's avatar
fxy060608 已提交
9440
  },
fxy060608's avatar
fxy060608 已提交
9441 9442 9443 9444
  data() {
    return {
      switchChecked: this.checked
    };
fxy060608's avatar
fxy060608 已提交
9445
  },
fxy060608's avatar
fxy060608 已提交
9446 9447 9448 9449
  watch: {
    checked(val) {
      this.switchChecked = val;
    }
fxy060608's avatar
fxy060608 已提交
9450
  },
fxy060608's avatar
fxy060608 已提交
9451 9452 9453 9454 9455
  created() {
    this.$dispatch("Form", "uni-form-group-update", {
      type: "add",
      vm: this
    });
fxy060608's avatar
fxy060608 已提交
9456
  },
fxy060608's avatar
fxy060608 已提交
9457 9458 9459 9460 9461
  beforeDestroy() {
    this.$dispatch("Form", "uni-form-group-update", {
      type: "remove",
      vm: this
    });
fxy060608's avatar
fxy060608 已提交
9462
  },
fxy060608's avatar
fxy060608 已提交
9463 9464 9465
  listeners: {
    "label-click": "_onClick",
    "@label-click": "_onClick"
fxy060608's avatar
fxy060608 已提交
9466
  },
fxy060608's avatar
fxy060608 已提交
9467 9468 9469 9470
  methods: {
    _onClick($event) {
      if (this.disabled) {
        return;
fxy060608's avatar
fxy060608 已提交
9471
      }
fxy060608's avatar
fxy060608 已提交
9472 9473 9474 9475
      this.switchChecked = !this.switchChecked;
      this.$trigger("change", $event, {
        value: this.switchChecked
      });
fxy060608's avatar
fxy060608 已提交
9476
    },
fxy060608's avatar
fxy060608 已提交
9477 9478
    _resetFormData() {
      this.switchChecked = false;
fxy060608's avatar
fxy060608 已提交
9479
    },
fxy060608's avatar
fxy060608 已提交
9480 9481 9482 9483 9484
    _getFormData() {
      const data = {};
      if (this.name !== "") {
        data.value = this.switchChecked;
        data.key = this.name;
fxy060608's avatar
fxy060608 已提交
9485
      }
fxy060608's avatar
fxy060608 已提交
9486
      return data;
fxy060608's avatar
fxy060608 已提交
9487 9488 9489
    }
  }
};
9490 9491
const _hoisted_1$4 = {class: "uni-switch-wrapper"};
function _sfc_render$5(_ctx, _cache, $props, $setup, $data, $options) {
fxy060608's avatar
fxy060608 已提交
9492 9493 9494
  return openBlock(), createBlock("uni-switch", mergeProps({disabled: $props.disabled}, _ctx.$attrs, {
    onClick: _cache[1] || (_cache[1] = (...args) => $options._onClick && $options._onClick(...args))
  }), [
9495
    createVNode("div", _hoisted_1$4, [
fxy060608's avatar
fxy060608 已提交
9496 9497 9498 9499 9500 9501 9502 9503 9504 9505 9506 9507 9508 9509
      withDirectives(createVNode("div", {
        class: [[$data.switchChecked ? "uni-switch-input-checked" : ""], "uni-switch-input"],
        style: {backgroundColor: $data.switchChecked ? $props.color : "#DFDFDF", borderColor: $data.switchChecked ? $props.color : "#DFDFDF"}
      }, null, 6), [
        [vShow, $props.type === "switch"]
      ]),
      withDirectives(createVNode("div", {
        class: [[$data.switchChecked ? "uni-checkbox-input-checked" : ""], "uni-checkbox-input"],
        style: {color: $props.color}
      }, null, 6), [
        [vShow, $props.type === "checkbox"]
      ])
    ])
  ], 16, ["disabled"]);
fxy060608's avatar
fxy060608 已提交
9510
}
9511
_sfc_main$5.render = _sfc_render$5;
fxy060608's avatar
fxy060608 已提交
9512 9513 9514 9515
const SPACE_UNICODE = {
  ensp: "\u2002",
  emsp: "\u2003",
  nbsp: "\xA0"
fxy060608's avatar
fxy060608 已提交
9516
};
fxy060608's avatar
fxy060608 已提交
9517 9518 9519 9520 9521 9522
function normalizeText(text2, {
  space,
  decode: decode2
}) {
  if (space && SPACE_UNICODE[space]) {
    text2 = text2.replace(/ /g, SPACE_UNICODE[space]);
fxy060608's avatar
fxy060608 已提交
9523
  }
fxy060608's avatar
fxy060608 已提交
9524 9525 9526 9527 9528
  if (!decode2) {
    return text2;
  }
  return text2.replace(/&nbsp;/g, SPACE_UNICODE.nbsp).replace(/&ensp;/g, SPACE_UNICODE.ensp).replace(/&emsp;/g, SPACE_UNICODE.emsp).replace(/&lt;/g, "<").replace(/&gt;/g, ">").replace(/&amp;/g, "&").replace(/&quot;/g, '"').replace(/&apos;/g, "'");
}
fxy060608's avatar
fxy060608 已提交
9529
var index$2 = /* @__PURE__ */ defineComponent({
fxy060608's avatar
fxy060608 已提交
9530 9531 9532 9533 9534 9535 9536 9537 9538 9539 9540 9541 9542
  name: "Text",
  props: {
    selectable: {
      type: [Boolean, String],
      default: false
    },
    space: {
      type: String,
      default: ""
    },
    decode: {
      type: [Boolean, String],
      default: false
fxy060608's avatar
fxy060608 已提交
9543
    }
fxy060608's avatar
fxy060608 已提交
9544
  },
fxy060608's avatar
fxy060608 已提交
9545
  setup(props2, {
fxy060608's avatar
fxy060608 已提交
9546 9547 9548 9549 9550 9551 9552 9553 9554 9555 9556
    slots
  }) {
    return () => {
      const children = [];
      if (slots.default) {
        slots.default().forEach((vnode) => {
          if (vnode.shapeFlag & 8) {
            const lines = vnode.children.replace(/\\n/g, "\n").split("\n");
            const len = lines.length - 1;
            lines.forEach((text2, index2) => {
              children.push(createTextVNode(normalizeText(text2, {
fxy060608's avatar
fxy060608 已提交
9557 9558
                space: props2.space,
                decode: props2.decode
fxy060608's avatar
fxy060608 已提交
9559 9560 9561 9562 9563 9564 9565 9566 9567 9568 9569 9570 9571 9572
              })));
              if (index2 !== len) {
                children.push(createVNode("br"));
              }
            });
          } else {
            if (process.env.NODE_ENV !== "production" && vnode.shapeFlag & 6 && vnode.type.name !== "Text") {
              console.warn("Do not nest other components in the text component, as there may be display differences on different platforms.");
            }
            children.push(vnode);
          }
        });
      }
      return createVNode("uni-text", {
fxy060608's avatar
fxy060608 已提交
9573
        selectable: props2.selectable
fxy060608's avatar
fxy060608 已提交
9574 9575
      }, [createVNode("span", null, [children])], 8, ["selectable"]);
    };
fxy060608's avatar
fxy060608 已提交
9576
  }
fxy060608's avatar
fxy060608 已提交
9577 9578
});
const DARK_TEST_STRING = "(prefers-color-scheme: dark)";
9579
const _sfc_main$4 = {
fxy060608's avatar
fxy060608 已提交
9580 9581 9582 9583
  name: "Textarea",
  mixins: [baseInput],
  props: {
    name: {
fxy060608's avatar
fxy060608 已提交
9584
      type: String,
fxy060608's avatar
fxy060608 已提交
9585 9586 9587 9588 9589 9590 9591 9592 9593 9594 9595 9596 9597 9598 9599 9600 9601 9602 9603 9604 9605 9606 9607 9608 9609 9610 9611 9612 9613 9614 9615 9616 9617 9618 9619 9620 9621 9622 9623 9624 9625 9626 9627 9628 9629 9630 9631 9632 9633 9634 9635 9636 9637 9638 9639 9640 9641 9642 9643 9644 9645 9646 9647 9648 9649 9650 9651 9652 9653 9654 9655 9656 9657 9658 9659 9660 9661 9662 9663 9664 9665 9666 9667 9668 9669 9670 9671 9672
      default: ""
    },
    maxlength: {
      type: [Number, String],
      default: 140
    },
    placeholder: {
      type: String,
      default: ""
    },
    disabled: {
      type: [Boolean, String],
      default: false
    },
    focus: {
      type: [Boolean, String],
      default: false
    },
    autoFocus: {
      type: [Boolean, String],
      default: false
    },
    placeholderClass: {
      type: String,
      default: "textarea-placeholder"
    },
    placeholderStyle: {
      type: String,
      default: ""
    },
    autoHeight: {
      type: [Boolean, String],
      default: false
    },
    cursor: {
      type: [Number, String],
      default: -1
    },
    selectionStart: {
      type: [Number, String],
      default: -1
    },
    selectionEnd: {
      type: [Number, String],
      default: -1
    }
  },
  data() {
    return {
      valueComposition: "",
      composition: false,
      focusSync: this.focus,
      height: 0,
      focusChangeSource: "",
      fixMargin: String(navigator.platform).indexOf("iP") === 0 && String(navigator.vendor).indexOf("Apple") === 0 && window.matchMedia(DARK_TEST_STRING).media !== DARK_TEST_STRING
    };
  },
  computed: {
    maxlengthNumber() {
      var maxlength = Number(this.maxlength);
      return isNaN(maxlength) ? 140 : maxlength;
    },
    cursorNumber() {
      var cursor = Number(this.cursor);
      return isNaN(cursor) ? -1 : cursor;
    },
    selectionStartNumber() {
      var selectionStart = Number(this.selectionStart);
      return isNaN(selectionStart) ? -1 : selectionStart;
    },
    selectionEndNumber() {
      var selectionEnd = Number(this.selectionEnd);
      return isNaN(selectionEnd) ? -1 : selectionEnd;
    },
    valueCompute() {
      return (this.composition ? this.valueComposition : this.valueSync).split("\n");
    }
  },
  watch: {
    focus(val) {
      if (val) {
        this.focusChangeSource = "focus";
        if (this.$refs.textarea) {
          this.$refs.textarea.focus();
        }
      } else {
        if (this.$refs.textarea) {
          this.$refs.textarea.blur();
fxy060608's avatar
fxy060608 已提交
9673 9674 9675
        }
      }
    },
fxy060608's avatar
fxy060608 已提交
9676 9677 9678 9679
    focusSync(val) {
      this.$emit("update:focus", val);
      this._checkSelection();
      this._checkCursor();
fxy060608's avatar
fxy060608 已提交
9680
    },
fxy060608's avatar
fxy060608 已提交
9681 9682 9683 9684 9685 9686 9687 9688 9689 9690 9691 9692 9693
    cursorNumber() {
      this._checkCursor();
    },
    selectionStartNumber() {
      this._checkSelection();
    },
    selectionEndNumber() {
      this._checkSelection();
    },
    height(height) {
      let lineHeight = parseFloat(getComputedStyle(this.$el).lineHeight);
      if (isNaN(lineHeight)) {
        lineHeight = this.$refs.line.offsetHeight;
fxy060608's avatar
fxy060608 已提交
9694
      }
fxy060608's avatar
fxy060608 已提交
9695 9696 9697 9698 9699 9700 9701 9702
      var lineCount = Math.round(height / lineHeight);
      this.$trigger("linechange", {}, {
        height,
        heightRpx: 750 / window.innerWidth * height,
        lineCount
      });
      if (this.autoHeight) {
        this.$el.style.height = this.height + "px";
fxy060608's avatar
fxy060608 已提交
9703 9704
      }
    }
fxy060608's avatar
fxy060608 已提交
9705 9706 9707 9708 9709 9710 9711 9712 9713 9714 9715 9716 9717 9718 9719 9720
  },
  created() {
    this.$dispatch("Form", "uni-form-group-update", {
      type: "add",
      vm: this
    });
  },
  mounted() {
    this._resize({
      height: this.$refs.sensor.$el.offsetHeight
    });
    let $vm = this;
    while ($vm) {
      const scopeId = $vm.$options._scopeId;
      if (scopeId) {
        this.$refs.placeholder.setAttribute(scopeId, "");
fxy060608's avatar
fxy060608 已提交
9721
      }
fxy060608's avatar
fxy060608 已提交
9722
      $vm = $vm.$parent;
fxy060608's avatar
fxy060608 已提交
9723
    }
fxy060608's avatar
fxy060608 已提交
9724 9725 9726 9727 9728 9729 9730 9731 9732 9733 9734 9735 9736 9737 9738 9739 9740 9741 9742 9743 9744 9745 9746 9747 9748 9749 9750 9751 9752 9753 9754 9755 9756 9757 9758 9759 9760 9761 9762 9763 9764 9765 9766 9767 9768 9769 9770 9771 9772 9773 9774 9775 9776 9777 9778 9779 9780 9781 9782 9783 9784 9785 9786 9787 9788 9789 9790 9791 9792 9793 9794 9795 9796
    this.initKeyboard(this.$refs.textarea);
  },
  beforeDestroy() {
    this.$dispatch("Form", "uni-form-group-update", {
      type: "remove",
      vm: this
    });
  },
  methods: {
    _focus: function($event) {
      this.focusSync = true;
      this.$trigger("focus", $event, {
        value: this.valueSync
      });
    },
    _checkSelection() {
      if (this.focusSync && !this.focusChangeSource && this.selectionStartNumber > -1 && this.selectionEndNumber > -1) {
        this.$refs.textarea.selectionStart = this.selectionStartNumber;
        this.$refs.textarea.selectionEnd = this.selectionEndNumber;
      }
    },
    _checkCursor() {
      if (this.focusSync && (this.focusChangeSource === "focus" || !this.focusChangeSource && this.selectionStartNumber < 0 && this.selectionEndNumber < 0) && this.cursorNumber > -1) {
        this.$refs.textarea.selectionEnd = this.$refs.textarea.selectionStart = this.cursorNumber;
      }
    },
    _blur: function($event) {
      this.focusSync = false;
      this.$trigger("blur", $event, {
        value: this.valueSync,
        cursor: this.$refs.textarea.selectionEnd
      });
    },
    _compositionstart($event) {
      this.composition = true;
    },
    _compositionend($event) {
      this.composition = false;
    },
    _confirm($event) {
      this.$trigger("confirm", $event, {
        value: this.valueSync
      });
    },
    _linechange($event) {
      this.$trigger("linechange", $event, {
        value: this.valueSync
      });
    },
    _touchstart() {
      this.focusChangeSource = "touch";
    },
    _resize({height}) {
      this.height = height;
    },
    _input($event) {
      if (this.composition) {
        this.valueComposition = $event.target.value;
        return;
      }
      this.$triggerInput($event, {
        value: this.valueSync,
        cursor: this.$refs.textarea.selectionEnd
      });
    },
    _getFormData() {
      return {
        value: this.valueSync,
        key: this.name
      };
    },
    _resetFormData() {
      this.valueSync = "";
fxy060608's avatar
fxy060608 已提交
9797
    }
fxy060608's avatar
fxy060608 已提交
9798 9799
  }
};
9800
const _hoisted_1$3 = {class: "uni-textarea-wrapper"};
fxy060608's avatar
fxy060608 已提交
9801
const _hoisted_2$3 = {class: "uni-textarea-compute"};
9802
function _sfc_render$4(_ctx, _cache, $props, $setup, $data, $options) {
fxy060608's avatar
fxy060608 已提交
9803 9804 9805 9806 9807
  const _component_v_uni_resize_sensor = resolveComponent("v-uni-resize-sensor");
  return openBlock(), createBlock("uni-textarea", mergeProps({
    onChange: _cache[8] || (_cache[8] = withModifiers(() => {
    }, ["stop"]))
  }, _ctx.$attrs), [
9808
    createVNode("div", _hoisted_1$3, [
fxy060608's avatar
fxy060608 已提交
9809 9810 9811 9812 9813 9814 9815 9816 9817 9818 9819 9820 9821
      withDirectives(createVNode("div", {
        ref: "placeholder",
        style: $props.placeholderStyle,
        class: [$props.placeholderClass, "uni-textarea-placeholder"],
        textContent: toDisplayString($props.placeholder)
      }, null, 14, ["textContent"]), [
        [vShow, !($data.composition || _ctx.valueSync.length)]
      ]),
      createVNode("div", {
        ref: "line",
        class: "uni-textarea-line",
        textContent: toDisplayString(" ")
      }, null, 8, ["textContent"]),
fxy060608's avatar
fxy060608 已提交
9822
      createVNode("div", _hoisted_2$3, [
fxy060608's avatar
fxy060608 已提交
9823 9824 9825 9826 9827 9828 9829 9830 9831 9832 9833 9834 9835 9836 9837 9838 9839 9840 9841 9842 9843 9844 9845 9846 9847 9848 9849 9850 9851 9852 9853
        (openBlock(true), createBlock(Fragment, null, renderList($options.valueCompute, (item, index2) => {
          return openBlock(), createBlock("div", {
            key: index2,
            textContent: toDisplayString(item.trim() ? item : ".")
          }, null, 8, ["textContent"]);
        }), 128)),
        createVNode(_component_v_uni_resize_sensor, {
          ref: "sensor",
          onResize: $options._resize
        }, null, 8, ["onResize"])
      ]),
      withDirectives(createVNode("textarea", {
        ref: "textarea",
        "onUpdate:modelValue": _cache[1] || (_cache[1] = ($event) => _ctx.valueSync = $event),
        disabled: $props.disabled,
        maxlength: $options.maxlengthNumber,
        autofocus: $props.autoFocus || $props.focus,
        class: [{"uni-textarea-textarea-fix-margin": $data.fixMargin}, "uni-textarea-textarea"],
        style: {"overflow-y": $props.autoHeight ? "hidden" : "auto"},
        onCompositionstart: _cache[2] || (_cache[2] = (...args) => $options._compositionstart && $options._compositionstart(...args)),
        onCompositionend: _cache[3] || (_cache[3] = (...args) => $options._compositionend && $options._compositionend(...args)),
        onInput: _cache[4] || (_cache[4] = withModifiers((...args) => $options._input && $options._input(...args), ["stop"])),
        onFocus: _cache[5] || (_cache[5] = (...args) => $options._focus && $options._focus(...args)),
        onBlur: _cache[6] || (_cache[6] = (...args) => $options._blur && $options._blur(...args)),
        onTouchstartPassive: _cache[7] || (_cache[7] = (...args) => $options._touchstart && $options._touchstart(...args))
      }, null, 46, ["disabled", "maxlength", "autofocus"]), [
        [vModelText, _ctx.valueSync]
      ])
    ])
  ], 16);
}
9854
_sfc_main$4.render = _sfc_render$4;
fxy060608's avatar
fxy060608 已提交
9855
var index$1 = /* @__PURE__ */ defineComponent({
fxy060608's avatar
fxy060608 已提交
9856
  name: "View",
9857
  props: extend({}, hoverProps),
fxy060608's avatar
fxy060608 已提交
9858
  setup(props2, {
9859 9860 9861 9862 9863
    slots
  }) {
    const {
      hovering,
      binding
fxy060608's avatar
fxy060608 已提交
9864
    } = useHover(props2);
9865
    return () => {
fxy060608's avatar
fxy060608 已提交
9866
      const hoverClass = props2.hoverClass;
9867 9868 9869 9870 9871 9872 9873
      if (hoverClass && hoverClass !== "none") {
        return createVNode("uni-view", mergeProps({
          class: hovering.value ? hoverClass : ""
        }, binding), [slots.default && slots.default()], 16);
      }
      return createVNode("uni-view", null, [slots.default && slots.default()]);
    };
fxy060608's avatar
fxy060608 已提交
9874
  }
9875
});
fxy060608's avatar
fxy060608 已提交
9876 9877 9878 9879 9880 9881 9882 9883 9884 9885 9886 9887
function normalizeEvent(componentId, vm) {
  return vm.$page.id + "-" + vm.$options.name.replace(/VUni([A-Z])/, "$1").toLowerCase() + "-" + componentId;
}
function addSubscribe(componentId, vm, callback) {
  UniViewJSBridge.subscribe(normalizeEvent(componentId, vm), ({type, data}) => {
    callback(type, data);
  });
}
function removeSubscribe(componentId, vm) {
  UniViewJSBridge.unsubscribe(normalizeEvent(componentId, vm));
}
function useSubscribe(callback) {
fxy060608's avatar
fxy060608 已提交
9888
  const instance = getCurrentInstance().proxy;
fxy060608's avatar
fxy060608 已提交
9889
  onMounted(() => {
fxy060608's avatar
fxy060608 已提交
9890 9891 9892 9893
    addSubscribe(instance.id, instance, callback);
    watch(() => instance.id, (value, oldValue) => {
      addSubscribe(value, instance, callback);
      removeSubscribe(oldValue, instance);
fxy060608's avatar
fxy060608 已提交
9894 9895 9896
    });
  });
  onBeforeMount(() => {
fxy060608's avatar
fxy060608 已提交
9897
    removeSubscribe(instance.id, instance);
fxy060608's avatar
fxy060608 已提交
9898 9899 9900 9901 9902 9903 9904 9905 9906 9907 9908 9909 9910 9911 9912 9913 9914 9915 9916 9917 9918 9919 9920 9921 9922 9923 9924 9925 9926 9927 9928 9929 9930 9931 9932 9933 9934 9935 9936 9937 9938 9939 9940 9941 9942 9943 9944 9945 9946 9947 9948 9949 9950 9951 9952 9953 9954 9955 9956 9957 9958 9959 9960 9961 9962 9963 9964 9965 9966 9967 9968 9969 9970 9971 9972 9973 9974 9975 9976 9977 9978 9979 9980 9981 9982 9983 9984 9985 9986 9987 9988 9989 9990 9991 9992 9993 9994 9995 9996 9997 9998 9999 10000 10001 10002 10003 10004 10005 10006 10007 10008 10009 10010 10011 10012 10013 10014 10015 10016 10017 10018 10019 10020 10021 10022 10023 10024 10025 10026 10027 10028 10029 10030 10031 10032 10033 10034 10035 10036 10037 10038 10039 10040 10041 10042 10043 10044 10045 10046 10047 10048 10049 10050 10051 10052 10053 10054 10055 10056 10057 10058 10059 10060 10061 10062 10063 10064 10065 10066 10067 10068 10069 10070 10071 10072 10073 10074 10075 10076 10077 10078 10079 10080 10081 10082 10083 10084 10085 10086 10087 10088 10089 10090 10091 10092 10093 10094 10095 10096 10097 10098 10099 10100 10101 10102 10103 10104 10105 10106 10107 10108 10109 10110 10111 10112 10113 10114 10115 10116 10117 10118 10119 10120 10121 10122 10123 10124 10125 10126 10127 10128 10129 10130 10131 10132 10133 10134 10135 10136 10137 10138 10139 10140 10141 10142 10143 10144 10145 10146 10147 10148 10149 10150 10151 10152 10153 10154 10155 10156 10157 10158 10159 10160 10161 10162 10163 10164 10165 10166 10167 10168 10169 10170 10171 10172 10173 10174 10175 10176 10177 10178 10179 10180 10181 10182 10183 10184 10185 10186 10187 10188 10189 10190 10191 10192 10193 10194 10195 10196 10197 10198 10199 10200 10201 10202 10203 10204 10205 10206 10207 10208 10209 10210 10211 10212 10213 10214 10215 10216 10217 10218 10219 10220 10221 10222 10223 10224 10225 10226 10227 10228 10229 10230 10231 10232 10233 10234 10235 10236 10237 10238 10239 10240 10241 10242 10243 10244 10245 10246 10247 10248 10249 10250 10251 10252 10253 10254 10255 10256 10257 10258 10259 10260 10261 10262 10263 10264 10265 10266 10267 10268 10269 10270 10271 10272 10273 10274 10275 10276 10277 10278 10279 10280 10281 10282 10283 10284 10285 10286 10287 10288 10289 10290 10291 10292 10293 10294 10295 10296 10297 10298 10299 10300 10301 10302 10303 10304 10305 10306 10307 10308 10309 10310 10311 10312 10313 10314 10315 10316 10317 10318 10319 10320 10321 10322 10323 10324 10325 10326 10327 10328 10329 10330 10331 10332 10333 10334 10335 10336 10337 10338 10339 10340 10341 10342 10343 10344 10345 10346 10347 10348 10349 10350 10351 10352 10353 10354 10355 10356 10357 10358 10359 10360 10361 10362 10363 10364 10365 10366 10367 10368 10369 10370 10371 10372 10373 10374 10375 10376 10377 10378 10379 10380 10381 10382 10383 10384 10385 10386 10387 10388 10389 10390 10391 10392 10393 10394 10395 10396 10397 10398 10399 10400 10401 10402 10403 10404 10405 10406 10407 10408
  });
}
const passiveOptions = passive(false);
const GestureType = {
  NONE: "none",
  STOP: "stop",
  VOLUME: "volume",
  PROGRESS: "progress"
};
const _sfc_main$3 = {
  name: "Video",
  filters: {
    time(val) {
      val = val > 0 && val < Infinity ? val : 0;
      let h = Math.floor(val / 3600);
      let m = Math.floor(val % 3600 / 60);
      let s = Math.floor(val % 3600 % 60);
      h = (h < 10 ? "0" : "") + h;
      m = (m < 10 ? "0" : "") + m;
      s = (s < 10 ? "0" : "") + s;
      let str = m + ":" + s;
      if (h !== "00") {
        str = h + ":" + str;
      }
      return str;
    }
  },
  props: {
    id: {
      type: String,
      default: ""
    },
    src: {
      type: String,
      default: ""
    },
    duration: {
      type: [Number, String],
      default: ""
    },
    controls: {
      type: [Boolean, String],
      default: true
    },
    danmuList: {
      type: Array,
      default() {
        return [];
      }
    },
    danmuBtn: {
      type: [Boolean, String],
      default: false
    },
    enableDanmu: {
      type: [Boolean, String],
      default: false
    },
    autoplay: {
      type: [Boolean, String],
      default: false
    },
    loop: {
      type: [Boolean, String],
      default: false
    },
    muted: {
      type: [Boolean, String],
      default: false
    },
    objectFit: {
      type: String,
      default: "contain"
    },
    poster: {
      type: String,
      default: ""
    },
    direction: {
      type: [String, Number],
      default: ""
    },
    showProgress: {
      type: Boolean,
      default: true
    },
    initialTime: {
      type: [String, Number],
      default: 0
    },
    showFullscreenBtn: {
      type: [Boolean, String],
      default: true
    },
    pageGesture: {
      type: [Boolean, String],
      default: false
    },
    enableProgressGesture: {
      type: [Boolean, String],
      default: true
    },
    showPlayBtn: {
      type: [Boolean, String],
      default: true
    },
    showCenterPlayBtn: {
      type: [Boolean, String],
      default: true
    }
  },
  data() {
    return {
      start: false,
      playing: false,
      currentTime: 0,
      durationTime: 0,
      progress: 0,
      touching: false,
      enableDanmuSync: Boolean(this.enableDanmu),
      controlsVisible: true,
      fullscreen: false,
      controlsTouching: false,
      touchStartOrigin: {
        x: 0,
        y: 0
      },
      gestureType: GestureType.NONE,
      currentTimeOld: 0,
      currentTimeNew: 0,
      volumeOld: null,
      volumeNew: null,
      buffered: 0,
      isSafari: /^Apple/.test(navigator.vendor)
    };
  },
  computed: {
    centerPlayBtnShow() {
      return this.showCenterPlayBtn && !this.start;
    },
    controlsShow() {
      return !this.centerPlayBtnShow && this.controls && this.controlsVisible;
    },
    autoHideContorls() {
      return this.controlsShow && this.playing && !this.controlsTouching;
    },
    srcSync() {
      return getRealPath(this.src);
    }
  },
  watch: {
    enableDanmuSync(val) {
      this.$emit("update:enableDanmu", val);
    },
    autoHideContorls(val) {
      if (val) {
        this.autoHideStart();
      } else {
        this.autoHideEnd();
      }
    },
    srcSync(val) {
      this.playing = false;
      this.currentTime = 0;
    },
    currentTime() {
      this.updateProgress();
    },
    duration() {
      this.updateProgress();
    },
    buffered(buffered) {
      if (buffered !== 0) {
        this.$trigger("progress", {}, {
          buffered
        });
      }
    }
  },
  setup() {
    const {t: t2} = useI18n();
    const vm = getCurrentInstance().proxy;
    useSubscribe((type, data) => {
      const methods = ["play", "pause", "seek", "sendDanmu", "playbackRate", "requestFullScreen", "exitFullScreen"];
      let options;
      switch (type) {
        case "seek":
          options = data.position;
          break;
        case "sendDanmu":
          options = data;
          break;
        case "playbackRate":
          options = data.rate;
          break;
      }
      if (methods.indexOf(type) >= 0) {
        vm[type](options);
      }
    });
    return {
      $$t: t2
    };
  },
  created() {
    this.otherData = {
      danmuList: [],
      danmuIndex: {
        time: 0,
        index: -1
      },
      hideTiming: null
    };
    const danmuList = this.otherData.danmuList = JSON.parse(JSON.stringify(this.danmuList || []));
    danmuList.sort(function(a2, b) {
      return (a2.time || 0) - (a2.time || 0);
    });
  },
  mounted() {
    const self = this;
    let originX;
    let originY;
    let moveOnce = true;
    let originProgress;
    const ball = this.$refs.ball;
    ball.addEventListener("touchstart", (event2) => {
      this.controlsTouching = true;
      const toucher = event2.targetTouches[0];
      originX = toucher.pageX;
      originY = toucher.pageY;
      originProgress = this.progress;
      moveOnce = true;
      this.touching = true;
      ball.addEventListener("touchmove", touchmove2, passiveOptions);
    });
    function touchmove2(event2) {
      const toucher = event2.targetTouches[0];
      const pageX = toucher.pageX;
      const pageY = toucher.pageY;
      if (moveOnce && Math.abs(pageX - originX) < Math.abs(pageY - originY)) {
        touchend();
        return;
      }
      moveOnce = false;
      const w = self.$refs.progress.offsetWidth;
      let progress = originProgress + (pageX - originX) / w * 100;
      if (progress < 0) {
        progress = 0;
      } else if (progress > 100) {
        progress = 100;
      }
      self.progress = progress;
      event2.preventDefault();
      event2.stopPropagation();
    }
    function touchend(event2) {
      self.controlsTouching = false;
      if (self.touching) {
        ball.removeEventListener("touchmove", touchmove2, passiveOptions);
        if (!moveOnce) {
          event2.preventDefault();
          event2.stopPropagation();
          self.seek(self.$refs.video.duration * self.progress / 100);
        }
        self.touching = false;
      }
    }
    ball.addEventListener("touchend", touchend);
    ball.addEventListener("touchcancel", touchend);
  },
  beforeDestroy() {
    this.triggerFullscreen(false);
    clearTimeout(this.otherData.hideTiming);
  },
  methods: {
    trigger() {
      if (this.playing) {
        this.$refs.video.pause();
      } else {
        this.$refs.video.play();
      }
    },
    play() {
      this.start = true;
      this.$refs.video.play();
    },
    pause() {
      this.$refs.video.pause();
    },
    seek(position) {
      position = Number(position);
      if (typeof position === "number" && !isNaN(position)) {
        this.$refs.video.currentTime = position;
      }
    },
    clickProgress(event2) {
      const $progress = this.$refs.progress;
      let element = event2.target;
      let x = event2.offsetX;
      while (element !== $progress) {
        x += element.offsetLeft;
        element = element.parentNode;
      }
      const w = $progress.offsetWidth;
      let progress = 0;
      if (x >= 0 && x <= w) {
        progress = x / w;
        this.seek(this.$refs.video.duration * progress);
      }
    },
    triggerDanmu() {
      this.enableDanmuSync = !this.enableDanmuSync;
    },
    playDanmu(danmu) {
      const p2 = document.createElement("p");
      p2.className = "uni-video-danmu-item";
      p2.innerText = danmu.text;
      let style = `bottom: ${Math.random() * 100}%;color: ${danmu.color};`;
      p2.setAttribute("style", style);
      this.$refs.danmu.appendChild(p2);
      setTimeout(function() {
        style += "left: 0;-webkit-transform: translateX(-100%);transform: translateX(-100%);";
        p2.setAttribute("style", style);
        setTimeout(function() {
          p2.remove();
        }, 4e3);
      }, 17);
    },
    sendDanmu(danmu) {
      const otherData = this.otherData;
      otherData.danmuList.splice(otherData.danmuIndex.index + 1, 0, {
        text: String(danmu.text),
        color: danmu.color,
        time: this.$refs.video.currentTime || 0
      });
    },
    playbackRate(rate) {
      this.$refs.video.playbackRate = rate;
    },
    triggerFullscreen(val) {
      const container = this.$refs.container;
      const video = this.$refs.video;
      let mockFullScreen;
      if (val) {
        if ((document.fullscreenEnabled || document.webkitFullscreenEnabled) && (!this.isSafari || this.userInteract)) {
          container[document.fullscreenEnabled ? "requestFullscreen" : "webkitRequestFullscreen"]();
        } else if (video.webkitEnterFullScreen) {
          video.webkitEnterFullScreen();
        } else {
          mockFullScreen = true;
          container.remove();
          container.classList.add("uni-video-type-fullscreen");
          document.body.appendChild(container);
        }
      } else {
        if (document.fullscreenEnabled || document.webkitFullscreenEnabled) {
          if (document.fullscreenElement) {
            document.exitFullscreen();
          } else if (document.webkitFullscreenElement) {
            document.webkitExitFullscreen();
          }
        } else if (video.webkitExitFullScreen) {
          video.webkitExitFullScreen();
        } else {
          mockFullScreen = true;
          container.remove();
          container.classList.remove("uni-video-type-fullscreen");
          this.$el.appendChild(container);
        }
      }
      if (mockFullScreen) {
        this.emitFullscreenChange(val);
      }
    },
    onFullscreenChange($event, webkit) {
      if (webkit && document.fullscreenEnabled) {
        return;
      }
      this.emitFullscreenChange(!!(document.fullscreenElement || document.webkitFullscreenElement));
    },
    emitFullscreenChange(val) {
      this.fullscreen = val;
      this.$trigger("fullscreenchange", {}, {
        fullScreen: val,
        direction: "vertical"
      });
    },
    requestFullScreen() {
      this.triggerFullscreen(true);
    },
    exitFullScreen() {
      this.triggerFullscreen(false);
    },
    onDurationChange({target}) {
      this.durationTime = target.duration;
    },
    onLoadedMetadata($event) {
      const initialTime = Number(this.initialTime) || 0;
      const video = $event.target;
      if (initialTime > 0) {
        video.currentTime = initialTime;
      }
      this.$trigger("loadedmetadata", $event, {
        width: video.videoWidth,
        height: video.videoHeight,
        duration: video.duration
      });
      this.onProgress($event);
    },
    onProgress($event) {
      const video = $event.target;
      const buffered = video.buffered;
      if (buffered.length) {
        this.buffered = buffered.end(buffered.length - 1) / video.duration * 100;
      }
    },
    onWaiting($event) {
      this.$trigger("waiting", $event, {});
    },
    onVideoError($event) {
      this.playing = false;
      this.$trigger("error", $event, {});
    },
    onPlay($event) {
      this.start = true;
      this.playing = true;
      this.$trigger("play", $event, {});
    },
    onPause($event) {
      this.playing = false;
      this.$trigger("pause", $event, {});
    },
    onEnded($event) {
      this.playing = false;
      this.$trigger("ended", $event, {});
    },
    onTimeUpdate($event) {
      const video = $event.target;
      const otherData = this.otherData;
      const currentTime = this.currentTime = video.currentTime;
      const oldDanmuIndex = otherData.danmuIndex;
      const danmuIndex = {
        time: currentTime,
        index: oldDanmuIndex.index
      };
      const danmuList = otherData.danmuList;
      if (currentTime > oldDanmuIndex.time) {
        for (let index2 = oldDanmuIndex.index + 1; index2 < danmuList.length; index2++) {
          const element = danmuList[index2];
          if (currentTime >= (element.time || 0)) {
            danmuIndex.index = index2;
            if (this.playing && this.enableDanmuSync) {
              this.playDanmu(element);
            }
          } else {
            break;
          }
        }
      } else if (currentTime < oldDanmuIndex.time) {
        for (let index2 = oldDanmuIndex.index - 1; index2 > -1; index2--) {
          const element = danmuList[index2];
          if (currentTime <= (element.time || 0)) {
            danmuIndex.index = index2 - 1;
          } else {
            break;
          }
        }
      }
      otherData.danmuIndex = danmuIndex;
      this.$trigger("timeupdate", $event, {
        currentTime,
        duration: video.duration
      });
    },
    triggerControls() {
      this.controlsVisible = !this.controlsVisible;
    },
    touchstart(event2) {
      const toucher = event2.targetTouches[0];
      this.touchStartOrigin = {
        x: toucher.pageX,
        y: toucher.pageY
      };
      this.gestureType = GestureType.NONE;
      this.volumeOld = null;
      this.currentTimeOld = this.currentTimeNew = 0;
    },
    touchmove(event2) {
      function stop() {
        event2.stopPropagation();
        event2.preventDefault();
      }
      if (this.fullscreen) {
        stop();
      }
      const gestureType = this.gestureType;
      if (gestureType === GestureType.STOP) {
        return;
      }
      const toucher = event2.targetTouches[0];
      const pageX = toucher.pageX;
      const pageY = toucher.pageY;
      const origin = this.touchStartOrigin;
      if (gestureType === GestureType.PROGRESS) {
        this.changeProgress(pageX - origin.x);
      } else if (gestureType === GestureType.VOLUME) {
        this.changeVolume(pageY - origin.y);
      }
      if (gestureType !== GestureType.NONE) {
        return;
      }
fxy060608's avatar
fxy060608 已提交
10409 10410 10411 10412 10413 10414 10415 10416 10417 10418 10419 10420 10421 10422 10423 10424 10425 10426 10427 10428 10429 10430 10431 10432 10433 10434 10435 10436 10437 10438 10439 10440 10441 10442 10443 10444 10445 10446 10447 10448 10449 10450 10451 10452 10453 10454 10455 10456 10457 10458 10459 10460 10461 10462 10463 10464 10465 10466 10467 10468 10469 10470 10471 10472 10473 10474 10475 10476 10477 10478 10479 10480 10481 10482 10483 10484 10485 10486 10487 10488 10489 10490 10491 10492 10493 10494 10495 10496 10497 10498 10499 10500 10501 10502 10503 10504 10505 10506 10507 10508 10509 10510 10511 10512 10513 10514 10515 10516 10517 10518 10519 10520 10521 10522 10523 10524 10525 10526 10527 10528 10529 10530 10531 10532 10533 10534 10535 10536 10537 10538 10539 10540 10541 10542 10543 10544 10545 10546 10547 10548 10549 10550 10551 10552 10553 10554 10555 10556 10557 10558 10559 10560 10561 10562 10563 10564 10565 10566 10567 10568 10569 10570 10571 10572 10573 10574 10575 10576 10577 10578 10579 10580 10581 10582 10583 10584 10585 10586 10587 10588 10589 10590 10591 10592 10593 10594 10595 10596 10597 10598 10599 10600 10601 10602 10603 10604 10605 10606 10607 10608 10609 10610 10611 10612 10613 10614 10615 10616 10617 10618 10619 10620 10621 10622 10623 10624 10625 10626 10627 10628 10629 10630 10631 10632 10633 10634 10635 10636 10637 10638 10639 10640 10641 10642 10643
      if (Math.abs(pageX - origin.x) > Math.abs(pageY - origin.y)) {
        if (!this.enableProgressGesture) {
          this.gestureType = GestureType.STOP;
          return;
        }
        this.gestureType = GestureType.PROGRESS;
        this.currentTimeOld = this.currentTimeNew = this.$refs.video.currentTime;
        if (!this.fullscreen) {
          stop();
        }
      } else {
        if (!this.pageGesture) {
          this.gestureType = GestureType.STOP;
          return;
        }
        this.gestureType = GestureType.VOLUME;
        this.volumeOld = this.$refs.video.volume;
        if (!this.fullscreen) {
          stop();
        }
      }
    },
    touchend(event2) {
      if (this.gestureType !== GestureType.NONE && this.gestureType !== GestureType.STOP) {
        event2.stopPropagation();
        event2.preventDefault();
      }
      if (this.gestureType === GestureType.PROGRESS && this.currentTimeOld !== this.currentTimeNew) {
        this.$refs.video.currentTime = this.currentTimeNew;
      }
      this.gestureType = GestureType.NONE;
    },
    changeProgress(x) {
      const duration = this.$refs.video.duration;
      let currentTimeNew = x / 600 * duration + this.currentTimeOld;
      if (currentTimeNew < 0) {
        currentTimeNew = 0;
      } else if (currentTimeNew > duration) {
        currentTimeNew = duration;
      }
      this.currentTimeNew = currentTimeNew;
    },
    changeVolume(y) {
      const valueOld = this.volumeOld;
      let value;
      if (typeof valueOld === "number") {
        value = valueOld - y / 200;
        if (value < 0) {
          value = 0;
        } else if (value > 1) {
          value = 1;
        }
        this.$refs.video.volume = value;
        this.volumeNew = value;
      }
    },
    autoHideStart() {
      this.otherData.hideTiming = setTimeout(() => {
        this.controlsVisible = false;
      }, 3e3);
    },
    autoHideEnd() {
      const otherData = this.otherData;
      if (otherData.hideTiming) {
        clearTimeout(otherData.hideTiming);
        otherData.hideTiming = null;
      }
    },
    updateProgress() {
      if (!this.touching) {
        this.progress = this.currentTime / this.durationTime * 100;
      }
    }
  }
};
const _hoisted_1$2 = {class: "uni-video-controls"};
const _hoisted_2$2 = {class: "uni-video-current-time"};
const _hoisted_3$1 = {class: "uni-video-progress"};
const _hoisted_4$1 = /* @__PURE__ */ createVNode("div", {class: "uni-video-inner"}, null, -1);
const _hoisted_5 = {class: "uni-video-duration"};
const _hoisted_6 = {
  ref: "danmu",
  style: {"z-index": "0"},
  class: "uni-video-danmu"
};
const _hoisted_7 = {class: "uni-video-cover-duration"};
const _hoisted_8 = {class: "uni-video-toast-title"};
const _hoisted_9 = /* @__PURE__ */ createVNode("svg", {
  class: "uni-video-toast-icon",
  width: "200px",
  height: "200px",
  viewBox: "0 0 1024 1024",
  version: "1.1",
  xmlns: "http://www.w3.org/2000/svg"
}, [
  /* @__PURE__ */ createVNode("path", {d: "M475.400704 201.19552l0 621.674496q0 14.856192-10.856448 25.71264t-25.71264 10.856448-25.71264-10.856448l-190.273536-190.273536-149.704704 0q-14.856192 0-25.71264-10.856448t-10.856448-25.71264l0-219.414528q0-14.856192 10.856448-25.71264t25.71264-10.856448l149.704704 0 190.273536-190.273536q10.856448-10.856448 25.71264-10.856448t25.71264 10.856448 10.856448 25.71264zm219.414528 310.837248q0 43.425792-24.28416 80.851968t-64.2816 53.425152q-5.71392 2.85696-14.2848 2.85696-14.856192 0-25.71264-10.570752t-10.856448-25.998336q0-11.999232 6.856704-20.284416t16.570368-14.2848 19.427328-13.142016 16.570368-20.284416 6.856704-32.569344-6.856704-32.569344-16.570368-20.284416-19.427328-13.142016-16.570368-14.2848-6.856704-20.284416q0-15.427584 10.856448-25.998336t25.71264-10.570752q8.57088 0 14.2848 2.85696 39.99744 15.427584 64.2816 53.139456t24.28416 81.137664zm146.276352 0q0 87.422976-48.56832 161.41824t-128.5632 107.707392q-7.428096 2.85696-14.2848 2.85696-15.427584 0-26.284032-10.856448t-10.856448-25.71264q0-22.284288 22.284288-33.712128 31.997952-16.570368 43.425792-25.141248 42.283008-30.855168 65.995776-77.423616t23.712768-99.136512-23.712768-99.136512-65.995776-77.423616q-11.42784-8.57088-43.425792-25.141248-22.284288-11.42784-22.284288-33.712128 0-14.856192 10.856448-25.71264t25.71264-10.856448q7.428096 0 14.856192 2.85696 79.99488 33.712128 128.5632 107.707392t48.56832 161.41824zm146.276352 0q0 131.42016-72.566784 241.41312t-193.130496 161.989632q-7.428096 2.85696-14.856192 2.85696-14.856192 0-25.71264-10.856448t-10.856448-25.71264q0-20.570112 22.284288-33.712128 3.999744-2.285568 12.85632-5.999616t12.85632-5.999616q26.284032-14.2848 46.854144-29.140992 70.281216-51.996672 109.707264-129.705984t39.426048-165.132288-39.426048-165.132288-109.707264-129.705984q-20.570112-14.856192-46.854144-29.140992-3.999744-2.285568-12.85632-5.999616t-12.85632-5.999616q-22.284288-13.142016-22.284288-33.712128 0-14.856192 10.856448-25.71264t25.71264-10.856448q7.428096 0 14.856192 2.85696 120.563712 51.996672 193.130496 161.989632t72.566784 241.41312z"})
], -1);
const _hoisted_10 = {class: "uni-video-toast-value"};
const _hoisted_11 = {class: "uni-video-toast-volume-grids"};
const _hoisted_12 = {class: "uni-video-toast-title"};
const _hoisted_13 = {class: "uni-video-slots"};
function _sfc_render$3(_ctx, _cache, $props, $setup, $data, $options) {
  return openBlock(), createBlock("uni-video", mergeProps({id: $props.id}, toHandlers(_ctx.$listeners)), [
    createVNode("div", {
      ref: "container",
      class: "uni-video-container",
      onTouchstart: _cache[22] || (_cache[22] = (...args) => $options.touchstart && $options.touchstart(...args)),
      onTouchend: _cache[23] || (_cache[23] = (...args) => $options.touchend && $options.touchend(...args)),
      onTouchmove: _cache[24] || (_cache[24] = (...args) => $options.touchmove && $options.touchmove(...args)),
      onFullscreenchange: _cache[25] || (_cache[25] = withModifiers((...args) => $options.onFullscreenChange && $options.onFullscreenChange(...args), ["stop"])),
      onWebkitfullscreenchange: _cache[26] || (_cache[26] = withModifiers(($event) => $options.onFullscreenChange($event, true), ["stop"]))
    }, [
      createVNode("video", mergeProps({
        ref: "video",
        style: {objectFit: $props.objectFit},
        muted: $props.muted,
        loop: $props.loop,
        src: $options.srcSync,
        poster: $props.poster,
        autoplay: $props.autoplay
      }, _ctx.$attrs, {
        class: "uni-video-video",
        "webkit-playsinline": "",
        playsinline: "",
        onClick: _cache[1] || (_cache[1] = (...args) => $options.triggerControls && $options.triggerControls(...args)),
        onDurationchange: _cache[2] || (_cache[2] = (...args) => $options.onDurationChange && $options.onDurationChange(...args)),
        onLoadedmetadata: _cache[3] || (_cache[3] = (...args) => $options.onLoadedMetadata && $options.onLoadedMetadata(...args)),
        onProgress: _cache[4] || (_cache[4] = (...args) => $options.onProgress && $options.onProgress(...args)),
        onWaiting: _cache[5] || (_cache[5] = (...args) => $options.onWaiting && $options.onWaiting(...args)),
        onError: _cache[6] || (_cache[6] = (...args) => $options.onVideoError && $options.onVideoError(...args)),
        onPlay: _cache[7] || (_cache[7] = (...args) => $options.onPlay && $options.onPlay(...args)),
        onPause: _cache[8] || (_cache[8] = (...args) => $options.onPause && $options.onPause(...args)),
        onEnded: _cache[9] || (_cache[9] = (...args) => $options.onEnded && $options.onEnded(...args)),
        onTimeupdate: _cache[10] || (_cache[10] = (...args) => $options.onTimeUpdate && $options.onTimeUpdate(...args)),
        onWebkitbeginfullscreen: _cache[11] || (_cache[11] = ($event) => $options.emitFullscreenChange(true)),
        onX5videoenterfullscreen: _cache[12] || (_cache[12] = ($event) => $options.emitFullscreenChange(true)),
        onWebkitendfullscreen: _cache[13] || (_cache[13] = ($event) => $options.emitFullscreenChange(false)),
        onX5videoexitfullscreen: _cache[14] || (_cache[14] = ($event) => $options.emitFullscreenChange(false))
      }), null, 16, ["muted", "loop", "src", "poster", "autoplay"]),
      withDirectives(createVNode("div", {
        class: "uni-video-bar uni-video-bar-full",
        onClick: _cache[19] || (_cache[19] = withModifiers(() => {
        }, ["stop"]))
      }, [
        createVNode("div", _hoisted_1$2, [
          withDirectives(createVNode("div", {
            class: [{"uni-video-control-button-play": !$data.playing, "uni-video-control-button-pause": $data.playing}, "uni-video-control-button"],
            onClick: _cache[15] || (_cache[15] = withModifiers((...args) => $options.trigger && $options.trigger(...args), ["stop"]))
          }, null, 2), [
            [vShow, $props.showPlayBtn]
          ]),
          createVNode("div", _hoisted_2$2, toDisplayString($data.currentTime | _ctx.time), 1),
          createVNode("div", {
            ref: "progress",
            class: "uni-video-progress-container",
            onClick: _cache[16] || (_cache[16] = withModifiers(($event) => $options.clickProgress($event), ["stop"]))
          }, [
            createVNode("div", _hoisted_3$1, [
              createVNode("div", {
                style: {width: $data.buffered + "%"},
                class: "uni-video-progress-buffered"
              }, null, 4),
              createVNode("div", {
                ref: "ball",
                style: {left: $data.progress + "%"},
                class: "uni-video-ball"
              }, [
                _hoisted_4$1
              ], 4)
            ])
          ], 512),
          createVNode("div", _hoisted_5, toDisplayString(($props.duration || $data.durationTime) | _ctx.time), 1)
        ]),
        $props.danmuBtn ? (openBlock(), createBlock("div", {
          key: 0,
          class: [{"uni-video-danmu-button-active": $data.enableDanmuSync}, "uni-video-danmu-button"],
          onClick: _cache[17] || (_cache[17] = withModifiers((...args) => $options.triggerDanmu && $options.triggerDanmu(...args), ["stop"]))
        }, toDisplayString($setup.$$t("uni.video.danmu")), 3)) : createCommentVNode("", true),
        withDirectives(createVNode("div", {
          class: [{"uni-video-type-fullscreen": $data.fullscreen}, "uni-video-fullscreen"],
          onClick: _cache[18] || (_cache[18] = withModifiers(($event) => $options.triggerFullscreen(!$data.fullscreen), ["stop"]))
        }, null, 2), [
          [vShow, $props.showFullscreenBtn]
        ])
      ], 512), [
        [vShow, $options.controlsShow]
      ]),
      withDirectives(createVNode("div", _hoisted_6, null, 512), [
        [vShow, $data.start && $data.enableDanmuSync]
      ]),
      $options.centerPlayBtnShow ? (openBlock(), createBlock("div", {
        key: 0,
        class: "uni-video-cover",
        onClick: _cache[21] || (_cache[21] = withModifiers(() => {
        }, ["stop"]))
      }, [
        createVNode("div", {
          class: "uni-video-cover-play-button",
          onClick: _cache[20] || (_cache[20] = withModifiers((...args) => $options.play && $options.play(...args), ["stop"]))
        }),
        createVNode("p", _hoisted_7, toDisplayString(($props.duration || $data.durationTime) | _ctx.time), 1)
      ])) : createCommentVNode("", true),
      createVNode("div", {
        class: [{"uni-video-toast-volume": $data.gestureType === "volume"}, "uni-video-toast"]
      }, [
        createVNode("div", _hoisted_8, toDisplayString($setup.$$t("uni.video.volume")), 1),
        _hoisted_9,
        createVNode("div", _hoisted_10, [
          createVNode("div", {
            style: {width: $data.volumeNew * 100 + "%"},
            class: "uni-video-toast-value-content"
          }, [
            createVNode("div", _hoisted_11, [
              (openBlock(), createBlock(Fragment, null, renderList(10, (item, index2) => {
                return createVNode("div", {
                  key: index2,
                  class: "uni-video-toast-volume-grids-item"
                });
              }), 64))
            ])
          ], 4)
        ])
      ], 2),
      createVNode("div", {
        class: [{"uni-video-toast-progress": $data.gestureType == "progress"}, "uni-video-toast"]
      }, [
        createVNode("div", _hoisted_12, toDisplayString($data.currentTimeNew | _ctx.time) + " / " + toDisplayString($data.durationTime | _ctx.time), 1)
      ], 2),
      createVNode("div", _hoisted_13, [
        renderSlot(_ctx.$slots, "default")
      ])
    ], 544)
  ], 16, ["id"]);
}
_sfc_main$3.render = _sfc_render$3;
fxy060608's avatar
fxy060608 已提交
10644
const UniViewJSBridge$1 = /* @__PURE__ */ extend(ViewJSBridge, {
fxy060608's avatar
fxy060608 已提交
10645 10646 10647 10648 10649 10650 10651 10652 10653 10654 10655 10656 10657 10658 10659 10660 10661 10662
  publishHandler(event2, args, pageId) {
    window.UniServiceJSBridge.subscribeHandler(event2, args, pageId);
  }
});
const supports = window.CSS && window.CSS.supports;
function cssSupports(css) {
  return supports && (supports(css) || supports.apply(window.CSS, css.split(":")));
}
const cssVar = /* @__PURE__ */ cssSupports("--a:0");
const cssEnv = /* @__PURE__ */ cssSupports("top:env(a)");
const cssConstant = /* @__PURE__ */ cssSupports("top:constant(a)");
const cssBackdropFilter = /* @__PURE__ */ cssSupports("backdrop-filter:blur(10px)");
const SCHEMA_CSS = {
  "css.var": cssVar,
  "css.env": cssEnv,
  "css.constant": cssConstant,
  "css.backdrop-filter": cssBackdropFilter
};
fxy060608's avatar
fxy060608 已提交
10663
const canIUse = defineSyncApi(API_CAN_I_USE, (schema) => {
fxy060608's avatar
fxy060608 已提交
10664 10665 10666 10667 10668
  if (hasOwn$1(SCHEMA_CSS, schema)) {
    return SCHEMA_CSS[schema];
  }
  return true;
}, CanIUseProtocol);
fxy060608's avatar
fxy060608 已提交
10669
const makePhoneCall = defineAsyncApi(API_MAKE_PHONE_CALL, ({phoneNumber}, {resolve}) => {
fxy060608's avatar
fxy060608 已提交
10670 10671 10672
  window.location.href = `tel:${phoneNumber}`;
  return resolve();
}, MakePhoneCallProtocol);
fxy060608's avatar
fxy060608 已提交
10673
const getSystemInfoSync = defineSyncApi("getSystemInfoSync", () => {
fxy060608's avatar
fxy060608 已提交
10674 10675 10676 10677 10678 10679 10680 10681
  const pixelRatio2 = window.devicePixelRatio;
  const screenFix = getScreenFix();
  const landscape = isLandscape(screenFix);
  const screenWidth = getScreenWidth(screenFix, landscape);
  const screenHeight = getScreenHeight(screenFix, landscape);
  const windowWidth = getWindowWidth(screenWidth);
  let windowHeight = window.innerHeight;
  const language = navigator.language;
Q
qiang 已提交
10682
  const statusBarHeight = out.top;
fxy060608's avatar
fxy060608 已提交
10683 10684 10685 10686 10687 10688 10689 10690 10691 10692 10693 10694 10695 10696 10697 10698 10699 10700 10701 10702 10703 10704 10705 10706 10707 10708 10709 10710 10711 10712 10713 10714 10715 10716 10717 10718 10719 10720 10721 10722 10723 10724 10725 10726
  let osname;
  let osversion;
  let model;
  if (isIOS$1) {
    osname = "iOS";
    const osversionFind = ua.match(/OS\s([\w_]+)\slike/);
    if (osversionFind) {
      osversion = osversionFind[1].replace(/_/g, ".");
    }
    const modelFind = ua.match(/\(([a-zA-Z]+);/);
    if (modelFind) {
      model = modelFind[1];
    }
  } else if (isAndroid) {
    osname = "Android";
    const osversionFind = ua.match(/Android[\s/]([\w\.]+)[;\s]/);
    if (osversionFind) {
      osversion = osversionFind[1];
    }
    const infoFind = ua.match(/\((.+?)\)/);
    const infos = infoFind ? infoFind[1].split(";") : ua.split(" ");
    const otherInfo = [
      /\bAndroid\b/i,
      /\bLinux\b/i,
      /\bU\b/i,
      /^\s?[a-z][a-z]$/i,
      /^\s?[a-z][a-z]-[a-z][a-z]$/i,
      /\bwv\b/i,
      /\/[\d\.,]+$/,
      /^\s?[\d\.,]+$/,
      /\bBrowser\b/i,
      /\bMobile\b/i
    ];
    for (let i2 = 0; i2 < infos.length; i2++) {
      const info = infos[i2];
      if (info.indexOf("Build") > 0) {
        model = info.split("Build")[0].trim();
        break;
      }
      let other;
      for (let o2 = 0; o2 < otherInfo.length; o2++) {
        if (otherInfo[o2].test(info)) {
          other = true;
          break;
fxy060608's avatar
fxy060608 已提交
10727 10728
        }
      }
fxy060608's avatar
fxy060608 已提交
10729 10730 10731
      if (!other) {
        model = info.trim();
        break;
fxy060608's avatar
fxy060608 已提交
10732
      }
fxy060608's avatar
fxy060608 已提交
10733
    }
fxy060608's avatar
fxy060608 已提交
10734 10735 10736 10737
  } else if (isIPadOS) {
    model = "iPad";
    osname = "iOS";
    osversion = typeof window.BigInt === "function" ? "14.0" : "13.0";
fxy060608's avatar
fxy060608 已提交
10738 10739 10740 10741 10742 10743 10744 10745 10746 10747 10748 10749 10750 10751 10752 10753 10754 10755 10756 10757 10758 10759 10760 10761 10762 10763 10764 10765 10766 10767 10768 10769 10770 10771 10772 10773 10774 10775 10776 10777 10778 10779 10780 10781 10782 10783 10784 10785 10786 10787
  } else if (isWindows || isMac || isLinux) {
    model = "PC";
    osname = "PC";
    osversion = "0";
    let osversionFind = ua.match(/\((.+?)\)/)[1];
    if (isWindows) {
      osname = "Windows";
      switch (isWindows[1]) {
        case "5.1":
          osversion = "XP";
          break;
        case "6.0":
          osversion = "Vista";
          break;
        case "6.1":
          osversion = "7";
          break;
        case "6.2":
          osversion = "8";
          break;
        case "6.3":
          osversion = "8.1";
          break;
        case "10.0":
          osversion = "10";
          break;
      }
      const framework = osversionFind && osversionFind.match(/[Win|WOW]([\d]+)/);
      if (framework) {
        osversion += ` x${framework[1]}`;
      }
    } else if (isMac) {
      osname = "Mac";
      osversion = osversionFind && osversionFind.match(/Mac OS X (.+)/) || "";
      if (osversion) {
        osversion = osversion[1].replace(/_/g, ".");
        if (osversion.indexOf(";") !== -1) {
          osversion = osversion.split(";")[0];
        }
      }
    } else if (isLinux) {
      osname = "Linux";
      osversion = osversionFind && osversionFind.match(/Linux (.*)/) || "";
      if (osversion) {
        osversion = osversion[1];
        if (osversion.indexOf(";") !== -1) {
          osversion = osversion.split(";")[0];
        }
      }
    }
fxy060608's avatar
fxy060608 已提交
10788 10789 10790 10791 10792 10793 10794
  } else {
    osname = "Other";
    osversion = "0";
  }
  const system = `${osname} ${osversion}`;
  const platform = osname.toLocaleLowerCase();
  const safeArea = {
Q
qiang 已提交
10795 10796 10797 10798 10799 10800
    left: out.left,
    right: windowWidth - out.right,
    top: out.top,
    bottom: windowHeight - out.bottom,
    width: windowWidth - out.left - out.right,
    height: windowHeight - out.top - out.bottom
fxy060608's avatar
fxy060608 已提交
10801 10802 10803 10804 10805 10806 10807 10808 10809 10810 10811 10812 10813 10814 10815 10816 10817 10818 10819
  };
  const {top: windowTop, bottom: windowBottom} = getWindowOffset();
  windowHeight -= windowTop;
  windowHeight -= windowBottom;
  return {
    windowTop,
    windowBottom,
    windowWidth,
    windowHeight,
    pixelRatio: pixelRatio2,
    screenWidth,
    screenHeight,
    language,
    statusBarHeight,
    system,
    platform,
    model,
    safeArea,
    safeAreaInsets: {
Q
qiang 已提交
10820 10821 10822 10823
      top: out.top,
      right: out.right,
      bottom: out.bottom,
      left: out.left
fxy060608's avatar
fxy060608 已提交
10824 10825 10826
    }
  };
});
fxy060608's avatar
fxy060608 已提交
10827
const getSystemInfo = defineAsyncApi("getSystemInfo", (_args, {resolve}) => {
fxy060608's avatar
fxy060608 已提交
10828 10829 10830 10831 10832 10833 10834 10835 10836 10837 10838 10839 10840 10841
  return resolve(getSystemInfoSync());
});
const API_ON_NETWORK_STATUS_CHANGE = "onNetworkStatusChange";
function networkListener() {
  getNetworkType().then(({networkType}) => {
    UniServiceJSBridge.invokeOnCallback(API_ON_NETWORK_STATUS_CHANGE, {
      isConnected: networkType !== "none",
      networkType
    });
  });
}
function getConnection() {
  return navigator.connection || navigator.webkitConnection || navigator.mozConnection;
}
fxy060608's avatar
fxy060608 已提交
10842
const onNetworkStatusChange = defineOnApi(API_ON_NETWORK_STATUS_CHANGE, () => {
fxy060608's avatar
fxy060608 已提交
10843 10844 10845 10846 10847 10848 10849 10850
  const connection = getConnection();
  if (connection) {
    connection.addEventListener("change", networkListener);
  } else {
    window.addEventListener("offline", networkListener);
    window.addEventListener("online", networkListener);
  }
});
fxy060608's avatar
fxy060608 已提交
10851
const offNetworkStatusChange = defineOffApi("offNetworkStatusChange", () => {
fxy060608's avatar
fxy060608 已提交
10852 10853 10854 10855 10856 10857 10858 10859
  const connection = getConnection();
  if (connection) {
    connection.removeEventListener("change", networkListener);
  } else {
    window.removeEventListener("offline", networkListener);
    window.removeEventListener("online", networkListener);
  }
});
fxy060608's avatar
fxy060608 已提交
10860
const getNetworkType = defineAsyncApi("getNetworkType", (_args, {resolve}) => {
fxy060608's avatar
fxy060608 已提交
10861 10862 10863 10864 10865 10866 10867 10868 10869 10870 10871 10872 10873 10874
  const connection = getConnection();
  let networkType = "unknown";
  if (connection) {
    networkType = connection.type;
    if (networkType === "cellular" && connection.effectiveType) {
      networkType = connection.effectiveType.replace("slow-", "");
    } else if (!["none", "wifi"].includes(networkType)) {
      networkType = "unknown";
    }
  } else if (navigator.onLine === false) {
    networkType = "none";
  }
  return resolve({networkType});
});
Q
qiang 已提交
10875
let listener$1 = null;
Q
qiang 已提交
10876 10877 10878 10879 10880 10881 10882 10883 10884
const onAccelerometerChange = defineOnApi(API_ON_ACCELEROMETER, () => {
  startAccelerometer();
});
const offAccelerometerChange = defineOnApi(API_OFF_ACCELEROMETER, () => {
  stopAccelerometer();
});
const startAccelerometer = defineAsyncApi(API_START_ACCELEROMETER, (_, {resolve, reject}) => {
  if (!window.DeviceMotionEvent) {
    reject();
Q
qiang 已提交
10885
    return;
Q
qiang 已提交
10886 10887
  }
  function addEventListener() {
Q
qiang 已提交
10888
    listener$1 = function(event2) {
Q
qiang 已提交
10889 10890 10891 10892 10893 10894 10895
      const acceleration = event2.acceleration || event2.accelerationIncludingGravity;
      UniServiceJSBridge.invokeOnCallback(API_ON_ACCELEROMETER, {
        x: acceleration && acceleration.x || 0,
        y: acceleration && acceleration.y || 0,
        z: acceleration && acceleration.z || 0
      });
    };
Q
qiang 已提交
10896
    window.addEventListener("devicemotion", listener$1, false);
Q
qiang 已提交
10897
  }
Q
qiang 已提交
10898
  if (!listener$1) {
Q
qiang 已提交
10899 10900 10901 10902 10903 10904 10905 10906 10907 10908 10909 10910 10911 10912 10913
    if (DeviceMotionEvent.requestPermission) {
      DeviceMotionEvent.requestPermission().then((res) => {
        if (res === "granted") {
          addEventListener();
          resolve();
        } else {
          reject(`${res}`);
        }
      }).catch((error) => {
        reject(`${error}`);
      });
      return;
    }
    addEventListener();
  }
Q
qiang 已提交
10914
  resolve();
Q
qiang 已提交
10915 10916
});
const stopAccelerometer = defineAsyncApi(API_STOP_ACCELEROMETER, (_, {resolve}) => {
Q
qiang 已提交
10917 10918 10919 10920 10921 10922 10923 10924 10925 10926 10927 10928 10929 10930 10931 10932
  if (listener$1) {
    window.removeEventListener("devicemotion", listener$1, false);
    listener$1 = null;
  }
  resolve();
});
let listener = null;
const onCompassChange = defineOnApi(API_ON_COMPASS, () => {
  startCompass();
});
const offCompassChange = defineOnApi(API_OFF_COMPASS, () => {
  stopCompass();
});
const startCompass = defineAsyncApi(API_START_COMPASS, (_, {resolve, reject}) => {
  if (!window.DeviceOrientationEvent) {
    reject();
Q
qiang 已提交
10933
    return;
Q
qiang 已提交
10934 10935 10936 10937 10938 10939 10940 10941 10942 10943 10944 10945 10946 10947 10948 10949 10950 10951 10952 10953 10954 10955 10956 10957 10958 10959
  }
  function addEventListener() {
    listener = function(event2) {
      const direction2 = 360 - (event2.alpha !== null ? event2.alpha : 360);
      UniServiceJSBridge.invokeOnCallback(API_ON_COMPASS, {
        direction: direction2
      });
    };
    window.addEventListener("deviceorientation", listener, false);
  }
  if (!listener) {
    if (DeviceOrientationEvent.requestPermission) {
      DeviceOrientationEvent.requestPermission().then((res) => {
        if (res === "granted") {
          addEventListener();
          resolve();
        } else {
          reject(`${res}`);
        }
      }).catch((error) => {
        reject(`${error}`);
      });
      return;
    }
    addEventListener();
  }
Q
qiang 已提交
10960
  resolve();
Q
qiang 已提交
10961 10962
});
const stopCompass = defineAsyncApi(API_STOP_COMPASS, (_, {resolve}) => {
Q
qiang 已提交
10963
  if (listener) {
Q
qiang 已提交
10964
    window.removeEventListener("deviceorientation", listener, false);
Q
qiang 已提交
10965 10966 10967 10968
    listener = null;
  }
  resolve();
});
fxy060608's avatar
fxy060608 已提交
10969 10970 10971 10972 10973 10974 10975 10976 10977 10978 10979 10980 10981 10982 10983
const _isSupport = !!window.navigator.vibrate;
const vibrateShort = defineAsyncApi(API_VIBRATE_SHORT, (args, {resolve, reject}) => {
  if (_isSupport && window.navigator.vibrate(15)) {
    resolve();
  } else {
    reject("vibrateLong:fail");
  }
});
const vibrateLong = defineAsyncApi(API_VIBRATE_LONG, (args, {resolve, reject}) => {
  if (_isSupport && window.navigator.vibrate(400)) {
    resolve();
  } else {
    reject("vibrateLong:fail");
  }
});
Q
qiang 已提交
10984 10985 10986 10987 10988 10989 10990 10991 10992 10993 10994 10995 10996 10997 10998 10999 11000 11001 11002 11003 11004 11005 11006 11007 11008 11009 11010 11011 11012 11013 11014 11015 11016 11017 11018 11019 11020 11021 11022 11023 11024 11025 11026 11027 11028 11029 11030 11031 11032 11033 11034 11035 11036 11037 11038 11039 11040 11041 11042 11043 11044 11045 11046 11047 11048 11049 11050 11051 11052 11053 11054 11055 11056 11057 11058 11059 11060 11061 11062 11063 11064 11065 11066 11067 11068 11069 11070 11071 11072 11073 11074 11075 11076 11077 11078 11079 11080 11081 11082 11083 11084 11085 11086 11087 11088 11089 11090 11091 11092 11093
const STORAGE_KEYS = "uni-storage-keys";
function parseValue(value) {
  const types = ["object", "string", "number", "boolean", "undefined"];
  try {
    const object = typeof value === "string" ? JSON.parse(value) : value;
    const type = object.type;
    if (types.indexOf(type) >= 0) {
      const keys = Object.keys(object);
      if (keys.length === 2 && "data" in object) {
        if (typeof object.data === type) {
          return object.data;
        }
        if (type === "object" && /^\d{4}-\d{2}-\d{2}T\d{2}\:\d{2}\:\d{2}\.\d{3}Z$/.test(object.data)) {
          return new Date(object.data);
        }
      } else if (keys.length === 1) {
        return "";
      }
    }
  } catch (error) {
  }
}
const setStorageSync = defineSyncApi(API_SET_STORAGE_SYNC, (key, data) => {
  const type = typeof data;
  const value = type === "string" ? data : JSON.stringify({
    type,
    data
  });
  localStorage.setItem(key, value);
}, SetStorageSyncProtocol);
const setStorage = defineAsyncApi(API_SET_STORAGE, ({key, data}, {resolve, reject}) => {
  try {
    setStorageSync(key, data);
    resolve();
  } catch (error) {
    reject(error.message);
  }
}, SetStorageProtocol);
function getStorageOrigin(key) {
  const value = localStorage && localStorage.getItem(key);
  if (typeof value !== "string") {
    throw new Error("data not found");
  }
  let data = value;
  try {
    const object = JSON.parse(value);
    const result = parseValue(object);
    if (result !== void 0) {
      data = result;
    }
  } catch (error) {
  }
  return data;
}
const getStorageSync = defineSyncApi(API_GET_STORAGE_SYNC, (key, t2) => {
  try {
    return getStorageOrigin(key);
  } catch (error) {
    return "";
  }
}, GetStorageSyncProtocol);
const getStorage = defineAsyncApi(API_GET_STORAGE, ({key}, {resolve, reject}) => {
  try {
    const data = getStorageOrigin(key);
    resolve({
      data
    });
  } catch (error) {
    reject(error.message);
  }
}, GetStorageProtocol);
const removeStorageSync = defineSyncApi(API_REMOVE_STORAGE, (key) => {
  if (localStorage) {
    localStorage.removeItem(key);
  }
}, RemoveStorageSyncProtocol);
const removeStorage = defineAsyncApi(API_REMOVE_STORAGE, ({key}, {resolve}) => {
  removeStorageSync(key);
  resolve();
}, RemoveStorageProtocol);
const clearStorageSync = defineSyncApi("clearStorageSync", () => {
  if (localStorage) {
    localStorage.clear();
  }
});
const clearStorage = defineAsyncApi("clearStorage", (_, {resolve}) => {
  clearStorageSync();
  resolve();
});
const getStorageInfoSync = defineSyncApi("getStorageInfoSync", () => {
  const length = localStorage && localStorage.length || 0;
  const keys = [];
  let currentSize = 0;
  for (let index2 = 0; index2 < length; index2++) {
    const key = localStorage.key(index2);
    const value = localStorage.getItem(key) || "";
    currentSize += key.length + value.length;
    if (key !== STORAGE_KEYS) {
      keys.push(key);
    }
  }
  return {
    keys,
    currentSize: Math.ceil(currentSize * 2 / 1024),
    limitSize: Number.MAX_VALUE
  };
});
const getStorageInfo = defineAsyncApi("getStorageInfo", (_, {resolve}) => {
  resolve(getStorageInfoSync());
});
Q
qiang 已提交
11094 11095 11096 11097 11098 11099 11100 11101 11102 11103 11104 11105 11106 11107 11108 11109 11110 11111 11112 11113 11114 11115 11116 11117 11118 11119 11120 11121 11122 11123 11124 11125 11126 11127 11128 11129 11130 11131 11132 11133 11134 11135 11136 11137 11138 11139 11140 11141 11142 11143 11144 11145 11146 11147 11148 11149 11150 11151 11152 11153 11154 11155 11156 11157 11158 11159 11160 11161 11162 11163 11164 11165 11166 11167
const files = {};
function urlToFile(url, local) {
  const file = files[url];
  if (file) {
    return Promise.resolve(file);
  }
  if (/^data:[a-z-]+\/[a-z-]+;base64,/.test(url)) {
    return Promise.resolve(base64ToFile(url));
  }
  if (local) {
    return Promise.reject(new Error("not find"));
  }
  return new Promise((resolve, reject) => {
    const xhr = new XMLHttpRequest();
    xhr.open("GET", url, true);
    xhr.responseType = "blob";
    xhr.onload = function() {
      resolve(this.response);
    };
    xhr.onerror = reject;
    xhr.send();
  });
}
function base64ToFile(base64) {
  const base64Array = base64.split(",");
  const res = base64Array[0].match(/:(.*?);/);
  const type = res ? res[1] : "";
  const str = atob(base64Array[1]);
  let n = str.length;
  const array = new Uint8Array(n);
  while (n--) {
    array[n] = str.charCodeAt(n);
  }
  return blobToFile(array, type);
}
function getExtname(type) {
  const extname = type.split("/")[1];
  return extname ? `.${extname}` : "";
}
function getFileName(url) {
  url = url.split("#")[0].split("?")[0];
  const array = url.split("/");
  return array[array.length - 1];
}
function blobToFile(blob, type) {
  let file;
  if (blob instanceof File) {
    file = blob;
  } else {
    type = type || blob.type || "";
    const filename = `${Date.now()}${getExtname(type)}`;
    try {
      file = new File([blob], filename, {type});
    } catch (error) {
      blob = blob instanceof Blob ? blob : new Blob([blob], {type});
      file = blob;
      file.name = file.name || filename;
    }
  }
  return file;
}
function fileToUrl(file) {
  for (const key in files) {
    if (hasOwn$1(files, key)) {
      const oldFile = files[key];
      if (oldFile === file) {
        return key;
      }
    }
  }
  var url = (window.URL || window.webkitURL).createObjectURL(file);
  files[url] = file;
  return url;
}
D
DCloud_LXH 已提交
11168 11169 11170 11171 11172
function revokeObjectURL(url) {
  const URL = window.URL || window.webkitURL;
  URL.revokeObjectURL(url);
  delete files[url];
}
fxy060608's avatar
fxy060608 已提交
11173
const getFileInfo = defineAsyncApi(API_GET_FILE_INFO, ({filePath}, {resolve, reject}) => {
Q
qiang 已提交
11174 11175 11176 11177 11178 11179 11180
  urlToFile(filePath).then((res) => {
    resolve({
      size: res.size
    });
  }).catch((err) => {
    reject(String(err));
  });
Q
qiang 已提交
11181
}, GetFileInfoProtocol, GetFileInfoOptions);
fxy060608's avatar
fxy060608 已提交
11182
const openDocument = defineAsyncApi(API_OPEN_DOCUMENT, ({filePath}, {resolve}) => {
fxy060608's avatar
fxy060608 已提交
11183 11184
  window.open(filePath);
  return resolve();
Q
qiang 已提交
11185
}, OpenDocumentProtocol, OpenDocumentOptions);
fxy060608's avatar
fxy060608 已提交
11186 11187 11188
function getServiceAddress() {
  return window.location.protocol + "//" + window.location.host;
}
fxy060608's avatar
fxy060608 已提交
11189
const getImageInfo = defineAsyncApi(API_GET_IMAGE_INFO, ({src}, {resolve, reject}) => {
fxy060608's avatar
fxy060608 已提交
11190 11191 11192 11193 11194 11195 11196 11197 11198 11199 11200 11201 11202
  const img = new Image();
  img.onload = function() {
    resolve({
      width: img.naturalWidth,
      height: img.naturalHeight,
      path: src.indexOf("/") === 0 ? getServiceAddress() + src : src
    });
  };
  img.onerror = function() {
    reject();
  };
  img.src = src;
}, GetImageInfoProtocol, GetImageInfoOptions);
Q
qiang 已提交
11203 11204 11205 11206 11207 11208 11209 11210 11211 11212 11213 11214 11215 11216 11217 11218 11219 11220 11221 11222 11223 11224 11225 11226 11227 11228 11229 11230 11231 11232 11233 11234 11235 11236
const getVideoInfo = defineAsyncApi(API_GET_VIDEO_INFO, ({src}, {resolve, reject}) => {
  urlToFile(src, true).then((file) => {
    return file;
  }).catch(() => {
    return null;
  }).then((file) => {
    const video = document.createElement("video");
    if (video.onloadedmetadata !== void 0) {
      const handle = setTimeout(() => {
        video.onloadedmetadata = null;
        video.onerror = null;
        reject();
      }, src.startsWith("data:") || src.startsWith("blob:") ? 300 : 3e3);
      video.onloadedmetadata = function() {
        clearTimeout(handle);
        video.onerror = null;
        resolve({
          size: file ? file.size : void 0,
          duration: video.duration || 0,
          width: video.videoWidth || 0,
          height: video.videoHeight || 0
        });
      };
      video.onerror = function() {
        clearTimeout(handle);
        video.onloadedmetadata = null;
        reject();
      };
      video.src = src;
    } else {
      reject();
    }
  });
}, GetVideoInfoProtocol, GetVideoInfoOptions);
fxy060608's avatar
fxy060608 已提交
11237 11238 11239 11240 11241 11242 11243 11244 11245 11246 11247 11248 11249 11250 11251 11252 11253 11254 11255 11256 11257 11258 11259 11260 11261 11262 11263 11264 11265 11266 11267 11268 11269 11270 11271 11272 11273 11274 11275 11276 11277 11278 11279 11280 11281 11282 11283 11284 11285 11286 11287 11288 11289 11290 11291 11292 11293 11294 11295 11296 11297 11298 11299 11300 11301 11302 11303 11304 11305 11306 11307 11308 11309 11310 11311 11312 11313 11314 11315 11316 11317 11318 11319 11320 11321 11322 11323 11324 11325 11326 11327 11328 11329 11330 11331 11332 11333 11334 11335 11336 11337 11338 11339 11340 11341 11342 11343 11344 11345 11346 11347 11348 11349 11350 11351 11352 11353 11354 11355 11356 11357 11358 11359 11360 11361 11362 11363 11364 11365 11366 11367 11368 11369 11370 11371
const MIMEType = {
  image: {
    jpg: "jpeg",
    jpe: "jpeg",
    pbm: "x-portable-bitmap",
    pgm: "x-portable-graymap",
    pnm: "x-portable-anymap",
    ppm: "x-portable-pixmap",
    psd: "vnd.adobe.photoshop",
    pic: "x-pict",
    rgb: "x-rgb",
    svg: "svg+xml",
    svgz: "svg+xml",
    tif: "tiff",
    xif: "vnd.xiff",
    wbmp: "vnd.wap.wbmp",
    wdp: "vnd.ms-photo",
    xbm: "x-xbitmap",
    ico: "x-icon"
  },
  video: {
    "3g2": "3gpp2",
    "3gp": "3gpp",
    avi: "x-msvideo",
    f4v: "x-f4v",
    flv: "x-flv",
    jpgm: "jpm",
    jpgv: "jpeg",
    m1v: "mpeg",
    m2v: "mpeg",
    mpe: "mpeg",
    mpg: "mpeg",
    mpg4: "mpeg",
    m4v: "x-m4v",
    mkv: "x-matroska",
    mov: "quicktime",
    qt: "quicktime",
    movie: "x-sgi-movie",
    mp4v: "mp4",
    ogv: "ogg",
    smv: "x-smv",
    wm: "x-ms-wm",
    wmv: "x-ms-wmv",
    wmx: "x-ms-wmx",
    wvx: "x-ms-wvx"
  }
};
const ALL = "all";
function isWXEnv() {
  const ua2 = window.navigator.userAgent.toLowerCase();
  const matchUA = ua2.match(/MicroMessenger/i);
  return !!(matchUA && matchUA[0] === "micromessenger");
}
function _createInput({
  count,
  sourceType,
  type,
  extension
}) {
  const inputEl = document.createElement("input");
  inputEl.type = "file";
  updateElementStyle(inputEl, {
    position: "absolute",
    visibility: "hidden",
    zIndex: "-999",
    width: "0",
    height: "0",
    top: "0",
    left: "0"
  });
  inputEl.accept = extension.map((item) => {
    if (type !== ALL) {
      const MIMEKey = item.replace(".", "");
      return `${type}/${MIMEType[type][MIMEKey] || MIMEKey}`;
    } else {
      if (isWXEnv()) {
        return ".";
      }
      return item.indexOf(".") === 0 ? item : `.${item}`;
    }
  }).join(",");
  if (count && count > 1) {
    inputEl.multiple = true;
  }
  if (type !== ALL && sourceType instanceof Array && sourceType.length === 1 && sourceType[0] === "camera") {
    inputEl.setAttribute("capture", "camera");
  }
  return inputEl;
}
let fileInput = null;
const chooseFile = defineAsyncApi(API_CHOOSE_FILE, ({
  count,
  sourceType,
  type,
  extension
}, {resolve, reject}) => {
  if (fileInput) {
    document.body.removeChild(fileInput);
    fileInput = null;
  }
  fileInput = _createInput({
    count,
    sourceType,
    type,
    extension
  });
  document.body.appendChild(fileInput);
  fileInput.addEventListener("change", function(event2) {
    const eventTarget = event2.target;
    const tempFiles = [];
    if (eventTarget && eventTarget.files) {
      const fileCount = eventTarget.files.length;
      for (let i2 = 0; i2 < fileCount; i2++) {
        const file = eventTarget.files[i2];
        let filePath;
        Object.defineProperty(file, "path", {
          get() {
            filePath = filePath || fileToUrl(file);
            return filePath;
          }
        });
        if (i2 < count)
          tempFiles.push(file);
      }
    }
    const res = {
      get tempFilePaths() {
        return tempFiles.map(({path}) => path);
      },
      tempFiles
    };
    resolve(res);
  });
  fileInput.click();
}, ChooseFileProtocol, ChooseFileOptions);
D
DCloud_LXH 已提交
11372 11373 11374 11375 11376 11377 11378 11379 11380 11381 11382 11383 11384 11385 11386 11387 11388 11389 11390 11391 11392 11393 11394 11395 11396 11397 11398 11399 11400 11401 11402 11403 11404 11405 11406 11407 11408 11409 11410 11411 11412 11413 11414 11415 11416 11417 11418 11419 11420 11421 11422 11423 11424 11425 11426 11427 11428 11429 11430 11431 11432 11433 11434 11435 11436 11437 11438 11439 11440 11441 11442 11443 11444 11445 11446 11447 11448 11449 11450 11451 11452 11453 11454 11455 11456 11457 11458 11459 11460 11461 11462 11463 11464 11465 11466 11467 11468 11469 11470
let imageInput = null;
const chooseImage = defineAsyncApi(API_CHOOSE_IMAGE, ({
  count,
  sourceType,
  extension
}, {resolve, reject}) => {
  if (imageInput) {
    document.body.removeChild(imageInput);
    imageInput = null;
  }
  imageInput = _createInput({
    count,
    sourceType,
    extension,
    type: "image"
  });
  document.body.appendChild(imageInput);
  imageInput.addEventListener("change", function(event2) {
    const eventTarget = event2.target;
    const tempFiles = [];
    if (eventTarget && eventTarget.files) {
      const fileCount = eventTarget.files.length;
      for (let i2 = 0; i2 < fileCount; i2++) {
        const file = eventTarget.files[i2];
        let filePath;
        Object.defineProperty(file, "path", {
          get() {
            filePath = filePath || fileToUrl(file);
            return filePath;
          }
        });
        if (i2 < count)
          tempFiles.push(file);
      }
    }
    const res = {
      get tempFilePaths() {
        return tempFiles.map(({path}) => path);
      },
      tempFiles
    };
    resolve(res);
  });
  imageInput.click();
}, ChooseImageProtocol, ChooseImageOptions);
let videoInput = null;
const chooseVideo = defineAsyncApi(API_CHOOSE_VIDEO, ({sourceType, extension}, {resolve, reject}) => {
  if (videoInput) {
    document.body.removeChild(videoInput);
    videoInput = null;
  }
  videoInput = _createInput({
    sourceType,
    extension,
    type: "video"
  });
  document.body.appendChild(videoInput);
  videoInput.addEventListener("change", function(event2) {
    const eventTarget = event2.target;
    const file = eventTarget.files[0];
    let filePath = "";
    const callbackResult = {
      tempFilePath: filePath,
      tempFile: file,
      size: file.size,
      duration: 0,
      width: 0,
      height: 0,
      name: file.name
    };
    Object.defineProperty(callbackResult, "tempFilePath", {
      get() {
        filePath = filePath || fileToUrl(this.tempFile);
        return filePath;
      }
    });
    const video = document.createElement("video");
    if (video.onloadedmetadata !== void 0) {
      const filePath2 = fileToUrl(file);
      video.onloadedmetadata = function() {
        revokeObjectURL(filePath2);
        resolve(Object.assign(callbackResult, {
          duration: video.duration || 0,
          width: video.videoWidth || 0,
          height: video.videoHeight || 0
        }));
      };
      setTimeout(() => {
        video.onloadedmetadata = null;
        revokeObjectURL(filePath2);
        resolve(callbackResult);
      }, 300);
      video.src = filePath2;
    } else {
      resolve(callbackResult);
    }
  });
  videoInput.click();
}, ChooseVideoProtocol, ChooseVideoOptions);
fxy060608's avatar
fxy060608 已提交
11471
const request = defineTaskApi(API_REQUEST, ({
fxy060608's avatar
fxy060608 已提交
11472 11473 11474 11475 11476 11477 11478 11479 11480 11481 11482 11483 11484 11485 11486 11487 11488 11489 11490 11491 11492 11493 11494 11495 11496 11497 11498
  url,
  data,
  header,
  method,
  dataType: dataType2,
  responseType,
  withCredentials,
  timeout = __uniConfig.networkTimeout.request
}, {resolve, reject}) => {
  let body = null;
  const contentType = normalizeContentType(header);
  if (method !== "GET") {
    if (typeof data === "string" || data instanceof ArrayBuffer) {
      body = data;
    } else {
      if (contentType === "json") {
        try {
          body = JSON.stringify(data);
        } catch (error) {
          body = data.toString();
        }
      } else if (contentType === "urlencoded") {
        const bodyArray = [];
        for (const key in data) {
          if (hasOwn$1(data, key)) {
            bodyArray.push(encodeURIComponent(key) + "=" + encodeURIComponent(data[key]));
          }
fxy060608's avatar
fxy060608 已提交
11499
        }
fxy060608's avatar
fxy060608 已提交
11500 11501 11502
        body = bodyArray.join("&");
      } else {
        body = data.toString();
fxy060608's avatar
fxy060608 已提交
11503
      }
fxy060608's avatar
fxy060608 已提交
11504 11505 11506 11507 11508 11509 11510 11511 11512 11513 11514 11515 11516 11517 11518 11519 11520 11521 11522 11523 11524 11525 11526 11527
    }
  }
  const xhr = new XMLHttpRequest();
  const requestTask = new RequestTask(xhr);
  xhr.open(method, url);
  for (const key in header) {
    if (hasOwn$1(header, key)) {
      xhr.setRequestHeader(key, header[key]);
    }
  }
  const timer = setTimeout(function() {
    xhr.onload = xhr.onabort = xhr.onerror = null;
    requestTask.abort();
    reject("timeout");
  }, timeout);
  xhr.responseType = responseType;
  xhr.onload = function() {
    clearTimeout(timer);
    const statusCode = xhr.status;
    let res = responseType === "text" ? xhr.responseText : xhr.response;
    if (responseType === "text" && dataType2 === "json") {
      try {
        res = JSON.parse(res);
      } catch (error) {
fxy060608's avatar
fxy060608 已提交
11528 11529
      }
    }
fxy060608's avatar
fxy060608 已提交
11530 11531 11532 11533 11534 11535 11536 11537 11538 11539 11540 11541 11542 11543 11544 11545 11546 11547 11548 11549 11550 11551 11552
    resolve({
      data: res,
      statusCode,
      header: parseHeaders(xhr.getAllResponseHeaders()),
      cookies: []
    });
  };
  xhr.onabort = function() {
    clearTimeout(timer);
    reject("abort");
  };
  xhr.onerror = function() {
    clearTimeout(timer);
    reject();
  };
  xhr.withCredentials = withCredentials;
  xhr.send(body);
  return requestTask;
}, RequestProtocol, RequestOptions);
function normalizeContentType(header) {
  const name = Object.keys(header).find((name2) => name2.toLowerCase() === "content-type");
  if (!name) {
    return;
fxy060608's avatar
fxy060608 已提交
11553
  }
fxy060608's avatar
fxy060608 已提交
11554 11555 11556 11557 11558 11559 11560 11561 11562 11563 11564 11565 11566 11567 11568 11569 11570 11571 11572 11573 11574 11575 11576 11577 11578 11579 11580 11581 11582 11583 11584 11585 11586 11587 11588
  const contentType = header[name];
  if (contentType.indexOf("application/json") === 0) {
    return "json";
  } else if (contentType.indexOf("application/x-www-form-urlencoded") === 0) {
    return "urlencoded";
  }
  return "string";
}
class RequestTask {
  constructor(xhr) {
    this._xhr = xhr;
  }
  abort() {
    if (this._xhr) {
      this._xhr.abort();
      delete this._xhr;
    }
  }
  onHeadersReceived(callback) {
    throw new Error("Method not implemented.");
  }
  offHeadersReceived(callback) {
    throw new Error("Method not implemented.");
  }
}
function parseHeaders(headers) {
  const headersObject = {};
  headers.split("\n").forEach((header) => {
    const find = header.match(/(\S+\s*):\s*(.*)/);
    if (!find || find.length !== 3) {
      return;
    }
    headersObject[find[1]] = find[2];
  });
  return headersObject;
fxy060608's avatar
fxy060608 已提交
11589
}
Q
qiang 已提交
11590 11591 11592 11593 11594 11595 11596 11597 11598 11599 11600 11601 11602 11603 11604 11605 11606 11607 11608 11609 11610 11611 11612 11613 11614 11615 11616 11617 11618 11619
class DownloadTask {
  constructor(xhr) {
    this._callbacks = [];
    this._xhr = xhr;
  }
  onProgressUpdate(callback) {
    if (typeof callback !== "function") {
      return;
    }
    this._callbacks.push(callback);
  }
  offProgressUpdate(callback) {
    const index2 = this._callbacks.indexOf(callback);
    if (index2 >= 0) {
      this._callbacks.splice(index2, 1);
    }
  }
  abort() {
    if (this._xhr) {
      this._xhr.abort();
      delete this._xhr;
    }
  }
  onHeadersReceived(callback) {
    throw new Error("Method not implemented.");
  }
  offHeadersReceived(callback) {
    throw new Error("Method not implemented.");
  }
}
fxy060608's avatar
fxy060608 已提交
11620
const downloadFile = defineTaskApi(API_DOWNLOAD_FILE, ({url, header, timeout = __uniConfig.networkTimeout.downloadFile}, {resolve, reject}) => {
Q
qiang 已提交
11621 11622 11623 11624 11625 11626 11627 11628 11629 11630 11631 11632 11633 11634 11635 11636 11637 11638 11639 11640 11641 11642 11643 11644 11645 11646 11647 11648 11649 11650 11651 11652
  var timer;
  var xhr = new XMLHttpRequest();
  var downloadTask = new DownloadTask(xhr);
  xhr.open("GET", url, true);
  Object.keys(header).forEach((key) => {
    xhr.setRequestHeader(key, header[key]);
  });
  xhr.responseType = "blob";
  xhr.onload = function() {
    clearTimeout(timer);
    const statusCode = xhr.status;
    const blob = this.response;
    let filename;
    const contentDisposition = xhr.getResponseHeader("content-disposition");
    if (contentDisposition) {
      const res = contentDisposition.match(/filename="?(\S+)"?\b/);
      if (res) {
        filename = res[1];
      }
    }
    blob.name = filename || getFileName(url);
    resolve({
      statusCode,
      tempFilePath: fileToUrl(blob)
    });
  };
  xhr.onabort = function() {
    clearTimeout(timer);
    reject("abort");
  };
  xhr.onerror = function() {
    clearTimeout(timer);
Q
qiang 已提交
11653
    reject();
Q
qiang 已提交
11654 11655 11656 11657 11658 11659 11660 11661 11662 11663 11664 11665 11666 11667 11668 11669 11670 11671 11672 11673 11674
  };
  xhr.onprogress = function(event2) {
    downloadTask._callbacks.forEach((callback) => {
      var totalBytesWritten = event2.loaded;
      var totalBytesExpectedToWrite = event2.total;
      var progress = Math.round(totalBytesWritten / totalBytesExpectedToWrite * 100);
      callback({
        progress,
        totalBytesWritten,
        totalBytesExpectedToWrite
      });
    });
  };
  xhr.send();
  timer = setTimeout(function() {
    xhr.onprogress = xhr.onload = xhr.onabort = xhr.onerror = null;
    downloadTask.abort();
    reject("timeout");
  }, timeout);
  return downloadTask;
}, DownloadFileProtocol, DownloadFileOptions);
Q
qiang 已提交
11675 11676 11677 11678 11679 11680 11681 11682 11683 11684 11685 11686 11687 11688 11689 11690 11691 11692 11693 11694 11695 11696 11697 11698 11699 11700 11701 11702 11703 11704 11705
class UploadTask {
  constructor(xhr) {
    this._callbacks = [];
    this._xhr = xhr;
  }
  onProgressUpdate(callback) {
    if (typeof callback !== "function") {
      return;
    }
    this._callbacks.push(callback);
  }
  offProgressUpdate(callback) {
    const index2 = this._callbacks.indexOf(callback);
    if (index2 >= 0) {
      this._callbacks.splice(index2, 1);
    }
  }
  abort() {
    this._isAbort = true;
    if (this._xhr) {
      this._xhr.abort();
      delete this._xhr;
    }
  }
  onHeadersReceived(callback) {
    throw new Error("Method not implemented.");
  }
  offHeadersReceived(callback) {
    throw new Error("Method not implemented.");
  }
}
fxy060608's avatar
fxy060608 已提交
11706
const uploadFile = defineTaskApi(API_UPLOAD_FILE, ({
Q
qiang 已提交
11707 11708 11709 11710 11711 11712 11713 11714 11715 11716 11717 11718 11719 11720 11721 11722 11723 11724 11725 11726 11727 11728 11729 11730 11731 11732 11733 11734 11735 11736 11737 11738 11739 11740 11741 11742 11743 11744 11745 11746 11747 11748 11749 11750 11751 11752 11753 11754 11755 11756 11757 11758 11759 11760 11761 11762 11763 11764 11765 11766 11767 11768 11769 11770 11771 11772 11773 11774 11775 11776 11777 11778 11779 11780 11781 11782 11783 11784 11785 11786 11787
  url,
  file,
  filePath,
  name,
  files: files2,
  header,
  formData,
  timeout = __uniConfig.networkTimeout.uploadFile
}, {resolve, reject}) => {
  var uploadTask = new UploadTask();
  if (!Array.isArray(files2) || !files2.length) {
    files2 = [
      {
        name,
        file,
        uri: filePath
      }
    ];
  }
  function upload(realFiles) {
    var xhr = new XMLHttpRequest();
    var form = new FormData();
    var timer;
    Object.keys(formData).forEach((key) => {
      form.append(key, formData[key]);
    });
    Object.values(files2).forEach(({name: name2}, index2) => {
      const file2 = realFiles[index2];
      form.append(name2 || "file", file2, file2.name || `file-${Date.now()}`);
    });
    xhr.open("POST", url);
    Object.keys(header).forEach((key) => {
      xhr.setRequestHeader(key, header[key]);
    });
    xhr.upload.onprogress = function(event2) {
      uploadTask._callbacks.forEach((callback) => {
        var totalBytesSent = event2.loaded;
        var totalBytesExpectedToSend = event2.total;
        var progress = Math.round(totalBytesSent / totalBytesExpectedToSend * 100);
        callback({
          progress,
          totalBytesSent,
          totalBytesExpectedToSend
        });
      });
    };
    xhr.onerror = function() {
      clearTimeout(timer);
      reject();
    };
    xhr.onabort = function() {
      clearTimeout(timer);
      reject("abort");
    };
    xhr.onload = function() {
      clearTimeout(timer);
      const statusCode = xhr.status;
      resolve({
        statusCode,
        data: xhr.responseText || xhr.response
      });
    };
    if (!uploadTask._isAbort) {
      timer = setTimeout(function() {
        xhr.upload.onprogress = xhr.onload = xhr.onabort = xhr.onerror = null;
        uploadTask.abort();
        reject("timeout");
      }, timeout);
      xhr.send(form);
      uploadTask._xhr = xhr;
    } else {
      reject("abort");
    }
  }
  Promise.all(files2.map(({file: file2, uri}) => file2 instanceof Blob ? Promise.resolve(blobToFile(file2)) : urlToFile(uri))).then(upload).catch(() => {
    setTimeout(() => {
      reject("file error");
    }, 0);
  });
  return uploadTask;
}, UploadFileProtocol, UploadFileOptions);
Q
qiang 已提交
11788 11789 11790 11791 11792 11793 11794 11795 11796 11797 11798 11799 11800 11801 11802 11803 11804 11805 11806 11807 11808 11809 11810 11811 11812 11813 11814 11815 11816 11817 11818 11819 11820 11821 11822 11823 11824 11825 11826 11827 11828 11829 11830 11831 11832 11833 11834 11835 11836 11837 11838 11839 11840 11841 11842 11843 11844 11845 11846 11847 11848 11849 11850 11851 11852 11853 11854 11855 11856 11857 11858 11859 11860 11861 11862 11863 11864 11865 11866 11867 11868 11869 11870 11871 11872 11873 11874 11875 11876 11877 11878 11879 11880 11881 11882 11883 11884 11885 11886 11887 11888 11889 11890 11891 11892 11893 11894 11895 11896 11897 11898 11899 11900 11901 11902 11903 11904 11905 11906 11907 11908 11909 11910 11911 11912 11913 11914
const socketTasks = [];
const globalEvent = {
  open: "",
  close: "",
  error: "",
  message: ""
};
class SocketTask {
  constructor(url, protocols, callback) {
    this._callbacks = {
      open: [],
      close: [],
      error: [],
      message: []
    };
    let error;
    try {
      const webSocket = this._webSocket = new WebSocket(url, protocols);
      webSocket.binaryType = "arraybuffer";
      const eventNames = ["open", "close", "error", "message"];
      eventNames.forEach((name) => {
        this._callbacks[name] = [];
        webSocket.addEventListener(name, (event2) => {
          const res = name === "message" ? {
            data: event2.data
          } : {};
          this._callbacks[name].forEach((callback2) => {
            try {
              callback2(res);
            } catch (e2) {
              console.error(`thirdScriptError
${e2};at socketTask.on${capitalize(name)} callback function
`, e2);
            }
          });
          if (this === socketTasks[0] && globalEvent[name]) {
            UniServiceJSBridge.invokeOnCallback(globalEvent[name], res);
          }
          if (name === "error" || name === "close") {
            const index2 = socketTasks.indexOf(this);
            if (index2 >= 0) {
              socketTasks.splice(index2, 1);
            }
          }
        });
      });
      const propertys = [
        "CLOSED",
        "CLOSING",
        "CONNECTING",
        "OPEN",
        "readyState"
      ];
      propertys.forEach((property) => {
        Object.defineProperty(this, property, {
          get() {
            return webSocket[property];
          }
        });
      });
    } catch (e2) {
      error = e2;
    }
    callback && callback(error, this);
  }
  send(options) {
    const data = (options || {}).data;
    const ws = this._webSocket;
    try {
      if (ws.readyState !== ws.OPEN) {
        throw new Error("SocketTask.readyState is not OPEN");
      }
      ws.send(data);
      this._callback(options, "sendSocketMessage:ok");
    } catch (error) {
      this._callback(options, `sendSocketMessage:fail ${error}`);
    }
  }
  close(options = {}) {
    const ws = this._webSocket;
    try {
      const code = options.code || 1e3;
      const reason = options.reason;
      if (typeof reason === "string") {
        ws.close(code, reason);
      } else {
        ws.close(code);
      }
      this._callback(options, "closeSocket:ok");
    } catch (error) {
      this._callback(options, `closeSocket:fail ${error}`);
    }
  }
  _callback({
    success,
    fail,
    complete
  } = {}, errMsg) {
    const data = {
      errMsg
    };
    if (/:ok$/.test(errMsg)) {
      if (typeof success === "function") {
        success(data);
      }
    } else {
      if (typeof fail === "function") {
        fail(data);
      }
    }
    if (typeof complete === "function") {
      complete(data);
    }
  }
  onOpen(callback) {
    this._callbacks.open.push(callback);
  }
  onMessage(callback) {
    this._callbacks.message.push(callback);
  }
  onError(callback) {
    this._callbacks.error.push(callback);
  }
  onClose(callback) {
    this._callbacks.close.push(callback);
  }
}
fxy060608's avatar
fxy060608 已提交
11915
const connectSocket = defineTaskApi(API_CONNECT_SOCKET, ({url, protocols}, {resolve, reject}) => {
Q
qiang 已提交
11916 11917 11918 11919 11920 11921 11922 11923 11924 11925 11926 11927 11928 11929 11930 11931 11932 11933 11934 11935 11936 11937 11938
  return new SocketTask(url, protocols, (error, socketTask) => {
    if (error) {
      reject(error.toString());
      return;
    }
    socketTasks.push(socketTask);
    resolve();
  });
}, ConnectSocketProtocol, ConnectSocketOptions);
function callSocketTask(socketTask, method, option, resolve, reject) {
  const fn = socketTask[method];
  if (typeof fn === "function") {
    fn.call(socketTask, Object.assign({}, option, {
      success() {
        resolve();
      },
      fail({errMsg}) {
        reject(errMsg.replace("sendSocketMessage:fail ", ""));
      },
      complete: void 0
    }));
  }
}
fxy060608's avatar
fxy060608 已提交
11939
const sendSocketMessage = defineAsyncApi(API_SEND_SOCKET_MESSAGE, (options, {resolve, reject}) => {
Q
qiang 已提交
11940 11941 11942 11943 11944 11945 11946
  const socketTask = socketTasks[0];
  if (socketTask && socketTask.readyState === socketTask.OPEN) {
    callSocketTask(socketTask, "send", options, resolve, reject);
  } else {
    reject("WebSocket is not connected");
  }
}, SendSocketMessageProtocol);
fxy060608's avatar
fxy060608 已提交
11947
const closeSocket = defineAsyncApi(API_CLOSE_SOCKET, (options, {resolve, reject}) => {
Q
qiang 已提交
11948 11949 11950 11951 11952 11953 11954 11955 11956
  const socketTask = socketTasks[0];
  if (socketTask) {
    callSocketTask(socketTask, "send", options, resolve, reject);
  } else {
    reject("WebSocket is not connected");
  }
}, CloseSocketProtocol);
function on(event2) {
  const api2 = `onSocket${capitalize(event2)}`;
fxy060608's avatar
fxy060608 已提交
11957
  return defineOnApi(api2, () => {
Q
qiang 已提交
11958 11959 11960
    globalEvent[event2] = api2;
  });
}
Q
qiang 已提交
11961 11962 11963 11964 11965 11966 11967 11968 11969 11970 11971 11972 11973 11974 11975 11976 11977 11978 11979 11980 11981 11982 11983 11984 11985 11986 11987 11988 11989 11990 11991 11992 11993 11994 11995 11996 11997 11998 11999 12000 12001 12002 12003 12004 12005 12006 12007 12008 12009 12010 12011 12012 12013 12014 12015 12016 12017 12018 12019 12020 12021 12022 12023 12024 12025 12026 12027 12028 12029 12030 12031 12032 12033 12034 12035 12036 12037 12038 12039 12040 12041 12042 12043 12044 12045 12046 12047 12048 12049 12050 12051 12052 12053
const onSocketOpen = /* @__PURE__ */ on("open");
const onSocketError = /* @__PURE__ */ on("error");
const onSocketMessage = /* @__PURE__ */ on("message");
const onSocketClose = /* @__PURE__ */ on("close");
function getJSONP(url, options, success, error) {
  var js = document.createElement("script");
  var callbackKey = options.callback || "callback";
  var callbackName = "__callback" + Date.now();
  var timeout = options.timeout || 3e4;
  var timing;
  function end() {
    clearTimeout(timing);
    delete window[callbackName];
    js.remove();
  }
  window[callbackName] = (res) => {
    if (typeof success === "function") {
      success(res);
    }
    end();
  };
  js.onerror = () => {
    if (typeof error === "function") {
      error();
    }
    end();
  };
  timing = setTimeout(function() {
    if (typeof error === "function") {
      error();
    }
    end();
  }, timeout);
  js.src = url + (url.indexOf("?") >= 0 ? "&" : "?") + callbackKey + "=" + callbackName;
  document.body.appendChild(js);
}
const getLocation = defineAsyncApi(API_GET_LOCATION, ({type, altitude}, {resolve, reject}) => {
  const key = __uniConfig.qqMapKey;
  new Promise((resolve2, reject2) => {
    if (navigator.geolocation) {
      navigator.geolocation.getCurrentPosition((res) => resolve2(res.coords), reject2, {
        enableHighAccuracy: altitude,
        timeout: 1e3 * 100
      });
    } else {
      reject2(new Error("device nonsupport geolocation"));
    }
  }).catch(() => {
    return new Promise((resolve2, reject2) => {
      getJSONP(`https://apis.map.qq.com/ws/location/v1/ip?output=jsonp&key=${key}`, {
        callback: "callback"
      }, (res) => {
        if ("result" in res && res.result.location) {
          const location2 = res.result.location;
          resolve2({
            latitude: location2.lat,
            longitude: location2.lng
          }, true);
        } else {
          reject2(new Error(res.message || JSON.stringify(res)));
        }
      }, () => reject2(new Error("network error")));
    });
  }).then((coords, skip) => {
    if (type && type.toUpperCase() === "WGS84" || skip) {
      return coords;
    }
    return new Promise((resolve2) => {
      getJSONP(`https://apis.map.qq.com/jsapi?qt=translate&type=1&points=${coords.longitude},${coords.latitude}&key=${key}&output=jsonp&pf=jsapi&ref=jsapi`, {
        callback: "cb"
      }, (res) => {
        if ("detail" in res && "points" in res.detail && res.detail.points.length) {
          const location2 = res.detail.points[0];
          resolve2(Object.assign({}, coords, {
            longitude: location2.lng,
            latitude: location2.lat
          }));
        } else {
          resolve2(coords);
        }
      }, () => resolve2(coords));
    });
  }).then((coords) => {
    resolve(Object.assign({}, coords, {
      speed: coords.altitude || 0,
      altitude: coords.altitude || 0,
      verticalAccuracy: coords.altitudeAccuracy || 0,
      horizontalAccuracy: coords.accuracy || 0
    }));
  }).catch((error) => {
    reject(error.message);
  });
}, GetLocationProtocol, GetLocationOptions);
fxy060608's avatar
fxy060608 已提交
12054
const navigateBack = defineAsyncApi(API_NAVIGATE_BACK, ({delta}, {resolve, reject}) => {
fxy060608's avatar
fxy060608 已提交
12055 12056 12057
  let canBack = true;
  if (invokeHook("onBackPress") === true) {
    canBack = false;
fxy060608's avatar
fxy060608 已提交
12058
  }
fxy060608's avatar
fxy060608 已提交
12059 12060 12061 12062
  if (!canBack) {
    return reject("onBackPress");
  }
  getApp().$router.go(-delta);
fxy060608's avatar
fxy060608 已提交
12063
  return resolve();
fxy060608's avatar
fxy060608 已提交
12064
}, NavigateBackProtocol, NavigateBackOptions);
fxy060608's avatar
fxy060608 已提交
12065
function navigate(type, url, __id__) {
fxy060608's avatar
fxy060608 已提交
12066 12067 12068 12069 12070
  const router = getApp().$router;
  return new Promise((resolve, reject) => {
    router[type === "navigateTo" ? "push" : "replace"]({
      path: url,
      force: true,
fxy060608's avatar
fxy060608 已提交
12071
      state: createPageState(type, __id__)
fxy060608's avatar
fxy060608 已提交
12072 12073 12074
    }).then((failure) => {
      if (isNavigationFailure(failure)) {
        return reject(failure.message);
fxy060608's avatar
fxy060608 已提交
12075
      }
fxy060608's avatar
fxy060608 已提交
12076
      return resolve(void 0);
fxy060608's avatar
fxy060608 已提交
12077 12078 12079
    });
  });
}
fxy060608's avatar
fxy060608 已提交
12080
const navigateTo = defineAsyncApi(API_NAVIGATE_TO, ({url}, {resolve, reject}) => navigate(API_NAVIGATE_TO, url).then(resolve).catch(reject), NavigateToProtocol, NavigateToOptions);
fxy060608's avatar
fxy060608 已提交
12081 12082 12083 12084 12085 12086 12087 12088
function removeLastPage() {
  const page = getCurrentPage();
  if (!page) {
    return;
  }
  const $page = page.$page;
  removePage(normalizeRouteKey($page.path, $page.id));
}
fxy060608's avatar
fxy060608 已提交
12089
const redirectTo = defineAsyncApi(API_REDIRECT_TO, ({url}, {resolve, reject}) => {
fxy060608's avatar
fxy060608 已提交
12090
  return removeLastPage(), navigate(API_REDIRECT_TO, url).then(resolve).catch(reject);
fxy060608's avatar
fxy060608 已提交
12091
}, RedirectToProtocol, RedirectToOptions);
fxy060608's avatar
fxy060608 已提交
12092 12093 12094 12095 12096 12097
function removeAllPages() {
  const keys = getCurrentPagesMap().keys();
  for (const routeKey of keys) {
    removePage(routeKey);
  }
}
fxy060608's avatar
fxy060608 已提交
12098
const reLaunch = defineAsyncApi(API_RE_LAUNCH, ({url}, {resolve, reject}) => {
fxy060608's avatar
fxy060608 已提交
12099
  return removeAllPages(), navigate(API_RE_LAUNCH, url).then(resolve).catch(reject);
fxy060608's avatar
fxy060608 已提交
12100
}, ReLaunchProtocol, ReLaunchOptions);
fxy060608's avatar
fxy060608 已提交
12101 12102 12103 12104 12105 12106 12107 12108 12109 12110 12111 12112 12113 12114 12115 12116 12117 12118 12119 12120 12121 12122 12123 12124 12125 12126 12127 12128 12129 12130 12131 12132 12133 12134
function removeNonTabBarPages() {
  const curTabBarPageVm = getCurrentPageVm();
  if (!curTabBarPageVm) {
    return;
  }
  const pagesMap = getCurrentPagesMap();
  const keys = pagesMap.keys();
  for (const routeKey of keys) {
    const page = pagesMap.get(routeKey);
    const pageMeta = page.$page.meta;
    if (!pageMeta.isTabBar) {
      removePage(routeKey);
    } else {
      page.$.__isActive = false;
    }
  }
  if (curTabBarPageVm.$page.meta.isTabBar) {
    curTabBarPageVm.$.__isVisible = false;
    invokeHook(curTabBarPageVm, "onHide");
  }
}
function getTabBarPageId(url) {
  const pages = getCurrentPagesMap().values();
  for (const page of pages) {
    const $page = page.$page;
    if ($page.path === url) {
      page.$.__isActive = true;
      return $page.id;
    }
  }
}
const switchTab = defineAsyncApi(API_SWITCH_TAB, ({url}, {resolve, reject}) => {
  return removeNonTabBarPages(), navigate(API_SWITCH_TAB, url, getTabBarPageId(url)).then(resolve).catch(reject);
}, SwitchTabProtocol, SwitchTabOptions);
fxy060608's avatar
fxy060608 已提交
12135 12136 12137 12138 12139 12140 12141 12142 12143 12144 12145
function setNavigationBar(pageMeta, type, args, resolve, reject) {
  if (!pageMeta) {
    return reject("page not found");
  }
  const {navigationBar} = pageMeta;
  switch (type) {
    case API_SET_NAVIGATION_BAR_COLOR:
      const {frontColor, backgroundColor, animation} = args;
      const {duration, timingFunc} = animation;
      if (frontColor) {
        navigationBar.titleColor = frontColor === "#000000" ? "#000" : "#fff";
fxy060608's avatar
fxy060608 已提交
12146
      }
fxy060608's avatar
fxy060608 已提交
12147 12148
      if (backgroundColor) {
        navigationBar.backgroundColor = backgroundColor;
fxy060608's avatar
fxy060608 已提交
12149
      }
fxy060608's avatar
fxy060608 已提交
12150 12151 12152 12153 12154 12155 12156 12157 12158 12159 12160 12161 12162
      navigationBar.duration = duration + "ms";
      navigationBar.timingFunc = timingFunc;
      break;
    case API_SHOW_NAVIGATION_BAR_LOADING:
      navigationBar.loading = true;
      break;
    case API_HIDE_NAVIGATION_BAR_LOADING:
      navigationBar.loading = false;
      break;
    case API_SET_NAVIGATION_BAR_TITLE:
      const {title} = args;
      navigationBar.titleText = title;
      break;
fxy060608's avatar
fxy060608 已提交
12163
  }
fxy060608's avatar
fxy060608 已提交
12164 12165
  resolve();
}
fxy060608's avatar
fxy060608 已提交
12166
const setNavigationBarColor = defineAsyncApi(API_SET_NAVIGATION_BAR_COLOR, (args, {resolve, reject}) => {
fxy060608's avatar
fxy060608 已提交
12167 12168
  setNavigationBar(getCurrentPageMeta(), API_SET_NAVIGATION_BAR_COLOR, args, resolve, reject);
}, SetNavigationBarColorProtocol, SetNavigationBarColorOptions);
fxy060608's avatar
fxy060608 已提交
12169
const showNavigationBarLoading = defineAsyncApi(API_SHOW_NAVIGATION_BAR_LOADING, (args, {resolve, reject}) => {
fxy060608's avatar
fxy060608 已提交
12170
  setNavigationBar(getCurrentPageMeta(), API_SHOW_NAVIGATION_BAR_LOADING, args, resolve, reject);
fxy060608's avatar
fxy060608 已提交
12171
});
fxy060608's avatar
fxy060608 已提交
12172
const hideNavigationBarLoading = defineAsyncApi(API_HIDE_NAVIGATION_BAR_LOADING, (args, {resolve, reject}) => {
fxy060608's avatar
fxy060608 已提交
12173
  setNavigationBar(getCurrentPageMeta(), API_HIDE_NAVIGATION_BAR_LOADING, args, resolve, reject);
fxy060608's avatar
fxy060608 已提交
12174
});
fxy060608's avatar
fxy060608 已提交
12175
const setNavigationBarTitle = defineAsyncApi(API_SET_NAVIGATION_BAR_TITLE, (args, {resolve, reject}) => {
fxy060608's avatar
fxy060608 已提交
12176 12177
  setNavigationBar(getCurrentPageMeta(), API_SET_NAVIGATION_BAR_TITLE, args, resolve, reject);
}, SetNavigationBarTitleProtocol);
fxy060608's avatar
fxy060608 已提交
12178
const showModal = defineAsyncApi(API_SHOW_MODAL, () => {
fxy060608's avatar
fxy060608 已提交
12179
}, ShowModalProtocol, ShowModalOptions);
fxy060608's avatar
fxy060608 已提交
12180
const showToast = defineAsyncApi(API_SHOW_TOAST, () => {
fxy060608's avatar
fxy060608 已提交
12181
}, ShowToastProtocol, ShowToastOptions);
fxy060608's avatar
fxy060608 已提交
12182
const hideToast = defineAsyncApi(API_HIDE_TOAST, () => {
fxy060608's avatar
fxy060608 已提交
12183
});
fxy060608's avatar
fxy060608 已提交
12184
const showLoading = defineAsyncApi(API_SHOW_LOADING, () => {
fxy060608's avatar
fxy060608 已提交
12185
}, ShowLoadingProtocol, ShowLoadingOptions);
fxy060608's avatar
fxy060608 已提交
12186
const hideLoading = defineAsyncApi(API_HIDE_LOADING, () => {
fxy060608's avatar
fxy060608 已提交
12187
});
fxy060608's avatar
fxy060608 已提交
12188
const showActionSheet = defineAsyncApi(API_SHOW_ACTION_SHEET, () => {
fxy060608's avatar
fxy060608 已提交
12189
}, ShowActionSheetProtocol, ShowActionSheetOptions);
fxy060608's avatar
fxy060608 已提交
12190 12191 12192 12193 12194 12195 12196 12197 12198 12199 12200 12201 12202 12203 12204
let tabBar;
function useTabBar() {
  if (!tabBar) {
    tabBar = __uniConfig.tabBar && reactive(__uniConfig.tabBar);
  }
  return tabBar;
}
const setTabBarItemProps = ["text", "iconPath", "selectedIconPath"];
const setTabBarStyleProps = [
  "color",
  "selectedColor",
  "backgroundColor",
  "borderStyle"
];
const setTabBarBadgeProps = ["badge", "redDot"];
fxy060608's avatar
fxy060608 已提交
12205 12206
function setProperties(item, props2, propsData) {
  props2.forEach(function(name) {
fxy060608's avatar
fxy060608 已提交
12207 12208 12209
    if (hasOwn$1(propsData, name)) {
      item[name] = propsData[name];
    }
fxy060608's avatar
fxy060608 已提交
12210 12211
  });
}
fxy060608's avatar
fxy060608 已提交
12212 12213 12214 12215 12216 12217 12218 12219 12220 12221 12222 12223 12224
function normalizeRoute(index2, oldPagePath, newPagePath) {
  const oldTabBarRoute = __uniRoutes.find((item) => item.meta.route === oldPagePath);
  if (oldTabBarRoute) {
    const {meta} = oldTabBarRoute;
    delete meta.tabBarIndex;
    meta.isQuit = meta.isTabBar = false;
  }
  const newTabBarRoute = __uniRoutes.find((item) => item.meta.route === newPagePath);
  if (newTabBarRoute) {
    const {meta} = newTabBarRoute;
    meta.tabBarIndex = index2;
    meta.isQuit = meta.isTabBar = false;
  }
fxy060608's avatar
fxy060608 已提交
12225
}
fxy060608's avatar
fxy060608 已提交
12226 12227 12228 12229 12230 12231 12232 12233 12234 12235 12236 12237 12238 12239 12240 12241 12242 12243 12244 12245 12246 12247 12248 12249 12250 12251 12252 12253 12254 12255 12256 12257 12258 12259 12260 12261 12262 12263 12264 12265 12266
function setTabBar(type, args, resolve) {
  const tabBar2 = useTabBar();
  switch (type) {
    case API_SHOW_TAB_BAR:
      tabBar2.shown = true;
      break;
    case API_HIDE_TAB_BAR:
      tabBar2.shown = false;
      break;
    case API_SET_TAB_BAR_ITEM:
      const {index: index2} = args;
      const tabBarItem = tabBar2.list[index2];
      const oldPagePath = tabBarItem.pagePath;
      setProperties(tabBarItem, setTabBarItemProps, args);
      const {pagePath} = args;
      if (pagePath && pagePath !== oldPagePath) {
        normalizeRoute(index2, oldPagePath, pagePath);
      }
      break;
    case API_SET_TAB_BAR_STYLE:
      setProperties(tabBar2, setTabBarStyleProps, args);
      break;
    case API_SHOW_TAB_BAR_RED_DOT:
      setProperties(tabBar2.list[args.index], setTabBarBadgeProps, {
        badge: "",
        redDot: true
      });
      break;
    case API_SET_TAB_BAR_BADGE:
      setProperties(tabBar2.list[args.index], setTabBarBadgeProps, {
        badge: args.text,
        redDot: true
      });
      break;
    case API_HIDE_TAB_BAR_RED_DOT:
    case API_REMOVE_TAB_BAR_BADGE:
      setProperties(tabBar2.list[args.index], setTabBarBadgeProps, {
        badge: "",
        redDot: false
      });
      break;
fxy060608's avatar
fxy060608 已提交
12267
  }
fxy060608's avatar
fxy060608 已提交
12268 12269
  resolve();
}
fxy060608's avatar
fxy060608 已提交
12270
const setTabBarItem = defineAsyncApi(API_SET_TAB_BAR_ITEM, (args, {resolve}) => {
fxy060608's avatar
fxy060608 已提交
12271 12272
  setTabBar(API_SET_TAB_BAR_ITEM, args, resolve);
}, SetTabBarItemProtocol, SetTabBarItemOptions);
fxy060608's avatar
fxy060608 已提交
12273
const setTabBarStyle = defineAsyncApi(API_SET_TAB_BAR_STYLE, (args, {resolve}) => {
fxy060608's avatar
fxy060608 已提交
12274 12275
  setTabBar(API_SET_TAB_BAR_STYLE, args, resolve);
}, SetTabBarStyleProtocol, SetTabBarStyleOptions);
fxy060608's avatar
fxy060608 已提交
12276
const hideTabBar = defineAsyncApi(API_HIDE_TAB_BAR, (args, {resolve}) => {
fxy060608's avatar
fxy060608 已提交
12277 12278
  setTabBar(API_HIDE_TAB_BAR, args, resolve);
}, HideTabBarProtocol);
fxy060608's avatar
fxy060608 已提交
12279
const showTabBar = defineAsyncApi(API_SHOW_TAB_BAR, (args, {resolve}) => {
fxy060608's avatar
fxy060608 已提交
12280 12281
  setTabBar(API_SHOW_TAB_BAR, args, resolve);
}, ShowTabBarProtocol);
fxy060608's avatar
fxy060608 已提交
12282
const hideTabBarRedDot = defineAsyncApi(API_HIDE_TAB_BAR_RED_DOT, (args, {resolve}) => {
fxy060608's avatar
fxy060608 已提交
12283 12284
  setTabBar(API_HIDE_TAB_BAR_RED_DOT, args, resolve);
}, HideTabBarRedDotProtocol, HideTabBarRedDotOptions);
fxy060608's avatar
fxy060608 已提交
12285
const showTabBarRedDot = defineAsyncApi(API_SHOW_TAB_BAR_RED_DOT, (args, {resolve}) => {
fxy060608's avatar
fxy060608 已提交
12286 12287
  setTabBar(API_SHOW_TAB_BAR_RED_DOT, args, resolve);
}, ShowTabBarRedDotProtocol, ShowTabBarRedDotOptions);
fxy060608's avatar
fxy060608 已提交
12288
const removeTabBarBadge = defineAsyncApi(API_REMOVE_TAB_BAR_BADGE, (args, {resolve}) => {
fxy060608's avatar
fxy060608 已提交
12289 12290
  setTabBar(API_REMOVE_TAB_BAR_BADGE, args, resolve);
}, RemoveTabBarBadgeProtocol, RemoveTabBarBadgeOptions);
fxy060608's avatar
fxy060608 已提交
12291
const setTabBarBadge = defineAsyncApi(API_SET_TAB_BAR_BADGE, (args, {resolve}) => {
fxy060608's avatar
fxy060608 已提交
12292 12293 12294 12295 12296 12297 12298 12299 12300 12301 12302
  setTabBar(API_SET_TAB_BAR_BADGE, args, resolve);
}, SetTabBarBadgeProtocol, SetTabBarBadgeOptions);
var api = /* @__PURE__ */ Object.freeze({
  __proto__: null,
  [Symbol.toStringTag]: "Module",
  upx2px,
  addInterceptor,
  removeInterceptor,
  promiseInterceptor,
  arrayBufferToBase64,
  base64ToArrayBuffer,
fxy060608's avatar
fxy060608 已提交
12303 12304
  createIntersectionObserver,
  createSelectorQuery,
fxy060608's avatar
fxy060608 已提交
12305 12306 12307 12308 12309 12310 12311 12312 12313 12314 12315 12316 12317
  createVideoContext,
  onTabBarMidButtonTap,
  cssVar,
  cssEnv,
  cssConstant,
  cssBackdropFilter,
  canIUse,
  makePhoneCall,
  getSystemInfo,
  getSystemInfoSync,
  onNetworkStatusChange,
  offNetworkStatusChange,
  getNetworkType,
Q
qiang 已提交
12318 12319 12320 12321
  onAccelerometerChange,
  offAccelerometerChange,
  startAccelerometer,
  stopAccelerometer,
Q
qiang 已提交
12322 12323 12324 12325
  onCompassChange,
  offCompassChange,
  startCompass,
  stopCompass,
fxy060608's avatar
fxy060608 已提交
12326 12327
  vibrateShort,
  vibrateLong,
Q
qiang 已提交
12328 12329 12330 12331 12332 12333 12334 12335 12336 12337
  setStorageSync,
  setStorage,
  getStorageSync,
  getStorage,
  removeStorageSync,
  removeStorage,
  clearStorageSync,
  clearStorage,
  getStorageInfoSync,
  getStorageInfo,
Q
qiang 已提交
12338
  getFileInfo,
fxy060608's avatar
fxy060608 已提交
12339 12340
  openDocument,
  getImageInfo,
Q
qiang 已提交
12341
  getVideoInfo,
fxy060608's avatar
fxy060608 已提交
12342
  chooseFile,
D
DCloud_LXH 已提交
12343 12344
  chooseImage,
  chooseVideo,
fxy060608's avatar
fxy060608 已提交
12345
  request,
Q
qiang 已提交
12346
  downloadFile,
Q
qiang 已提交
12347
  uploadFile,
Q
qiang 已提交
12348 12349 12350 12351 12352 12353 12354
  connectSocket,
  sendSocketMessage,
  closeSocket,
  onSocketOpen,
  onSocketError,
  onSocketMessage,
  onSocketClose,
Q
qiang 已提交
12355
  getLocation,
fxy060608's avatar
fxy060608 已提交
12356 12357 12358 12359 12360 12361 12362 12363 12364
  navigateBack,
  navigateTo,
  redirectTo,
  reLaunch,
  switchTab,
  setNavigationBarColor,
  showNavigationBarLoading,
  hideNavigationBarLoading,
  setNavigationBarTitle,
fxy060608's avatar
fxy060608 已提交
12365 12366 12367 12368 12369 12370
  showModal,
  showToast,
  hideToast,
  showLoading,
  hideLoading,
  showActionSheet,
fxy060608's avatar
fxy060608 已提交
12371 12372 12373 12374 12375 12376 12377 12378
  setTabBarItem,
  setTabBarStyle,
  hideTabBar,
  showTabBar,
  hideTabBarRedDot,
  showTabBarRedDot,
  removeTabBarBadge,
  setTabBarBadge
fxy060608's avatar
fxy060608 已提交
12379
});
fxy060608's avatar
fxy060608 已提交
12380
const uni$1 = api;
fxy060608's avatar
fxy060608 已提交
12381
const UniServiceJSBridge$1 = /* @__PURE__ */ extend(ServiceJSBridge, {
fxy060608's avatar
fxy060608 已提交
12382 12383
  publishHandler(event2, args, pageId) {
    window.UniViewJSBridge.subscribeHandler(event2, args, pageId);
fxy060608's avatar
fxy060608 已提交
12384 12385
  }
});
fxy060608's avatar
fxy060608 已提交
12386 12387 12388 12389
var TabBar = /* @__PURE__ */ defineComponent({
  name: "TabBar",
  setup() {
    const tabBar2 = useTabBar();
fxy060608's avatar
fxy060608 已提交
12390
    const onSwitchTab = useSwitchTab(useRoute(), tabBar2);
fxy060608's avatar
fxy060608 已提交
12391 12392 12393 12394 12395 12396 12397 12398 12399 12400 12401 12402 12403 12404 12405 12406 12407 12408 12409 12410
    const {
      style,
      borderStyle,
      placeholderStyle
    } = useTabBarStyle(tabBar2);
    return () => {
      const tabBarItemsTsx = createTabBarItemsTsx(tabBar2, onSwitchTab);
      return createVNode("uni-tabbar", {
        class: "uni-tabbar-" + tabBar2.position
      }, [createVNode("div", {
        class: "uni-tabbar",
        style: style.value
      }, [createVNode("div", {
        class: "uni-tabbar-border",
        style: borderStyle.value
      }, null, 4), tabBarItemsTsx], 4), createVNode("div", {
        class: "uni-placeholder",
        style: placeholderStyle.value
      }, null, 4)], 2);
    };
fxy060608's avatar
fxy060608 已提交
12411 12412
  }
});
fxy060608's avatar
fxy060608 已提交
12413
function useSwitchTab(route, tabBar2) {
fxy060608's avatar
fxy060608 已提交
12414
  watchEffect(() => {
fxy060608's avatar
fxy060608 已提交
12415 12416 12417 12418 12419 12420
    const meta = route.meta;
    if (meta.isTabBar) {
      const pagePath = meta.route;
      const index2 = tabBar2.list.findIndex((item) => item.pagePath === pagePath);
      if (index2 === -1) {
        return;
fxy060608's avatar
fxy060608 已提交
12421
      }
fxy060608's avatar
fxy060608 已提交
12422
      tabBar2.selectedIndex = index2;
fxy060608's avatar
fxy060608 已提交
12423
    }
fxy060608's avatar
fxy060608 已提交
12424 12425 12426 12427 12428 12429 12430 12431 12432 12433 12434 12435 12436 12437 12438 12439 12440 12441 12442 12443 12444 12445 12446 12447 12448 12449 12450 12451 12452 12453 12454 12455 12456 12457 12458 12459 12460 12461 12462 12463 12464 12465 12466 12467 12468 12469 12470 12471 12472 12473 12474
  });
  return (tabBarItem, index2) => {
    const {
      type
    } = tabBarItem;
    return () => {
      if (__UNI_FEATURE_TABBAR_MIDBUTTON__ && type === "midButton") {
        return UniServiceJSBridge.invokeOnCallback(API_ON_TAB_BAR_MID_BUTTON_TAP);
      }
      const {
        pagePath,
        text: text2
      } = tabBarItem;
      let url = "/" + pagePath;
      if (url === __uniRoutes[0].alias) {
        url = "/";
      }
      if (route.path !== url) {
        uni.switchTab({
          from: "tabBar",
          url
        });
      } else {
        invokeHook("onTabItemTap", {
          index: index2,
          text: text2,
          pagePath
        });
      }
    };
  };
}
const DEFAULT_BG_COLOR = "#f7f7fa";
const BLUR_EFFECT_COLOR_DARK = "rgb(0, 0, 0, 0.8)";
const BLUR_EFFECT_COLOR_LIGHT = "rgb(250, 250, 250, 0.8)";
const BLUR_EFFECT_COLORS = {
  dark: BLUR_EFFECT_COLOR_DARK,
  light: BLUR_EFFECT_COLOR_LIGHT,
  extralight: BLUR_EFFECT_COLOR_LIGHT
};
const BORDER_COLORS = {
  white: "rgba(255, 255, 255, 0.33)",
  black: "rgba(0, 0, 0, 0.33)"
};
function useTabBarStyle(tabBar2) {
  const style = computed(() => {
    let backgroundColor = tabBar2.backgroundColor;
    const blurEffect = tabBar2.blurEffect;
    if (!backgroundColor) {
      if (cssBackdropFilter && blurEffect && blurEffect !== "none") {
        backgroundColor = BLUR_EFFECT_COLORS[blurEffect];
fxy060608's avatar
fxy060608 已提交
12475 12476
      }
    }
fxy060608's avatar
fxy060608 已提交
12477 12478 12479 12480 12481 12482 12483 12484 12485 12486 12487 12488 12489 12490 12491 12492 12493 12494 12495 12496 12497 12498
    return {
      backgroundColor: backgroundColor || DEFAULT_BG_COLOR,
      backdropFilter: blurEffect !== "none" ? "blur(10px)" : blurEffect
    };
  });
  const borderStyle = computed(() => {
    const {
      borderStyle: borderStyle2
    } = tabBar2;
    return {
      backgroundColor: BORDER_COLORS[borderStyle2] || borderStyle2
    };
  });
  const placeholderStyle = computed(() => {
    return {
      height: tabBar2.height
    };
  });
  return {
    style,
    borderStyle,
    placeholderStyle
fxy060608's avatar
fxy060608 已提交
12499 12500
  };
}
fxy060608's avatar
fxy060608 已提交
12501 12502
function isMidButton(item) {
  return item.type === "midButton";
fxy060608's avatar
fxy060608 已提交
12503
}
fxy060608's avatar
fxy060608 已提交
12504 12505 12506 12507 12508 12509 12510 12511 12512 12513 12514 12515 12516
function createTabBarItemsTsx(tabBar2, onSwitchTab) {
  const {
    list: list2,
    selectedIndex,
    selectedColor,
    color
  } = tabBar2;
  return list2.map((item, index2) => {
    const selected = selectedIndex === index2;
    const textColor = selected ? selectedColor : color;
    const iconPath = (selected ? item.selectedIconPath || item.iconPath : item.iconPath) || "";
    if (!__UNI_FEATURE_TABBAR_MIDBUTTON__) {
      return createTabBarItemTsx(textColor, iconPath, item, tabBar2, index2, onSwitchTab);
fxy060608's avatar
fxy060608 已提交
12517
    }
fxy060608's avatar
fxy060608 已提交
12518
    return isMidButton(item) ? createTabBarMidButtonTsx(textColor, iconPath, item, tabBar2, index2, onSwitchTab) : createTabBarItemTsx(textColor, iconPath, item, tabBar2, index2, onSwitchTab);
fxy060608's avatar
fxy060608 已提交
12519 12520
  });
}
fxy060608's avatar
fxy060608 已提交
12521 12522 12523 12524 12525 12526
function createTabBarItemTsx(color, iconPath, tabBarItem, tabBar2, index2, onSwitchTab) {
  return createVNode("div", {
    key: index2,
    class: "uni-tabbar__item",
    onClick: onSwitchTab(tabBarItem, index2)
  }, [createTabBarItemBdTsx(color, iconPath || "", tabBarItem, tabBar2)], 8, ["onClick"]);
fxy060608's avatar
fxy060608 已提交
12527
}
fxy060608's avatar
fxy060608 已提交
12528 12529 12530 12531 12532 12533 12534 12535 12536 12537 12538 12539 12540 12541 12542 12543 12544 12545 12546 12547 12548 12549 12550 12551 12552 12553 12554 12555 12556 12557 12558 12559 12560 12561 12562 12563 12564 12565 12566 12567 12568 12569 12570 12571 12572 12573 12574 12575 12576 12577 12578 12579 12580 12581 12582 12583 12584 12585 12586 12587 12588 12589 12590 12591 12592 12593 12594 12595 12596 12597 12598 12599 12600 12601 12602 12603 12604 12605 12606 12607 12608 12609 12610 12611 12612 12613 12614 12615
function createTabBarItemBdTsx(color, iconPath, tabBarItem, tabBar2) {
  const {
    height
  } = tabBar2;
  return createVNode("div", {
    class: "uni-tabbar__bd",
    style: {
      height
    }
  }, [iconPath && createTabBarItemIconTsx(iconPath, tabBarItem, tabBar2), tabBarItem.text && createTabBarItemTextTsx(color, tabBarItem, tabBar2)], 4);
}
function createTabBarItemIconTsx(iconPath, tabBarItem, tabBar2) {
  const {
    type,
    text: text2,
    redDot
  } = tabBarItem;
  const {
    iconWidth
  } = tabBar2;
  const clazz = "uni-tabbar__icon" + (text2 ? " uni-tabbar__icon__diff" : "");
  const style = {
    width: iconWidth,
    height: iconWidth
  };
  return createVNode("div", {
    class: clazz,
    style
  }, [type !== "midButton" && createVNode("img", {
    src: getRealPath(iconPath)
  }, null, 8, ["src"]), redDot && createTabBarItemRedDotTsx(tabBarItem.badge)], 6);
}
function createTabBarItemTextTsx(color, tabBarItem, tabBar2) {
  const {
    redDot,
    iconPath,
    text: text2
  } = tabBarItem;
  const {
    fontSize,
    spacing
  } = tabBar2;
  const style = {
    color,
    fontSize,
    lineHeight: !iconPath ? 1.8 : "normal",
    marginTop: !iconPath ? "inherit" : spacing
  };
  return createVNode("div", {
    class: "uni-tabbar__label",
    style
  }, [text2, redDot && !iconPath && createTabBarItemRedDotTsx(tabBarItem.badge)], 4);
}
function createTabBarItemRedDotTsx(badge) {
  const clazz = "uni-tabbar__reddot" + (badge ? " uni-tabbar__badge" : "");
  return createVNode("div", {
    class: clazz
  }, [badge], 2);
}
function createTabBarMidButtonTsx(color, iconPath, midButton, tabBar2, index2, onSwitchTab) {
  const {
    width,
    height,
    backgroundImage,
    iconWidth
  } = midButton;
  return createVNode("div", {
    key: index2,
    class: "uni-tabbar__item",
    style: {
      flex: "0 0 " + width,
      position: "relative"
    },
    onClick: onSwitchTab(midButton, index2)
  }, [createVNode("div", {
    class: "uni-tabbar__mid",
    style: {
      width,
      height,
      backgroundImage: backgroundImage ? "url('" + getRealPath(backgroundImage) + "')" : "none"
    }
  }, [iconPath && createVNode("img", {
    style: {
      width: iconWidth,
      height: iconWidth
    },
    src: getRealPath(iconPath)
  }, null, 12, ["src"])], 4), createTabBarItemBdTsx(color, iconPath, midButton, tabBar2)], 12, ["onClick"]);
12616
}
fxy060608's avatar
fxy060608 已提交
12617
const CSS_VARS = ["--status-bar-height", "--top-window-height", "--window-left", "--window-right", "--window-margin", "--tab-bar-height"];
fxy060608's avatar
fxy060608 已提交
12618
var LayoutComponent = defineComponent({
fxy060608's avatar
fxy060608 已提交
12619
  name: "Layout",
fxy060608's avatar
fxy060608 已提交
12620
  setup(_props, {
fxy060608's avatar
fxy060608 已提交
12621 12622 12623 12624 12625 12626 12627
    emit
  }) {
    useCssVar();
    const keepAliveRoute = __UNI_FEATURE_PAGES__ && useKeepAliveRoute();
    __UNI_FEATURE_TOPWINDOW__ && useTopWindow();
    __UNI_FEATURE_LEFTWINDOW__ && useLeftWindow();
    __UNI_FEATURE_RIGHTWINDOW__ && useRightWindow();
fxy060608's avatar
fxy060608 已提交
12628
    const showTabBar2 = __UNI_FEATURE_TABBAR__ && useShowTabBar();
fxy060608's avatar
fxy060608 已提交
12629 12630 12631 12632 12633 12634 12635 12636 12637
    const clazz = useAppClass(showTabBar2);
    return () => {
      const layoutTsx = createLayoutTsx(keepAliveRoute);
      const tabBarTsx = __UNI_FEATURE_TABBAR__ && createTabBarTsx(showTabBar2);
      return createVNode("uni-app", {
        class: clazz.value
      }, [[layoutTsx, tabBarTsx]], 2);
    };
  }
12638
});
fxy060608's avatar
fxy060608 已提交
12639 12640 12641 12642 12643 12644 12645 12646 12647 12648 12649 12650 12651 12652 12653 12654
function useCssVar() {
  CSS_VARS.forEach((name) => updateCssVar(name, "0px"));
}
function useAppClass(showTabBar2) {
  const showMaxWidth = ref(false);
  return computed(() => {
    return {
      "uni-app--showtabbar": showTabBar2 && showTabBar2.value,
      "uni-app--maxwidth": showMaxWidth.value
    };
  });
}
function createLayoutTsx(keepAliveRoute, topWindow, leftWindow, rightWindow) {
  const routerVNode = __UNI_FEATURE_PAGES__ ? createRouterViewVNode(keepAliveRoute) : createPageVNode();
  if (!__UNI_FEATURE_RESPONSIVE__) {
    return routerVNode;
fxy060608's avatar
fxy060608 已提交
12655
  }
fxy060608's avatar
fxy060608 已提交
12656 12657 12658 12659
  const topWindowTsx = __UNI_FEATURE_TOPWINDOW__ ? createTopWindowTsx() : null;
  const leftWindowTsx = __UNI_FEATURE_LEFTWINDOW__ ? createLeftWindowTsx() : null;
  const rightWindowTsx = __UNI_FEATURE_RIGHTWINDOW__ ? createRightWindowTsx() : null;
  return createVNode("uni-layout", null, [topWindowTsx, createVNode("uni-content", null, [createVNode("uni-main", null, [routerVNode]), leftWindowTsx, rightWindowTsx])]);
fxy060608's avatar
fxy060608 已提交
12660
}
fxy060608's avatar
fxy060608 已提交
12661
function useShowTabBar(emit) {
fxy060608's avatar
fxy060608 已提交
12662
  const route = useRoute();
fxy060608's avatar
fxy060608 已提交
12663
  const tabBar2 = useTabBar();
fxy060608's avatar
fxy060608 已提交
12664
  const showTabBar2 = computed(() => route.meta.isTabBar && tabBar2.shown);
fxy060608's avatar
fxy060608 已提交
12665
  updateCssVar("--tab-bar-height", tabBar2.height);
fxy060608's avatar
fxy060608 已提交
12666 12667 12668 12669 12670 12671 12672 12673 12674 12675 12676 12677 12678 12679 12680 12681 12682 12683 12684 12685 12686 12687 12688 12689 12690 12691 12692 12693 12694 12695 12696 12697 12698 12699 12700 12701 12702 12703 12704 12705 12706 12707 12708 12709 12710 12711 12712 12713 12714 12715 12716
  return showTabBar2;
}
function createTabBarTsx(showTabBar2) {
  return withDirectives(createVNode(TabBar, null, null, 512), [[vShow, showTabBar2.value]]);
}
function createPageVNode() {
  return createVNode(__uniRoutes[0].component);
}
function createRouterViewVNode(keepAliveRoute) {
  return createVNode(RouterView, null, {
    default: withCtx(({
      Component
    }) => [(openBlock(), createBlock(KeepAlive, {
      matchBy: "key",
      cache: keepAliveRoute.routeCache
    }, [(openBlock(), createBlock(resolveDynamicComponent(Component), {
      key: keepAliveRoute.routeKey.value
    }))], 1032, ["cache"]))]),
    _: 1
  });
}
function useTopWindow() {
  const component = resolveComponent("VUniTopWindow");
  return {
    component,
    style: component.style,
    height: 0,
    show: false
  };
}
function useLeftWindow() {
  const component = resolveComponent("VUniLeftWindow");
  return {
    component,
    style: component.style,
    height: 0
  };
}
function useRightWindow() {
  const component = resolveComponent("VUniRightWindow");
  return {
    component,
    style: component.style,
    height: 0
  };
}
function createTopWindowTsx(topWindow) {
}
function createLeftWindowTsx(leftWindow) {
}
function createRightWindowTsx(leftWindow) {
fxy060608's avatar
fxy060608 已提交
12717
}
fxy060608's avatar
fxy060608 已提交
12718 12719 12720 12721 12722 12723 12724 12725 12726 12727 12728 12729 12730 12731 12732 12733 12734 12735 12736 12737 12738 12739 12740 12741 12742 12743 12744 12745 12746 12747 12748 12749 12750 12751 12752 12753 12754 12755 12756 12757 12758 12759 12760 12761 12762 12763 12764 12765 12766
function hexToRgba(hex) {
  let r;
  let g2;
  let b;
  hex = hex.replace("#", "");
  if (hex.length === 6) {
    r = hex.substring(0, 2);
    g2 = hex.substring(2, 4);
    b = hex.substring(4, 6);
  } else if (hex.length === 3) {
    r = hex.substring(0, 1);
    g2 = hex.substring(1, 2);
    b = hex.substring(2, 3);
  } else {
    return {r: 0, g: 0, b: 0};
  }
  if (r.length === 1) {
    r += r;
  }
  if (g2.length === 1) {
    g2 += g2;
  }
  if (b.length === 1) {
    b += b;
  }
  r = parseInt(r, 16);
  g2 = parseInt(g2, 16);
  b = parseInt(b, 16);
  return {
    r,
    g: g2,
    b
  };
}
function usePageHeadTransparentBackgroundColor(backgroundColor) {
  const {r, g: g2, b} = hexToRgba(backgroundColor);
  return `rgba(${r},${g2},${b},0)`;
}
function usePageHeadTransparent(headRef, {titleColor, coverage, backgroundColor}) {
  let A = 0;
  const rgb = computed(() => hexToRgba(backgroundColor));
  const offset = parseInt(coverage);
  onMounted(() => {
    const $el = headRef.value;
    const transparentElemStyle = $el.style;
    const titleElem = $el.querySelector(".uni-page-head__title");
    const borderRadiusElems = $el.querySelectorAll(".uni-page-head-btn");
    const iconElems = $el.querySelectorAll(".uni-btn-icon");
    const iconElemsStyles = [];
fxy060608's avatar
fxy060608 已提交
12767 12768
    for (let i2 = 0; i2 < iconElems.length; i2++) {
      iconElemsStyles.push(iconElems[i2].style);
fxy060608's avatar
fxy060608 已提交
12769 12770 12771
    }
    const oldColors = [];
    const borderRadiusElemsStyles = [];
fxy060608's avatar
fxy060608 已提交
12772 12773
    for (let i2 = 0; i2 < borderRadiusElems.length; i2++) {
      const borderRadiusElem = borderRadiusElems[i2];
fxy060608's avatar
fxy060608 已提交
12774 12775 12776 12777 12778 12779 12780 12781 12782 12783 12784 12785 12786 12787 12788 12789 12790 12791 12792 12793 12794 12795 12796 12797 12798 12799 12800 12801 12802 12803 12804 12805 12806 12807 12808
      oldColors.push(getComputedStyle(borderRadiusElem).backgroundColor);
      borderRadiusElemsStyles.push(borderRadiusElem.style);
    }
    A = 0;
    UniViewJSBridge.on("onPageScroll", ({scrollTop}) => {
      const alpha = Math.min(scrollTop / offset, 1);
      if (alpha === 1 && A === 1) {
        return;
      }
      if (alpha > 0.5 && A <= 0.5) {
        iconElemsStyles.forEach(function(iconElemStyle) {
          iconElemStyle.color = titleColor;
        });
      } else if (alpha <= 0.5 && A > 0.5) {
        iconElemsStyles.forEach(function(iconElemStyle) {
          iconElemStyle.color = "#fff";
        });
      }
      A = alpha;
      if (titleElem) {
        titleElem.style.opacity = alpha;
      }
      const bg = rgb.value;
      transparentElemStyle.backgroundColor = `rgba(${bg.r},${bg.g},${bg.b},${alpha})`;
      borderRadiusElemsStyles.forEach(function(borderRadiusElemStyle, index2) {
        const oldColor = oldColors[index2];
        const rgba = oldColor.match(/[\d+\.]+/g);
        rgba[3] = (1 - alpha) * (rgba.length === 4 ? rgba[3] : 1);
        borderRadiusElemStyle.backgroundColor = `rgba(${rgba})`;
      });
    });
  });
}
const ICON_PATH_BACK = "M21.781 7.844l-9.063 8.594 9.063 8.594q0.25 0.25 0.25 0.609t-0.25 0.578q-0.25 0.25-0.578 0.25t-0.578-0.25l-9.625-9.125q-0.156-0.125-0.203-0.297t-0.047-0.359q0-0.156 0.047-0.328t0.203-0.297l9.625-9.125q0.25-0.25 0.578-0.25t0.578 0.25q0.25 0.219 0.25 0.578t-0.25 0.578z";
const ICON_PATHS = {
fxy060608's avatar
fxy060608 已提交
12809
  none: "",
fxy060608's avatar
fxy060608 已提交
12810 12811 12812 12813 12814 12815 12816
  forward: "M11 7.844q-0.25-0.219-0.25-0.578t0.25-0.578q0.219-0.25 0.563-0.25t0.563 0.25l9.656 9.125q0.125 0.125 0.188 0.297t0.063 0.328q0 0.188-0.063 0.359t-0.188 0.297l-9.656 9.125q-0.219 0.25-0.563 0.25t-0.563-0.25q-0.25-0.219-0.25-0.578t0.25-0.609l9.063-8.594-9.063-8.594z",
  back: ICON_PATH_BACK,
  share: "M26.563 24.844q0 0.125-0.109 0.234t-0.234 0.109h-17.938q-0.125 0-0.219-0.109t-0.094-0.234v-13.25q0-0.156 0.094-0.25t0.219-0.094h5.5v-1.531h-6q-0.531 0-0.906 0.391t-0.375 0.922v14.375q0 0.531 0.375 0.922t0.906 0.391h18.969q0.531 0 0.891-0.391t0.359-0.953v-5.156h-1.438v4.625zM29.813 10.969l-5.125-5.375-1.031 1.094 3.438 3.594-3.719 0.031q-2.313 0.188-4.344 1.125t-3.578 2.422-2.5 3.453-1.109 4.188l-0.031 0.25h1.469v-0.219q0.156-1.875 1-3.594t2.25-3.063 3.234-2.125 3.828-0.906l0.188-0.031 3.313-0.031-3.438 3.625 1.031 1.063 5.125-5.375-0.031-0.063 0.031-0.063z",
  favorite: "M27.594 13.375q-0.063-0.188-0.219-0.313t-0.344-0.156l-7.094-0.969-3.219-6.406q-0.094-0.188-0.25-0.281t-0.375-0.094q-0.188 0-0.344 0.094t-0.25 0.281l-3.125 6.438-7.094 1.094q-0.188 0.031-0.344 0.156t-0.219 0.313q-0.031 0.188 0.016 0.375t0.172 0.313l5.156 4.969-1.156 7.063q-0.031 0.188 0.047 0.375t0.234 0.313q0.094 0.063 0.188 0.094t0.219 0.031q0.063 0 0.141-0.031t0.172-0.063l6.313-3.375 6.375 3.313q0.063 0.031 0.141 0.047t0.172 0.016q0.188 0 0.344-0.094t0.25-0.281q0.063-0.094 0.078-0.234t-0.016-0.234q0-0.031 0-0.063l-1.25-6.938 5.094-5.031q0.156-0.156 0.203-0.344t-0.016-0.375zM11.469 19.063q0.031-0.188-0.016-0.344t-0.172-0.281l-4.406-4.25 6.063-0.906q0.156-0.031 0.297-0.125t0.203-0.25l2.688-5.531 2.75 5.5q0.063 0.156 0.203 0.25t0.297 0.125l6.094 0.844-4.375 4.281q-0.125 0.125-0.172 0.297t-0.016 0.328l1.063 6.031-5.438-2.813q-0.156-0.094-0.328-0.078t-0.297 0.078l-5.438 2.875 1-6.031z",
  home: "M23.719 16.5q-0.313 0-0.531 0.219t-0.219 0.5v7.063q0 0.219-0.172 0.391t-0.391 0.172h-12.344q-0.25 0-0.422-0.172t-0.172-0.391v-7.063q0-0.281-0.219-0.5t-0.531-0.219q-0.281 0-0.516 0.219t-0.234 0.5v7.063q0.031 0.844 0.625 1.453t1.438 0.609h12.375q0.844 0 1.453-0.609t0.609-1.453v-7.063q0-0.125-0.063-0.266t-0.156-0.234q-0.094-0.125-0.234-0.172t-0.297-0.047zM26.5 14.875l-8.813-8.813q-0.313-0.313-0.688-0.453t-0.781-0.141-0.781 0.141-0.656 0.422l-8.813 8.844q-0.188 0.219-0.188 0.516t0.219 0.484q0.094 0.125 0.234 0.172t0.297 0.047q0.125 0 0.25-0.047t0.25-0.141l8.781-8.781q0.156-0.156 0.406-0.156t0.406 0.156l8.813 8.781q0.219 0.188 0.516 0.188t0.516-0.219q0.188-0.188 0.203-0.484t-0.172-0.516z",
  menu: "M8.938 18.313q0.875 0 1.484-0.609t0.609-1.453-0.609-1.453-1.484-0.609q-0.844 0-1.453 0.609t-0.609 1.453 0.609 1.453 1.453 0.609zM16.188 18.313q0.875 0 1.484-0.609t0.609-1.453-0.609-1.453-1.484-0.609q-0.844 0-1.453 0.609t-0.609 1.453 0.609 1.453 1.453 0.609zM23.469 18.313q0.844 0 1.453-0.609t0.609-1.453-0.609-1.453-1.453-0.609q-0.875 0-1.484 0.609t-0.609 1.453 0.609 1.453 1.484 0.609z",
  close: "M17.25 16.156l7.375-7.313q0.281-0.281 0.281-0.641t-0.281-0.641q-0.25-0.25-0.625-0.25t-0.625 0.25l-7.375 7.344-7.313-7.344q-0.25-0.25-0.625-0.25t-0.625 0.25q-0.281 0.25-0.281 0.625t0.281 0.625l7.313 7.344-7.375 7.344q-0.281 0.25-0.281 0.625t0.281 0.625q0.125 0.125 0.281 0.188t0.344 0.063q0.156 0 0.328-0.063t0.297-0.188l7.375-7.344 7.375 7.406q0.125 0.156 0.297 0.219t0.328 0.063q0.188 0 0.344-0.078t0.281-0.203q0.281-0.25 0.281-0.609t-0.281-0.641l-7.375-7.406z"
fxy060608's avatar
fxy060608 已提交
12817 12818
};
var PageHead = /* @__PURE__ */ defineComponent({
fxy060608's avatar
fxy060608 已提交
12819 12820
  name: "PageHead",
  setup() {
fxy060608's avatar
fxy060608 已提交
12821
    const headRef = ref(null);
fxy060608's avatar
fxy060608 已提交
12822
    const pageMeta = usePageMeta();
fxy060608's avatar
fxy060608 已提交
12823 12824 12825 12826 12827 12828
    const navigationBar = pageMeta.navigationBar;
    UniServiceJSBridge.emit("onNavigationBarChange", navigationBar.titleText);
    const {
      clazz,
      style
    } = usePageHead(navigationBar);
fxy060608's avatar
fxy060608 已提交
12829 12830 12831
    const buttons = __UNI_FEATURE_NAVIGATIONBAR_BUTTONS__ && usePageHeadButtons(navigationBar);
    const searchInput = __UNI_FEATURE_NAVIGATIONBAR_SEARCHINPUT__ && usePageHeadSearchInput();
    __UNI_FEATURE_NAVIGATIONBAR_TRANSPARENT__ && usePageHeadTransparent(headRef, navigationBar);
fxy060608's avatar
fxy060608 已提交
12832
    return () => {
fxy060608's avatar
fxy060608 已提交
12833
      const backButtonTsx = __UNI_FEATURE_PAGES__ ? createBackButtonTsx(pageMeta) : null;
fxy060608's avatar
fxy060608 已提交
12834 12835
      const leftButtonsTsx = __UNI_FEATURE_NAVIGATIONBAR_BUTTONS__ ? createButtonsTsx(buttons.left) : [];
      const rightButtonsTsx = __UNI_FEATURE_NAVIGATIONBAR_BUTTONS__ ? createButtonsTsx(buttons.right) : [];
fxy060608's avatar
fxy060608 已提交
12836 12837 12838 12839 12840 12841 12842
      const type = navigationBar.type || "default";
      const placeholderTsx = type !== "transparent" && type !== "float" && createVNode("div", {
        class: {
          "uni-placeholder": true,
          "uni-placeholder-titlePenetrate": navigationBar.titlePenetrate
        }
      }, null, 2);
fxy060608's avatar
fxy060608 已提交
12843
      return createVNode("uni-page-head", {
fxy060608's avatar
fxy060608 已提交
12844
        "uni-page-head-type": type
fxy060608's avatar
fxy060608 已提交
12845
      }, [createVNode("div", {
fxy060608's avatar
fxy060608 已提交
12846
        ref: headRef,
fxy060608's avatar
fxy060608 已提交
12847 12848 12849 12850
        class: clazz.value,
        style: style.value
      }, [createVNode("div", {
        class: "uni-page-head-hd"
fxy060608's avatar
fxy060608 已提交
12851 12852
      }, [backButtonTsx, ...leftButtonsTsx]), createPageHeadBdTsx(navigationBar, searchInput), createVNode("div", {
        class: "uni-page-head-ft"
fxy060608's avatar
fxy060608 已提交
12853
      }, [...rightButtonsTsx])], 6), placeholderTsx], 8, ["uni-page-head-type"]);
fxy060608's avatar
fxy060608 已提交
12854
    };
fxy060608's avatar
fxy060608 已提交
12855 12856
  }
});
fxy060608's avatar
fxy060608 已提交
12857 12858 12859 12860 12861 12862
function createBackButtonTsx(pageMeta) {
  const {
    navigationBar,
    isQuit
  } = pageMeta;
  if (navigationBar.backButton && !isQuit) {
fxy060608's avatar
fxy060608 已提交
12863
    return createVNode("div", {
fxy060608's avatar
fxy060608 已提交
12864 12865 12866
      class: "uni-page-head-btn",
      onClick: onPageHeadBackButton
    }, [createSvgIconVNode(ICON_PATH_BACK, navigationBar.type === "transparent" ? "#fff" : navigationBar.titleColor, 27)], 8, ["onClick"]);
fxy060608's avatar
fxy060608 已提交
12867 12868
  }
}
fxy060608's avatar
fxy060608 已提交
12869
function createButtonsTsx(btns) {
fxy060608's avatar
fxy060608 已提交
12870 12871 12872 12873
  return btns.map(({
    btnClass,
    btnStyle,
    btnText,
fxy060608's avatar
fxy060608 已提交
12874
    btnIconPath,
fxy060608's avatar
fxy060608 已提交
12875 12876 12877 12878 12879 12880 12881 12882
    badgeText,
    iconStyle
  }, index2) => {
    return createVNode("div", {
      key: index2,
      class: btnClass,
      style: btnStyle,
      "badge-text": badgeText
fxy060608's avatar
fxy060608 已提交
12883
    }, [btnIconPath ? createSvgIconVNode(btnIconPath, iconStyle.color, iconStyle.fontSize) : createVNode("i", {
fxy060608's avatar
fxy060608 已提交
12884 12885 12886 12887 12888
      class: "uni-btn-icon",
      style: iconStyle,
      innerHTML: btnText
    }, null, 12, ["innerHTML"])], 14, ["badge-text"]);
  });
fxy060608's avatar
fxy060608 已提交
12889
}
fxy060608's avatar
fxy060608 已提交
12890 12891 12892 12893 12894 12895 12896 12897 12898 12899 12900 12901 12902 12903 12904 12905 12906 12907 12908 12909 12910 12911 12912 12913 12914 12915 12916 12917 12918 12919 12920 12921 12922 12923 12924 12925 12926 12927 12928 12929 12930 12931 12932 12933 12934 12935 12936 12937 12938 12939 12940 12941 12942 12943 12944 12945
function createPageHeadBdTsx(navigationBar, searchInput) {
  if (!__UNI_FEATURE_NAVIGATIONBAR_SEARCHINPUT__ || !navigationBar.searchInput) {
    return createPageHeadTitleTextTsx(navigationBar);
  }
  return createPageHeadSearchInputTsx(navigationBar, searchInput);
}
function createPageHeadTitleTextTsx({
  loading,
  titleText,
  titleImage
}) {
  return createVNode("div", {
    class: "uni-page-head-bd"
  }, [createVNode("div", {
    style: "{fontSize:titleSize,opacity:type==='transparent'?0:1}",
    class: "uni-page-head__title"
  }, [loading ? createVNode("i", {
    class: "uni-loading"
  }, null) : titleImage ? createVNode("img", {
    src: titleImage,
    class: "uni-page-head__title_image"
  }, null, 8, ["src"]) : titleText])]);
}
function createPageHeadSearchInputTsx(navigationBar, {
  text: text2,
  focus,
  composing,
  onBlur,
  onFocus,
  onInput
}) {
  const {
    color,
    align: align2,
    autoFocus,
    disabled,
    borderRadius,
    backgroundColor,
    placeholder,
    placeholderColor
  } = navigationBar.searchInput;
  const searchStyle = {
    borderRadius,
    backgroundColor
  };
  const placeholderClass = ["uni-page-head-search-placeholder", `uni-page-head-search-placeholder-${focus.value || text2.value ? "left" : align2}`];
  return createVNode("div", {
    class: "uni-page-head-search",
    style: searchStyle
  }, [createVNode("div", {
    style: {
      color: placeholderColor
    },
    class: placeholderClass
  }, [createVNode("div", {
    class: "uni-page-head-search-icon"
12946
  }, [createSvgIconVNode(ICON_PATH_SEARCH, placeholderColor, 20)]), text2.value || composing.value ? "" : placeholder], 6), createVNode(_sfc_main$g, {
fxy060608's avatar
fxy060608 已提交
12947 12948 12949 12950 12951 12952 12953 12954 12955 12956 12957 12958 12959 12960 12961
    focus: autoFocus,
    disabled,
    style: {
      color
    },
    "placeholder-style": {
      color: placeholderColor
    },
    class: "uni-page-head-search-input",
    "confirm-type": "search",
    onFocus,
    onBlur,
    onInput
  }, null, 8, ["focus", "disabled", "style", "placeholder-style", "onFocus", "onBlur", "onInput"])], 4);
}
fxy060608's avatar
fxy060608 已提交
12962 12963 12964 12965 12966 12967 12968 12969 12970 12971 12972
function onPageHeadBackButton() {
  if (getCurrentPages().length === 1) {
    uni.reLaunch({
      url: "/"
    });
  } else {
    uni.navigateBack({
      from: "backbutton"
    });
  }
}
fxy060608's avatar
fxy060608 已提交
12973 12974 12975 12976 12977 12978 12979 12980 12981 12982 12983 12984 12985 12986 12987 12988 12989 12990 12991
function usePageHead(navigationBar) {
  const clazz = computed(() => {
    const {
      type,
      titlePenetrate,
      shadowColorType
    } = navigationBar;
    const clazz2 = {
      "uni-page-head": true,
      "uni-page-head-transparent": type === "transparent",
      "uni-page-head-titlePenetrate": titlePenetrate === "YES",
      "uni-page-head-shadow": !!shadowColorType
    };
    if (shadowColorType) {
      clazz2[`uni-page-head-shadow-${shadowColorType}`] = true;
    }
    return clazz2;
  });
  const style = computed(() => {
fxy060608's avatar
fxy060608 已提交
12992
    const backgroundColor = __UNI_FEATURE_NAVIGATIONBAR_TRANSPARENT__ && navigationBar.type === "transparent" ? usePageHeadTransparentBackgroundColor(navigationBar.backgroundColor) : navigationBar.backgroundColor;
fxy060608's avatar
fxy060608 已提交
12993
    return {
fxy060608's avatar
fxy060608 已提交
12994 12995
      backgroundColor,
      color: navigationBar.titleColor,
fxy060608's avatar
fxy060608 已提交
12996
      transitionDuration: navigationBar.duration,
fxy060608's avatar
fxy060608 已提交
12997
      transitionTimingFunction: navigationBar.timingFunc
fxy060608's avatar
fxy060608 已提交
12998 12999 13000 13001 13002 13003 13004
    };
  });
  return {
    clazz,
    style
  };
}
fxy060608's avatar
fxy060608 已提交
13005
function usePageHeadButtons(navigationBar) {
fxy060608's avatar
fxy060608 已提交
13006 13007 13008 13009 13010
  const left = [];
  const right = [];
  const {
    buttons
  } = navigationBar;
fxy060608's avatar
fxy060608 已提交
13011 13012 13013 13014 13015 13016 13017 13018
  if (isArray(buttons)) {
    const {
      type
    } = navigationBar;
    const isTransparent = type === "transparent";
    const fonts = Object.create(null);
    buttons.forEach((btn) => {
      if (btn.fontSrc && !btn.fontFamily) {
fxy060608's avatar
fxy060608 已提交
13019
        const fontSrc = getRealPath(btn.fontSrc);
fxy060608's avatar
fxy060608 已提交
13020 13021 13022 13023 13024 13025 13026 13027 13028 13029 13030 13031 13032 13033 13034
        let fontFamily = fonts[fontSrc];
        if (!fontFamily) {
          fontFamily = `font${Date.now()}`;
          fonts[fontSrc] = fontFamily;
          updateStyle("uni-btn-" + fontFamily, `@font-face{font-family: "${fontFamily}";src: url("${fontSrc}") format("truetype")}`);
        }
        btn.fontFamily = fontFamily;
      }
      const pageHeadBtn = usePageHeadButton(btn, isTransparent);
      if (btn.float === "left") {
        left.push(pageHeadBtn);
      } else {
        right.push(pageHeadBtn);
      }
    });
fxy060608's avatar
fxy060608 已提交
13035
  }
fxy060608's avatar
fxy060608 已提交
13036 13037 13038 13039
  return {
    left,
    right
  };
fxy060608's avatar
fxy060608 已提交
13040 13041
}
function usePageHeadButton(btn, isTransparent) {
fxy060608's avatar
fxy060608 已提交
13042 13043 13044 13045 13046 13047 13048 13049
  const iconStyle = {
    color: btn.color,
    fontSize: btn.fontSize,
    fontWeight: btn.fontWeight
  };
  if (btn.fontFamily) {
    iconStyle.fontFamily = btn.fontFamily;
  }
fxy060608's avatar
fxy060608 已提交
13050 13051 13052 13053 13054 13055 13056 13057 13058 13059
  return {
    btnClass: {
      "uni-page-head-btn": true,
      "uni-page-head-btn-red-dot": !!(btn.redDot || btn.badgeText),
      "uni-page-head-btn-select": !!btn.select
    },
    btnStyle: {
      backgroundColor: isTransparent ? btn.background : "transparent",
      width: btn.width
    },
fxy060608's avatar
fxy060608 已提交
13060 13061
    btnText: btn.fontSrc && btn.fontFamily ? btn.text.replace("\\u", "&#x") : btn.text,
    btnIconPath: ICON_PATHS[btn.type],
fxy060608's avatar
fxy060608 已提交
13062
    badgeText: btn.badgeText,
fxy060608's avatar
fxy060608 已提交
13063 13064 13065 13066 13067 13068 13069 13070 13071 13072 13073 13074 13075 13076 13077 13078 13079 13080 13081 13082 13083 13084 13085
    iconStyle
  };
}
function usePageHeadSearchInput(navigationBar) {
  const focus = ref(false);
  const text2 = ref("");
  const composing = ref(false);
  function onFocus() {
    focus.value = true;
  }
  function onBlur() {
    focus.value = false;
  }
  function onInput(evt) {
    text2.value = evt.detail.value;
  }
  return {
    focus,
    text: text2,
    composing,
    onFocus,
    onBlur,
    onInput
fxy060608's avatar
fxy060608 已提交
13086 13087
  };
}
fxy060608's avatar
fxy060608 已提交
13088 13089 13090 13091 13092 13093 13094 13095
var _sfc_main$2 = {
  name: "PageRefresh",
  setup() {
    const {refreshOptions} = usePageMeta();
    return {
      offset: refreshOptions.offset,
      color: refreshOptions.color
    };
fxy060608's avatar
fxy060608 已提交
13096
  }
fxy060608's avatar
fxy060608 已提交
13097
};
fxy060608's avatar
fxy060608 已提交
13098 13099 13100 13101 13102 13103 13104 13105 13106 13107 13108
const _hoisted_1$1 = {class: "uni-page-refresh-inner"};
const _hoisted_2$1 = /* @__PURE__ */ createVNode("path", {d: "M17.65 6.35C16.2 4.9 14.21 4 12 4c-4.42 0-7.99 3.58-7.99 8s3.57 8 7.99 8c3.73 0 6.84-2.55 7.73-6h-2.08c-.82 2.33-3.04 4-5.65 4-3.31 0-6-2.69-6-6s2.69-6 6-6c1.66 0 3.14.69 4.22 1.78L13 11h7V4l-2.35 2.35z"}, null, -1);
const _hoisted_3 = /* @__PURE__ */ createVNode("path", {
  d: "M0 0h24v24H0z",
  fill: "none"
}, null, -1);
const _hoisted_4 = {
  class: "uni-page-refresh__spinner",
  width: "24",
  height: "24",
  viewBox: "25 25 50 50"
fxy060608's avatar
fxy060608 已提交
13109
};
fxy060608's avatar
fxy060608 已提交
13110
function _sfc_render$2(_ctx, _cache, $props, $setup, $data, $options) {
fxy060608's avatar
fxy060608 已提交
13111 13112
  return openBlock(), createBlock("uni-page-refresh", null, [
    createVNode("div", {
fxy060608's avatar
fxy060608 已提交
13113
      style: {"margin-top": $setup.offset + "px"},
fxy060608's avatar
fxy060608 已提交
13114 13115
      class: "uni-page-refresh"
    }, [
13116
      createVNode("div", _hoisted_1$1, [
fxy060608's avatar
fxy060608 已提交
13117
        (openBlock(), createBlock("svg", {
fxy060608's avatar
fxy060608 已提交
13118
          fill: $setup.color,
fxy060608's avatar
fxy060608 已提交
13119 13120 13121 13122 13123
          class: "uni-page-refresh__icon",
          width: "24",
          height: "24",
          viewBox: "0 0 24 24"
        }, [
13124 13125
          _hoisted_2$1,
          _hoisted_3
fxy060608's avatar
fxy060608 已提交
13126
        ], 8, ["fill"])),
13127
        (openBlock(), createBlock("svg", _hoisted_4, [
fxy060608's avatar
fxy060608 已提交
13128
          createVNode("circle", {
fxy060608's avatar
fxy060608 已提交
13129
            stroke: $setup.color,
fxy060608's avatar
fxy060608 已提交
13130 13131 13132 13133 13134 13135 13136 13137 13138 13139 13140 13141 13142
            class: "uni-page-refresh__path",
            cx: "50",
            cy: "50",
            r: "20",
            fill: "none",
            "stroke-width": "4",
            "stroke-miterlimit": "10"
          }, null, 8, ["stroke"])
        ]))
      ])
    ], 4)
  ]);
}
fxy060608's avatar
fxy060608 已提交
13143 13144 13145
_sfc_main$2.render = _sfc_render$2;
function processDeltaY(ev, identifier, startY) {
  const touch = Array.prototype.slice.call(ev.changedTouches).filter((touch2) => touch2.identifier === identifier)[0];
fxy060608's avatar
fxy060608 已提交
13146
  if (!touch) {
fxy060608's avatar
fxy060608 已提交
13147
    return false;
fxy060608's avatar
fxy060608 已提交
13148
  }
fxy060608's avatar
fxy060608 已提交
13149
  ev.deltaY = touch.pageY - startY;
fxy060608's avatar
fxy060608 已提交
13150
  return true;
fxy060608's avatar
fxy060608 已提交
13151
}
fxy060608's avatar
fxy060608 已提交
13152 13153 13154 13155 13156
const PULLING = "pulling";
const REACHED = "reached";
const ABORTING = "aborting";
const REFRESHING = "refreshing";
const RESTORING = "restoring";
fxy060608's avatar
fxy060608 已提交
13157 13158 13159 13160 13161 13162 13163 13164 13165 13166 13167 13168 13169 13170 13171 13172 13173 13174 13175
function usePageRefresh(refreshRef) {
  const {id: id2, refreshOptions} = usePageMeta();
  const {range, height} = refreshOptions;
  let refreshContainerElem;
  let refreshControllerElem;
  let refreshControllerElemStyle;
  let refreshInnerElemStyle;
  onMounted(() => {
    refreshContainerElem = refreshRef.value.$el;
    refreshControllerElem = refreshContainerElem.querySelector(".uni-page-refresh");
    refreshControllerElemStyle = refreshControllerElem.style;
    refreshInnerElemStyle = refreshControllerElem.querySelector(".uni-page-refresh-inner").style;
    UniServiceJSBridge.on(id2 + ".startPullDownRefresh", () => {
      if (!state) {
        state = REFRESHING;
        addClass();
        setTimeout(() => {
          refreshing();
        }, 50);
fxy060608's avatar
fxy060608 已提交
13176
      }
fxy060608's avatar
fxy060608 已提交
13177 13178 13179 13180 13181 13182 13183 13184 13185
    });
    UniServiceJSBridge.on(id2 + ".stopPullDownRefresh", () => {
      if (state === REFRESHING) {
        removeClass();
        state = RESTORING;
        addClass();
        restoring(() => {
          removeClass();
          state = distance = offset = null;
fxy060608's avatar
fxy060608 已提交
13186
        });
fxy060608's avatar
fxy060608 已提交
13187
      }
fxy060608's avatar
fxy060608 已提交
13188 13189 13190 13191 13192 13193 13194 13195 13196 13197
    });
  });
  let touchId;
  let startY;
  let canRefresh;
  let state;
  let distance;
  let offset;
  function toggleClass(type) {
    if (!state) {
fxy060608's avatar
fxy060608 已提交
13198
      return;
fxy060608's avatar
fxy060608 已提交
13199
    }
fxy060608's avatar
fxy060608 已提交
13200 13201
    if (refreshContainerElem) {
      refreshContainerElem.classList[type]("uni-page-refresh--" + state);
fxy060608's avatar
fxy060608 已提交
13202 13203
    }
  }
fxy060608's avatar
fxy060608 已提交
13204 13205
  function addClass() {
    toggleClass("add");
fxy060608's avatar
fxy060608 已提交
13206
  }
fxy060608's avatar
fxy060608 已提交
13207 13208
  function removeClass() {
    toggleClass("remove");
fxy060608's avatar
fxy060608 已提交
13209
  }
fxy060608's avatar
fxy060608 已提交
13210 13211 13212
  function pulling(deltaY) {
    if (!refreshControllerElem) {
      return;
fxy060608's avatar
fxy060608 已提交
13213
    }
fxy060608's avatar
fxy060608 已提交
13214 13215 13216 13217 13218
    let rotate = deltaY / range;
    if (rotate > 1) {
      rotate = 1;
    } else {
      rotate = rotate * rotate * rotate;
fxy060608's avatar
fxy060608 已提交
13219
    }
fxy060608's avatar
fxy060608 已提交
13220 13221 13222 13223
    const y = Math.round(deltaY / (range / height)) || 0;
    refreshInnerElemStyle.transform = "rotate(" + 360 * rotate + "deg)";
    refreshControllerElemStyle.clip = "rect(" + (45 - y) + "px,45px,45px,-5px)";
    refreshControllerElemStyle.transform = "translate3d(-50%, " + y + "px, 0)";
fxy060608's avatar
fxy060608 已提交
13224
  }
fxy060608's avatar
fxy060608 已提交
13225
  function onTouchstartPassive(ev) {
fxy060608's avatar
fxy060608 已提交
13226 13227 13228 13229 13230 13231 13232 13233
    const touch = ev.changedTouches[0];
    touchId = touch.identifier;
    startY = touch.pageY;
    if ([ABORTING, REFRESHING, RESTORING].indexOf(state) >= 0) {
      canRefresh = false;
    } else {
      canRefresh = true;
    }
fxy060608's avatar
fxy060608 已提交
13234
  }
fxy060608's avatar
fxy060608 已提交
13235
  function onTouchmovePassive(ev) {
fxy060608's avatar
fxy060608 已提交
13236 13237
    if (!canRefresh) {
      return;
fxy060608's avatar
fxy060608 已提交
13238
    }
fxy060608's avatar
fxy060608 已提交
13239 13240
    if (!processDeltaY(ev, touchId, startY)) {
      return;
fxy060608's avatar
fxy060608 已提交
13241
    }
fxy060608's avatar
fxy060608 已提交
13242 13243 13244 13245
    let {deltaY} = ev;
    if ((document.documentElement.scrollTop || document.body.scrollTop) !== 0) {
      touchId = null;
      return;
fxy060608's avatar
fxy060608 已提交
13246
    }
fxy060608's avatar
fxy060608 已提交
13247 13248
    if (deltaY < 0 && !state) {
      return;
fxy060608's avatar
fxy060608 已提交
13249
    }
fxy060608's avatar
fxy060608 已提交
13250 13251
    if (ev.cancelable) {
      ev.preventDefault();
fxy060608's avatar
fxy060608 已提交
13252
    }
fxy060608's avatar
fxy060608 已提交
13253 13254 13255 13256 13257 13258 13259 13260 13261 13262 13263 13264 13265 13266 13267 13268 13269 13270
    if (distance === null) {
      offset = deltaY;
      state = PULLING;
      addClass();
    }
    deltaY = deltaY - offset;
    if (deltaY < 0) {
      deltaY = 0;
    }
    distance = deltaY;
    const isReached = deltaY >= range && state !== REACHED;
    const isPulling = deltaY < range && state !== PULLING;
    if (isReached || isPulling) {
      removeClass();
      state = state === REACHED ? PULLING : REACHED;
      addClass();
    }
    pulling(deltaY);
fxy060608's avatar
fxy060608 已提交
13271
  }
fxy060608's avatar
fxy060608 已提交
13272 13273 13274 13275 13276 13277 13278 13279 13280 13281 13282 13283 13284 13285 13286 13287 13288 13289 13290 13291 13292
  function onTouchend(ev) {
    if (!processDeltaY(ev, touchId, startY)) {
      return;
    }
    if (state === null) {
      return;
    }
    if (state === PULLING) {
      removeClass();
      state = ABORTING;
      addClass();
      aborting(() => {
        removeClass();
        state = distance = offset = null;
      });
    } else if (state === REACHED) {
      removeClass();
      state = REFRESHING;
      addClass();
      refreshing();
    }
fxy060608's avatar
fxy060608 已提交
13293
  }
fxy060608's avatar
fxy060608 已提交
13294 13295 13296 13297 13298 13299 13300 13301 13302 13303 13304 13305
  function aborting(callback) {
    if (!refreshControllerElem) {
      return;
    }
    if (refreshControllerElemStyle.transform) {
      refreshControllerElemStyle.transition = "-webkit-transform 0.3s";
      refreshControllerElemStyle.transform = "translate3d(-50%, 0, 0)";
      const abortTransitionEnd = function() {
        timeout && clearTimeout(timeout);
        refreshControllerElem.removeEventListener("webkitTransitionEnd", abortTransitionEnd);
        refreshControllerElemStyle.transition = "";
        callback();
fxy060608's avatar
fxy060608 已提交
13306
      };
fxy060608's avatar
fxy060608 已提交
13307 13308
      refreshControllerElem.addEventListener("webkitTransitionEnd", abortTransitionEnd);
      const timeout = setTimeout(abortTransitionEnd, 350);
fxy060608's avatar
fxy060608 已提交
13309
    } else {
fxy060608's avatar
fxy060608 已提交
13310 13311 13312 13313 13314 13315 13316 13317 13318 13319 13320 13321 13322 13323
      callback();
    }
  }
  function refreshing() {
    if (refreshControllerElem) {
      return;
    }
    refreshControllerElemStyle.transition = "-webkit-transform 0.2s";
    refreshControllerElemStyle.transform = "translate3d(-50%, " + height + "px, 0)";
    UniServiceJSBridge.emit("onPullDownRefresh", {}, id2);
  }
  function restoring(callback) {
    if (!refreshControllerElem) {
      return;
fxy060608's avatar
fxy060608 已提交
13324
    }
fxy060608's avatar
fxy060608 已提交
13325 13326 13327 13328 13329 13330 13331 13332 13333 13334 13335 13336
    refreshControllerElemStyle.transition = "-webkit-transform 0.3s";
    refreshControllerElemStyle.transform += " scale(0.01)";
    const restoreTransitionEnd = function() {
      timeout && clearTimeout(timeout);
      refreshControllerElem.removeEventListener("webkitTransitionEnd", restoreTransitionEnd);
      refreshControllerElemStyle.transition = "";
      refreshControllerElemStyle.transform = "translate3d(-50%, 0, 0)";
      callback();
    };
    refreshControllerElem.addEventListener("webkitTransitionEnd", restoreTransitionEnd);
    const timeout = setTimeout(restoreTransitionEnd, 350);
  }
fxy060608's avatar
fxy060608 已提交
13337
  return {
fxy060608's avatar
fxy060608 已提交
13338 13339
    onTouchstartPassive,
    onTouchmovePassive,
fxy060608's avatar
fxy060608 已提交
13340 13341
    onTouchend,
    onTouchcancel: onTouchend
fxy060608's avatar
fxy060608 已提交
13342 13343
  };
}
fxy060608's avatar
fxy060608 已提交
13344 13345
var PageBody = defineComponent({
  name: "PageBody",
fxy060608's avatar
fxy060608 已提交
13346
  setup(props2, ctx) {
fxy060608's avatar
fxy060608 已提交
13347 13348 13349 13350 13351 13352 13353 13354 13355 13356 13357 13358 13359 13360 13361 13362 13363 13364 13365
    const pageMeta = __UNI_FEATURE_PULL_DOWN_REFRESH__ && usePageMeta();
    const refreshRef = __UNI_FEATURE_PULL_DOWN_REFRESH__ && ref(null);
    const pageRefresh = __UNI_FEATURE_PULL_DOWN_REFRESH__ && pageMeta.enablePullDownRefresh ? usePageRefresh(refreshRef) : null;
    return () => {
      const pageRefreshTsx = createPageRefreshTsx(refreshRef, pageMeta);
      return createVNode(Fragment, null, [pageRefreshTsx, createVNode("uni-page-wrapper", pageRefresh, [createVNode("uni-page-body", null, [renderSlot(ctx.slots, "default")])], 16)]);
    };
  }
});
function createPageRefreshTsx(refreshRef, pageMeta) {
  if (!__UNI_FEATURE_PULL_DOWN_REFRESH__ || !pageMeta.enablePullDownRefresh) {
    return null;
  }
  return createVNode(_sfc_main$2, {
    ref: refreshRef
  }, null, 512);
}
var index = defineComponent({
  name: "Page",
fxy060608's avatar
fxy060608 已提交
13366
  setup(_props, ctx) {
fxy060608's avatar
fxy060608 已提交
13367 13368 13369 13370 13371 13372 13373 13374 13375 13376 13377
    const {navigationBar} = providePageMeta();
    return () => createVNode("uni-page", null, __UNI_FEATURE_NAVIGATIONBAR__ && navigationBar.style !== "custom" ? [createVNode(PageHead), createPageBodyVNode(ctx)] : [createPageBodyVNode(ctx)]);
  }
});
function createPageBodyVNode(ctx) {
  return openBlock(), createBlock(PageBody, {key: 0}, {
    default: withCtx(() => [renderSlot(ctx.slots, "page")]),
    _: 3
  });
}
var index_vue_vue_type_style_index_0_lang$1 = "\n.uni-async-error {\r\n  position: absolute;\r\n  left: 0;\r\n  right: 0;\r\n  top: 0;\r\n  bottom: 0;\r\n  color: #999;\r\n  padding: 100px 10px;\r\n  text-align: center;\n}\r\n";
13378
const _sfc_main$1 = {
fxy060608's avatar
fxy060608 已提交
13379
  name: "AsyncError",
fxy060608's avatar
fxy060608 已提交
13380
  setup() {
fxy060608's avatar
fxy060608 已提交
13381
    initI18nAsyncMsgsOnce();
fxy060608's avatar
fxy060608 已提交
13382 13383 13384 13385 13386 13387 13388
    const {t: t2} = useI18n();
    return {
      $$t: t2,
      reload() {
        window.location.reload();
      }
    };
fxy060608's avatar
fxy060608 已提交
13389
  }
fxy060608's avatar
fxy060608 已提交
13390
};
13391
function _sfc_render$1(_ctx, _cache, $props, $setup, $data, $options) {
fxy060608's avatar
fxy060608 已提交
13392 13393
  return openBlock(), createBlock("div", {
    class: "uni-async-error",
fxy060608's avatar
fxy060608 已提交
13394 13395
    onClick: _cache[1] || (_cache[1] = (...args) => $setup.reload && $setup.reload(...args))
  }, toDisplayString($setup.$$t("uni.async.error")), 1);
fxy060608's avatar
fxy060608 已提交
13396
}
13397
_sfc_main$1.render = _sfc_render$1;
fxy060608's avatar
fxy060608 已提交
13398
var index_vue_vue_type_style_index_0_lang = "\n.uni-async-loading {\n    box-sizing: border-box;\r\n		width: 100%;\r\n		padding: 50px;\r\n		text-align: center;\n}\n.uni-async-loading .uni-loading {\r\n		width: 30px;\r\n		height: 30px;\n}\r\n";
13399
const _sfc_main = {
fxy060608's avatar
fxy060608 已提交
13400 13401
  name: "AsyncLoading"
};
13402 13403 13404 13405 13406
const _hoisted_1 = {class: "uni-async-loading"};
const _hoisted_2 = /* @__PURE__ */ createVNode("i", {class: "uni-loading"}, null, -1);
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
  return openBlock(), createBlock("div", _hoisted_1, [
    _hoisted_2
fxy060608's avatar
fxy060608 已提交
13407 13408
  ]);
}
13409
_sfc_main.render = _sfc_render;
fxy060608's avatar
fxy060608 已提交
13410
export {_sfc_main$1 as AsyncErrorComponent, _sfc_main as AsyncLoadingComponent, _sfc_main$m as Audio, index$5 as Button, _sfc_main$l as Canvas, _sfc_main$k as Checkbox, _sfc_main$j as CheckboxGroup, _sfc_main$i as Editor, index$6 as Form, index$4 as Icon, index$3 as Image, _sfc_main$g as Input, _sfc_main$f as Label, LayoutComponent, _sfc_main$e as MovableView, _sfc_main$d as Navigator, index as PageComponent, _sfc_main$c as Progress, _sfc_main$b as Radio, _sfc_main$a as RadioGroup, _sfc_main$h as ResizeSensor, _sfc_main$9 as RichText, _sfc_main$8 as ScrollView, _sfc_main$7 as Slider, _sfc_main$6 as SwiperItem, _sfc_main$5 as Switch, index$2 as Text, _sfc_main$4 as Textarea, UniServiceJSBridge$1 as UniServiceJSBridge, UniViewJSBridge$1 as UniViewJSBridge, _sfc_main$3 as Video, index$1 as View, addInterceptor, arrayBufferToBase64, base64ToArrayBuffer, canIUse, chooseFile, chooseImage, chooseVideo, clearStorage, clearStorageSync, closeSocket, connectSocket, createIntersectionObserver, createSelectorQuery, createVideoContext, cssBackdropFilter, cssConstant, cssEnv, cssVar, downloadFile, getApp$1 as getApp, getCurrentPages$1 as getCurrentPages, getFileInfo, getImageInfo, getLocation, getNetworkType, getStorage, getStorageInfo, getStorageInfoSync, getStorageSync, getSystemInfo, getSystemInfoSync, getVideoInfo, hideLoading, hideNavigationBarLoading, hideTabBar, hideTabBarRedDot, hideToast, makePhoneCall, navigateBack, navigateTo, offAccelerometerChange, offCompassChange, offNetworkStatusChange, onAccelerometerChange, onCompassChange, onNetworkStatusChange, onSocketClose, onSocketError, onSocketMessage, onSocketOpen, onTabBarMidButtonTap, openDocument, index$7 as plugin, promiseInterceptor, reLaunch, redirectTo, removeInterceptor, removeStorage, removeStorageSync, removeTabBarBadge, request, sendSocketMessage, setNavigationBarColor, setNavigationBarTitle, setStorage, setStorageSync, setTabBarBadge, setTabBarItem, setTabBarStyle, setupApp, setupPage, showActionSheet, showLoading, showModal, showNavigationBarLoading, showTabBar, showTabBarRedDot, showToast, startAccelerometer, startCompass, stopAccelerometer, stopCompass, switchTab, uni$1 as uni, uploadFile, upx2px, useCustomEvent, usePageRoute, useSubscribe, vibrateLong, vibrateShort};