2018-04-08 23:56:20 +00:00
|
|
|
import ConfirmationDialog from '../components/ConfirmationDialog.html'
|
|
|
|
import { createDialogElement } from '../helpers/createDialogElement'
|
|
|
|
import { createDialogId } from '../helpers/createDialogId'
|
2018-02-05 17:43:45 +00:00
|
|
|
|
2018-02-09 06:29:29 +00:00
|
|
|
export function showConfirmationDialog (options) {
|
2018-02-05 17:43:45 +00:00
|
|
|
let dialog = new ConfirmationDialog({
|
2018-04-01 01:46:44 +00:00
|
|
|
target: createDialogElement(),
|
2018-02-05 17:43:45 +00:00
|
|
|
data: Object.assign({
|
2018-04-08 23:56:20 +00:00
|
|
|
id: createDialogId(),
|
2018-02-05 17:43:45 +00:00
|
|
|
label: 'Confirmation dialog'
|
|
|
|
}, options)
|
|
|
|
})
|
|
|
|
dialog.show()
|
2018-02-09 06:29:29 +00:00
|
|
|
}
|