- When new user was created via admin, the verification email was send

- Item name in list view type is now extended on the full page width
This commit is contained in:
Čarodej
2022-06-01 10:09:18 +02:00
parent 428b4c87a3
commit 94afb626eb
13 changed files with 46 additions and 36 deletions
+8 -12
View File
@@ -8,7 +8,8 @@
<div class="fixed top-0 bottom-0 left-0 right-0 z-10 m-auto w-full bg-white shadow-xl dark:bg-dark-foreground md:relative md:w-[490px] md:rounded-xl">
<div class="flex h-full -translate-y-7 transform items-center justify-center px-8 text-center md:translate-y-0">
<div>
<img src="https://twemoji.maxcdn.com/v/13.1.0/svg/1f627.svg" alt="" class="mx-auto mb-4 w-20 md:mt-6 min-h-[80px]" />
<img v-if="isSuccess" src="https://twemoji.maxcdn.com/v/13.1.1/svg/1f609.svg" alt="" class="mx-auto mb-4 w-20 md:mt-6 min-h-[80px]" />
<img v-if="isAlert" src="https://twemoji.maxcdn.com/v/13.1.0/svg/1f627.svg" alt="" class="mx-auto mb-4 w-20 md:mt-6 min-h-[80px]" />
<h1 v-if="title" class="mb-2 text-2xl font-bold">
{{ title }}
@@ -46,7 +47,8 @@ export default {
message: undefined,
title: undefined,
button: undefined,
emoji: undefined,
isSuccess: undefined,
isAlert: undefined,
}
},
methods: {
@@ -58,18 +60,14 @@ export default {
// Show alert
events.$on('alert:open', (args) => {
this.isVisibleWrapper = true
this.isAlert = true
this.title = args.title || undefined
this.message = args.message || undefined
this.button = this.$te('alerts.error_confirm') ? this.$t('alerts.error_confirm') : 'Thats horrible!'
this.emoji = '😢😢😢'
this.buttonStyle = 'danger'
if (args.emoji) {
this.emoji = args.emoji
}
if (args.buttonStyle) {
this.buttonStyle = args.buttonStyle
}
@@ -82,22 +80,20 @@ export default {
// Show alert
events.$on('success:open', (args) => {
this.isVisibleWrapper = true
this.isSuccess = true
this.title = args.title
this.message = args.message
this.button = this.$t('alerts.success_confirm')
this.emoji = '🥳🥳🥳'
this.buttonStyle = 'theme'
if (args.emoji) {
this.emoji = args.emoji
}
})
// Close popup
events.$on('popup:close', () => {
this.isVisibleWrapper = false
this.isSuccess = undefined
this.isAlert = undefined
})
},
}