-
Notifications
You must be signed in to change notification settings - Fork 693
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Add Dialog component and add dailog demo
- Loading branch information
1 parent
3fb3e8d
commit a18ad8f
Showing
6 changed files
with
159 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
import Dialog from './src/Dialog.vue' | ||
|
||
export { Dialog } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,107 @@ | ||
<script setup lang="ts"> | ||
import { ElDialog, ElScrollbar } from 'element-plus' | ||
import { propTypes } from '@/utils/propTypes' | ||
import { computed, useAttrs, ref, unref, useSlots, watch, nextTick } from 'vue' | ||
import { isNumber } from '@/utils/is' | ||
const slots = useSlots() | ||
const props = defineProps({ | ||
modelValue: propTypes.bool.def(false), | ||
title: propTypes.string.def('Dialog'), | ||
fullscreen: propTypes.bool.def(true), | ||
maxHeight: propTypes.oneOfType([String, Number]).def('500px') | ||
}) | ||
const getBindValue = computed(() => { | ||
const delArr: string[] = ['fullscreen', 'title', 'maxHeight'] | ||
const attrs = useAttrs() | ||
const obj = { ...attrs, ...props } | ||
for (const key in obj) { | ||
if (delArr.indexOf(key) !== -1) { | ||
delete obj[key] | ||
} | ||
} | ||
return obj | ||
}) | ||
const isFullscreen = ref(false) | ||
const toggleFull = () => { | ||
isFullscreen.value = !unref(isFullscreen) | ||
} | ||
const dialogHeight = ref(isNumber(props.maxHeight) ? `${props.maxHeight}px` : props.maxHeight) | ||
watch( | ||
() => isFullscreen.value, | ||
async (val: boolean) => { | ||
await nextTick() | ||
if (val) { | ||
const windowHeight = document.documentElement.offsetHeight | ||
dialogHeight.value = `${windowHeight - 55 - 60 - (slots.footer ? 63 : 0)}px` | ||
console.log(windowHeight) | ||
} else { | ||
dialogHeight.value = isNumber(props.maxHeight) ? `${props.maxHeight}px` : props.maxHeight | ||
} | ||
}, | ||
{ | ||
immediate: true | ||
} | ||
) | ||
const dialogStyle = computed(() => { | ||
return { | ||
height: unref(dialogHeight) | ||
} | ||
}) | ||
</script> | ||
|
||
<template> | ||
<ElDialog | ||
v-bind="getBindValue" | ||
:fullscreen="isFullscreen" | ||
destroy-on-close | ||
lock-scroll | ||
:close-on-click-modal="false" | ||
> | ||
<template #title> | ||
<div class="flex justify-between"> | ||
<slot name="title"> | ||
{{ title }} | ||
</slot> | ||
<Icon | ||
v-if="fullscreen" | ||
class="mr-15px cursor-pointer is-hover" | ||
:icon="isFullscreen ? 'zmdi:fullscreen-exit' : 'zmdi:fullscreen'" | ||
color="var(--el-color-info)" | ||
@click="toggleFull" | ||
/> | ||
</div> | ||
</template> | ||
|
||
<ElScrollbar :style="dialogStyle"> | ||
<slot></slot> | ||
</ElScrollbar> | ||
|
||
<template v-if="slots.footer" #footer> | ||
<slot name="footer"></slot> | ||
</template> | ||
</ElDialog> | ||
</template> | ||
|
||
<style lang="less"> | ||
.@{elNamespace}-dialog__header { | ||
border-bottom: 1px solid var(--tags-view-border-color); | ||
} | ||
.@{elNamespace}-dialog__footer { | ||
border-top: 1px solid var(--tags-view-border-color); | ||
} | ||
.is-hover { | ||
&:hover { | ||
color: var(--el-color-primary) !important; | ||
} | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<script setup lang="ts"> | ||
import { ContentWrap } from '@/components/ContentWrap' | ||
import { Dialog } from '@/components/Dialog' | ||
import { ElButton } from 'element-plus' | ||
import { useI18n } from '@/hooks/web/useI18n' | ||
import { ref } from 'vue' | ||
const { t } = useI18n() | ||
const dialogVisible = ref(false) | ||
</script> | ||
|
||
<template> | ||
<ContentWrap :title="t('dialogDemo.dialog')" :message="t('dialogDemo.dialogDes')"> | ||
<ElButton type="primary" @click="dialogVisible = !dialogVisible"> | ||
{{ t('dialogDemo.open') }} | ||
</ElButton> | ||
<Dialog v-model="dialogVisible" :title="t('dialogDemo.dialog')"> | ||
<div v-for="v in 10000" :key="v">{{ v }}</div> | ||
<template #footer> | ||
<el-button @click="dialogVisible = false">{{ t('dialogDemo.close') }}</el-button> | ||
</template> | ||
</Dialog> | ||
</ContentWrap> | ||
</template> |