implement confirmation dialog
This commit is contained in:
parent
95e5bdb106
commit
8711bfb831
|
@ -0,0 +1,61 @@
|
||||||
|
<ModalDialog :label :shown :closed background="var(--main-bg)" on:close="onClose()">
|
||||||
|
<form class="confirmation-dialog-form">
|
||||||
|
<p>
|
||||||
|
{{text}}
|
||||||
|
</p>
|
||||||
|
<div class="confirmation-dialog-form-flex">
|
||||||
|
<button type="button" on:click="onPositive()">
|
||||||
|
{{positiveText || 'OK'}}
|
||||||
|
</button>
|
||||||
|
<button type="button" on:click="onNegative()">
|
||||||
|
{{negativeText || 'Cancel'}}
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
</ModalDialog>
|
||||||
|
<style>
|
||||||
|
.confirmation-dialog-form-flex {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
}
|
||||||
|
.confirmation-dialog-form-flex button {
|
||||||
|
flex: 1;
|
||||||
|
min-width: 200px;
|
||||||
|
}
|
||||||
|
.confirmation-dialog-form p {
|
||||||
|
font-size: 1.3em;
|
||||||
|
padding: 40px 20px;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
<script>
|
||||||
|
import ModalDialog from './ModalDialog.html'
|
||||||
|
|
||||||
|
export default {
|
||||||
|
components: {
|
||||||
|
ModalDialog
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
show() {
|
||||||
|
this.set({shown: true})
|
||||||
|
},
|
||||||
|
onClose() {
|
||||||
|
if (this.get('positiveResult')) {
|
||||||
|
if (this.get('onPositive')) {
|
||||||
|
this.get('onPositive')()
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
if (this.get('onNegative')) {
|
||||||
|
this.get('onNegative')()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
onPositive() {
|
||||||
|
this.set({positiveResult: true})
|
||||||
|
this.set({closed: true})
|
||||||
|
},
|
||||||
|
onNegative() {
|
||||||
|
this.set({closed: true})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
|
@ -29,7 +29,7 @@
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
<script>
|
<script>
|
||||||
import ModalDialog from '../ModalDialog.html'
|
import ModalDialog from './ModalDialog.html'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
components: {
|
components: {
|
|
@ -67,14 +67,21 @@
|
||||||
oncreate() {
|
oncreate() {
|
||||||
let dialogElement = this.refs.node.parentElement
|
let dialogElement = this.refs.node.parentElement
|
||||||
let a11yDialog = new A11yDialog(dialogElement)
|
let a11yDialog = new A11yDialog(dialogElement)
|
||||||
|
a11yDialog.on('hide', () => {
|
||||||
|
a11yDialog.destroy()
|
||||||
|
this.fire('close')
|
||||||
|
this.destroy()
|
||||||
|
})
|
||||||
this.observe('shown', shown => {
|
this.observe('shown', shown => {
|
||||||
if (shown) {
|
if (shown) {
|
||||||
a11yDialog.show()
|
a11yDialog.show()
|
||||||
a11yDialog.on('hide', () => {
|
}
|
||||||
console.log('destroying modal dialog')
|
})
|
||||||
a11yDialog.destroy()
|
this.observe('closed', closed => {
|
||||||
this.destroy()
|
if (closed) {
|
||||||
})
|
setTimeout(() => { // use setTimeout to workaround svelte timing issue
|
||||||
|
a11yDialog.hide()
|
||||||
|
}, 0)
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
|
@ -16,7 +16,7 @@
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
<script>
|
<script>
|
||||||
import ModalDialog from '../ModalDialog.html'
|
import ModalDialog from './ModalDialog.html'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
components: {
|
components: {
|
|
@ -0,0 +1,11 @@
|
||||||
|
import ConfirmationDialog from './ConfirmationDialog.html'
|
||||||
|
|
||||||
|
export function showConfirmationDialog(options) {
|
||||||
|
let dialog = new ConfirmationDialog({
|
||||||
|
target: document.getElementById('modal-dialog'),
|
||||||
|
data: Object.assign({
|
||||||
|
label: 'Confirmation dialog'
|
||||||
|
}, options)
|
||||||
|
})
|
||||||
|
dialog.show()
|
||||||
|
}
|
|
@ -1,4 +1,4 @@
|
||||||
import ImageDialog from '../_components/status/ImageDialog.html'
|
import ImageDialog from './ImageDialog.html'
|
||||||
|
|
||||||
export function showImageDialog(poster, src, type, width, height, description) {
|
export function showImageDialog(poster, src, type, width, height, description) {
|
||||||
let imageDialog = new ImageDialog({
|
let imageDialog = new ImageDialog({
|
|
@ -1,4 +1,4 @@
|
||||||
import VideoDialog from '../_components/status/VideoDialog.html'
|
import VideoDialog from './VideoDialog.html'
|
||||||
|
|
||||||
export function showVideoDialog(poster, src, width, height, description) {
|
export function showVideoDialog(poster, src, width, height, description) {
|
||||||
let videoDialog = new VideoDialog({
|
let videoDialog = new VideoDialog({
|
|
@ -116,8 +116,8 @@
|
||||||
<script>
|
<script>
|
||||||
import { DEFAULT_MEDIA_WIDTH, DEFAULT_MEDIA_HEIGHT } from '../../_static/media'
|
import { DEFAULT_MEDIA_WIDTH, DEFAULT_MEDIA_HEIGHT } from '../../_static/media'
|
||||||
import { imgLoad, imgLoadError } from '../../_utils/events'
|
import { imgLoad, imgLoadError } from '../../_utils/events'
|
||||||
import { showVideoDialog } from '../../_utils/showVideoDialog'
|
import { showVideoDialog } from '../dialog/showVideoDialog'
|
||||||
import { showImageDialog } from '../../_utils/showImageDialog'
|
import { showImageDialog } from '../dialog/showImageDialog'
|
||||||
import { mouseover } from '../../_utils/events'
|
import { mouseover } from '../../_utils/events'
|
||||||
import NonAutoplayGifv from '../NonAutoplayGifv.html'
|
import NonAutoplayGifv from '../NonAutoplayGifv.html'
|
||||||
|
|
||||||
|
|
|
@ -100,6 +100,7 @@
|
||||||
import Layout from '../../_components/Layout.html'
|
import Layout from '../../_components/Layout.html'
|
||||||
import SettingsLayout from '../_components/SettingsLayout.html'
|
import SettingsLayout from '../_components/SettingsLayout.html'
|
||||||
import ExternalLink from '../../_components/ExternalLink.html'
|
import ExternalLink from '../../_components/ExternalLink.html'
|
||||||
|
import { showConfirmationDialog } from '../../_components/dialog/showConfirmationDialog'
|
||||||
import {
|
import {
|
||||||
changeTheme,
|
changeTheme,
|
||||||
switchToInstance,
|
switchToInstance,
|
||||||
|
@ -141,7 +142,13 @@
|
||||||
onLogOut(e) {
|
onLogOut(e) {
|
||||||
e.preventDefault()
|
e.preventDefault()
|
||||||
let instanceName = this.get('instanceName')
|
let instanceName = this.get('instanceName')
|
||||||
logOutOfInstance(instanceName)
|
|
||||||
|
showConfirmationDialog({
|
||||||
|
text: `Log out of ${instanceName}?`,
|
||||||
|
onPositive() {
|
||||||
|
logOutOfInstance(instanceName)
|
||||||
|
}
|
||||||
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue