2018-04-09 01:56:20 +02:00
|
|
|
import StatusOptionsDialog from '../components/StatusOptionsDialog.html'
|
|
|
|
import { createDialogElement } from '../helpers/createDialogElement'
|
|
|
|
import { createDialogId } from '../helpers/createDialogId'
|
2018-03-12 03:40:32 +01:00
|
|
|
|
|
|
|
export function showStatusOptionsDialog (statusId) {
|
|
|
|
let dialog = new StatusOptionsDialog({
|
2018-04-01 03:46:44 +02:00
|
|
|
target: createDialogElement(),
|
2018-03-12 03:40:32 +01:00
|
|
|
data: {
|
2018-04-09 01:56:20 +02:00
|
|
|
id: createDialogId(),
|
2018-03-12 03:40:32 +01:00
|
|
|
label: 'Status options dialog',
|
2018-04-05 07:28:22 +02:00
|
|
|
title: '',
|
2018-03-12 03:40:32 +01:00
|
|
|
statusId: statusId
|
|
|
|
}
|
|
|
|
})
|
|
|
|
dialog.show()
|
|
|
|
}
|