2017-04-22 13:03:00 +00:00
|
|
|
"use strict";
|
2017-05-18 20:08:54 +00:00
|
|
|
|
2017-04-22 13:03:00 +00:00
|
|
|
const $ = require("jquery");
|
2017-10-19 05:37:33 +00:00
|
|
|
require("jquery-textcomplete");
|
2017-07-21 08:35:05 +00:00
|
|
|
const escapeRegExp = require("lodash/escapeRegExp");
|
2017-04-22 13:03:00 +00:00
|
|
|
const userStyles = $("#user-specified-css");
|
|
|
|
const storage = require("./localStorage");
|
2017-05-06 18:44:57 +00:00
|
|
|
const tz = require("./libs/handlebars/tz");
|
2017-04-22 13:03:00 +00:00
|
|
|
|
|
|
|
const windows = $("#windows");
|
|
|
|
const chat = $("#chat");
|
|
|
|
|
2017-08-06 04:49:22 +00:00
|
|
|
// Default options
|
|
|
|
const options = {
|
|
|
|
autocomplete: true,
|
2017-04-22 13:03:00 +00:00
|
|
|
coloredNicks: true,
|
|
|
|
desktopNotifications: false,
|
2017-08-06 04:49:22 +00:00
|
|
|
highlights: [],
|
2017-04-22 13:03:00 +00:00
|
|
|
links: true,
|
2017-05-09 22:18:32 +00:00
|
|
|
motd: true,
|
2017-04-22 13:03:00 +00:00
|
|
|
notification: true,
|
|
|
|
notifyAllMessages: false,
|
2017-05-06 18:44:57 +00:00
|
|
|
showSeconds: false,
|
2017-08-06 04:49:22 +00:00
|
|
|
statusMessages: "condensed",
|
2017-04-22 13:03:00 +00:00
|
|
|
theme: $("#theme").attr("href").replace(/^themes\/(.*).css$/, "$1"), // Extracts default theme name, set on the server configuration
|
|
|
|
thumbnails: true,
|
|
|
|
userStyles: userStyles.text(),
|
2017-08-06 04:49:22 +00:00
|
|
|
};
|
2017-08-16 08:01:09 +00:00
|
|
|
let userOptions = JSON.parse(storage.get("settings")) || {};
|
2017-08-06 04:49:22 +00:00
|
|
|
|
|
|
|
for (const key in options) {
|
2017-08-16 08:01:09 +00:00
|
|
|
if (userOptions[key] !== undefined) {
|
2017-08-06 04:49:22 +00:00
|
|
|
options[key] = userOptions[key];
|
|
|
|
}
|
|
|
|
}
|
2017-04-22 13:03:00 +00:00
|
|
|
|
2017-11-07 20:22:16 +00:00
|
|
|
// Apply custom CSS on page load
|
|
|
|
if (typeof userOptions.userStyles === "string" && !/[?&]nocss/.test(window.location.search)) {
|
|
|
|
userStyles.html(userOptions.userStyles);
|
|
|
|
}
|
|
|
|
|
2017-08-16 08:01:09 +00:00
|
|
|
userOptions = null;
|
|
|
|
|
2017-04-22 13:03:00 +00:00
|
|
|
module.exports = options;
|
|
|
|
|
2017-06-26 09:01:55 +00:00
|
|
|
module.exports.shouldOpenMessagePreview = function(type) {
|
|
|
|
return (options.links && type === "link") || (options.thumbnails && type === "image");
|
|
|
|
};
|
|
|
|
|
2017-11-07 20:22:16 +00:00
|
|
|
module.exports.initialize = () => {
|
|
|
|
module.exports.initialize = null;
|
|
|
|
|
|
|
|
const settings = $("#settings");
|
|
|
|
|
|
|
|
for (var i in options) {
|
|
|
|
if (i === "userStyles") {
|
|
|
|
settings.find("#user-specified-css-input").val(options[i]);
|
|
|
|
} else if (i === "highlights") {
|
|
|
|
settings.find("input[name=" + i + "]").val(options[i]);
|
|
|
|
} else if (i === "statusMessages") {
|
|
|
|
settings.find(`input[name=${i}][value=${options[i]}]`)
|
|
|
|
.prop("checked", true);
|
|
|
|
} else if (i === "theme") {
|
|
|
|
$("#theme").attr("href", "themes/" + options[i] + ".css");
|
|
|
|
settings.find("select[name=" + i + "]").val(options[i]);
|
|
|
|
} else if (options[i]) {
|
|
|
|
settings.find("input[name=" + i + "]").prop("checked", true);
|
2017-04-22 13:03:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-07 20:22:16 +00:00
|
|
|
settings.on("change", "input, select, textarea", function() {
|
|
|
|
const self = $(this);
|
|
|
|
const type = self.attr("type");
|
|
|
|
const name = self.attr("name");
|
2017-04-22 13:03:00 +00:00
|
|
|
|
2017-11-07 20:22:16 +00:00
|
|
|
if (type === "password") {
|
|
|
|
return;
|
|
|
|
} else if (type === "radio") {
|
|
|
|
if (self.prop("checked")) {
|
|
|
|
options[name] = self.val();
|
|
|
|
}
|
|
|
|
} else if (type === "checkbox") {
|
|
|
|
options[name] = self.prop("checked");
|
|
|
|
} else {
|
2017-08-06 04:49:22 +00:00
|
|
|
options[name] = self.val();
|
|
|
|
}
|
2017-04-22 13:03:00 +00:00
|
|
|
|
2017-11-07 20:22:16 +00:00
|
|
|
storage.set("settings", JSON.stringify(options));
|
|
|
|
|
|
|
|
if (name === "motd") {
|
|
|
|
chat.toggleClass("hide-" + name, !self.prop("checked"));
|
|
|
|
} else if (name === "statusMessages") {
|
|
|
|
chat.toggleClass("hide-status-messages", options[name] === "hidden");
|
|
|
|
chat.toggleClass("condensed-status-messages", options[name] === "condensed");
|
|
|
|
} else if (name === "coloredNicks") {
|
|
|
|
chat.toggleClass("colored-nicks", self.prop("checked"));
|
|
|
|
} else if (name === "theme") {
|
|
|
|
$("#theme").attr("href", "themes/" + options[name] + ".css");
|
|
|
|
} else if (name === "userStyles") {
|
|
|
|
userStyles.html(options[name]);
|
|
|
|
} else if (name === "highlights") {
|
|
|
|
var highlightString = options[name];
|
|
|
|
options.highlights = highlightString.split(",").map(function(h) {
|
|
|
|
return h.trim();
|
|
|
|
}).filter(function(h) {
|
|
|
|
// Ensure we don't have empty string in the list of highlights
|
|
|
|
// otherwise, users get notifications for everything
|
|
|
|
return h !== "";
|
|
|
|
});
|
|
|
|
// Construct regex with wordboundary for every highlight item
|
|
|
|
const highlightsTokens = options.highlights.map(function(h) {
|
|
|
|
return escapeRegExp(h);
|
|
|
|
});
|
|
|
|
if (highlightsTokens && highlightsTokens.length) {
|
|
|
|
module.exports.highlightsRE = new RegExp("\\b(?:" + highlightsTokens.join("|") + ")\\b", "i");
|
|
|
|
} else {
|
|
|
|
module.exports.highlightsRE = null;
|
|
|
|
}
|
|
|
|
} else if (name === "showSeconds") {
|
|
|
|
chat.find(".msg > .time").each(function() {
|
|
|
|
$(this).text(tz($(this).parent().data("time")));
|
|
|
|
});
|
|
|
|
chat.toggleClass("show-seconds", self.prop("checked"));
|
|
|
|
} else if (name === "autocomplete") {
|
|
|
|
if (self.prop("checked")) {
|
|
|
|
$("#input").trigger("autocomplete:on");
|
|
|
|
} else {
|
|
|
|
$("#input").textcomplete("destroy");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}).find("input")
|
|
|
|
.trigger("change");
|
|
|
|
|
|
|
|
$("#desktopNotifications").on("change", function() {
|
|
|
|
if ($(this).prop("checked") && Notification.permission !== "granted") {
|
|
|
|
Notification.requestPermission(updateDesktopNotificationStatus);
|
2017-07-21 08:35:05 +00:00
|
|
|
}
|
2017-11-07 20:22:16 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
// Updates the checkbox and warning in settings when the Settings page is
|
|
|
|
// opened or when the checkbox state is changed.
|
|
|
|
// When notifications are not supported, this is never called (because
|
|
|
|
// checkbox state can not be changed).
|
|
|
|
var updateDesktopNotificationStatus = function() {
|
|
|
|
if (Notification.permission === "denied") {
|
|
|
|
desktopNotificationsCheckbox.attr("disabled", true);
|
|
|
|
desktopNotificationsCheckbox.attr("checked", false);
|
|
|
|
warningBlocked.show();
|
2017-07-03 17:07:38 +00:00
|
|
|
} else {
|
2017-11-07 20:22:16 +00:00
|
|
|
if (Notification.permission === "default" && desktopNotificationsCheckbox.prop("checked")) {
|
|
|
|
desktopNotificationsCheckbox.attr("checked", false);
|
|
|
|
}
|
|
|
|
desktopNotificationsCheckbox.attr("disabled", false);
|
|
|
|
warningBlocked.hide();
|
2017-07-03 17:07:38 +00:00
|
|
|
}
|
2017-11-07 20:22:16 +00:00
|
|
|
};
|
2017-04-22 13:03:00 +00:00
|
|
|
|
2017-11-07 20:22:16 +00:00
|
|
|
// If browser does not support notifications, override existing settings and
|
|
|
|
// display proper message in settings.
|
|
|
|
var desktopNotificationsCheckbox = $("#desktopNotifications");
|
|
|
|
var warningUnsupported = $("#warnUnsupportedDesktopNotifications");
|
|
|
|
var warningBlocked = $("#warnBlockedDesktopNotifications");
|
|
|
|
warningBlocked.hide();
|
|
|
|
if (("Notification" in window)) {
|
|
|
|
warningUnsupported.hide();
|
|
|
|
windows.on("show", "#settings", updateDesktopNotificationStatus);
|
|
|
|
} else {
|
|
|
|
options.desktopNotifications = false;
|
2017-04-22 13:03:00 +00:00
|
|
|
desktopNotificationsCheckbox.attr("disabled", true);
|
|
|
|
desktopNotificationsCheckbox.attr("checked", false);
|
|
|
|
}
|
|
|
|
};
|