2023-02-28 08:29:30 +00:00
|
|
|
<template>
|
|
|
|
<DocSectionText v-bind="$attrs">
|
|
|
|
<p>The <i>position</i> property of the confirm options is used to display a Dialog at all edges and corners of the screen.</p>
|
|
|
|
</DocSectionText>
|
|
|
|
<ConfirmDialog group="positionDialog"></ConfirmDialog>
|
|
|
|
<div class="card">
|
|
|
|
<div class="flex flex-wrap justify-content-center gap-2 mb-2">
|
2023-03-03 12:15:20 +00:00
|
|
|
<Button @click="confirmPosition('left')" icon="pi pi-arrow-right" label="Left" severity="help" style="min-width: 10rem"></Button>
|
|
|
|
<Button @click="confirmPosition('right')" icon="pi pi-arrow-left" label="Right" severity="help" style="min-width: 10rem"></Button>
|
2023-02-28 08:29:30 +00:00
|
|
|
</div>
|
|
|
|
<div class="flex flex-wrap justify-content-center gap-2 mb-2">
|
2023-03-03 12:15:20 +00:00
|
|
|
<Button @click="confirmPosition('topleft')" icon="pi pi-arrow-down-right" label="TopLeft" severity="warning" style="min-width: 10rem"></Button>
|
|
|
|
<Button @click="confirmPosition('top')" icon="pi pi-arrow-down" label="Top" severity="warning" style="min-width: 10rem"></Button>
|
|
|
|
<Button @click="confirmPosition('topright')" icon="pi pi-arrow-down-left" label="TopRight" severity="warning" style="min-width: 10rem"></Button>
|
2023-02-28 08:29:30 +00:00
|
|
|
</div>
|
|
|
|
<div class="flex flex-wrap justify-content-center gap-2">
|
2023-03-03 12:15:20 +00:00
|
|
|
<Button @click="confirmPosition('bottomleft')" icon="pi pi-arrow-up-right" label="BottomLeft" severity="success" style="min-width: 10rem"></Button>
|
|
|
|
<Button @click="confirmPosition('bottom')" icon="pi pi-arrow-up" label="Bottom" severity="success" style="min-width: 10rem"></Button>
|
|
|
|
<Button @click="confirmPosition('bottomright')" icon="pi pi-arrow-up-left" label="BottomRight" severity="success" style="min-width: 10rem"></Button>
|
2023-02-28 08:29:30 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<DocSectionCode :code="code" />
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
code: {
|
2023-09-22 12:54:14 +00:00
|
|
|
basic: `
|
|
|
|
<ConfirmDialog group="positionDialog"></ConfirmDialog>
|
2023-02-28 08:29:30 +00:00
|
|
|
<div class="flex flex-wrap justify-content-center gap-2 mb-2">
|
2023-03-03 12:15:20 +00:00
|
|
|
<Button @click="confirmPosition('left')" icon="pi pi-arrow-right" label="Left" severity="help" style="min-width: 10rem"></Button>
|
|
|
|
<Button @click="confirmPosition('right')" icon="pi pi-arrow-left" label="Right" severity="help" style="min-width: 10rem"></Button>
|
2023-02-28 08:29:30 +00:00
|
|
|
</div>
|
|
|
|
<div class="flex flex-wrap justify-content-center gap-2 mb-2">
|
2023-03-03 12:15:20 +00:00
|
|
|
<Button @click="confirmPosition('topleft')" icon="pi pi-arrow-down-right" label="TopLeft" severity="warning" style="min-width: 10rem"></Button>
|
|
|
|
<Button @click="confirmPosition('top')" icon="pi pi-arrow-down" label="Top" severity="warning" style="min-width: 10rem"></Button>
|
|
|
|
<Button @click="confirmPosition('topright')" icon="pi pi-arrow-down-left" label="TopRight" severity="warning" style="min-width: 10rem"></Button>
|
2023-02-28 08:29:30 +00:00
|
|
|
</div>
|
|
|
|
<div class="flex flex-wrap justify-content-center gap-2">
|
2023-03-03 12:15:20 +00:00
|
|
|
<Button @click="confirmPosition('bottomleft')" icon="pi pi-arrow-up-right" label="BottomLeft" severity="success" style="min-width: 10rem"></Button>
|
|
|
|
<Button @click="confirmPosition('bottom')" icon="pi pi-arrow-up" label="Bottom" severity="success" style="min-width: 10rem"></Button>
|
|
|
|
<Button @click="confirmPosition('bottomright')" icon="pi pi-arrow-up-left" label="BottomRight" severity="success" style="min-width: 10rem"></Button>
|
2023-02-28 08:29:30 +00:00
|
|
|
</div>`,
|
2023-09-22 12:54:14 +00:00
|
|
|
options: `
|
|
|
|
<template>
|
2023-02-28 08:29:30 +00:00
|
|
|
<Toast />
|
|
|
|
<ConfirmDialog group="positionDialog"></ConfirmDialog>
|
|
|
|
<div class="card">
|
|
|
|
<div class="flex flex-wrap justify-content-center gap-2 mb-2">
|
2023-03-03 12:15:20 +00:00
|
|
|
<Button @click="confirmPosition('left')" icon="pi pi-arrow-right" label="Left" severity="help" style="min-width: 10rem"></Button>
|
|
|
|
<Button @click="confirmPosition('right')" icon="pi pi-arrow-left" label="Right" severity="help" style="min-width: 10rem"></Button>
|
2023-02-28 08:29:30 +00:00
|
|
|
</div>
|
|
|
|
<div class="flex flex-wrap justify-content-center gap-2 mb-2">
|
2023-03-03 12:15:20 +00:00
|
|
|
<Button @click="confirmPosition('topleft')" icon="pi pi-arrow-down-right" label="TopLeft" severity="warning" style="min-width: 10rem"></Button>
|
|
|
|
<Button @click="confirmPosition('top')" icon="pi pi-arrow-down" label="Top" severity="warning" style="min-width: 10rem"></Button>
|
|
|
|
<Button @click="confirmPosition('topright')" icon="pi pi-arrow-down-left" label="TopRight" severity="warning" style="min-width: 10rem"></Button>
|
2023-02-28 08:29:30 +00:00
|
|
|
</div>
|
|
|
|
<div class="flex flex-wrap justify-content-center gap-2">
|
2023-03-03 12:15:20 +00:00
|
|
|
<Button @click="confirmPosition('bottomleft')" icon="pi pi-arrow-up-right" label="BottomLeft" severity="success" style="min-width: 10rem"></Button>
|
|
|
|
<Button @click="confirmPosition('bottom')" icon="pi pi-arrow-up" label="Bottom" severity="success" style="min-width: 10rem"></Button>
|
|
|
|
<Button @click="confirmPosition('bottomright')" icon="pi pi-arrow-up-left" label="BottomRight" severity="success" style="min-width: 10rem"></Button>
|
2023-02-28 08:29:30 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
methods: {
|
|
|
|
confirmPosition(position) {
|
|
|
|
this.$confirm.require({
|
|
|
|
group: 'positionDialog',
|
|
|
|
message: 'Do you want to delete this record?',
|
|
|
|
header: 'Delete Confirmation',
|
|
|
|
icon: 'pi pi-info-circle',
|
|
|
|
position: position,
|
|
|
|
accept: () => {
|
|
|
|
this.$toast.add({ severity: 'info', summary: 'Confirmed', detail: 'Record deleted', life: 3000 });
|
|
|
|
},
|
|
|
|
reject: () => {
|
|
|
|
this.$toast.add({ severity: 'error', summary: 'Rejected', detail: 'You have rejected', life: 3000 });
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
|
|
|
}
|
|
|
|
};
|
|
|
|
<\/script>`,
|
2023-09-22 12:54:14 +00:00
|
|
|
composition: `
|
|
|
|
<template>
|
2023-02-28 08:29:30 +00:00
|
|
|
<Toast />
|
|
|
|
<ConfirmDialog group="positionDialog"></ConfirmDialog>
|
|
|
|
<div class="card">
|
|
|
|
<div class="flex flex-wrap justify-content-center gap-2 mb-2">
|
2023-03-03 12:15:20 +00:00
|
|
|
<Button @click="confirmPosition('left')" icon="pi pi-arrow-right" label="Left" severity="help" style="min-width: 10rem"></Button>
|
|
|
|
<Button @click="confirmPosition('right')" icon="pi pi-arrow-left" label="Right" severity="help" style="min-width: 10rem"></Button>
|
2023-02-28 08:29:30 +00:00
|
|
|
</div>
|
|
|
|
<div class="flex flex-wrap justify-content-center gap-2 mb-2">
|
2023-03-03 12:15:20 +00:00
|
|
|
<Button @click="confirmPosition('topleft')" icon="pi pi-arrow-down-right" label="TopLeft" severity="warning" style="min-width: 10rem"></Button>
|
|
|
|
<Button @click="confirmPosition('top')" icon="pi pi-arrow-down" label="Top" severity="warning" style="min-width: 10rem"></Button>
|
|
|
|
<Button @click="confirmPosition('topright')" icon="pi pi-arrow-down-left" label="TopRight" severity="warning" style="min-width: 10rem"></Button>
|
2023-02-28 08:29:30 +00:00
|
|
|
</div>
|
|
|
|
<div class="flex flex-wrap justify-content-center gap-2">
|
2023-03-03 12:15:20 +00:00
|
|
|
<Button @click="confirmPosition('bottomleft')" icon="pi pi-arrow-up-right" label="BottomLeft" severity="success" style="min-width: 10rem"></Button>
|
|
|
|
<Button @click="confirmPosition('bottom')" icon="pi pi-arrow-up" label="Bottom" severity="success" style="min-width: 10rem"></Button>
|
|
|
|
<Button @click="confirmPosition('bottomright')" icon="pi pi-arrow-up-left" label="BottomRight" severity="success" style="min-width: 10rem"></Button>
|
2023-02-28 08:29:30 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script setup>
|
|
|
|
import { useConfirm } from "primevue/useconfirm";
|
|
|
|
import { useToast } from "primevue/usetoast";
|
|
|
|
|
|
|
|
const confirm = useConfirm();
|
|
|
|
const toast = useToast();
|
|
|
|
|
|
|
|
const confirmPosition = (position) => {
|
|
|
|
confirm.require({
|
|
|
|
group: 'positionDialog',
|
|
|
|
message: 'Do you want to delete this record?',
|
|
|
|
header: 'Delete Confirmation',
|
|
|
|
icon: 'pi pi-info-circle',
|
|
|
|
position: position,
|
|
|
|
accept: () => {
|
|
|
|
toast.add({ severity: 'info', summary: 'Confirmed', detail: 'Record deleted', life: 3000 });
|
|
|
|
},
|
|
|
|
reject: () => {
|
|
|
|
toast.add({ severity: 'error', summary: 'Rejected', detail: 'You have rejected', life: 3000 });
|
|
|
|
}
|
|
|
|
});
|
|
|
|
};
|
|
|
|
<\/script>`
|
|
|
|
}
|
|
|
|
};
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
confirmPosition(position) {
|
|
|
|
this.$confirm.require({
|
|
|
|
group: 'positionDialog',
|
|
|
|
message: 'Do you want to delete this record?',
|
|
|
|
header: 'Delete Confirmation',
|
|
|
|
icon: 'pi pi-info-circle',
|
|
|
|
position: position,
|
|
|
|
accept: () => {
|
|
|
|
this.$toast.add({ severity: 'info', summary: 'Confirmed', detail: 'Record deleted', life: 3000 });
|
|
|
|
},
|
|
|
|
reject: () => {
|
|
|
|
this.$toast.add({ severity: 'error', summary: 'Rejected', detail: 'You have rejected', life: 3000 });
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
</script>
|