mirror of
https://github.com/element-plus/element-plus.git
synced 2026-03-13 07:51:17 +08:00
* feat(loading): support customize svg * feat(loading): unit test customize svg * docs(loading): simple customize svg demo * docs(loading): supplement composition api documents * docs(loading): make the load SVG stop rotating * docs(loading): prompt users to prevent XSS attacks * docs(loading): i18n * docs(loading): fix md code wrong * docs(loading): fix md code wrong
129 lines
3.3 KiB
TypeScript
129 lines
3.3 KiB
TypeScript
import { createVNode, h, reactive, ref, render, toRefs, Transition, VNode, vShow, withCtx, withDirectives } from 'vue'
|
|
import { removeClass } from '@element-plus/utils/dom'
|
|
import type { ILoadingCreateComponentParams, ILoadingInstance } from './loading.type'
|
|
|
|
export function createLoadingComponent({
|
|
options,
|
|
globalLoadingOption,
|
|
}: ILoadingCreateComponentParams): ILoadingInstance {
|
|
let vm: VNode = null
|
|
let afterLeaveTimer: Nullable<number> = null
|
|
|
|
const afterLeaveFlag = ref(false)
|
|
const data = reactive({
|
|
...options,
|
|
originalPosition: '',
|
|
originalOverflow: '',
|
|
visible: false,
|
|
})
|
|
|
|
function setText(text: string) {
|
|
data.text = text
|
|
}
|
|
|
|
function destroySelf() {
|
|
const target = data.parent
|
|
if (!target.vLoadingAddClassList) {
|
|
let loadingNumber: number | string = target.getAttribute('loading-number')
|
|
loadingNumber = Number.parseInt(loadingNumber) - 1
|
|
if (!loadingNumber) {
|
|
removeClass(target, 'el-loading-parent--relative')
|
|
target.removeAttribute('loading-number')
|
|
} else {
|
|
target.setAttribute('loading-number', loadingNumber.toString())
|
|
}
|
|
removeClass(target, 'el-loading-parent--hidden')
|
|
}
|
|
if (vm.el && vm.el.parentNode) {
|
|
vm.el.parentNode.removeChild(vm.el)
|
|
}
|
|
}
|
|
|
|
function close() {
|
|
const target = data.parent
|
|
target.vLoadingAddClassList = null
|
|
if (data.fullscreen) {
|
|
globalLoadingOption.fullscreenLoading = undefined
|
|
}
|
|
afterLeaveFlag.value = true
|
|
clearTimeout(afterLeaveTimer)
|
|
|
|
afterLeaveTimer = window.setTimeout(() => {
|
|
if (afterLeaveFlag.value) {
|
|
afterLeaveFlag.value = false
|
|
destroySelf()
|
|
}
|
|
}, 400)
|
|
data.visible = false
|
|
}
|
|
|
|
function handleAfterLeave() {
|
|
if (!afterLeaveFlag.value) return
|
|
afterLeaveFlag.value = false
|
|
destroySelf()
|
|
}
|
|
|
|
const componentSetupConfig = {
|
|
...toRefs(data),
|
|
setText,
|
|
close,
|
|
handleAfterLeave,
|
|
}
|
|
|
|
const elLoadingComponent = {
|
|
name: 'ElLoading',
|
|
setup() {
|
|
return componentSetupConfig
|
|
},
|
|
render() {
|
|
const spinner = h('svg', {
|
|
class: 'circular',
|
|
viewBox: this.svgViewBox ? this.svgViewBox : '25 25 50 50',
|
|
...(this.svg ? { innerHTML: this.svg } : {}),
|
|
}, [
|
|
h('circle', { class: 'path', cx: '50', cy: '50', r: '20', fill: 'none' }),
|
|
])
|
|
|
|
const noSpinner = h('i', { class: this.spinner })
|
|
|
|
const spinnerText = h('p', { class: 'el-loading-text' }, [this.text])
|
|
|
|
return h(Transition, {
|
|
name: 'el-loading-fade',
|
|
onAfterLeave: this.handleAfterLeave,
|
|
}, {
|
|
default: withCtx(() => [withDirectives(createVNode('div', {
|
|
style: {
|
|
backgroundColor: this.background || '',
|
|
},
|
|
class: [
|
|
'el-loading-mask',
|
|
this.customClass,
|
|
this.fullscreen ? 'is-fullscreen' : '',
|
|
],
|
|
}, [
|
|
h('div', {
|
|
class: 'el-loading-spinner',
|
|
}, [
|
|
!this.spinner ? spinner : noSpinner,
|
|
this.text ? spinnerText : null,
|
|
]),
|
|
]),
|
|
[[vShow, this.visible]])]),
|
|
})
|
|
},
|
|
}
|
|
|
|
vm = createVNode(elLoadingComponent)
|
|
|
|
render(vm, document.createElement('div'))
|
|
|
|
return {
|
|
...componentSetupConfig,
|
|
vm,
|
|
get $el() {
|
|
return vm.el as HTMLElement
|
|
},
|
|
}
|
|
}
|