mirror of
https://github.com/element-plus/element-plus.git
synced 2026-03-13 07:51:17 +08:00
* chore: upgrade deps * chore: replace __ExtractPublicPropTypes with ExtractPublicPropTypes * fix: get rid of type errors * fix: resolve test errors with @vue/test-utils v2.4.6 * fix: resolve test errors with Vue 3.5.22 * ci: set pnpm flag * chore: update the Vue peer dependency version * Apply suggestion from @tolking Co-authored-by: qiang <qw13131wang@gmail.com> * docs: update example code Co-authored-by: warmthsea <2586244885@qq.com> * chore: remove csstype (#22487) * chore: fix merge code type error * chore: fix test:ssr error - Cannot read properties of undefined (reading 'getSSRProps') * chore: fix typecheck:vitest error * chore: update pnpm yaml file * test: fix collapse accordion error * chore: update deps * chore: fix type error * chore: lock file * chore: sync change sync with the remove of vue macro * refactor: use computed instead of eagerComputed * fix: timeline.test.tsx typecheck * chore: clean lock file try dont throw CodeFactor issues in ci did: - rm pnpm-lock.yaml - rm -rf ./**/node_modules - pnpm store prune - pnpm cache delete - pnpm install Also stay in 3.1.0 for vue-tsc in order to avoid the warnings of template refs, see https://github.com/vuejs/language-tools/issues/5815 * chore: format code --------- Co-authored-by: Dsaquel <291874700n@gmail.com> Co-authored-by: qiang <qw13131wang@gmail.com> Co-authored-by: warmthsea <2586244885@qq.com> Co-authored-by: Noblet Ouways <91417411+Dsaquel@users.noreply.github.com> Co-authored-by: sea <45450994+warmthsea@users.noreply.github.com> Co-authored-by: btea <2356281422@qq.com>
322 lines
9.3 KiB
TypeScript
322 lines
9.3 KiB
TypeScript
import { createVNode, nextTick, ref } from 'vue'
|
|
import { mount } from '@vue/test-utils'
|
|
import { afterEach, describe, expect, test, vi } from 'vitest'
|
|
import Loading from '../src/service'
|
|
import vLoading from '../src/directive'
|
|
import ElInput from '../../input'
|
|
|
|
import type { VNode } from 'vue'
|
|
import type { LoadingInstance } from '../src/loading'
|
|
|
|
const AXIOM = 'Rem is the best girl'
|
|
|
|
function destroyLoadingInstance(loadingInstance: LoadingInstance) {
|
|
if (!loadingInstance) return
|
|
loadingInstance.close()
|
|
loadingInstance.$el &&
|
|
loadingInstance.$el.parentNode &&
|
|
loadingInstance.$el.parentNode.removeChild(loadingInstance.$el)
|
|
}
|
|
|
|
const _mount = (render?: () => VNode | null) => {
|
|
return mount(render, {
|
|
global: {
|
|
directives: { loading: vLoading },
|
|
},
|
|
})
|
|
}
|
|
|
|
describe('Loading', () => {
|
|
let loadingInstance: LoadingInstance, loadingInstance2: LoadingInstance
|
|
|
|
afterEach(() => {
|
|
destroyLoadingInstance(loadingInstance)
|
|
destroyLoadingInstance(loadingInstance2)
|
|
})
|
|
|
|
test('create directive', async () => {
|
|
const loading = ref(true)
|
|
const wrapper = _mount(() => <div v-loading={loading.value} />)
|
|
|
|
await nextTick()
|
|
|
|
const maskWrapper = wrapper.find('.el-loading-mask')
|
|
expect(maskWrapper.exists()).toBeTruthy()
|
|
|
|
vi.useFakeTimers()
|
|
loading.value = false
|
|
// Trigger update event for dispatching close event.
|
|
await nextTick()
|
|
|
|
vi.runAllTimers()
|
|
vi.useRealTimers()
|
|
await nextTick()
|
|
expect(wrapper.find('.el-loading-mask').exists()).toBeFalsy()
|
|
})
|
|
|
|
test('unmounted directive', async () => {
|
|
const loading1 = ref(true)
|
|
const show1 = ref(true)
|
|
const loading2 = ref(true)
|
|
const show2 = ref(true)
|
|
_mount(() => (show1.value ? <div v-loading={loading1.value} /> : null))
|
|
_mount(() => (show2.value ? <div v-loading={loading2.value} /> : null))
|
|
|
|
await nextTick()
|
|
loading1.value = false
|
|
loading2.value = false
|
|
|
|
await nextTick()
|
|
show1.value = false
|
|
show2.value = false
|
|
|
|
await nextTick()
|
|
expect(document.querySelector('.el-loading-mask')).toBeFalsy()
|
|
})
|
|
|
|
test('body directive', async () => {
|
|
const loading = ref(true)
|
|
_mount(() => <div v-loading_body={loading.value} />)
|
|
|
|
await nextTick()
|
|
const mask = document.querySelector('.el-loading-mask')!
|
|
expect(mask.parentNode === document.body).toBeTruthy()
|
|
loading.value = false
|
|
document.body.removeChild(mask)
|
|
})
|
|
|
|
test('fullscreen directive', async () => {
|
|
const loading = ref(true)
|
|
_mount(() => <div v-loading_fullscreen={loading.value} />)
|
|
|
|
await nextTick()
|
|
const mask = document.querySelector('.el-loading-mask')!
|
|
expect(mask.parentNode === document.body).toBeTruthy()
|
|
expect(mask.classList.contains('is-fullscreen')).toBeTruthy()
|
|
loading.value = false
|
|
document.body.removeChild(mask)
|
|
})
|
|
|
|
test('lock directive', async () => {
|
|
const loading = ref(true)
|
|
_mount(() => <div v-loading_fullscreen_lock={loading.value} />)
|
|
|
|
await nextTick()
|
|
expect(
|
|
document.body.classList.contains('el-loading-parent--hidden')
|
|
).toBeTruthy()
|
|
loading.value = false
|
|
document.body.removeChild(document.querySelector('.el-loading-mask')!)
|
|
})
|
|
|
|
test('text directive', async () => {
|
|
const loading = ref(true)
|
|
const wrapper = _mount(() => (
|
|
<div v-loading={loading.value} element-loading-text="loading..." />
|
|
))
|
|
|
|
await nextTick()
|
|
expect(wrapper.find('.el-loading-text').text()).toEqual('loading...')
|
|
})
|
|
|
|
test('customClass directive', async () => {
|
|
const loading = ref(true)
|
|
const wrapper = _mount(() => (
|
|
<div
|
|
v-loading={loading.value}
|
|
element-loading-custom-class="loading-custom-class"
|
|
/>
|
|
))
|
|
|
|
await nextTick()
|
|
expect(wrapper.find('.loading-custom-class').exists()).toBeTruthy()
|
|
})
|
|
|
|
test('customSvg directive', async () => {
|
|
const loading = ref(true)
|
|
const svg = '<path class="custom-path" d="M 30 15"/>'
|
|
const wrapper = _mount(() => (
|
|
<div v-loading={loading.value} element-loading-svg={svg} />
|
|
))
|
|
|
|
await nextTick()
|
|
expect(wrapper.find('.custom-path').attributes().d).toEqual('M 30 15')
|
|
})
|
|
|
|
test('create service', async () => {
|
|
loadingInstance = Loading()
|
|
expect(document.querySelector('.el-loading-mask')).toBeTruthy()
|
|
})
|
|
|
|
test('accept VNode as text', async () => {
|
|
loadingInstance = Loading({
|
|
text: createVNode('div', { 'data-testid': 'my-loading' }, AXIOM),
|
|
})
|
|
const loadingText = document.querySelector('[data-testid="my-loading"]')
|
|
expect(loadingText).not.toBeNull()
|
|
expect(loadingText?.textContent).toBe(AXIOM)
|
|
|
|
loadingInstance.setText(
|
|
createVNode('div', { 'data-testid': 'set-text' }, AXIOM)
|
|
)
|
|
await nextTick()
|
|
const setTextLoading = document.querySelector('[data-testid="set-text"]')
|
|
expect(setTextLoading).not.toBeNull()
|
|
expect(setTextLoading?.textContent).toBe(AXIOM)
|
|
})
|
|
|
|
test('close service', async () => {
|
|
loadingInstance = Loading()
|
|
loadingInstance.close()
|
|
expect(loadingInstance.visible.value).toBeFalsy()
|
|
})
|
|
|
|
test('target service', async () => {
|
|
const container = document.createElement('div')
|
|
container.className = 'loading-container'
|
|
document.body.appendChild(container)
|
|
|
|
loadingInstance = Loading({ target: '.loading-container' })
|
|
const mask = container.querySelector('.el-loading-mask')!
|
|
expect(mask).toBeTruthy()
|
|
expect(mask.parentNode).toEqual(container)
|
|
|
|
expect(
|
|
container.classList.contains('el-loading-parent--relative')
|
|
).toBeTruthy()
|
|
|
|
vi.useFakeTimers()
|
|
loadingInstance.close()
|
|
vi.runAllTimers()
|
|
vi.useRealTimers()
|
|
await nextTick()
|
|
|
|
expect(
|
|
container.classList.contains('el-loading-parent--relative')
|
|
).toBeFalsy()
|
|
})
|
|
|
|
test('body service', async () => {
|
|
const container = document.createElement('div')
|
|
container.className = 'loading-container'
|
|
document.body.appendChild(container)
|
|
|
|
loadingInstance = Loading({ target: '.loading-container', body: true })
|
|
const mask = document.querySelector('.el-loading-mask')!
|
|
expect(mask).toBeTruthy()
|
|
expect(mask.parentNode).toEqual(document.body)
|
|
})
|
|
|
|
test('fullscreen service', async () => {
|
|
loadingInstance = Loading({ fullscreen: true })
|
|
const mask = document.querySelector('.el-loading-mask')!
|
|
expect(mask.parentNode).toEqual(document.body)
|
|
expect(mask.classList.contains('is-fullscreen')).toBeTruthy()
|
|
})
|
|
|
|
test('fullscreen singleton service', async () => {
|
|
vi.useFakeTimers()
|
|
loadingInstance = Loading({ fullscreen: true })
|
|
vi.runAllTimers()
|
|
await nextTick()
|
|
|
|
loadingInstance2 = Loading({ fullscreen: true })
|
|
vi.runAllTimers()
|
|
await nextTick()
|
|
|
|
let masks = document.querySelectorAll('.el-loading-mask')
|
|
expect(loadingInstance).toEqual(loadingInstance2)
|
|
expect(masks.length).toEqual(1)
|
|
loadingInstance2.close()
|
|
vi.runAllTimers()
|
|
vi.useRealTimers()
|
|
await nextTick()
|
|
|
|
masks = document.querySelectorAll('.el-loading-mask')
|
|
expect(masks.length).toEqual(0)
|
|
})
|
|
|
|
test('lock service', async () => {
|
|
loadingInstance = Loading({ lock: true })
|
|
expect(
|
|
document.body.classList.contains('el-loading-parent--hidden')
|
|
).toBeTruthy()
|
|
})
|
|
|
|
test('text service', async () => {
|
|
loadingInstance = Loading({ text: 'Loading...' })
|
|
const text = document.querySelector('.el-loading-text')!
|
|
expect(text).toBeTruthy()
|
|
expect(text.textContent).toEqual('Loading...')
|
|
})
|
|
|
|
test('customClass service', async () => {
|
|
loadingInstance = Loading({ customClass: 'el-loading-custom-class' })
|
|
const customClass = document.querySelector('.el-loading-custom-class')
|
|
expect(customClass).toBeTruthy()
|
|
})
|
|
|
|
test("parent's display is not block", async () => {
|
|
const loading = ref(true)
|
|
const wrapper = _mount(() => (
|
|
<ElInput
|
|
v-loading={loading.value}
|
|
v-slots={{
|
|
append: () => 'Loading Text',
|
|
}}
|
|
/>
|
|
))
|
|
|
|
await nextTick()
|
|
await nextTick()
|
|
const maskDisplay = getComputedStyle(
|
|
wrapper.find('.el-loading-mask').element
|
|
).display
|
|
expect(maskDisplay).toBe('block')
|
|
})
|
|
|
|
test('the reactivity of element-loading-* attributes', async () => {
|
|
const loading = ref(true)
|
|
const text = ref()
|
|
const spinner = ref()
|
|
const svgViewBox = ref()
|
|
const background = ref()
|
|
const customClass = ref()
|
|
|
|
const wrapper = _mount(() => (
|
|
<div
|
|
v-loading={loading.value}
|
|
element-loading-text={text.value}
|
|
element-loading-spinner={spinner.value}
|
|
element-loading-svg-view-box={svgViewBox.value}
|
|
element-loading-background={background.value}
|
|
element-loading-custom-class={customClass.value}
|
|
/>
|
|
))
|
|
|
|
text.value = 'foo'
|
|
await nextTick()
|
|
expect(wrapper.find('.el-loading-text').text()).toEqual('foo')
|
|
|
|
spinner.value = 'foo'
|
|
await nextTick()
|
|
expect(wrapper.find('svg').text()).toEqual('foo')
|
|
|
|
svgViewBox.value = 'foo'
|
|
await nextTick()
|
|
expect(wrapper.find('svg').attributes('viewBox')).toEqual('foo')
|
|
|
|
background.value = 'rgba(255, 255, 255, 0.5)'
|
|
await nextTick()
|
|
expect(
|
|
getComputedStyle(wrapper.find('.el-loading-mask').element).background
|
|
).toEqual('rgba(255, 255, 255, 0.5)')
|
|
|
|
customClass.value = 'foo'
|
|
await nextTick()
|
|
expect(
|
|
wrapper.find('.el-loading-mask').element.classList.contains('foo')
|
|
).toEqual(true)
|
|
})
|
|
})
|