I'm using Mithril JS in a project and I'm having trouble understanding exactly how to go about hooking into the Ajax lifecycle. Like if I have an Ajax request takes awhile, I want to show a spinner. Pretty basic, but I can't seem to figure out how that can happen.
I want to use the same container for the spinner as the content that the Ajax request is looking for.
Here's my setup:
var Thing = function (data) {
var p = m.prop;
this.title = p(data.title);
this.timestamp = p(moment.unix(data.timestamp));
}
Thing.list = function(options) {
m.request({method: "GET", url: "/things.json", type: Thing, background: true});
};
MyApp.components.thingsList = {
controller: function ThingListController() {
this.things = m.prop([]);
Thing.list().then(this.things).then(m.redraw);
},
view: function thingListView(ctrl) {
return m('div#thing-tab', [
m('ul#things', [
ctrl.things().map(thingView)
])
]);
}
};
function thingView(thing) {
...some view stuff...
}
I've got it working the way I want, but I just can't figure out how to hook into the ajax lifecycle. Again, I just wanna show a spinner when the request starts and then replace that with the result of the ajax request.
Any and all help is greatly appreciated!
Thanks,
One way is to wrap
m.request
in another function that returns both the completion state (based on a flag that you set via the m.request promise chain), and the data, and then use thebackground: true
option to prevent the deferral of the redraw, and also bindm.redraw
to the promise chain in order to have redrawing happen after the request.This was originally described here: https://github.com/lhorie/mithril.js/issues/192
I found what I think is an elegant way to do this, based on the principle that Mithril re-renders the entire UI (with differencing) on model update. The following example is for saving an inline update.
When I have some part of the model which is changing via AJAX, I set a temporary flag in the model (you can as easily do it in the view-state model if you want to keep it separate), and on completion, I just delete the flag and invoke m.redraw():
In the view, which is rebuilt from the model data, I condition on the flag:
This allows multiple concurrent actions on different records, and a polished, clear and unobtrusive feedback to the user.
Here's what it looks like:
Normal:
Editing:
Saving: