#42 - wip
This commit is contained in:
67
resources/js/Shared/Alerts/ErrorAlert.vue
Normal file
67
resources/js/Shared/Alerts/ErrorAlert.vue
Normal file
@@ -0,0 +1,67 @@
|
||||
<template>
|
||||
<transition
|
||||
enter-active-class="transform ease-out duration-300 transition"
|
||||
enter-from-class="opacity-0"
|
||||
enter-to-class="opacity-100"
|
||||
leave-active-class="transition ease-in duration-100"
|
||||
leave-from-class="opacity-100"
|
||||
leave-to-class="opacity-0"
|
||||
>
|
||||
<div
|
||||
v-if="show"
|
||||
class="fixed bottom-4 right-0 mx-auto w-full max-w-md bg-red-500 shadow-lg rounded-lg pointer-events-auto ring-1 ring-black ring-opacity-5 overflow-hidden z-50 sm:mr-4"
|
||||
>
|
||||
<div class="p-4">
|
||||
<div class="flex items-center">
|
||||
<div class="w-0 flex-1 flex justify-between">
|
||||
<ExclamationIcon class="h-5 w-5 text-white mr-2" />
|
||||
<p class="w-0 flex-1 text-sm font-medium text-white">
|
||||
{{ message }}
|
||||
</p>
|
||||
</div>
|
||||
<div class="ml-4 flex-shrink-0 flex">
|
||||
<button
|
||||
class="bg-red-500 rounded-md inline-flex text-red-100 hover:text-red-400 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-red-600"
|
||||
@click="show = false"
|
||||
>
|
||||
<span class="sr-only">Close</span>
|
||||
<XIcon
|
||||
class="h-5 w-5"
|
||||
aria-hidden="true"
|
||||
/>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</transition>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import {XIcon} from '@heroicons/vue/outline'
|
||||
import {ExclamationIcon} from '@heroicons/vue/solid'
|
||||
import {ref} from 'vue'
|
||||
|
||||
export default {
|
||||
name: 'ErrorAlert',
|
||||
components: {
|
||||
ExclamationIcon,
|
||||
XIcon,
|
||||
},
|
||||
props: {
|
||||
message: {
|
||||
type: String,
|
||||
default: () => null,
|
||||
},
|
||||
},
|
||||
setup() {
|
||||
const show = ref(true)
|
||||
|
||||
setTimeout(() => show.value = false, 6000)
|
||||
|
||||
return {
|
||||
show,
|
||||
}
|
||||
},
|
||||
}
|
||||
</script>
|
67
resources/js/Shared/Alerts/SuccessAlert.vue
Normal file
67
resources/js/Shared/Alerts/SuccessAlert.vue
Normal file
@@ -0,0 +1,67 @@
|
||||
<template>
|
||||
<transition
|
||||
enter-active-class="transform ease-out duration-300 transition"
|
||||
enter-from-class="opacity-0"
|
||||
enter-to-class="opacity-100"
|
||||
leave-active-class="transition ease-in duration-100"
|
||||
leave-from-class="opacity-100"
|
||||
leave-to-class="opacity-0"
|
||||
>
|
||||
<div
|
||||
v-if="show"
|
||||
class="fixed bottom-4 right-0 mx-auto w-full max-w-md bg-green-500 shadow-lg rounded-lg pointer-events-auto ring-1 ring-black ring-opacity-5 overflow-hidden z-50 sm:mr-4"
|
||||
>
|
||||
<div class="p-4">
|
||||
<div class="flex items-center">
|
||||
<div class="w-0 flex-1 flex justify-between">
|
||||
<CheckCircleIcon class="h-5 w-5 text-white mr-2" />
|
||||
<p class="w-0 flex-1 text-sm font-medium text-white">
|
||||
{{ message }}
|
||||
</p>
|
||||
</div>
|
||||
<div class="ml-4 flex-shrink-0 flex">
|
||||
<button
|
||||
class="bg-green-500 rounded-md inline-flex text-green-100 hover:text-green-400 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-green-600"
|
||||
@click="show = false"
|
||||
>
|
||||
<span class="sr-only">Close</span>
|
||||
<XIcon
|
||||
class="h-5 w-5"
|
||||
aria-hidden="true"
|
||||
/>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</transition>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import {XIcon} from '@heroicons/vue/outline'
|
||||
import {CheckCircleIcon} from '@heroicons/vue/solid'
|
||||
import {ref} from 'vue'
|
||||
|
||||
export default {
|
||||
name: 'SuccessAlert',
|
||||
components: {
|
||||
CheckCircleIcon,
|
||||
XIcon,
|
||||
},
|
||||
props: {
|
||||
message: {
|
||||
type: String,
|
||||
default: () => '',
|
||||
},
|
||||
},
|
||||
setup() {
|
||||
const show = ref(true)
|
||||
|
||||
setTimeout(() => show.value = false, 6000)
|
||||
|
||||
return {
|
||||
show,
|
||||
}
|
||||
},
|
||||
}
|
||||
</script>
|
Reference in New Issue
Block a user