rebuild alert
This commit is contained in:
parent
5a7f36f8ff
commit
ed52df0ebf
129
src/components/KUNGalgameAlert/Alert.vue
Normal file
129
src/components/KUNGalgameAlert/Alert.vue
Normal file
|
@ -0,0 +1,129 @@
|
||||||
|
<script setup lang="ts">
|
||||||
|
// 接受爷组件的注入
|
||||||
|
import { inject } from 'vue'
|
||||||
|
// 导入接收类型
|
||||||
|
import { props } from './types'
|
||||||
|
|
||||||
|
const info = inject<props>('info')
|
||||||
|
|
||||||
|
// 接受父组件的传值
|
||||||
|
const props = defineProps(['show'])
|
||||||
|
|
||||||
|
const emit = defineEmits(['update'])
|
||||||
|
|
||||||
|
// 关闭提示
|
||||||
|
const handleClose = () => {
|
||||||
|
emit('update', false)
|
||||||
|
// 点击关闭则给父组件返回 false
|
||||||
|
info?.status(false)
|
||||||
|
}
|
||||||
|
|
||||||
|
// 确定提示
|
||||||
|
const handleConfirm = () => {
|
||||||
|
emit('update', false)
|
||||||
|
// 点击确定则给父组件返回 true
|
||||||
|
info?.status(true)
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<Teleport to="body" :disabled="info?.type !== 'alert'">
|
||||||
|
<Transition name="alert">
|
||||||
|
<div v-if="props.show" class="mask">
|
||||||
|
<div class="container">
|
||||||
|
<div class="header">
|
||||||
|
<h3>{{ info?.info }}</h3>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="footer">
|
||||||
|
<button
|
||||||
|
v-if="info?.isShowCancel"
|
||||||
|
class="button"
|
||||||
|
@click="handleClose"
|
||||||
|
>
|
||||||
|
{{ $t('ComponentAlert.cancel') }}
|
||||||
|
</button>
|
||||||
|
<button class="button" @click="handleConfirm">
|
||||||
|
{{ $t('ComponentAlert.confirm') }}
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</Transition>
|
||||||
|
</Teleport>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
.mask {
|
||||||
|
position: fixed;
|
||||||
|
z-index: 9999;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
background-color: rgba(0, 0, 0, 0.5);
|
||||||
|
display: flex;
|
||||||
|
transition: opacity 0.3s ease;
|
||||||
|
color: var(--kungalgame-font-color-3);
|
||||||
|
}
|
||||||
|
|
||||||
|
.container {
|
||||||
|
width: 300px;
|
||||||
|
margin: auto;
|
||||||
|
padding: 20px 30px;
|
||||||
|
background-color: var(--kungalgame-trans-white-2);
|
||||||
|
border: 1px solid var(--kungalgame-blue-1);
|
||||||
|
border-radius: 2px;
|
||||||
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.33);
|
||||||
|
transition: all 0.3s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
.footer {
|
||||||
|
margin-top: 20px;
|
||||||
|
display: flex;
|
||||||
|
justify-content: flex-end;
|
||||||
|
}
|
||||||
|
|
||||||
|
.button {
|
||||||
|
width: 70px;
|
||||||
|
height: 30px;
|
||||||
|
color: var(--kungalgame-font-color-3);
|
||||||
|
cursor: pointer;
|
||||||
|
&:nth-child(1) {
|
||||||
|
background-color: var(--kungalgame-trans-blue-1);
|
||||||
|
border: 1px solid var(--kungalgame-blue-4);
|
||||||
|
}
|
||||||
|
&:nth-child(2) {
|
||||||
|
margin-left: 98px;
|
||||||
|
background-color: var(--kungalgame-trans-red-1);
|
||||||
|
border: 1px solid var(--kungalgame-red-4);
|
||||||
|
}
|
||||||
|
&:active {
|
||||||
|
transform: scale(0.9);
|
||||||
|
transition: 0.1s;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* 对于 transition="modal" 的元素来说
|
||||||
|
* 当通过 Vue.js 切换它们的可见性时
|
||||||
|
* 以下样式会被自动应用。
|
||||||
|
*
|
||||||
|
* 你可以简单地通过编辑这些样式
|
||||||
|
* 来体验该模态框的过渡效果。
|
||||||
|
*/
|
||||||
|
|
||||||
|
.alert-enter-from {
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.alert-leave-to {
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.alert-enter-from .container,
|
||||||
|
.alert-leave-to .container {
|
||||||
|
-webkit-transform: scale(1.1);
|
||||||
|
transform: scale(1.1);
|
||||||
|
}
|
||||||
|
</style>
|
|
@ -1,23 +1,12 @@
|
||||||
|
<!-- 注意这个组件必须用 provide 和 inject 的方式使用,因为有子组件 -->
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { ref } from 'vue'
|
import { ref } from 'vue'
|
||||||
|
import Alert from './Alert.vue'
|
||||||
// 接受父组件的传值
|
|
||||||
const props = defineProps(['info', 'isShowCancel'])
|
|
||||||
// 返回给父组件信息
|
|
||||||
const emits = defineEmits(['value'])
|
|
||||||
|
|
||||||
const show = ref(false)
|
const show = ref(false)
|
||||||
|
|
||||||
const handleClose = () => {
|
const updateStatus = (value: boolean) => {
|
||||||
show.value = false
|
show.value = value
|
||||||
// 点击关闭则给父组件返回 false
|
|
||||||
emits('value', false)
|
|
||||||
}
|
|
||||||
|
|
||||||
const handleConfirm = () => {
|
|
||||||
show.value = false
|
|
||||||
// 点击确定则给父组件返回 true
|
|
||||||
emits('value', true)
|
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
@ -26,7 +15,10 @@ const handleConfirm = () => {
|
||||||
<slot></slot>
|
<slot></slot>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<Teleport to="body">
|
<Alert :show="show" @update="updateStatus" />
|
||||||
|
|
||||||
|
<!-- 不是 info 的话就不启用这个 teleport -->
|
||||||
|
<!-- <Teleport to="body" :disabled="props.type !== 'info'">
|
||||||
<Transition name="alert">
|
<Transition name="alert">
|
||||||
<div v-if="show" class="mask">
|
<div v-if="show" class="mask">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
|
@ -49,7 +41,7 @@ const handleConfirm = () => {
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</Transition>
|
</Transition>
|
||||||
</Teleport>
|
</Teleport> -->
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
|
|
6
src/components/KUNGalgameAlert/types.ts
Normal file
6
src/components/KUNGalgameAlert/types.ts
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
export interface props {
|
||||||
|
type: string
|
||||||
|
info: string
|
||||||
|
isShowCancel: boolean
|
||||||
|
status: Function
|
||||||
|
}
|
|
@ -7,8 +7,8 @@
|
||||||
<!-- 版权描述,版本号 -->
|
<!-- 版权描述,版本号 -->
|
||||||
<div class="footer">
|
<div class="footer">
|
||||||
<span
|
<span
|
||||||
>Copyright © 2023 KUNgalgame<span> </span> All rights reserved | Version
|
>Copyright © 2023 KUNGalgame<span> </span> All rights reserved | Version
|
||||||
0.01</span
|
0.6.17</span
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
@ -1,10 +1,24 @@
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import KUNGalgameAlert from '@/components/KUNGalgameAlert/KUNGalgameAlert.vue'
|
import KUNGalgameAlert from '@/components/KUNGalgameAlert/KUNGalgameAlert.vue'
|
||||||
|
|
||||||
|
import { props } from '@/components/KUNGalgameAlert/types'
|
||||||
|
|
||||||
|
import { provide } from 'vue'
|
||||||
|
|
||||||
|
// 如果用户点击确定或者取消处理的函数
|
||||||
const getAlertValue = (value: boolean) => {
|
const getAlertValue = (value: boolean) => {
|
||||||
// 这里待定 TODO:
|
// 这里待定 TODO:
|
||||||
console.log(value)
|
console.log(value)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const alertInfo: props = {
|
||||||
|
type: 'alert',
|
||||||
|
info: '确认发布吗',
|
||||||
|
isShowCancel: true,
|
||||||
|
status: getAlertValue,
|
||||||
|
}
|
||||||
|
|
||||||
|
provide('info', alertInfo)
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
|
@ -22,11 +36,7 @@ const getAlertValue = (value: boolean) => {
|
||||||
<div class="btn-container">
|
<div class="btn-container">
|
||||||
<!-- 确认按钮 -->
|
<!-- 确认按钮 -->
|
||||||
|
|
||||||
<KUNGalgameAlert
|
<KUNGalgameAlert>
|
||||||
:info="'确认发布吗?'"
|
|
||||||
:isShowCancel="true"
|
|
||||||
@value="getAlertValue"
|
|
||||||
>
|
|
||||||
<button class="confirm-btn">确认发布</button>
|
<button class="confirm-btn">确认发布</button>
|
||||||
</KUNGalgameAlert>
|
</KUNGalgameAlert>
|
||||||
<!-- 保存按钮 -->
|
<!-- 保存按钮 -->
|
||||||
|
|
Loading…
Reference in a new issue