element-plus/docs/.vitepress/vitepress/components/vp-demo.vue
jeremywu dd19cae2bc
refactor(components): popper composables (#5035)
* refactor(components): popper composables

- Refactor popper composables

* updates

* updates for tooltip

* Updates for popper. TODO: fix controlled tooltip animation

* Fix controlled mode popper animation issue

* Add new feature for customizing tooltip theme

* Fix popover and popconfirm error

* - Add Collection component for wrapping a collection of component
- Add FocusTrap component for trap focus for popups
- Add RovingFocus component for roving focus component type
- Adjust dropdown component based on these newly added components
- Add popper-trigger component for placing the trigger
- TODO: Finish current dropdown component, and all component's tests plus documents

* Refactor popper

* Complete organizing popper

* Almost finish dropdown

* Update popper tests

* update only-child test

* Finish focus trap component test

* Finish tooltip content test

* Finish tooltip trigger tests

* Finish tooltip tests

* finish tests for Collection and RovingFocusGroup

* Fix test cases for timeselect & select & popover

* Fix popover, popconfirm, menu bug and test cases

* Fix select-v2 test error caused by updating popper

* Fix date-picker test issue for updating popper

* fix test cases

* Fix eslint

* Rebase dev & fix tests

* Remove unused code
2022-01-04 09:15:15 +08:00

155 lines
4.0 KiB
Vue

<script setup lang="ts">
import { computed, toRef, getCurrentInstance } from 'vue'
import { useClipboard } from '@vueuse/core'
import { useToggle } from '../composables/toggle'
import { useLang } from '../composables/lang'
import { useSourceCode } from '../composables/source-code'
import { usePlayGround } from '../composables/use-playground'
import demoBlockLocale from '../../i18n/component/demo-block.json'
import Example from './demo/vp-example.vue'
import SourceCode from './demo/vp-source-code.vue'
const props = defineProps<{
source: string
path: string
css?: string
cssPreProcessor?: string
js?: string
html?: string
demos: object
rawSource: string
description?: string
}>()
const vm = getCurrentInstance()!
const { copy, isSupported } = useClipboard({
source: decodeURIComponent(props.rawSource),
read: false,
})
const [sourceVisible, setSourceVisible] = useToggle()
const lang = useLang()
const demoSourceUrl = useSourceCode(toRef(props, 'path'))
const formatPathDemos = computed(() => {
const demos = {}
Object.keys(props.demos).forEach((key) => {
demos[key.replace('../../examples/', '').replace('.vue', '')] =
props.demos[key].default
})
return demos
})
const locale = computed(() => demoBlockLocale[lang.value])
const decodedDescription = computed(() =>
decodeURIComponent(props.description!)
)
const onPlaygroundClicked = () => {
const { link } = usePlayGround(props.rawSource)
window.open(link)
}
const copyCode = async () => {
const { $message } = vm.appContext.config.globalProperties
if (!isSupported) {
$message.error(locale.value['copy-error'])
}
try {
await copy()
$message.success(locale.value['copy-success'])
} catch (e: any) {
$message.error(e.message)
}
}
</script>
<template>
<ClientOnly>
<!-- danger here DO NOT USE INLINE SCRIPT TAG -->
<p text="sm" v-html="decodedDescription" />
<div class="example">
<div class="op-btns">
<ElTooltip :content="locale['edit-in-editor']" :show-arrow="false">
<ElIcon :size="20" class="op-btn">
<i-ri-play-circle-line @click="onPlaygroundClicked" />
</ElIcon>
</ElTooltip>
<ElTooltip :content="locale['edit-on-github']" :show-arrow="false">
<ElIcon
:size="20"
class="op-btn github"
style="color: var(--text-color-light)"
>
<a :href="demoSourceUrl" rel="noreferrer noopener" target="_blank">
<i-ri-github-line />
</a>
</ElIcon>
</ElTooltip>
<ElTooltip :content="locale['copy-code']" :show-arrow="false">
<ElIcon :size="20" class="op-btn" @click="copyCode">
<!-- <CopyIcon /> -->
<i-ri-file-copy-2-line />
</ElIcon>
</ElTooltip>
<ElTooltip :content="locale['view-source']" :show-arrow="false">
<ElIcon :size="20" class="op-btn" @click="setSourceVisible">
<!-- <SourceCodeIcon /> -->
<i-ri-code-line />
</ElIcon>
</ElTooltip>
</div>
<ElDivider class="m-0" />
<Example :file="path" :demo="formatPathDemos[path]" />
<ElDivider v-if="sourceVisible" />
<el-collapse-transition>
<SourceCode v-show="sourceVisible" :source="source" />
</el-collapse-transition>
</div>
</ClientOnly>
</template>
<style scoped lang="scss">
.example {
border: 1px solid var(--border-color);
border-radius: var(--el-border-radius-base);
overflow: hidden;
.op-btns {
padding: 0.5rem;
display: flex;
align-items: center;
justify-content: flex-end;
height: 3rem;
line-height: 3rem;
.el-icon {
&:hover {
color: var(--text-color);
}
}
.op-btn {
margin: 0 0.5rem;
cursor: pointer;
color: var(--text-color-lighter);
transition: 0.2s;
&.github a {
transition: 0.2s;
color: var(--text-color-lighter);
&:hover {
color: var(--text-color);
}
}
}
}
}
</style>