mirror of
https://github.com/imezx/Warp.git
synced 2025-04-24 15:10:03 +00:00
184 lines
5.1 KiB
JavaScript
184 lines
5.1 KiB
JavaScript
|
var VueDemi = (function (VueDemi, Vue, VueCompositionAPI) {
|
||
|
if (VueDemi.install) {
|
||
|
return VueDemi
|
||
|
}
|
||
|
if (!Vue) {
|
||
|
console.error('[vue-demi] no Vue instance found, please be sure to import `vue` before `vue-demi`.')
|
||
|
return VueDemi
|
||
|
}
|
||
|
|
||
|
// Vue 2.7
|
||
|
if (Vue.version.slice(0, 4) === '2.7.') {
|
||
|
for (var key in Vue) {
|
||
|
VueDemi[key] = Vue[key]
|
||
|
}
|
||
|
VueDemi.isVue2 = true
|
||
|
VueDemi.isVue3 = false
|
||
|
VueDemi.install = function () {}
|
||
|
VueDemi.Vue = Vue
|
||
|
VueDemi.Vue2 = Vue
|
||
|
VueDemi.version = Vue.version
|
||
|
VueDemi.warn = Vue.util.warn
|
||
|
VueDemi.hasInjectionContext = () => !!VueDemi.getCurrentInstance()
|
||
|
function createApp(rootComponent, rootProps) {
|
||
|
var vm
|
||
|
var provide = {}
|
||
|
var app = {
|
||
|
config: Vue.config,
|
||
|
use: Vue.use.bind(Vue),
|
||
|
mixin: Vue.mixin.bind(Vue),
|
||
|
component: Vue.component.bind(Vue),
|
||
|
provide: function (key, value) {
|
||
|
provide[key] = value
|
||
|
return this
|
||
|
},
|
||
|
directive: function (name, dir) {
|
||
|
if (dir) {
|
||
|
Vue.directive(name, dir)
|
||
|
return app
|
||
|
} else {
|
||
|
return Vue.directive(name)
|
||
|
}
|
||
|
},
|
||
|
mount: function (el, hydrating) {
|
||
|
if (!vm) {
|
||
|
vm = new Vue(Object.assign({ propsData: rootProps }, rootComponent, { provide: Object.assign(provide, rootComponent.provide) }))
|
||
|
vm.$mount(el, hydrating)
|
||
|
return vm
|
||
|
} else {
|
||
|
return vm
|
||
|
}
|
||
|
},
|
||
|
unmount: function () {
|
||
|
if (vm) {
|
||
|
vm.$destroy()
|
||
|
vm = undefined
|
||
|
}
|
||
|
},
|
||
|
}
|
||
|
return app
|
||
|
}
|
||
|
VueDemi.createApp = createApp
|
||
|
}
|
||
|
// Vue 2.6.x
|
||
|
else if (Vue.version.slice(0, 2) === '2.') {
|
||
|
if (VueCompositionAPI) {
|
||
|
for (var key in VueCompositionAPI) {
|
||
|
VueDemi[key] = VueCompositionAPI[key]
|
||
|
}
|
||
|
VueDemi.isVue2 = true
|
||
|
VueDemi.isVue3 = false
|
||
|
VueDemi.install = function () {}
|
||
|
VueDemi.Vue = Vue
|
||
|
VueDemi.Vue2 = Vue
|
||
|
VueDemi.version = Vue.version
|
||
|
VueDemi.hasInjectionContext = () => !!VueDemi.getCurrentInstance()
|
||
|
} else {
|
||
|
console.error('[vue-demi] no VueCompositionAPI instance found, please be sure to import `@vue/composition-api` before `vue-demi`.')
|
||
|
}
|
||
|
}
|
||
|
// Vue 3
|
||
|
else if (Vue.version.slice(0, 2) === '3.') {
|
||
|
for (var key in Vue) {
|
||
|
VueDemi[key] = Vue[key]
|
||
|
}
|
||
|
VueDemi.isVue2 = false
|
||
|
VueDemi.isVue3 = true
|
||
|
VueDemi.install = function () {}
|
||
|
VueDemi.Vue = Vue
|
||
|
VueDemi.Vue2 = undefined
|
||
|
VueDemi.version = Vue.version
|
||
|
VueDemi.set = function (target, key, val) {
|
||
|
if (Array.isArray(target)) {
|
||
|
target.length = Math.max(target.length, key)
|
||
|
target.splice(key, 1, val)
|
||
|
return val
|
||
|
}
|
||
|
target[key] = val
|
||
|
return val
|
||
|
}
|
||
|
VueDemi.del = function (target, key) {
|
||
|
if (Array.isArray(target)) {
|
||
|
target.splice(key, 1)
|
||
|
return
|
||
|
}
|
||
|
delete target[key]
|
||
|
}
|
||
|
} else {
|
||
|
console.error('[vue-demi] Vue version ' + Vue.version + ' is unsupported.')
|
||
|
}
|
||
|
return VueDemi
|
||
|
})(
|
||
|
(this.VueDemi = this.VueDemi || (typeof VueDemi !== 'undefined' ? VueDemi : {})),
|
||
|
this.Vue || (typeof Vue !== 'undefined' ? Vue : undefined),
|
||
|
this.VueCompositionAPI || (typeof VueCompositionAPI !== 'undefined' ? VueCompositionAPI : undefined)
|
||
|
);
|
||
|
;
|
||
|
;(function (exports, shared, core, vueDemi, idbKeyval) {
|
||
|
'use strict';
|
||
|
|
||
|
function useIDBKeyval(key, initialValue, options = {}) {
|
||
|
const {
|
||
|
flush = "pre",
|
||
|
deep = true,
|
||
|
shallow = false,
|
||
|
onError = (e) => {
|
||
|
console.error(e);
|
||
|
},
|
||
|
writeDefaults = true
|
||
|
} = options;
|
||
|
const isFinished = vueDemi.ref(false);
|
||
|
const data = (shallow ? vueDemi.shallowRef : vueDemi.ref)(initialValue);
|
||
|
const rawInit = shared.toValue(initialValue);
|
||
|
async function read() {
|
||
|
try {
|
||
|
const rawValue = await idbKeyval.get(key);
|
||
|
if (rawValue === void 0) {
|
||
|
if (rawInit !== void 0 && rawInit !== null && writeDefaults)
|
||
|
await idbKeyval.set(key, rawInit);
|
||
|
} else {
|
||
|
data.value = rawValue;
|
||
|
}
|
||
|
} catch (e) {
|
||
|
onError(e);
|
||
|
}
|
||
|
isFinished.value = true;
|
||
|
}
|
||
|
read();
|
||
|
async function write() {
|
||
|
try {
|
||
|
if (data.value == null) {
|
||
|
await idbKeyval.del(key);
|
||
|
} else {
|
||
|
if (Array.isArray(data.value))
|
||
|
await idbKeyval.update(key, () => JSON.parse(JSON.stringify(data.value)));
|
||
|
else if (typeof data.value === "object")
|
||
|
await idbKeyval.update(key, () => ({ ...data.value }));
|
||
|
else
|
||
|
await idbKeyval.update(key, () => data.value);
|
||
|
}
|
||
|
} catch (e) {
|
||
|
onError(e);
|
||
|
}
|
||
|
}
|
||
|
const {
|
||
|
pause: pauseWatch,
|
||
|
resume: resumeWatch
|
||
|
} = core.watchPausable(data, () => write(), { flush, deep });
|
||
|
async function setData(value) {
|
||
|
pauseWatch();
|
||
|
data.value = value;
|
||
|
await write();
|
||
|
resumeWatch();
|
||
|
}
|
||
|
return {
|
||
|
set: setData,
|
||
|
isFinished,
|
||
|
data
|
||
|
};
|
||
|
}
|
||
|
|
||
|
exports.useIDBKeyval = useIDBKeyval;
|
||
|
|
||
|
})(this.VueUse = this.VueUse || {}, VueUse, VueUse, VueDemi, idbKeyval);
|