mirror of
https://github.com/zulip/zulip.git
synced 2025-11-01 20:44:04 +00:00
We now treat util like a leaf module and use "require" to import it everywhere it's used. An earlier version of this commit moved util into our "shared" library, but we decided to wait on that. Once we're ready to do that, we should only need to do a simple search/replace on various require/zrequire statements plus a small tweak to one of the custom linter checks. It turns out we don't really need util.js for our most immediate code-sharing goal, which is to reuse our markdown code on mobile. There's a little bit of cleanup still remaining to break the dependency, but it's minor. The util module still calls the global blueslip module in one place, but that code is about to be removed in the next few commits. I am pretty confident that once we start sharing things like the typeahead code more aggressively, we'll start having dependencies on util. The module is barely more than 300 lines long, so we'll probably just move the whole thing into shared rather than break it apart. Also, we can continue to nibble away at the cruftier parts of the module.
56 lines
2.0 KiB
JavaScript
56 lines
2.0 KiB
JavaScript
const util = require("./util");
|
||
// Miscellaneous early setup.
|
||
|
||
$(function () {
|
||
if (util.is_mobile()) {
|
||
// Disable the tutorial; it's ugly on mobile.
|
||
page_params.needs_tutorial = false;
|
||
}
|
||
|
||
page_params.page_load_time = new Date().getTime();
|
||
|
||
// Display loading indicator. This disappears after the first
|
||
// get_events completes.
|
||
if (page_params.have_initial_messages && !page_params.needs_tutorial) {
|
||
loading.make_indicator($('#page_loading_indicator'), {text: 'Loading...', abs_positioned: true});
|
||
} else if (!page_params.needs_tutorial) {
|
||
$('#first_run_message').show();
|
||
}
|
||
|
||
// This is an issue fix where in jQuery v3 the result of outerHeight on a node
|
||
// that doesn’t exist is now “undefined” rather than “null”, which means it
|
||
// will no longer cast to a Number but rather NaN. For this, we create the
|
||
// `safeOuterHeight` and `safeOuterWidth` functions to safely return a result
|
||
// (or 0).
|
||
$.fn.safeOuterHeight = function (...args) {
|
||
return this.outerHeight(...args) || 0;
|
||
};
|
||
|
||
$.fn.safeOuterWidth = function (...args) {
|
||
return this.outerWidth(...args) || 0;
|
||
};
|
||
|
||
// For some reason, jQuery wants this to be attached to an element.
|
||
$(document).ajaxError(function (event, xhr) {
|
||
if (xhr.status === 401) {
|
||
// We got logged out somehow, perhaps from another window or a session timeout.
|
||
// We could display an error message, but jumping right to the login page seems
|
||
// smoother and conveys the same information.
|
||
window.location.replace(page_params.login_page);
|
||
}
|
||
});
|
||
|
||
if (typeof $ !== 'undefined') {
|
||
$.fn.expectOne = function () {
|
||
if (blueslip && this.length !== 1) {
|
||
blueslip.error("Expected one element in jQuery set, " + this.length + " found");
|
||
}
|
||
return this;
|
||
};
|
||
|
||
$.fn.within = function (sel) {
|
||
return $(this).is(sel) || $(this).closest(sel).length;
|
||
};
|
||
}
|
||
});
|