primevue-mirror/apps/volt/doc/toast/TemplateDoc.vue

96 lines
3.0 KiB
Vue
Raw Permalink Normal View History

<template>
<DocSectionText v-bind="$attrs">
<p>Custom content inside a message is defined with the <i>message</i> template.</p>
</DocSectionText>
<div class="card flex justify-center">
<Toast position="bottom-center" group="bc" @close="onClose">
<template #message="slotProps">
<div class="flex flex-col items-start flex-auto">
<div class="flex items-center gap-2">
<Avatar image="https://primefaces.org/cdn/primevue/images/avatar/amyelsner.png" shape="circle" />
<span class="font-bold">Amy Elsner</span>
</div>
<div class="font-medium text-lg my-4">{{ slotProps.message.summary }}</div>
<Button size="small" label="Reply" severity="success" @click="onReply()"></Button>
</div>
</template>
</Toast>
<Button @click="showTemplate" label="View" />
</div>
<DocSectionCode :code="code" />
</template>
<script setup>
import Avatar from '@/volt/avatar';
import Button from '@/volt/button';
import Toast from '@/volt/toast';
import { useToast } from 'primevue/usetoast';
import { ref } from 'vue';
const toast = useToast();
const visible = ref(false);
const showTemplate = () => {
if (!visible.value) {
toast.add({ severity: 'success', summary: 'Can you send me the report?', group: 'bc' });
visible.value = true;
}
};
const onReply = () => {
toast.removeGroup('bc');
visible.value = false;
};
const onClose = () => {
visible.value = false;
};
const code = ref(`
<template>
<Toast position="bottom-center" group="bc" @close="onClose">
<template #message="slotProps">
<div class="flex flex-col items-start flex-auto">
<div class="flex items-center gap-2">
<Avatar image="https://primefaces.org/cdn/primevue/images/avatar/amyelsner.png" shape="circle" />
<span class="font-bold">Amy Elsner</span>
</div>
<div class="font-medium text-lg my-4">{{ slotProps.message.summary }}</div>
<Button size="small" label="Reply" severity="success" @click="onReply()"></Button>
</div>
</template>
</Toast>
<div class="card flex justify-center">
<Button @click="showTemplate" label="View" />
</div>
</template>
<script setup>
import Toast from '@/volt/toast';
import Avatar from '@/volt/avatar';
import Button from '@/volt/button';
import { useToast } from 'primevue/usetoast';
import { ref } from 'vue';
const toast = useToast();
const visible = ref(false);
const showTemplate = () => {
if (!visible.value) {
toast.add({ severity: 'success', summary: 'Can you send me the report?', group: 'bc' });
visible.value = true;
}
};
const onReply = () => {
toast.removeGroup('bc');
visible.value = false;
};
const onClose = () => {
visible.value = false;
};
<\/script>
`);
</script>