csb updated for overlay and file components
parent
2617639ccb
commit
ec0aed103f
|
@ -54,7 +54,7 @@ export default {
|
||||||
this.$toast.add({severity:'info', summary:'Confirmed', detail:'You have accepted', life: 3000});
|
this.$toast.add({severity:'info', summary:'Confirmed', detail:'You have accepted', life: 3000});
|
||||||
},
|
},
|
||||||
reject: () => {
|
reject: () => {
|
||||||
this.$toast.add({severity:'info', summary:'Rejected', detail:'You have rejected', life: 3000});
|
this.$toast.add({severity:'error', summary:'Rejected', detail:'You have rejected', life: 3000});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
@ -68,7 +68,7 @@ export default {
|
||||||
this.$toast.add({severity:'info', summary:'Confirmed', detail:'Record deleted', life: 3000});
|
this.$toast.add({severity:'info', summary:'Confirmed', detail:'Record deleted', life: 3000});
|
||||||
},
|
},
|
||||||
reject: () => {
|
reject: () => {
|
||||||
this.$toast.add({severity:'info', summary:'Rejected', detail:'You have rejected', life: 3000});
|
this.$toast.add({severity:'error', summary:'Rejected', detail:'You have rejected', life: 3000});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
@ -83,7 +83,7 @@ export default {
|
||||||
this.$toast.add({severity:'info', summary:'Confirmed', detail:'Record deleted', life: 3000});
|
this.$toast.add({severity:'info', summary:'Confirmed', detail:'Record deleted', life: 3000});
|
||||||
},
|
},
|
||||||
reject: () => {
|
reject: () => {
|
||||||
this.$toast.add({severity:'info', summary:'Rejected', detail:'You have rejected', life: 3000});
|
this.$toast.add({severity:'error', summary:'Rejected', detail:'You have rejected', life: 3000});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,5 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="content-section documentation">
|
<AppDoc name="ConfirmDialogDemo" :sources="sources">
|
||||||
<TabView>
|
|
||||||
<TabPanel header="Documentation">
|
|
||||||
<h5>ConfirmationService</h5>
|
<h5>ConfirmationService</h5>
|
||||||
<p>ConfirmDialog is controlled via the <i>ConfirmationService</i> that needs to be installed globally before the application
|
<p>ConfirmDialog is controlled via the <i>ConfirmationService</i> that needs to be installed globally before the application
|
||||||
instance is created.</p>
|
instance is created.</p>
|
||||||
|
@ -241,46 +239,50 @@ export default {
|
||||||
|
|
||||||
<h5>Dependencies</h5>
|
<h5>Dependencies</h5>
|
||||||
<p>None.</p>
|
<p>None.</p>
|
||||||
</TabPanel>
|
</AppDoc>
|
||||||
|
|
||||||
<TabPanel header="Source">
|
|
||||||
<div class="p-d-flex p-jc-between">
|
|
||||||
<a href="https://github.com/primefaces/primevue/tree/master/src/views/dialog" class="btn-viewsource" target="_blank" rel="noopener noreferrer">
|
|
||||||
<span>View on GitHub</span>
|
|
||||||
</a>
|
|
||||||
<LiveEditor name="ConfirmDialogDemo" :sources="sources" :confirmationService="true" :toastService="true" :components="['Button']" />
|
|
||||||
</div>
|
|
||||||
<pre v-code><code><template v-pre>
|
|
||||||
<ConfirmDialog></ConfirmDialog>
|
|
||||||
<ConfirmDialog group="positionDialog"></ConfirmDialog>
|
|
||||||
|
|
||||||
<div class="card">
|
|
||||||
<h5>Basic</h5>
|
|
||||||
<Button @click="confirm1()" icon="pi pi-check" label="Confirm" class="p-mr-2"></Button>
|
|
||||||
<Button @click="confirm2()" icon="pi pi-times" label="Delete"></Button>
|
|
||||||
|
|
||||||
<h5>Position</h5>
|
|
||||||
<div class="p-grid p-dir-col">
|
|
||||||
<div class="p-col">
|
|
||||||
<Button @click="confirmPosition('left')" icon="pi pi-arrow-right" label="Left" class="p-button-help p-mr-2"></Button>
|
|
||||||
<Button @click="confirmPosition('right')" icon="pi pi-arrow-left" label="Right" class="p-button-help"></Button>
|
|
||||||
</div>
|
|
||||||
<div class="p-col">
|
|
||||||
<Button @click="confirmPosition('topleft')" icon="pi pi-arrow-down" label="TopLeft" class="p-button-warning p-mr-2"></Button>
|
|
||||||
<Button @click="confirmPosition('top')" icon="pi pi-arrow-down" label="Top" class="p-button-warning p-mr-2"></Button>
|
|
||||||
<Button @click="confirmPosition('topright')" icon="pi pi-arrow-down" label="TopRight" class="p-button-warning"></Button>
|
|
||||||
</div>
|
|
||||||
<div class="p-col">
|
|
||||||
<Button @click="confirmPosition('bottomleft')" icon="pi pi-arrow-up" label="BottomLeft" class="p-button-success p-mr-2"></Button>
|
|
||||||
<Button @click="confirmPosition('bottom')" icon="pi pi-arrow-up" label="Bottom" class="p-button-success p-mr-2"></Button>
|
|
||||||
<Button @click="confirmPosition('bottomright')" icon="pi pi-arrow-up" label="BottomRight" class="p-button-success"></Button>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</template>
|
</template>
|
||||||
</code></pre>
|
|
||||||
|
|
||||||
<pre v-code.script><code>
|
<script>
|
||||||
|
export default {
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
sources: {
|
||||||
|
'options-api': {
|
||||||
|
tabName: 'Source',
|
||||||
|
content: `
|
||||||
|
<template>
|
||||||
|
<div>
|
||||||
|
<Toast />
|
||||||
|
<ConfirmDialog></ConfirmDialog>
|
||||||
|
<ConfirmDialog group="positionDialog"></ConfirmDialog>
|
||||||
|
|
||||||
|
<div class="card">
|
||||||
|
<h5>Basic</h5>
|
||||||
|
<Button @click="confirm1()" icon="pi pi-check" label="Confirm" class="p-mr-2"></Button>
|
||||||
|
<Button @click="confirm2()" icon="pi pi-times" label="Delete"></Button>
|
||||||
|
|
||||||
|
<h5>Position</h5>
|
||||||
|
<div class="p-grid p-dir-col">
|
||||||
|
<div class="p-col">
|
||||||
|
<Button @click="confirmPosition('left')" icon="pi pi-arrow-right" label="Left" class="p-button-help p-mr-2"></Button>
|
||||||
|
<Button @click="confirmPosition('right')" icon="pi pi-arrow-left" label="Right" class="p-button-help"></Button>
|
||||||
|
</div>
|
||||||
|
<div class="p-col">
|
||||||
|
<Button @click="confirmPosition('topleft')" icon="pi pi-arrow-down" label="TopLeft" class="p-button-warning p-mr-2"></Button>
|
||||||
|
<Button @click="confirmPosition('top')" icon="pi pi-arrow-down" label="Top" class="p-button-warning p-mr-2"></Button>
|
||||||
|
<Button @click="confirmPosition('topright')" icon="pi pi-arrow-down" label="TopRight" class="p-button-warning"></Button>
|
||||||
|
</div>
|
||||||
|
<div class="p-col">
|
||||||
|
<Button @click="confirmPosition('bottomleft')" icon="pi pi-arrow-up" label="BottomLeft" class="p-button-success p-mr-2"></Button>
|
||||||
|
<Button @click="confirmPosition('bottom')" icon="pi pi-arrow-up" label="Bottom" class="p-button-success p-mr-2"></Button>
|
||||||
|
<Button @click="confirmPosition('bottomright')" icon="pi pi-arrow-up" label="BottomRight" class="p-button-success"></Button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
export default {
|
export default {
|
||||||
methods: {
|
methods: {
|
||||||
confirm1() {
|
confirm1() {
|
||||||
|
@ -292,7 +294,7 @@ export default {
|
||||||
this.$toast.add({severity:'info', summary:'Confirmed', detail:'You have accepted', life: 3000});
|
this.$toast.add({severity:'info', summary:'Confirmed', detail:'You have accepted', life: 3000});
|
||||||
},
|
},
|
||||||
reject: () => {
|
reject: () => {
|
||||||
this.$toast.add({severity:'info', summary:'Rejected', detail:'You have rejected', life: 3000});
|
this.$toast.add({severity:'error', summary:'Rejected', detail:'You have rejected', life: 3000});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
@ -306,7 +308,7 @@ export default {
|
||||||
this.$toast.add({severity:'info', summary:'Confirmed', detail:'Record deleted', life: 3000});
|
this.$toast.add({severity:'info', summary:'Confirmed', detail:'Record deleted', life: 3000});
|
||||||
},
|
},
|
||||||
reject: () => {
|
reject: () => {
|
||||||
this.$toast.add({severity:'info', summary:'Rejected', detail:'You have rejected', life: 3000});
|
this.$toast.add({severity:'error', summary:'Rejected', detail:'You have rejected', life: 3000});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
@ -321,30 +323,21 @@ export default {
|
||||||
this.$toast.add({severity:'info', summary:'Confirmed', detail:'Record deleted', life: 3000});
|
this.$toast.add({severity:'info', summary:'Confirmed', detail:'Record deleted', life: 3000});
|
||||||
},
|
},
|
||||||
reject: () => {
|
reject: () => {
|
||||||
this.$toast.add({severity:'info', summary:'Rejected', detail:'You have rejected', life: 3000});
|
this.$toast.add({severity:'error', summary:'Rejected', detail:'You have rejected', life: 3000});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
<\\/script>
|
||||||
</code></pre>
|
`
|
||||||
</TabPanel>
|
},
|
||||||
</TabView>
|
'composition-api': {
|
||||||
</div>
|
tabName: 'Composition API',
|
||||||
</template>
|
content: `
|
||||||
|
<template>
|
||||||
<script>
|
<div>
|
||||||
import LiveEditor from '../liveeditor/LiveEditor';
|
|
||||||
export default {
|
|
||||||
data() {
|
|
||||||
return {
|
|
||||||
sources: {
|
|
||||||
'template': {
|
|
||||||
content: `<template>
|
|
||||||
<div class="layout-content">
|
|
||||||
<Toast />
|
<Toast />
|
||||||
<div class="content-section implementation">
|
|
||||||
<ConfirmDialog></ConfirmDialog>
|
<ConfirmDialog></ConfirmDialog>
|
||||||
<ConfirmDialog group="positionDialog"></ConfirmDialog>
|
<ConfirmDialog group="positionDialog"></ConfirmDialog>
|
||||||
|
|
||||||
|
@ -372,90 +365,6 @@ export default {
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
export default {
|
|
||||||
methods: {
|
|
||||||
confirm1() {
|
|
||||||
this.$confirm.require({
|
|
||||||
message: 'Are you sure you want to proceed?',
|
|
||||||
header: 'Confirmation',
|
|
||||||
icon: 'pi pi-exclamation-triangle',
|
|
||||||
accept: () => {
|
|
||||||
this.$toast.add({severity:'info', summary:'Confirmed', detail:'You have accepted', life: 3000});
|
|
||||||
},
|
|
||||||
reject: () => {
|
|
||||||
this.$toast.add({severity:'info', summary:'Rejected', detail:'You have rejected', life: 3000});
|
|
||||||
}
|
|
||||||
});
|
|
||||||
},
|
|
||||||
confirm2() {
|
|
||||||
this.$confirm.require({
|
|
||||||
message: 'Do you want to delete this record?',
|
|
||||||
header: 'Delete Confirmation',
|
|
||||||
icon: 'pi pi-info-circle',
|
|
||||||
acceptClass: 'p-button-danger',
|
|
||||||
accept: () => {
|
|
||||||
this.$toast.add({severity:'info', summary:'Confirmed', detail:'Record deleted', life: 3000});
|
|
||||||
},
|
|
||||||
reject: () => {
|
|
||||||
this.$toast.add({severity:'info', summary:'Rejected', detail:'You have rejected', life: 3000});
|
|
||||||
}
|
|
||||||
});
|
|
||||||
},
|
|
||||||
confirmPosition(position) {
|
|
||||||
this.$confirm.require({
|
|
||||||
key: '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:'info', summary:'Rejected', detail:'You have rejected', life: 3000});
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}`
|
|
||||||
},
|
|
||||||
'api': {
|
|
||||||
content: `<template>
|
|
||||||
<div class="layout-content">
|
|
||||||
<Toast />
|
|
||||||
<div class="content-section implementation">
|
|
||||||
<ConfirmDialog></ConfirmDialog>
|
|
||||||
<ConfirmDialog group="positionDialog"></ConfirmDialog>
|
|
||||||
|
|
||||||
<div class="card">
|
|
||||||
<h5>Basic</h5>
|
|
||||||
<Button @click="confirm1()" icon="pi pi-check" label="Confirm" class="p-mr-2"></Button>
|
|
||||||
<Button @click="confirm2()" icon="pi pi-times" label="Delete"></Button>
|
|
||||||
|
|
||||||
<h5>Position</h5>
|
|
||||||
<div class="p-grid p-dir-col">
|
|
||||||
<div class="p-col">
|
|
||||||
<Button @click="confirmPosition('left')" icon="pi pi-arrow-right" label="Left" class="p-button-help p-mr-2"></Button>
|
|
||||||
<Button @click="confirmPosition('right')" icon="pi pi-arrow-left" label="Right" class="p-button-help"></Button>
|
|
||||||
</div>
|
|
||||||
<div class="p-col">
|
|
||||||
<Button @click="confirmPosition('topleft')" icon="pi pi-arrow-down" label="TopLeft" class="p-button-warning p-mr-2"></Button>
|
|
||||||
<Button @click="confirmPosition('top')" icon="pi pi-arrow-down" label="Top" class="p-button-warning p-mr-2"></Button>
|
|
||||||
<Button @click="confirmPosition('topright')" icon="pi pi-arrow-down" label="TopRight" class="p-button-warning"></Button>
|
|
||||||
</div>
|
|
||||||
<div class="p-col">
|
|
||||||
<Button @click="confirmPosition('bottomleft')" icon="pi pi-arrow-up" label="BottomLeft" class="p-button-success p-mr-2"></Button>
|
|
||||||
<Button @click="confirmPosition('bottom')" icon="pi pi-arrow-up" label="Bottom" class="p-button-success p-mr-2"></Button>
|
|
||||||
<Button @click="confirmPosition('bottomright')" icon="pi pi-arrow-up" label="BottomRight" class="p-button-success"></Button>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
@ -477,7 +386,7 @@ export default defineComponent({
|
||||||
toast.add({severity:'info', summary:'Confirmed', detail:'You have accepted', life: 3000});
|
toast.add({severity:'info', summary:'Confirmed', detail:'You have accepted', life: 3000});
|
||||||
},
|
},
|
||||||
reject: () => {
|
reject: () => {
|
||||||
toast.add({severity:'info', summary:'Rejected', detail:'You have rejected', life: 3000});
|
toast.add({severity:'error', summary:'Rejected', detail:'You have rejected', life: 3000});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -492,7 +401,7 @@ export default defineComponent({
|
||||||
toast.add({severity:'info', summary:'Confirmed', detail:'Record deleted', life: 3000});
|
toast.add({severity:'info', summary:'Confirmed', detail:'Record deleted', life: 3000});
|
||||||
},
|
},
|
||||||
reject: () => {
|
reject: () => {
|
||||||
toast.add({severity:'info', summary:'Rejected', detail:'You have rejected', life: 3000});
|
toast.add({severity:'error', summary:'Rejected', detail:'You have rejected', life: 3000});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -508,20 +417,19 @@ export default defineComponent({
|
||||||
toast.add({severity:'info', summary:'Confirmed', detail:'Record deleted', life: 3000});
|
toast.add({severity:'info', summary:'Confirmed', detail:'Record deleted', life: 3000});
|
||||||
},
|
},
|
||||||
reject: () => {
|
reject: () => {
|
||||||
toast.add({severity:'info', summary:'Rejected', detail:'You have rejected', life: 3000});
|
toast.add({severity:'error', summary:'Rejected', detail:'You have rejected', life: 3000});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
return { confirm1, confirm2, confirmPosition };
|
return { confirm1, confirm2, confirmPosition };
|
||||||
}
|
}
|
||||||
});`
|
});
|
||||||
|
<\\/script>
|
||||||
|
`
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
|
||||||
components: {
|
|
||||||
LiveEditor
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
|
@ -34,7 +34,7 @@ export default {
|
||||||
this.$toast.add({severity:'info', summary:'Confirmed', detail:'You have accepted', life: 3000});
|
this.$toast.add({severity:'info', summary:'Confirmed', detail:'You have accepted', life: 3000});
|
||||||
},
|
},
|
||||||
reject: () => {
|
reject: () => {
|
||||||
this.$toast.add({severity:'info', summary:'Rejected', detail:'You have rejected', life: 3000});
|
this.$toast.add({severity:'error', summary:'Rejected', detail:'You have rejected', life: 3000});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
@ -48,7 +48,7 @@ export default {
|
||||||
this.$toast.add({severity:'info', summary:'Confirmed', detail:'Record deleted', life: 3000});
|
this.$toast.add({severity:'info', summary:'Confirmed', detail:'Record deleted', life: 3000});
|
||||||
},
|
},
|
||||||
reject: () => {
|
reject: () => {
|
||||||
this.$toast.add({severity:'info', summary:'Rejected', detail:'You have rejected', life: 3000});
|
this.$toast.add({severity:'error', summary:'Rejected', detail:'You have rejected', life: 3000});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,5 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="content-section documentation">
|
<AppDoc name="ConfirmPopupDemo" :sources="sources">
|
||||||
<TabView>
|
|
||||||
<TabPanel header="Documentation">
|
|
||||||
<h5>ConfirmationService</h5>
|
<h5>ConfirmationService</h5>
|
||||||
<p>ConfirmPopup is controlled via the <i>ConfirmationService</i> that needs to be installed globally before the application
|
<p>ConfirmPopup is controlled via the <i>ConfirmationService</i> that needs to be installed globally before the application
|
||||||
instance is created.</p>
|
instance is created.</p>
|
||||||
|
@ -241,26 +239,30 @@ export default {
|
||||||
|
|
||||||
<h5>Dependencies</h5>
|
<h5>Dependencies</h5>
|
||||||
<p>None.</p>
|
<p>None.</p>
|
||||||
</TabPanel>
|
</AppDoc>
|
||||||
|
|
||||||
<TabPanel header="Source">
|
|
||||||
<div class="p-d-flex p-jc-between">
|
|
||||||
<a href="https://github.com/primefaces/primevue/tree/master/src/views/dialog" class="btn-viewsource" target="_blank" rel="noopener noreferrer">
|
|
||||||
<span>View on GitHub</span>
|
|
||||||
</a>
|
|
||||||
<LiveEditor name="ConfirmPopupDemo" :sources="sources" :confirmationService="true" :toastService="true" :components="['Button']" />
|
|
||||||
</div>
|
|
||||||
<pre v-code><code><template v-pre>
|
|
||||||
<ConfirmPopup></ConfirmPopup>
|
|
||||||
|
|
||||||
<div class="card">
|
|
||||||
<Button @click="confirm1($event)" icon="pi pi-check" label="Confirm" class="p-mr-2"></Button>
|
|
||||||
<Button @click="confirm2($event)" icon="pi pi-times" label="Delete" class="p-button-danger p-button-outlined"></Button>
|
|
||||||
</div>
|
|
||||||
</template>
|
</template>
|
||||||
</code></pre>
|
|
||||||
|
|
||||||
<pre v-code.script><code>
|
<script>
|
||||||
|
export default {
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
sources: {
|
||||||
|
'options-api': {
|
||||||
|
tabName: 'Source',
|
||||||
|
content: `
|
||||||
|
<template>
|
||||||
|
<div>
|
||||||
|
<ConfirmPopup></ConfirmPopup>
|
||||||
|
<Toast />
|
||||||
|
|
||||||
|
<div class="card">
|
||||||
|
<Button @click="confirm1($event)" icon="pi pi-check" label="Confirm" class="p-mr-2"></Button>
|
||||||
|
<Button @click="confirm2($event)" icon="pi pi-times" label="Delete" class="p-button-danger p-button-outlined"></Button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
export default {
|
export default {
|
||||||
methods: {
|
methods: {
|
||||||
confirm1(event) {
|
confirm1(event) {
|
||||||
|
@ -272,7 +274,7 @@ export default {
|
||||||
this.$toast.add({severity:'info', summary:'Confirmed', detail:'You have accepted', life: 3000});
|
this.$toast.add({severity:'info', summary:'Confirmed', detail:'You have accepted', life: 3000});
|
||||||
},
|
},
|
||||||
reject: () => {
|
reject: () => {
|
||||||
this.$toast.add({severity:'info', summary:'Rejected', detail:'You have rejected', life: 3000});
|
this.$toast.add({severity:'error', summary:'Rejected', detail:'You have rejected', life: 3000});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
@ -286,86 +288,27 @@ export default {
|
||||||
this.$toast.add({severity:'info', summary:'Confirmed', detail:'Record deleted', life: 3000});
|
this.$toast.add({severity:'info', summary:'Confirmed', detail:'Record deleted', life: 3000});
|
||||||
},
|
},
|
||||||
reject: () => {
|
reject: () => {
|
||||||
this.$toast.add({severity:'info', summary:'Rejected', detail:'You have rejected', life: 3000});
|
this.$toast.add({severity:'error', summary:'Rejected', detail:'You have rejected', life: 3000});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
<\\/script>
|
||||||
</code></pre>
|
`
|
||||||
</TabPanel>
|
},
|
||||||
</TabView>
|
'composition-api': {
|
||||||
</div>
|
tabName: 'Composition API',
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
import LiveEditor from '../liveeditor/LiveEditor';
|
|
||||||
export default {
|
|
||||||
data() {
|
|
||||||
return {
|
|
||||||
sources: {
|
|
||||||
'template': {
|
|
||||||
content: `<template>
|
content: `<template>
|
||||||
<div class="layout-content">
|
<div>
|
||||||
<Toast />
|
|
||||||
<div class="content-section implementation">
|
|
||||||
<ConfirmPopup></ConfirmPopup>
|
<ConfirmPopup></ConfirmPopup>
|
||||||
|
<Toast />
|
||||||
|
|
||||||
<div class="card">
|
<div class="card">
|
||||||
<Button @click="confirm1($event)" icon="pi pi-check" label="Confirm" class="p-mr-2"></Button>
|
<Button @click="confirm1($event)" icon="pi pi-check" label="Confirm" class="p-mr-2"></Button>
|
||||||
<Button @click="confirm2($event)" icon="pi pi-times" label="Delete" class="p-button-danger p-button-outlined"></Button>
|
<Button @click="confirm2($event)" icon="pi pi-times" label="Delete" class="p-button-danger p-button-outlined"></Button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
export default {
|
|
||||||
methods: {
|
|
||||||
confirm1(event) {
|
|
||||||
this.$confirm.require({
|
|
||||||
target: event.currentTarget,
|
|
||||||
message: 'Are you sure you want to proceed?',
|
|
||||||
icon: 'pi pi-exclamation-triangle',
|
|
||||||
accept: () => {
|
|
||||||
this.$toast.add({severity:'info', summary:'Confirmed', detail:'You have accepted', life: 3000});
|
|
||||||
},
|
|
||||||
reject: () => {
|
|
||||||
this.$toast.add({severity:'info', summary:'Rejected', detail:'You have rejected', life: 3000});
|
|
||||||
}
|
|
||||||
});
|
|
||||||
},
|
|
||||||
confirm2(event) {
|
|
||||||
this.$confirm.require({
|
|
||||||
target: event.currentTarget,
|
|
||||||
message: 'Do you want to delete this record?',
|
|
||||||
icon: 'pi pi-info-circle',
|
|
||||||
acceptClass: 'p-button-danger',
|
|
||||||
accept: () => {
|
|
||||||
this.$toast.add({severity:'info', summary:'Confirmed', detail:'Record deleted', life: 3000});
|
|
||||||
},
|
|
||||||
reject: () => {
|
|
||||||
this.$toast.add({severity:'info', summary:'Rejected', detail:'You have rejected', life: 3000});
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}`
|
|
||||||
},
|
|
||||||
'api': {
|
|
||||||
content: `<template>
|
|
||||||
<div class="layout-content">
|
|
||||||
<Toast />
|
|
||||||
<div class="content-section implementation">
|
|
||||||
<ConfirmPopup></ConfirmPopup>
|
|
||||||
|
|
||||||
<div class="card">
|
|
||||||
<Button @click="confirm1($event)" icon="pi pi-check" label="Confirm" class="p-mr-2"></Button>
|
|
||||||
<Button @click="confirm2($event)" icon="pi pi-times" label="Delete" class="p-button-danger p-button-outlined"></Button>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
@ -387,7 +330,7 @@ export default defineComponent({
|
||||||
toast.add({severity:'info', summary:'Confirmed', detail:'You have accepted', life: 3000});
|
toast.add({severity:'info', summary:'Confirmed', detail:'You have accepted', life: 3000});
|
||||||
},
|
},
|
||||||
reject: () => {
|
reject: () => {
|
||||||
toast.add({severity:'info', summary:'Rejected', detail:'You have rejected', life: 3000});
|
toast.add({severity:'error', summary:'Rejected', detail:'You have rejected', life: 3000});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -402,7 +345,7 @@ export default defineComponent({
|
||||||
toast.add({severity:'info', summary:'Confirmed', detail:'Record deleted', life: 3000});
|
toast.add({severity:'info', summary:'Confirmed', detail:'Record deleted', life: 3000});
|
||||||
},
|
},
|
||||||
reject: () => {
|
reject: () => {
|
||||||
toast.add({severity:'info', summary:'Rejected', detail:'You have rejected', life: 3000});
|
toast.add({severity:'error', summary:'Rejected', detail:'You have rejected', life: 3000});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -410,13 +353,11 @@ export default defineComponent({
|
||||||
return { confirm1, confirm2 };
|
return { confirm1, confirm2 };
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
<\\/script>
|
||||||
`
|
`
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
|
||||||
components: {
|
|
||||||
LiveEditor
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
|
@ -1,7 +1,5 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="content-section documentation">
|
<AppDoc name="DialogDemo" :sources="sources">
|
||||||
<TabView>
|
|
||||||
<TabPanel header="Documentation">
|
|
||||||
<h5>Import</h5>
|
<h5>Import</h5>
|
||||||
<pre v-code.script><code>
|
<pre v-code.script><code>
|
||||||
import Dialog from 'primevue/dialog';
|
import Dialog from 'primevue/dialog';
|
||||||
|
@ -286,233 +284,18 @@ export default {
|
||||||
|
|
||||||
<h5>Dependencies</h5>
|
<h5>Dependencies</h5>
|
||||||
<p>None.</p>
|
<p>None.</p>
|
||||||
</TabPanel>
|
</AppDoc>
|
||||||
|
|
||||||
<TabPanel header="Source">
|
|
||||||
<div class="p-d-flex p-jc-between">
|
|
||||||
<a href="https://github.com/primefaces/primevue/tree/master/src/views/dialog" class="btn-viewsource" target="_blank" rel="noopener noreferrer">
|
|
||||||
<span>View on GitHub</span>
|
|
||||||
</a>
|
|
||||||
<LiveEditor name="DialogDemo" :sources="sources" :components="['Button']" />
|
|
||||||
</div>
|
|
||||||
<pre v-code><code><template v-pre>
|
|
||||||
<h5>Basic</h5>
|
|
||||||
<Button label="Show" icon="pi pi-external-link" @click="openBasic" />
|
|
||||||
<Dialog header="Header" v-model:visible="displayBasic" :style="{width: '50vw'}">
|
|
||||||
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
|
|
||||||
Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
|
|
||||||
Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat
|
|
||||||
cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
|
|
||||||
<template #footer>
|
|
||||||
<Button label="No" icon="pi pi-times" @click="closeBasic" class="p-button-text"/>
|
|
||||||
<Button label="Yes" icon="pi pi-check" @click="closeBasic" autofocus />
|
|
||||||
</template>
|
|
||||||
</Dialog>
|
|
||||||
|
|
||||||
<Button label="Long Content" icon="pi pi-external-link" @click="openBasic2" />
|
|
||||||
<Dialog header="Header" v-model:visible="displayBasic2" :style="{width: '50vw'}">
|
|
||||||
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi
|
|
||||||
ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in
|
|
||||||
culpa qui officia deserunt mollit anim id est laborum.</p>
|
|
||||||
|
|
||||||
<p>"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae
|
|
||||||
dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est,
|
|
||||||
qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam,
|
|
||||||
quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur,
|
|
||||||
vel illum qui dolorem eum fugiat quo voluptas nulla pariatur?</p>
|
|
||||||
|
|
||||||
<p>At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident,
|
|
||||||
similique sunt in culpa qui officia deserunt mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio. Nam libero tempore, cum soluta nobis est eligendi optio
|
|
||||||
cumque nihil impedit quo minus id quod maxime placeat facere possimus, omnis voluptas assumenda est, omnis dolor repellendus. Temporibus autem quibusdam et aut officiis debitis aut rerum necessitatibus saepe
|
|
||||||
eveniet ut et voluptates repudiandae sint et molestiae non recusandae. Itaque earum rerum hic tenetur a sapiente delectus, ut aut reiciendis voluptatibus maiores alias consequatur aut perferendis doloribus asperiores repellat.</p>
|
|
||||||
<template #footer>
|
|
||||||
<Button label="No" icon="pi pi-times" @click="closeBasic2" class="p-button-text"/>
|
|
||||||
<Button label="Yes" icon="pi pi-check" @click="closeBasic2" autofocus />
|
|
||||||
</template>
|
|
||||||
</Dialog>
|
|
||||||
|
|
||||||
<h5>Modal</h5>
|
|
||||||
<Button label="Show" icon="pi pi-external-link" @click="openModal" />
|
|
||||||
<Dialog header="Header" v-model:visible="displayModal" :style="{width: '50vw'}" :modal="true">
|
|
||||||
<p class="p-m-0">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco
|
|
||||||
laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
|
|
||||||
Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
|
|
||||||
<template #footer>
|
|
||||||
<Button label="No" icon="pi pi-times" @click="closeModal" class="p-button-text"/>
|
|
||||||
<Button label="Yes" icon="pi pi-check" @click="closeModal" autofocus />
|
|
||||||
</template>
|
|
||||||
</Dialog>
|
|
||||||
|
|
||||||
<h5>Responsive</h5>
|
|
||||||
<Button label="Show" icon="pi pi-external-link" @click="openResponsive" />
|
|
||||||
<Dialog header="Header" v-model:visible="displayResponsive" :breakpoints="{'960px': '75vw'}" :style="{width: '50vw'}">
|
|
||||||
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
|
|
||||||
Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
|
|
||||||
Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat
|
|
||||||
cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
|
|
||||||
<template #footer>
|
|
||||||
<Button label="No" icon="pi pi-times" @click="closeResponsive" class="p-button-text"/>
|
|
||||||
<Button label="Yes" icon="pi pi-check" @click="closeResponsive" autofocus />
|
|
||||||
</template>
|
|
||||||
</Dialog>
|
|
||||||
|
|
||||||
<h5>Confirmation</h5>
|
|
||||||
<Button label="Confirm" icon="pi pi-external-link" @click="openConfirmation" />
|
|
||||||
<Dialog header="Confirmation" v-model:visible="displayConfirmation" :style="{width: '350px'}" :modal="true">
|
|
||||||
<div class="confirmation-content">
|
|
||||||
<i class="pi pi-exclamation-triangle p-mr-3" style="font-size: 2rem" />
|
|
||||||
<span>Are you sure you want to proceed?</span>
|
|
||||||
</div>
|
|
||||||
<template #footer>
|
|
||||||
<Button label="No" icon="pi pi-times" @click="closeConfirmation" class="p-button-text"/>
|
|
||||||
<Button label="Yes" icon="pi pi-check" @click="closeConfirmation" class="p-button-text" autofocus />
|
|
||||||
</template>
|
|
||||||
</Dialog>
|
|
||||||
|
|
||||||
<h5>Maximizable</h5>
|
|
||||||
<Button label="Show" icon="pi pi-external-link" @click="openMaximizable" />
|
|
||||||
<Dialog header="Header" v-model:visible="displayMaximizable" :style="{width: '50vw'}" :maximizable="true" :modal="true">
|
|
||||||
<p class="p-m-0">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco
|
|
||||||
laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
|
|
||||||
Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
|
|
||||||
<template #footer>
|
|
||||||
<Button label="No" icon="pi pi-times" @click="closeMaximizable" class="p-button-text"/>
|
|
||||||
<Button label="Yes" icon="pi pi-check" @click="closeMaximizable" autofocus />
|
|
||||||
</template>
|
|
||||||
</Dialog>
|
|
||||||
|
|
||||||
<h5>Position</h5>
|
|
||||||
<div class="p-grid p-dir-col">
|
|
||||||
<div class="p-col">
|
|
||||||
<Button label="Left" icon="pi pi-arrow-right" @click="openPosition('left')" class="p-button-warning" />
|
|
||||||
<Button label="Right" icon="pi pi-arrow-left" @click="openPosition('right')" class="p-button-warning" />
|
|
||||||
</div>
|
|
||||||
<div class="p-col">
|
|
||||||
<Button label="Top" icon="pi pi-arrow-down" @click="openPosition('top')" class="p-button-warning" />
|
|
||||||
<Button label="TopLeft" icon="pi pi-arrow-down" @click="openPosition('topleft')" class="p-button-warning" />
|
|
||||||
<Button label="TopRight" icon="pi pi-arrow-down" @click="openPosition('topright')" class="p-button-warning" />
|
|
||||||
</div>
|
|
||||||
<div class="p-col">
|
|
||||||
<Button label="Bottom" icon="pi pi-arrow-up" @click="openPosition('bottom')" class="p-button-warning" />
|
|
||||||
<Button label="BottomLeft" icon="pi pi-arrow-up" @click="openPosition('bottomleft')" class="p-button-warning" />
|
|
||||||
<Button label="BottomRight" icon="pi pi-arrow-up" @click="openPosition('bottomright')" class="p-button-warning" />
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<Dialog header="Header" v-model:visible="displayPosition" :style="{width: '50vw'}" :position="position" :modal="true">
|
|
||||||
<p class="p-m-0">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco
|
|
||||||
laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
|
|
||||||
Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
|
|
||||||
<template #footer>
|
|
||||||
<Button label="No" icon="pi pi-times" @click="closePosition" class="p-button-text" />
|
|
||||||
<Button label="Yes" icon="pi pi-check" @click="closePosition" autofocus />
|
|
||||||
</template>
|
|
||||||
</Dialog>
|
|
||||||
</template>
|
|
||||||
</code></pre>
|
|
||||||
|
|
||||||
<pre v-code.script><code>
|
|
||||||
export default {
|
|
||||||
data() {
|
|
||||||
return {
|
|
||||||
displayBasic: false,
|
|
||||||
displayBasic2: false,
|
|
||||||
displayModal: false,
|
|
||||||
displayResponsive: false,
|
|
||||||
displayConfirmation: false,
|
|
||||||
displayMaximizable: false,
|
|
||||||
displayPosition: false,
|
|
||||||
position: 'center'
|
|
||||||
}
|
|
||||||
},
|
|
||||||
methods: {
|
|
||||||
openBasic() {
|
|
||||||
this.displayBasic = true;
|
|
||||||
},
|
|
||||||
closeBasic() {
|
|
||||||
this.displayBasic = false;
|
|
||||||
},
|
|
||||||
openBasic2() {
|
|
||||||
this.displayBasic2 = true;
|
|
||||||
},
|
|
||||||
closeBasic2() {
|
|
||||||
this.displayBasic2 = false;
|
|
||||||
},
|
|
||||||
openResponsive() {
|
|
||||||
this.displayResponsive = true;
|
|
||||||
},
|
|
||||||
closeResponsive() {
|
|
||||||
this.displayResponsive = false;
|
|
||||||
},
|
|
||||||
openModal() {
|
|
||||||
this.displayModal = true;
|
|
||||||
},
|
|
||||||
closeModal() {
|
|
||||||
this.displayModal = false;
|
|
||||||
},
|
|
||||||
openConfirmation() {
|
|
||||||
this.displayConfirmation = true;
|
|
||||||
},
|
|
||||||
closeConfirmation() {
|
|
||||||
this.displayConfirmation = false;
|
|
||||||
},
|
|
||||||
openMaximizable() {
|
|
||||||
this.displayMaximizable = true;
|
|
||||||
},
|
|
||||||
closeMaximizable() {
|
|
||||||
this.displayMaximizable = false;
|
|
||||||
},
|
|
||||||
openPosition(position) {
|
|
||||||
this.position = position;
|
|
||||||
this.displayPosition = true;
|
|
||||||
},
|
|
||||||
closePosition() {
|
|
||||||
this.displayPosition = false;
|
|
||||||
}
|
|
||||||
},
|
|
||||||
components: {
|
|
||||||
'DialogDoc': DialogDoc
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
</code></pre>
|
|
||||||
|
|
||||||
<pre v-code.css><code>
|
|
||||||
.p-button {
|
|
||||||
margin: 0 .5rem 0 0;
|
|
||||||
min-width: 10rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
p {
|
|
||||||
margin: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.confirmation-content {
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.p-dialog .p-button {
|
|
||||||
min-width: 6rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
</code></pre>
|
|
||||||
</TabPanel>
|
|
||||||
</TabView>
|
|
||||||
</div>
|
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import LiveEditor from '../liveeditor/LiveEditor';
|
|
||||||
export default {
|
export default {
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
sources: {
|
sources: {
|
||||||
'template': {
|
'options-api': {
|
||||||
content: `<template>
|
tabName: 'Source',
|
||||||
<div class="layout-content">
|
content: `
|
||||||
<div class="content-section implementation">
|
<template>
|
||||||
<div class="card">
|
<div class="card">
|
||||||
<h5>Basic</h5>
|
<h5>Basic</h5>
|
||||||
<Button label="Show" icon="pi pi-external-link" @click="openBasic" />
|
<Button label="Show" icon="pi pi-external-link" @click="openBasic" />
|
||||||
|
@ -627,8 +410,6 @@ export default {
|
||||||
</template>
|
</template>
|
||||||
</Dialog>
|
</Dialog>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
@ -690,8 +471,216 @@ export default {
|
||||||
this.displayPosition = false;
|
this.displayPosition = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}`,
|
}
|
||||||
style: `<style scoped lang="scss">
|
<\\/script>
|
||||||
|
|
||||||
|
<style scoped lang="scss">
|
||||||
|
.p-button {
|
||||||
|
margin: 0.3rem .5rem;
|
||||||
|
min-width: 10rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
p {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.confirmation-content {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.p-dialog .p-button {
|
||||||
|
min-width: 6rem;
|
||||||
|
}
|
||||||
|
</style>`
|
||||||
|
},
|
||||||
|
'composition-api': {
|
||||||
|
tabName: 'Composition API',
|
||||||
|
content: `
|
||||||
|
<template>
|
||||||
|
<div class="card">
|
||||||
|
<h5>Basic</h5>
|
||||||
|
<Button label="Show" icon="pi pi-external-link" @click="openBasic" />
|
||||||
|
<Dialog header="Header" v-model:visible="displayBasic" :style="{width: '50vw'}">
|
||||||
|
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
|
||||||
|
Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
|
||||||
|
Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat
|
||||||
|
cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
|
||||||
|
<template #footer>
|
||||||
|
<Button label="No" icon="pi pi-times" @click="closeBasic" class="p-button-text"/>
|
||||||
|
<Button label="Yes" icon="pi pi-check" @click="closeBasic" autofocus />
|
||||||
|
</template>
|
||||||
|
</Dialog>
|
||||||
|
|
||||||
|
<Button label="Long Content" icon="pi pi-external-link" @click="openBasic2" />
|
||||||
|
<Dialog header="Header" v-model:visible="displayBasic2" :style="{width: '50vw'}">
|
||||||
|
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi
|
||||||
|
ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in
|
||||||
|
culpa qui officia deserunt mollit anim id est laborum.</p>
|
||||||
|
|
||||||
|
<p>"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae
|
||||||
|
dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est,
|
||||||
|
qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam,
|
||||||
|
quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur,
|
||||||
|
vel illum qui dolorem eum fugiat quo voluptas nulla pariatur?</p>
|
||||||
|
|
||||||
|
<p>At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident,
|
||||||
|
similique sunt in culpa qui officia deserunt mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio. Nam libero tempore, cum soluta nobis est eligendi optio
|
||||||
|
cumque nihil impedit quo minus id quod maxime placeat facere possimus, omnis voluptas assumenda est, omnis dolor repellendus. Temporibus autem quibusdam et aut officiis debitis aut rerum necessitatibus saepe
|
||||||
|
eveniet ut et voluptates repudiandae sint et molestiae non recusandae. Itaque earum rerum hic tenetur a sapiente delectus, ut aut reiciendis voluptatibus maiores alias consequatur aut perferendis doloribus asperiores repellat.</p>
|
||||||
|
<template #footer>
|
||||||
|
<Button label="No" icon="pi pi-times" @click="closeBasic2" class="p-button-text"/>
|
||||||
|
<Button label="Yes" icon="pi pi-check" @click="closeBasic2" autofocus />
|
||||||
|
</template>
|
||||||
|
</Dialog>
|
||||||
|
|
||||||
|
<h5>Modal</h5>
|
||||||
|
<Button label="Show" icon="pi pi-external-link" @click="openModal" />
|
||||||
|
<Dialog header="Header" v-model:visible="displayModal" :style="{width: '50vw'}" :modal="true">
|
||||||
|
<p class="p-m-0">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco
|
||||||
|
laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
|
||||||
|
Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
|
||||||
|
<template #footer>
|
||||||
|
<Button label="No" icon="pi pi-times" @click="closeModal" class="p-button-text"/>
|
||||||
|
<Button label="Yes" icon="pi pi-check" @click="closeModal" autofocus />
|
||||||
|
</template>
|
||||||
|
</Dialog>
|
||||||
|
|
||||||
|
<h5>Responsive</h5>
|
||||||
|
<Button label="Show" icon="pi pi-external-link" @click="openResponsive" />
|
||||||
|
<Dialog header="Header" v-model:visible="displayResponsive" :breakpoints="{'960px': '75vw'}" :style="{width: '50vw'}">
|
||||||
|
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
|
||||||
|
Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
|
||||||
|
Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat
|
||||||
|
cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
|
||||||
|
<template #footer>
|
||||||
|
<Button label="No" icon="pi pi-times" @click="closeResponsive" class="p-button-text"/>
|
||||||
|
<Button label="Yes" icon="pi pi-check" @click="closeResponsive" autofocus />
|
||||||
|
</template>
|
||||||
|
</Dialog>
|
||||||
|
|
||||||
|
<h5>Confirmation</h5>
|
||||||
|
<Button label="Confirm" icon="pi pi-external-link" @click="openConfirmation" />
|
||||||
|
<Dialog header="Confirmation" v-model:visible="displayConfirmation" :style="{width: '350px'}" :modal="true">
|
||||||
|
<div class="confirmation-content">
|
||||||
|
<i class="pi pi-exclamation-triangle p-mr-3" style="font-size: 2rem" />
|
||||||
|
<span>Are you sure you want to proceed?</span>
|
||||||
|
</div>
|
||||||
|
<template #footer>
|
||||||
|
<Button label="No" icon="pi pi-times" @click="closeConfirmation" class="p-button-text"/>
|
||||||
|
<Button label="Yes" icon="pi pi-check" @click="closeConfirmation" class="p-button-text" autofocus />
|
||||||
|
</template>
|
||||||
|
</Dialog>
|
||||||
|
|
||||||
|
<h5>Maximizable</h5>
|
||||||
|
<Button label="Show" icon="pi pi-external-link" @click="openMaximizable" />
|
||||||
|
<Dialog header="Header" v-model:visible="displayMaximizable" :style="{width: '50vw'}" :maximizable="true" :modal="true">
|
||||||
|
<p class="p-m-0">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco
|
||||||
|
laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
|
||||||
|
Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
|
||||||
|
<template #footer>
|
||||||
|
<Button label="No" icon="pi pi-times" @click="closeMaximizable" class="p-button-text"/>
|
||||||
|
<Button label="Yes" icon="pi pi-check" @click="closeMaximizable" autofocus />
|
||||||
|
</template>
|
||||||
|
</Dialog>
|
||||||
|
|
||||||
|
<h5>Position</h5>
|
||||||
|
<div class="p-grid p-dir-col">
|
||||||
|
<div class="p-col">
|
||||||
|
<Button label="Left" icon="pi pi-arrow-right" @click="openPosition('left')" class="p-button-warning" />
|
||||||
|
<Button label="Right" icon="pi pi-arrow-left" @click="openPosition('right')" class="p-button-warning" />
|
||||||
|
</div>
|
||||||
|
<div class="p-col">
|
||||||
|
<Button label="Top" icon="pi pi-arrow-down" @click="openPosition('top')" class="p-button-warning" />
|
||||||
|
<Button label="TopLeft" icon="pi pi-arrow-down" @click="openPosition('topleft')" class="p-button-warning" />
|
||||||
|
<Button label="TopRight" icon="pi pi-arrow-down" @click="openPosition('topright')" class="p-button-warning" />
|
||||||
|
</div>
|
||||||
|
<div class="p-col">
|
||||||
|
<Button label="Bottom" icon="pi pi-arrow-up" @click="openPosition('bottom')" class="p-button-warning" />
|
||||||
|
<Button label="BottomLeft" icon="pi pi-arrow-up" @click="openPosition('bottomleft')" class="p-button-warning" />
|
||||||
|
<Button label="BottomRight" icon="pi pi-arrow-up" @click="openPosition('bottomright')" class="p-button-warning" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<Dialog header="Header" v-model:visible="displayPosition" :style="{width: '50vw'}" :position="position" :modal="true">
|
||||||
|
<p class="p-m-0">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco
|
||||||
|
laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
|
||||||
|
Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
|
||||||
|
<template #footer>
|
||||||
|
<Button label="No" icon="pi pi-times" @click="closePosition" class="p-button-text" />
|
||||||
|
<Button label="Yes" icon="pi pi-check" @click="closePosition" autofocus />
|
||||||
|
</template>
|
||||||
|
</Dialog>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import { ref } from 'vue';
|
||||||
|
|
||||||
|
export default {
|
||||||
|
setup() {
|
||||||
|
const displayBasic = ref(false);
|
||||||
|
const displayBasic2 = ref(false);
|
||||||
|
const displayModal = ref(false);
|
||||||
|
const displayResponsive = ref(false);
|
||||||
|
const displayConfirmation = ref(false);
|
||||||
|
const displayMaximizable = ref(false);
|
||||||
|
const displayPosition = ref(false);
|
||||||
|
const position = ref('center');
|
||||||
|
|
||||||
|
const openBasic = () => {
|
||||||
|
displayBasic.value = true;
|
||||||
|
};
|
||||||
|
const closeBasic = () => {
|
||||||
|
displayBasic.value = false;
|
||||||
|
};
|
||||||
|
const openBasic2 = () => {
|
||||||
|
displayBasic2.value = true;
|
||||||
|
};
|
||||||
|
const closeBasic2 = () => {
|
||||||
|
displayBasic2.value = false;
|
||||||
|
};
|
||||||
|
const openResponsive = () => {
|
||||||
|
displayResponsive.value = true;
|
||||||
|
};
|
||||||
|
const closeResponsive = () => {
|
||||||
|
displayResponsive.value = false;
|
||||||
|
};
|
||||||
|
const openModal = () => {
|
||||||
|
displayModal.value = true;
|
||||||
|
};
|
||||||
|
const closeModal = () => {
|
||||||
|
displayModal.value = false;
|
||||||
|
}
|
||||||
|
const openConfirmation = () => {
|
||||||
|
displayConfirmation.value = true;
|
||||||
|
};
|
||||||
|
const closeConfirmation = () => {
|
||||||
|
displayConfirmation.value = false;
|
||||||
|
};
|
||||||
|
const openMaximizable = () => {
|
||||||
|
displayMaximizable.value = true;
|
||||||
|
};
|
||||||
|
const closeMaximizable = () => {
|
||||||
|
displayMaximizable.value = false;
|
||||||
|
};
|
||||||
|
const openPosition = (pos) => {
|
||||||
|
position.value = pos;
|
||||||
|
displayPosition.value = true;
|
||||||
|
};
|
||||||
|
const closePosition = () => {
|
||||||
|
displayPosition.value = false;
|
||||||
|
};
|
||||||
|
|
||||||
|
return { displayBasic, displayBasic2, displayModal, displayResponsive, displayConfirmation, displayMaximizable,
|
||||||
|
displayPosition, position, openBasic, openBasic2, closeBasic, closeBasic2, openResponsive, closeResponsive,
|
||||||
|
openModal, closeModal, openConfirmation, closeConfirmation, openMaximizable, closeMaximizable, openPosition, closePosition}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
<\\/script>
|
||||||
|
|
||||||
|
<style scoped lang="scss">
|
||||||
.p-button {
|
.p-button {
|
||||||
margin: 0.3rem .5rem;
|
margin: 0.3rem .5rem;
|
||||||
min-width: 10rem;
|
min-width: 10rem;
|
||||||
|
@ -714,9 +703,6 @@ p {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
|
||||||
components: {
|
|
||||||
LiveEditor
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
|
@ -1,7 +1,5 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="content-section documentation">
|
<AppDoc name="FileUploadDemo" :sources="sources">
|
||||||
<TabView>
|
|
||||||
<TabPanel header="Documentation">
|
|
||||||
<h5>Import</h5>
|
<h5>Import</h5>
|
||||||
<pre v-code.script><code>
|
<pre v-code.script><code>
|
||||||
import FileUpload from 'primevue/fileupload';
|
import FileUpload from 'primevue/fileupload';
|
||||||
|
@ -331,58 +329,21 @@ myUploader(event) {
|
||||||
|
|
||||||
<h5>Dependencies</h5>
|
<h5>Dependencies</h5>
|
||||||
<p>None.</p>
|
<p>None.</p>
|
||||||
</TabPanel>
|
</AppDoc>
|
||||||
|
|
||||||
<TabPanel header="Source">
|
|
||||||
<div class="p-d-flex p-jc-between">
|
|
||||||
<a href="https://github.com/primefaces/primevue/tree/master/src/views/fileupload" class="btn-viewsource" target="_blank" rel="noopener noreferrer">
|
|
||||||
<span>View on GitHub</span>
|
|
||||||
</a>
|
|
||||||
<LiveEditor name="FileUploadDemo" :sources="sources" :toastService="true" />
|
|
||||||
</div>
|
|
||||||
<pre v-code><code><template v-pre>
|
|
||||||
<h3>Advanced</h3>
|
|
||||||
<FileUpload name="demo[]" url="./upload.php" @upload="onUpload" :multiple="true" accept="image/*" :maxFileSize="1000000">
|
|
||||||
<template #empty>
|
|
||||||
<p>Drag and drop files to here to upload.</p>
|
|
||||||
</template>
|
|
||||||
</FileUpload>
|
|
||||||
|
|
||||||
<h3>Basic</h3>
|
|
||||||
<FileUpload mode="basic" name="demo[]" url="./upload.php" accept="image/*" :maxFileSize="1000000" @upload="onUpload" />
|
|
||||||
|
|
||||||
<h3>Basic with Auto</h3>
|
|
||||||
<FileUpload mode="basic" name="demo[]" url="./upload.php" accept="image/*" :maxFileSize="1000000" @upload="onUpload" :auto="true" chooseLabel="Browse" />
|
|
||||||
</template>
|
|
||||||
</code></pre>
|
|
||||||
|
|
||||||
<pre v-code.script><code>
|
|
||||||
export default {
|
|
||||||
methods: {
|
|
||||||
onUpload() {
|
|
||||||
this.$toast.add({severity: 'info', summary: 'Success', detail: 'File Uploaded', life: 3000});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
</code></pre>
|
|
||||||
</TabPanel>
|
|
||||||
</TabView>
|
|
||||||
</div>
|
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import LiveEditor from '../liveeditor/LiveEditor';
|
|
||||||
export default {
|
export default {
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
sources: {
|
sources: {
|
||||||
'template': {
|
'options-api': {
|
||||||
content: `<template>
|
tabName: 'Source',
|
||||||
<div class="layout-content">
|
content: `
|
||||||
<Toast />
|
<template>
|
||||||
<div class="content-section implementation">
|
|
||||||
<div class="card">
|
<div class="card">
|
||||||
|
<Toast />
|
||||||
|
|
||||||
<h5>Advanced</h5>
|
<h5>Advanced</h5>
|
||||||
<FileUpload name="demo[]" url="./upload.php" @upload="onUpload" :multiple="true" accept="image/*" :maxFileSize="1000000">
|
<FileUpload name="demo[]" url="./upload.php" @upload="onUpload" :multiple="true" accept="image/*" :maxFileSize="1000000">
|
||||||
<template #empty>
|
<template #empty>
|
||||||
|
@ -396,8 +357,6 @@ export default {
|
||||||
<h5>Basic with Auto</h5>
|
<h5>Basic with Auto</h5>
|
||||||
<FileUpload mode="basic" name="demo[]" url="./upload.php" accept="image/*" :maxFileSize="1000000" @upload="onUpload" :auto="true" chooseLabel="Browse" />
|
<FileUpload mode="basic" name="demo[]" url="./upload.php" accept="image/*" :maxFileSize="1000000" @upload="onUpload" :auto="true" chooseLabel="Browse" />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
@ -407,13 +366,51 @@ export default {
|
||||||
this.$toast.add({severity: 'info', summary: 'Success', detail: 'File Uploaded', life: 3000});
|
this.$toast.add({severity: 'info', summary: 'Success', detail: 'File Uploaded', life: 3000});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}`
|
}
|
||||||
}
|
<\\/script>
|
||||||
}
|
`
|
||||||
}
|
|
||||||
},
|
},
|
||||||
components: {
|
'composition-api': {
|
||||||
LiveEditor
|
tabName: 'Composition API',
|
||||||
|
content: `
|
||||||
|
<template>
|
||||||
|
<div class="card">
|
||||||
|
<Toast />
|
||||||
|
|
||||||
|
<h5>Advanced</h5>
|
||||||
|
<FileUpload name="demo[]" url="./upload.php" @upload="onUpload" :multiple="true" accept="image/*" :maxFileSize="1000000">
|
||||||
|
<template #empty>
|
||||||
|
<p>Drag and drop files to here to upload.</p>
|
||||||
|
</template>
|
||||||
|
</FileUpload>
|
||||||
|
|
||||||
|
<h5>Basic</h5>
|
||||||
|
<FileUpload mode="basic" name="demo[]" url="./upload.php" accept="image/*" :maxFileSize="1000000" @upload="onUpload" />
|
||||||
|
|
||||||
|
<h5>Basic with Auto</h5>
|
||||||
|
<FileUpload mode="basic" name="demo[]" url="./upload.php" accept="image/*" :maxFileSize="1000000" @upload="onUpload" :auto="true" chooseLabel="Browse" />
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import { ref } from 'vue';
|
||||||
|
import { useToast } from 'primevue/usetoast';
|
||||||
|
|
||||||
|
export default {
|
||||||
|
setup() {
|
||||||
|
const toast = useToast();
|
||||||
|
const onUpload = () => {
|
||||||
|
toast.add({severity: 'info', summary: 'Success', detail: 'File Uploaded', life: 3000});
|
||||||
|
}
|
||||||
|
|
||||||
|
return { onUpload };
|
||||||
|
}
|
||||||
|
}
|
||||||
|
<\\/script>
|
||||||
|
`
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
|
@ -1,7 +1,5 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="content-section documentation">
|
<AppDoc name="OverlayPanelDemo" :sources="sources" service="ProductService" data="products-small">
|
||||||
<TabView>
|
|
||||||
<TabPanel header="Documentation">
|
|
||||||
<h5>Import</h5>
|
<h5>Import</h5>
|
||||||
<pre v-code.script><code>
|
<pre v-code.script><code>
|
||||||
import OverlayPanel from 'primevue/overlaypanel';
|
import OverlayPanel from 'primevue/overlaypanel';
|
||||||
|
@ -165,91 +163,27 @@ toggle(event) {
|
||||||
|
|
||||||
<h5>Dependencies</h5>
|
<h5>Dependencies</h5>
|
||||||
<p>None.</p>
|
<p>None.</p>
|
||||||
</TabPanel>
|
</AppDoc>
|
||||||
|
|
||||||
<TabPanel header="Source">
|
|
||||||
<div class="p-d-flex p-jc-between">
|
|
||||||
<a href="https://github.com/primefaces/primevue/tree/master/src/views/overlaypanel" class="btn-viewsource" target="_blank" rel="noopener noreferrer">
|
|
||||||
<span>View on GitHub</span>
|
|
||||||
</a>
|
|
||||||
<LiveEditor name="OverlayPanelDemo" :sources="sources" service="ProductService" data="products-small" :toastService="true" :components="['Button', 'DataTable', 'Column']" />
|
|
||||||
</div>
|
|
||||||
<pre v-code><code><template v-pre>
|
|
||||||
<Button type="button" icon="pi pi-search" :label="selectedProduct ? selectedProduct.name : 'Select a Product'" @click="toggle" aria:haspopup="true" aria-controls="overlay_panel" />
|
|
||||||
|
|
||||||
<OverlayPanel ref="op" appendTo="body" :showCloseIcon="true" id="overlay_panel" style="width: 450px" :breakpoints="{'960px': '75vw'}">
|
|
||||||
<DataTable :value="products" v-model:selection="selectedProduct" selectionMode="single" :paginator="true" :rows="5" @row-select="onProductSelect">
|
|
||||||
<Column field="name" header="Name" sortable style="width: 50%"></Column>
|
|
||||||
<Column header="Image" style="width: 20%">
|
|
||||||
<template #body="slotProps">
|
|
||||||
<img :src="'demo/images/product/' + slotProps.data.image" :alt="slotProps.data.image" class="product-image" />
|
|
||||||
</template>
|
|
||||||
</Column>
|
|
||||||
<Column field="price" header="Price" sortable style="width: 30%">
|
|
||||||
<template #body="slotProps">
|
|
||||||
{{formatCurrency(slotProps.data.price)}}
|
|
||||||
</template>
|
|
||||||
</Column>
|
|
||||||
</DataTable>
|
|
||||||
</OverlayPanel>
|
|
||||||
</template>
|
|
||||||
</code></pre>
|
|
||||||
|
|
||||||
<pre v-code.script><code>
|
|
||||||
import ProductService from '../../service/ProductService';
|
|
||||||
|
|
||||||
export default {
|
|
||||||
data() {
|
|
||||||
return {
|
|
||||||
products: null,
|
|
||||||
selectedProduct: null
|
|
||||||
}
|
|
||||||
},
|
|
||||||
productService: null,
|
|
||||||
created() {
|
|
||||||
this.productService = new ProductService();
|
|
||||||
},
|
|
||||||
mounted() {
|
|
||||||
this.productService.getProductsSmall().then(data => this.products = data);
|
|
||||||
},
|
|
||||||
methods: {
|
|
||||||
toggle(event) {
|
|
||||||
this.$refs.op.toggle(event);
|
|
||||||
},
|
|
||||||
formatCurrency(value) {
|
|
||||||
return value.toLocaleString('en-US', {style: 'currency', currency: 'USD'});
|
|
||||||
},
|
|
||||||
onProductSelect(event) {
|
|
||||||
this.$refs.op.hide();
|
|
||||||
this.$toast.add({severity:'info', summary: 'Product Selected', detail: event.data.name, life: 3000});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
</code></pre>
|
|
||||||
</TabPanel>
|
|
||||||
</TabView>
|
|
||||||
</div>
|
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import LiveEditor from '../liveeditor/LiveEditor';
|
|
||||||
export default {
|
export default {
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
sources: {
|
sources: {
|
||||||
'template': {
|
'options-api': {
|
||||||
content: `<template>
|
tabName: 'Source',
|
||||||
<div class="layout-content">
|
content: `
|
||||||
<Toast />
|
<template>
|
||||||
<div class="content-section implementation">
|
|
||||||
<div class="card">
|
<div class="card">
|
||||||
|
<Toast />
|
||||||
|
|
||||||
<Button type="button" icon="pi pi-search" :label="selectedProduct ? selectedProduct.name : 'Select a Product'" @click="toggle" aria:haspopup="true" aria-controls="overlay_panel" />
|
<Button type="button" icon="pi pi-search" :label="selectedProduct ? selectedProduct.name : 'Select a Product'" @click="toggle" aria:haspopup="true" aria-controls="overlay_panel" />
|
||||||
|
|
||||||
<OverlayPanel ref="op" appendTo="body" :showCloseIcon="true" id="overlay_panel" style="width: 450px" :breakpoints="{'960px': '75vw'}">
|
<OverlayPanel ref="op" appendTo="body" :showCloseIcon="true" id="overlay_panel" style="width: 450px" :breakpoints="{'960px': '75vw'}">
|
||||||
<DataTable :value="products" v-model:selection="selectedProduct" selectionMode="single" :paginator="true" :rows="5" @rowSelect="onProductSelect">
|
<DataTable :value="products" v-model:selection="selectedProduct" selectionMode="single" :paginator="true" :rows="5" @rowSelect="onProductSelect" responsiveLayout="scroll" >
|
||||||
<Column field="name" header="Name" sortable style="width: 50%"></Column>
|
<Column field="name" header="Name" sortable style="width: 50%"></Column>
|
||||||
<Column header="Image"style="width: 20%">
|
<Column header="Image" style="width: 20%">
|
||||||
<template #body="slotProps">
|
<template #body="slotProps">
|
||||||
<img src="https://www.primefaces.org/wp-content/uploads/2020/05/placeholder.png" :alt="slotProps.data.image" class="product-image" />
|
<img src="https://www.primefaces.org/wp-content/uploads/2020/05/placeholder.png" :alt="slotProps.data.image" class="product-image" />
|
||||||
</template>
|
</template>
|
||||||
|
@ -262,12 +196,11 @@ export default {
|
||||||
</DataTable>
|
</DataTable>
|
||||||
</OverlayPanel>
|
</OverlayPanel>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import ProductService from '../service/ProductService';
|
import ProductService from './service/ProductService';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
@ -294,8 +227,80 @@ export default {
|
||||||
this.$toast.add({severity:'info', summary: 'Product Selected', detail: event.data.name, life: 3000});
|
this.$toast.add({severity:'info', summary: 'Product Selected', detail: event.data.name, life: 3000});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}`,
|
}
|
||||||
style: `<style lang="scss" scoped>
|
<\\/script>
|
||||||
|
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
button {
|
||||||
|
min-width: 15rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.product-image {
|
||||||
|
width: 50px;
|
||||||
|
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23)
|
||||||
|
}
|
||||||
|
</style>`
|
||||||
|
},
|
||||||
|
'composition-api': {
|
||||||
|
tabName: 'Composition API',
|
||||||
|
content: `
|
||||||
|
<template>
|
||||||
|
<div class="card">
|
||||||
|
<Toast />
|
||||||
|
|
||||||
|
<Button type="button" icon="pi pi-search" :label="selectedProduct ? selectedProduct.name : 'Select a Product'" @click="toggle" aria:haspopup="true" aria-controls="overlay_panel" />
|
||||||
|
|
||||||
|
<OverlayPanel ref="op" appendTo="body" :showCloseIcon="true" id="overlay_panel" style="width: 450px" :breakpoints="{'960px': '75vw'}">
|
||||||
|
<DataTable :value="products" v-model:selection="selectedProduct" selectionMode="single" :paginator="true" :rows="5" @rowSelect="onProductSelect" responsiveLayout="scroll" >
|
||||||
|
<Column field="name" header="Name" sortable style="width: 50%"></Column>
|
||||||
|
<Column header="Image" style="width: 20%">
|
||||||
|
<template #body="slotProps">
|
||||||
|
<img src="https://www.primefaces.org/wp-content/uploads/2020/05/placeholder.png" :alt="slotProps.data.image" class="product-image" />
|
||||||
|
</template>
|
||||||
|
</Column>
|
||||||
|
<Column field="price" header="Price" sortable style="width: 30%">
|
||||||
|
<template #body="slotProps">
|
||||||
|
{{formatCurrency(slotProps.data.price)}}
|
||||||
|
</template>
|
||||||
|
</Column>
|
||||||
|
</DataTable>
|
||||||
|
</OverlayPanel>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import { ref, onMounted } from 'vue';
|
||||||
|
import { useToast } from 'primevue/usetoast';
|
||||||
|
import ProductService from './service/ProductService';
|
||||||
|
|
||||||
|
export default {
|
||||||
|
setup() {
|
||||||
|
onMounted(() => {
|
||||||
|
productService.value.getProductsSmall().then(data => products.value = data);
|
||||||
|
})
|
||||||
|
|
||||||
|
const toast = useToast();
|
||||||
|
const op = ref();
|
||||||
|
const productService = ref(new ProductService());
|
||||||
|
const products = ref();
|
||||||
|
const selectedProduct = ref();
|
||||||
|
const toggle = (event) => {
|
||||||
|
op.value.toggle(event);
|
||||||
|
};
|
||||||
|
const formatCurrency = (value) => {
|
||||||
|
return value.toLocaleString('en-US', {style: 'currency', currency: 'USD'});
|
||||||
|
};
|
||||||
|
const onProductSelect = (event) => {
|
||||||
|
op.value.hide();
|
||||||
|
toast.add({severity:'info', summary: 'Product Selected', detail: event.data.name, life: 3000});
|
||||||
|
};
|
||||||
|
|
||||||
|
return { op, productService, products, selectedProduct, toggle, formatCurrency, onProductSelect}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
<\\/script>
|
||||||
|
|
||||||
|
<style lang="scss" scoped>
|
||||||
button {
|
button {
|
||||||
min-width: 15rem;
|
min-width: 15rem;
|
||||||
}
|
}
|
||||||
|
@ -308,9 +313,6 @@ button {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
|
||||||
components: {
|
|
||||||
LiveEditor
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
|
@ -1,7 +1,5 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="content-section documentation">
|
<AppDoc name="SidebarDemo" :sources="sources">
|
||||||
<TabView>
|
|
||||||
<TabPanel header="Documentation">
|
|
||||||
<h5>Import</h5>
|
<h5>Import</h5>
|
||||||
<pre v-code.script><code>
|
<pre v-code.script><code>
|
||||||
import Sidebar from 'primevue/sidebar';
|
import Sidebar from 'primevue/sidebar';
|
||||||
|
@ -201,73 +199,18 @@ import Sidebar from 'primevue/sidebar';
|
||||||
|
|
||||||
<h5>Dependencies</h5>
|
<h5>Dependencies</h5>
|
||||||
<p>None.</p>
|
<p>None.</p>
|
||||||
</TabPanel>
|
</AppDoc>
|
||||||
|
|
||||||
<TabPanel header="Source">
|
|
||||||
<div class="p-d-flex p-jc-between">
|
|
||||||
<a href="https://github.com/primefaces/primevue/tree/master/src/views/sidebar" class="btn-viewsource" target="_blank" rel="noopener noreferrer">
|
|
||||||
<span>View on GitHub</span>
|
|
||||||
</a>
|
|
||||||
<LiveEditor name="SidebarDemo" :sources="sources" :components="['Button']"/>
|
|
||||||
</div>
|
|
||||||
<pre v-code><code><template v-pre>
|
|
||||||
<Button icon="pi pi-arrow-right" @click="visibleLeft = true" class="p-mr-2" />
|
|
||||||
<Button icon="pi pi-arrow-left" @click="visibleRight = true" class="p-mr-2" />
|
|
||||||
<Button icon="pi pi-arrow-down" @click="visibleTop = true" class="p-mr-2" />
|
|
||||||
<Button icon="pi pi-arrow-up" @click="visibleBottom = true" class="p-mr-2" />
|
|
||||||
<Button icon="pi pi-th-large" @click="visibleFull = true" />
|
|
||||||
|
|
||||||
<Sidebar v-model:visible="visibleLeft" :baseZIndex="1000">
|
|
||||||
<h3>Left Sidebar</h3>
|
|
||||||
</Sidebar>
|
|
||||||
|
|
||||||
<Sidebar v-model:visible="visibleRight" :baseZIndex="1000" position="right">
|
|
||||||
<h3>Right Sidebar</h3>
|
|
||||||
</Sidebar>
|
|
||||||
|
|
||||||
<Sidebar v-model:visible="visibleTop" :baseZIndex="1000" position="top">
|
|
||||||
<h3>Top Sidebar</h3>
|
|
||||||
</Sidebar>
|
|
||||||
|
|
||||||
<Sidebar v-model:visible="visibleBottom" :baseZIndex="1000" position="bottom">
|
|
||||||
<h3>Bottom Sidebar</h3>
|
|
||||||
</Sidebar>
|
|
||||||
|
|
||||||
<Sidebar v-model:visible="visibleFull" :baseZIndex="1000" position="full">
|
|
||||||
<h3>Full Screen</h3>
|
|
||||||
</Sidebar>
|
|
||||||
</template>
|
|
||||||
</code></pre>
|
|
||||||
|
|
||||||
<pre v-code.script><code>
|
|
||||||
export default {
|
|
||||||
data() {
|
|
||||||
return {
|
|
||||||
visibleLeft: false,
|
|
||||||
visibleRight: false,
|
|
||||||
visibleTop: false,
|
|
||||||
visibleBottom: false,
|
|
||||||
visibleFull: false
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
</code></pre>
|
|
||||||
</TabPanel>
|
|
||||||
</TabView>
|
|
||||||
</div>
|
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import LiveEditor from '../liveeditor/LiveEditor';
|
|
||||||
export default {
|
export default {
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
sources: {
|
sources: {
|
||||||
'template': {
|
'options-api': {
|
||||||
content: `<template>
|
tabName: 'Source',
|
||||||
<div class="layout-content">
|
content: `
|
||||||
<div class="content-section implementation">
|
<template>
|
||||||
<div class="card">
|
<div class="card">
|
||||||
<Button icon="pi pi-arrow-right" @click="visibleLeft = true" class="p-mr-2" />
|
<Button icon="pi pi-arrow-right" @click="visibleLeft = true" class="p-mr-2" />
|
||||||
<Button icon="pi pi-arrow-left" @click="visibleRight = true" class="p-mr-2" />
|
<Button icon="pi pi-arrow-left" @click="visibleRight = true" class="p-mr-2" />
|
||||||
|
@ -295,8 +238,6 @@ export default {
|
||||||
<h3>Full Screen</h3>
|
<h3>Full Screen</h3>
|
||||||
</Sidebar>
|
</Sidebar>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
@ -310,13 +251,62 @@ export default {
|
||||||
visibleFull: false
|
visibleFull: false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}`
|
}
|
||||||
}
|
<\\/script>
|
||||||
}
|
`
|
||||||
}
|
|
||||||
},
|
},
|
||||||
components: {
|
'composition-api': {
|
||||||
LiveEditor
|
tabName: 'Composition API',
|
||||||
|
content: `
|
||||||
|
<template>
|
||||||
|
<div class="card">
|
||||||
|
<Button icon="pi pi-arrow-right" @click="visibleLeft = true" class="p-mr-2" />
|
||||||
|
<Button icon="pi pi-arrow-left" @click="visibleRight = true" class="p-mr-2" />
|
||||||
|
<Button icon="pi pi-arrow-down" @click="visibleTop = true" class="p-mr-2" />
|
||||||
|
<Button icon="pi pi-arrow-up" @click="visibleBottom = true" class="p-mr-2" />
|
||||||
|
<Button icon="pi pi-th-large" @click="visibleFull = true" />
|
||||||
|
|
||||||
|
<Sidebar v-model:visible="visibleLeft" :baseZIndex="1000">
|
||||||
|
<h3>Left Sidebar</h3>
|
||||||
|
</Sidebar>
|
||||||
|
|
||||||
|
<Sidebar v-model:visible="visibleRight" :baseZIndex="1000" position="right">
|
||||||
|
<h3>Right Sidebar</h3>
|
||||||
|
</Sidebar>
|
||||||
|
|
||||||
|
<Sidebar v-model:visible="visibleTop" :baseZIndex="1000" position="top">
|
||||||
|
<h3>Top Sidebar</h3>
|
||||||
|
</Sidebar>
|
||||||
|
|
||||||
|
<Sidebar v-model:visible="visibleBottom" :baseZIndex="1000" position="bottom">
|
||||||
|
<h3>Bottom Sidebar</h3>
|
||||||
|
</Sidebar>
|
||||||
|
|
||||||
|
<Sidebar v-model:visible="visibleFull" :baseZIndex="1000" position="full">
|
||||||
|
<h3>Full Screen</h3>
|
||||||
|
</Sidebar>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import { ref } from 'vue';
|
||||||
|
|
||||||
|
export default {
|
||||||
|
setup() {
|
||||||
|
const visibleLeft = ref(false);
|
||||||
|
const visibleRight = ref(false);
|
||||||
|
const visibleTop = ref(false);
|
||||||
|
const visibleBottom = ref(false);
|
||||||
|
const visibleFull = ref(false);
|
||||||
|
|
||||||
|
return { visibleLeft, visibleRight, visibleTop, visibleBottom, visibleFull }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
<\\/script>
|
||||||
|
`
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
|
@ -1,7 +1,5 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="content-section documentation">
|
<AppDoc name="TooltipDemo" :sources="sources">
|
||||||
<TabView>
|
|
||||||
<TabPanel header="Documentation">
|
|
||||||
<h5>Getting Started</h5>
|
<h5>Getting Started</h5>
|
||||||
<p>Tooltip is a directive that needs to be imported and configured with a name of your choice. Global configuration is done with the <i>Vue.directive</i> function.</p>
|
<p>Tooltip is a directive that needs to be imported and configured with a name of your choice. Global configuration is done with the <i>Vue.directive</i> function.</p>
|
||||||
<pre v-code.script><code>
|
<pre v-code.script><code>
|
||||||
|
@ -80,59 +78,18 @@ directives: {
|
||||||
|
|
||||||
<h5>Dependencies</h5>
|
<h5>Dependencies</h5>
|
||||||
<p>None.</p>
|
<p>None.</p>
|
||||||
</TabPanel>
|
</AppDoc>
|
||||||
|
|
||||||
<TabPanel header="Source">
|
|
||||||
<div class="p-d-flex p-jc-between">
|
|
||||||
<a href="https://github.com/primefaces/primevue/tree/master/src/views/tooltip" class="btn-viewsource" target="_blank" rel="noopener noreferrer">
|
|
||||||
<span>View on GitHub</span>
|
|
||||||
</a>
|
|
||||||
<LiveEditor name="TooltipDemo" :sources="sources" :directives="['Tooltip']" :components="['InputText', 'Button']"/>
|
|
||||||
</div>
|
|
||||||
<pre v-code><code><template v-pre>
|
|
||||||
<h3>Positions</h3>
|
|
||||||
<div class="p-grid p-fluid">
|
|
||||||
<div class="p-col-12 p-md-3">
|
|
||||||
<InputText type="text" placeholder="Right" v-tooltip.right="'Enter your username'" />
|
|
||||||
</div>
|
|
||||||
<div class="p-col-12 p-md-3">
|
|
||||||
<InputText type="text" placeholder="Top" v-tooltip.top="'Enter your username'" />
|
|
||||||
</div>
|
|
||||||
<div class="p-col-12 p-md-3">
|
|
||||||
<InputText type="text" placeholder="Bottom" v-tooltip.bottom="'Enter your username'" />
|
|
||||||
</div>
|
|
||||||
<div class="p-col-12 p-md-3">
|
|
||||||
<InputText type="text" placeholder="Left" v-tooltip.left="'Enter your username'" />
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<h3>Focus and Blur</h3>
|
|
||||||
<InputText type="text" placeholder="Focus" v-tooltip.bottom.focus="'Enter your username'" />
|
|
||||||
|
|
||||||
<h3>Button</h3>
|
|
||||||
<Button type="button" label="Save" icon="pi pi-check" v-tooltip="'Click to proceed'" />
|
|
||||||
</template>
|
|
||||||
</code></pre>
|
|
||||||
|
|
||||||
<pre v-code.script><code>
|
|
||||||
export default {}
|
|
||||||
|
|
||||||
</code></pre>
|
|
||||||
</TabPanel>
|
|
||||||
</TabView>
|
|
||||||
</div>
|
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import LiveEditor from '../liveeditor/LiveEditor';
|
|
||||||
export default {
|
export default {
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
sources: {
|
sources: {
|
||||||
'template': {
|
'options-api': {
|
||||||
content: `<template>
|
tabName: 'Source',
|
||||||
<div class="layout-content">
|
content: `
|
||||||
<div class="content-section implementation">
|
<template>
|
||||||
<div class="card">
|
<div class="card">
|
||||||
<h5>Positions</h5>
|
<h5>Positions</h5>
|
||||||
<div class="p-grid p-fluid">
|
<div class="p-grid p-fluid">
|
||||||
|
@ -156,19 +113,51 @@ export default {
|
||||||
<h5>Button</h5>
|
<h5>Button</h5>
|
||||||
<Button type="button" label="Save" icon="pi pi-check" v-tooltip="'Click to proceed'" />
|
<Button type="button" label="Save" icon="pi pi-check" v-tooltip="'Click to proceed'" />
|
||||||
</div>
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
}
|
||||||
|
<\\/script>
|
||||||
|
`
|
||||||
|
},
|
||||||
|
'composition-api': {
|
||||||
|
tabName: 'Composition API',
|
||||||
|
content: `
|
||||||
|
<template>
|
||||||
|
<div class="card">
|
||||||
|
<h5>Positions</h5>
|
||||||
|
<div class="p-grid p-fluid">
|
||||||
|
<div class="p-col-12 p-md-3">
|
||||||
|
<InputText type="text" placeholder="Right" v-tooltip.right="'Enter your username'" />
|
||||||
</div>
|
</div>
|
||||||
|
<div class="p-col-12 p-md-3">
|
||||||
|
<InputText type="text" placeholder="Top" v-tooltip.top="'Enter your username'" />
|
||||||
|
</div>
|
||||||
|
<div class="p-col-12 p-md-3">
|
||||||
|
<InputText type="text" placeholder="Bottom" v-tooltip.bottom="'Enter your username'" />
|
||||||
|
</div>
|
||||||
|
<div class="p-col-12 p-md-3">
|
||||||
|
<InputText type="text" placeholder="Left" v-tooltip.left="'Enter your username'" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<h5>Focus and Blur</h5>
|
||||||
|
<InputText type="text" placeholder="Focus" v-tooltip.bottom.focus="'Enter your username'" />
|
||||||
|
|
||||||
|
<h5>Button</h5>
|
||||||
|
<Button type="button" label="Save" icon="pi pi-check" v-tooltip="'Click to proceed'" />
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
export default {
|
export default {
|
||||||
}`
|
}
|
||||||
|
<\\/script>
|
||||||
|
`
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
|
||||||
components: {
|
|
||||||
LiveEditor
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
Loading…
Reference in New Issue