如何在Mithril.js中叠加弹出视图?

时间:2014-09-18 19:34:17

标签: javascript user-interface browser mithril.js

作为深入学习简单JS编程(在最新浏览器上)的实践练习,我正在建立一个SPA来维护客户记录。我使用的唯一外部库是Mithril.js MVC。到目前为止,我有一个包含来自我的数据库的实时数据的表视图,其中包括每个记录的编辑,合并和删除按钮。编辑完成并运行良好,使用内联“表单”并保存/取消该作品。

我现在正在尝试实现删除和合并,两者都需要在执行操作之前进行弹出确认,这就是我被困住的地方。我确切地知道我在桌面GUI环境中做了什么,所以路障可能是我对浏览器前端缺乏了解,而不是Mithril本身。

理想情况下,我想创建一个自包含,可重复使用的“popup”组件代表弹出窗口,但我看不出我应该如何使用Mithril在JS中执行此操作,特别是,但不仅仅是如何让Mithril将一个视图叠加在另一个视图之上。

从广泛的大纲到具体的代码片段,我们将不胜感激。

2 个答案:

答案 0 :(得分:5)

您可能希望使用视图模型标志来控制模式弹出窗口的可见性。

//modal module
var modal = {}
modal.visible = m.prop(false)
modal.view = function(body) {
  return modal.visible() ? m(".modal", body()) : ""
}

//in your other view
var myOtherView = function() {
  //this button sets the flag to true
  m("button[type=button]", {onclick: modal.visible.bind(this, true)}, "Show modal"),

  //include the modal anywhere it makes sense to
  //its visibility is taken care by the modal itself
  //positioning is controlled via CSS
  modal.view(function() {
    return m("p, "modal content goes here")
  })
}

要创建模态对话框,您可以使用其中一个CSS框架中的样式(例如Bootstrap),或者使用您自己的CSS样式.modal

/*really contrived example to get you started*/
.modal {
  background:#fff;
  border:1px solid #eee;
  position:fixed;
  top:10px;
  left:100px;
  width:600px;
}

答案 1 :(得分:4)

我不知道我是不是刚刚获得MVC,但我只是设置一个包含弹出窗口详细信息的视图模型对象,然后在生成视图时如果当前设置了那么我填充包含div的div弹出窗口。 CSS控制外观和定位。

所以基本上我依赖于秘银的自上而下的重新渲染方法,根据当前的应用程序状态有条件地构建视图 - 它非常有效并且对我来说是内在的明智。

我实际上使用了一个弹出确认对象列表,因此多个确认可以排队。

在控制器中,建立一个确认队列:

function Controller() {
    ...
    this.confirmation                   =[];
    ...
    }

在视图中,如果有确认排队,则创建一个确认视图div,否则创建一个空占位符(如果容器元素没有出现并且从渲染中消失,则Mithrils差异效果最佳):

function crtView(ctl) {
    ...
    return m("div", [
        ...
        crtConfirmationView(ctl),
        ...
        ]);
    }

function crtConfirmationView(ctl) {
    var cfm=ctl.confirmation[0];

    return m("div#popup-confirm",(cfm ? muiConfirm.crtView(ctl,cfm.title,cfm.body,cfm.buttons) : null));
    }

然后,每当需要确认时,只需将确认对象推入队列,让Mithril的绘图系统运行并重建视图。

function deleteRecord(ctl,evt,row,idx,rcd) {
    var cfm={
        title   : m("span","Delete Customer: "+rcd.ContactName),
        body    : [
            m("p","Do you really want to delete customer "+rcd.CustomerId+" ("+rcd.ContactName+") and all associated appointments and addresses?"),
            m("p.warning", "This action cannot be undone. If this is a duplicate customer, it should be merged with the other record."),
            ],
        buttons : deleteButtons,
        proceed : "delete",
        index   : idx,
        record  : rcd,
        };

    ctl.confirmation.push(cfm);
    }

确认对象包含confirm辅助函数crtView创建确认视图所需的任何属性,然后在用户单击按钮时执行操作(或按ENTER或ESCAPE等) - 只是标准的UI内容,您将其抽象为共享的可重用组件。


注意:万一有人对数组索引有疑问,我已经不再使用数组索引来识别数据模型中的记录(当删除完成时,应该删除数组元素)。相反,我使用数据库ID找到受影响的记录,这可以抵御模型中的干预变化,例如对列表进行排序。