fix request redrawing semantics

This commit is contained in:
Leo Horie 2016-12-02 17:42:34 -05:00
parent f54f15d4ce
commit 0080d1dff0
2 changed files with 64 additions and 24 deletions

View file

@ -5,33 +5,36 @@ var buildQueryString = require("../querystring/build")
module.exports = function($window, Promise) {
var callbackCount = 0
var count = 0
var oncompletion
function setCompletionCallback(callback) {oncompletion = callback}
function complete() {if (--count === 0 && typeof oncompletion === "function") oncompletion()}
function finalizer() {
var count = 0
function complete() {if (--count === 0 && typeof oncompletion === "function") oncompletion()}
function finalize(promise) {
var then = promise.then
promise.then = function() {
count++
var next = then.apply(promise, arguments)
next.then(complete, function(e) {
complete()
throw e
})
return finalize(next)
return function finalize(promise) {
var then = promise.then, catcher = promise.catch
promise.then = function() {
count++
var next = then.apply(promise, arguments)
next.then(complete, function(e) {
complete()
throw e
})
return finalize(next)
}
return promise
}
return promise
}
function request(args, extra) {
return finalize(new Promise(function(resolve, reject) {
if (typeof args === "string") {
var url = args
args = extra || {}
if (args.url == null) args.url = url
}
var finalize = finalizer()
if (typeof args === "string") {
var url = args
args = extra || {}
if (args.url == null) args.url = url
}
var promise = new Promise(function(resolve, reject) {
if (args.method == null) args.method = "GET"
args.method = args.method.toUpperCase()
@ -79,11 +82,13 @@ module.exports = function($window, Promise) {
if (useBody && (args.data != null)) xhr.send(args.data)
else xhr.send()
}))
})
return args.redraw === false ? promise : finalize(promise)
}
function jsonp(args) {
return finalize(new Promise(function(resolve, reject) {
var finalize = finalizer()
var promise = new Promise(function(resolve, reject) {
var callbackName = args.callbackName || "_mithril_" + Math.round(Math.random() * 1e16) + "_" + callbackCount++
var script = $window.document.createElement("script")
$window[callbackName] = function(data) {
@ -101,7 +106,8 @@ module.exports = function($window, Promise) {
args.data[args.callbackKey || "callback"] = callbackName
script.src = assemble(args.url, args.data)
$window.document.documentElement.appendChild(script)
}))
})
return args.redraw === false? promise : finalize(promise)
}
function interpolate(url, data) {

View file

@ -6,10 +6,13 @@ var Request = require("../../request/request")
var Promise = require("../../promise/promise")
o.spec("xhr", function() {
var mock, xhr
var mock, xhr, complete
o.beforeEach(function() {
mock = xhrMock()
xhr = new Request(mock, Promise).request
var requestService = Request(mock, Promise)
xhr = requestService.request
complete = o.spy()
requestService.setCompletionCallback(complete)
})
o.spec("success", function() {
@ -295,6 +298,37 @@ o.spec("xhr", function() {
o(typeof xhr.send).equals("function")
}
})
o("requests don't block each other", function(done) {
mock.$defineRoutes({
"GET /item": function(request) {
return {status: 200, responseText: "[]"}
}
})
xhr("/item").then(function() {
return xhr("/item")
})
xhr("/item").then(function() {
return xhr("/item")
})
setTimeout(function() {
o(complete.callCount).equals(4)
done()
}, 20)
})
o("requests trigger finally once with a chained then", function(done) {
mock.$defineRoutes({
"GET /item": function(request) {
return {status: 200, responseText: "[]"}
}
})
var promise = xhr("/item")
promise.then(function() {}).then(function() {})
promise.then(function() {}).then(function() {})
setTimeout(function() {
o(complete.callCount).equals(1)
done()
}, 20)
})
})
o.spec("failure", function() {
o("rejects on server error", function(done) {