Simplify ActionCable.createWebSocketURL and realphabetize exports (#35810)

* Remove unnecessary variable from ActionCable.createWebSocketURL

* Improve ActionCable test by creating the Consumer before reassigning URL

With this change, the test now actually verifies that the Consumer's url
property changes dynamically (from testURL to `${testURL}foo`).

* Fix alphabetization of ActionCable exports
This commit is contained in:
rmacklin 2019-04-02 14:04:43 -07:00 committed by Kasper Timm Hansen
parent 2c4dab11d1
commit d03177ffbc
4 changed files with 17 additions and 12 deletions

View File

@ -477,15 +477,17 @@
return Consumer;
}();
function createWebSocketURL(url) {
var webSocketURL = typeof url === "function" ? url() : url;
if (webSocketURL && !/^wss?:/i.test(webSocketURL)) {
if (typeof url === "function") {
url = url();
}
if (url && !/^wss?:/i.test(url)) {
var a = document.createElement("a");
a.href = webSocketURL;
a.href = url;
a.href = a.href;
a.protocol = a.protocol.replace("http", "ws");
return a.href;
} else {
return webSocketURL;
return url;
}
}
function createConsumer() {
@ -505,8 +507,8 @@
exports.Subscription = Subscription;
exports.Subscriptions = Subscriptions;
exports.adapters = adapters;
exports.logger = logger;
exports.createWebSocketURL = createWebSocketURL;
exports.logger = logger;
exports.createConsumer = createConsumer;
exports.getConfig = getConfig;
Object.defineProperty(exports, "__esModule", {

View File

@ -58,16 +58,18 @@ export default class Consumer {
}
export function createWebSocketURL(url) {
const webSocketURL = typeof url === "function" ? url() : url
if (typeof url === "function") {
url = url()
}
if (webSocketURL && !/^wss?:/i.test(webSocketURL)) {
if (url && !/^wss?:/i.test(url)) {
const a = document.createElement("a")
a.href = webSocketURL
a.href = url
// Fix populating Location properties in IE. Otherwise, protocol will be blank.
a.href = a.href
a.protocol = a.protocol.replace("http", "ws")
return a.href
} else {
return webSocketURL
return url
}
}

View File

@ -15,8 +15,8 @@ export {
Subscription,
Subscriptions,
adapters,
logger,
createWebSocketURL,
logger,
}
export function createConsumer(url = getConfig("url") || INTERNAL.default_mount_path) {

View File

@ -42,14 +42,15 @@ module("ActionCable", () => {
assert.equal(consumer.url, testURL)
})
test("uses function to generate URL", assert => {
test("dynamically computes URL from function", assert => {
let dynamicURL = testURL
const generateURL = () => {
return dynamicURL
}
const consumer = ActionCable.createConsumer(generateURL)
assert.equal(consumer.url, testURL)
dynamicURL = `${testURL}foo`
const consumer = ActionCable.createConsumer(generateURL)
assert.equal(consumer.url, `${testURL}foo`)
})
})