This commit is contained in:
syuilo 2017-02-18 17:42:17 +09:00
parent 7602f16727
commit a62fe67e25
3 changed files with 17 additions and 18 deletions

View file

@ -11,7 +11,7 @@ module.exports = (me) ~>
riot.mixin \notify do
notify: require './scripts/notify'
dialog = require './scripts/dialog.ls'
dialog = require './scripts/dialog'
riot.mixin \dialog do
dialog: dialog

View file

@ -0,0 +1,16 @@
const riot = require('riot');
module.exports = (title, text, buttons, canThrough, onThrough) => {
const dialog = document.body.appendChild(document.createElement('mk-dialog'));
const controller = riot.observable();
riot.mount(dialog, {
controller: controller,
title: title,
text: text,
buttons: buttons,
canThrough: canThrough,
onThrough: onThrough
});
controller.trigger('open');
return controller;
};

View file

@ -1,17 +0,0 @@
# Dialog
#================================
riot = require 'riot'
module.exports = (title, text, buttons, can-through, on-through) ~>
dialog = document.body.append-child document.create-element \mk-dialog
controller = riot.observable!
riot.mount dialog, do
controller: controller
title: title
text: text
buttons: buttons
can-through: can-through
on-through: on-through
controller.trigger \open
return controller