mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-04 05:53:43 +00:00 
			
		
		
		
	This mainly extracts a new module called
browser_history. It has much fewer dependencies
than hashchange.js, so any modules that just
need the smaller API from browser_history now
have fewer transitive dependencies.
Here are some details:
    * Move is_overlay_hash to hash_util.
    * Rename hashchange.update_browser_history to
      brower_history.update
    * Move go_to_location verbatim.
    * Remove unused argument for exit_overlay.
    * Introduce helper functions:
        * old_hash()
        * set_hash_before_overlay()
        * save_old_hash()
We now have 100% line coverage on the extracted
code.
		
	
		
			
				
	
	
		
			229 lines
		
	
	
		
			6.4 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			229 lines
		
	
	
		
			6.4 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
import $ from "jquery";
 | 
						|
 | 
						|
import * as narrow_state from "./narrow_state";
 | 
						|
import * as people from "./people";
 | 
						|
import * as stream_data from "./stream_data";
 | 
						|
import * as ui_report from "./ui_report";
 | 
						|
 | 
						|
export function get_hash_category(hash) {
 | 
						|
    // given "#streams/subscribed", returns "streams"
 | 
						|
    return hash ? hash.replace(/^#/, "").split(/\//)[0] : "";
 | 
						|
}
 | 
						|
 | 
						|
export function get_hash_section(hash) {
 | 
						|
    // given "#settings/your-account", returns "your-account"
 | 
						|
    // given '#streams/5/social", returns "5"
 | 
						|
    if (!hash) {
 | 
						|
        return "";
 | 
						|
    }
 | 
						|
 | 
						|
    const parts = hash.replace(/\/$/, "").split(/\//);
 | 
						|
 | 
						|
    return parts[1] || "";
 | 
						|
}
 | 
						|
 | 
						|
const hashReplacements = new Map([
 | 
						|
    ["%", "."],
 | 
						|
    ["(", ".28"],
 | 
						|
    [")", ".29"],
 | 
						|
    [".", ".2E"],
 | 
						|
]);
 | 
						|
 | 
						|
// Some browsers zealously URI-decode the contents of
 | 
						|
// window.location.hash.  So we hide our URI-encoding
 | 
						|
// by replacing % with . (like MediaWiki).
 | 
						|
export function encodeHashComponent(str) {
 | 
						|
    return encodeURIComponent(str).replace(/[%().]/g, (matched) => hashReplacements.get(matched));
 | 
						|
}
 | 
						|
 | 
						|
export function encode_operand(operator, operand) {
 | 
						|
    if (operator === "group-pm-with" || operator === "pm-with" || operator === "sender") {
 | 
						|
        const slug = people.emails_to_slug(operand);
 | 
						|
        if (slug) {
 | 
						|
            return slug;
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    if (operator === "stream") {
 | 
						|
        return encode_stream_name(operand);
 | 
						|
    }
 | 
						|
 | 
						|
    return encodeHashComponent(operand);
 | 
						|
}
 | 
						|
 | 
						|
export function encode_stream_id(stream_id) {
 | 
						|
    // stream_data appends the stream name, but it does not do the
 | 
						|
    // URI encoding piece
 | 
						|
    const slug = stream_data.id_to_slug(stream_id);
 | 
						|
 | 
						|
    return encodeHashComponent(slug);
 | 
						|
}
 | 
						|
 | 
						|
export function encode_stream_name(operand) {
 | 
						|
    // stream_data prefixes the stream id, but it does not do the
 | 
						|
    // URI encoding piece
 | 
						|
    operand = stream_data.name_to_slug(operand);
 | 
						|
 | 
						|
    return encodeHashComponent(operand);
 | 
						|
}
 | 
						|
 | 
						|
export function decodeHashComponent(str) {
 | 
						|
    try {
 | 
						|
        // This fails for URLs containing
 | 
						|
        // foo.foo or foo%foo due to our fault in special handling
 | 
						|
        // of such characters when encoding. This can also,
 | 
						|
        // fail independent of our fault, so just tell the user
 | 
						|
        // that the URL is invalid.
 | 
						|
        // TODO: Show possible valid URLs to the user.
 | 
						|
        return decodeURIComponent(str.replace(/\./g, "%"));
 | 
						|
    } catch {
 | 
						|
        ui_report.error(i18n.t("Invalid URL"), undefined, $("#home-error"), 2000);
 | 
						|
        return "";
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
export function decode_operand(operator, operand) {
 | 
						|
    if (operator === "group-pm-with" || operator === "pm-with" || operator === "sender") {
 | 
						|
        const emails = people.slug_to_emails(operand);
 | 
						|
        if (emails) {
 | 
						|
            return emails;
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    operand = decodeHashComponent(operand);
 | 
						|
 | 
						|
    if (operator === "stream") {
 | 
						|
        return stream_data.slug_to_name(operand);
 | 
						|
    }
 | 
						|
 | 
						|
    return operand;
 | 
						|
}
 | 
						|
 | 
						|
export function by_stream_uri(stream_id) {
 | 
						|
    return "#narrow/stream/" + encode_stream_id(stream_id);
 | 
						|
}
 | 
						|
 | 
						|
export function by_stream_topic_uri(stream_id, topic) {
 | 
						|
    return "#narrow/stream/" + encode_stream_id(stream_id) + "/topic/" + encodeHashComponent(topic);
 | 
						|
}
 | 
						|
 | 
						|
// Encodes an operator list into the
 | 
						|
// corresponding hash: the # component
 | 
						|
// of the narrow URL
 | 
						|
export function operators_to_hash(operators) {
 | 
						|
    let hash = "#";
 | 
						|
 | 
						|
    if (operators !== undefined) {
 | 
						|
        hash = "#narrow";
 | 
						|
 | 
						|
        for (const elem of operators) {
 | 
						|
            // Support legacy tuples.
 | 
						|
            const operator = elem.operator;
 | 
						|
            const operand = elem.operand;
 | 
						|
 | 
						|
            const sign = elem.negated ? "-" : "";
 | 
						|
            hash +=
 | 
						|
                "/" +
 | 
						|
                sign +
 | 
						|
                encodeHashComponent(operator) +
 | 
						|
                "/" +
 | 
						|
                encode_operand(operator, operand);
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    return hash;
 | 
						|
}
 | 
						|
 | 
						|
export function by_sender_uri(reply_to) {
 | 
						|
    return operators_to_hash([{operator: "sender", operand: reply_to}]);
 | 
						|
}
 | 
						|
 | 
						|
export function pm_with_uri(reply_to) {
 | 
						|
    const slug = people.emails_to_slug(reply_to);
 | 
						|
    return "#narrow/pm-with/" + slug;
 | 
						|
}
 | 
						|
 | 
						|
export function huddle_with_uri(user_ids_string) {
 | 
						|
    // This method is convenient for callers
 | 
						|
    // that have already converted emails to a comma-delimited
 | 
						|
    // list of user_ids.  We should be careful to keep this
 | 
						|
    // consistent with hash_util.decode_operand.
 | 
						|
    return "#narrow/pm-with/" + user_ids_string + "-group";
 | 
						|
}
 | 
						|
 | 
						|
export function by_conversation_and_time_uri(message) {
 | 
						|
    const absolute_url =
 | 
						|
        window.location.protocol +
 | 
						|
        "//" +
 | 
						|
        window.location.host +
 | 
						|
        "/" +
 | 
						|
        window.location.pathname.split("/")[1];
 | 
						|
 | 
						|
    const suffix = "/near/" + encodeHashComponent(message.id);
 | 
						|
 | 
						|
    if (message.type === "stream") {
 | 
						|
        return absolute_url + by_stream_topic_uri(message.stream_id, message.topic) + suffix;
 | 
						|
    }
 | 
						|
 | 
						|
    return absolute_url + people.pm_perma_link(message) + suffix;
 | 
						|
}
 | 
						|
 | 
						|
export function stream_edit_uri(sub) {
 | 
						|
    const hash = `#streams/${sub.stream_id}/${encodeHashComponent(sub.name)}`;
 | 
						|
    return hash;
 | 
						|
}
 | 
						|
 | 
						|
export function search_public_streams_notice_url() {
 | 
						|
    // Computes the URL of the current narrow if streams:public were added.
 | 
						|
    const operators = narrow_state.filter().operators();
 | 
						|
    const public_operator = {operator: "streams", operand: "public"};
 | 
						|
    return operators_to_hash([public_operator].concat(operators));
 | 
						|
}
 | 
						|
 | 
						|
export function parse_narrow(hash) {
 | 
						|
    let i;
 | 
						|
    const operators = [];
 | 
						|
    for (i = 1; i < hash.length; i += 2) {
 | 
						|
        // We don't construct URLs with an odd number of components,
 | 
						|
        // but the user might write one.
 | 
						|
        let operator = decodeHashComponent(hash[i]);
 | 
						|
        // Do not parse further if empty operator encountered.
 | 
						|
        if (operator === "") {
 | 
						|
            break;
 | 
						|
        }
 | 
						|
 | 
						|
        const raw_operand = hash[i + 1];
 | 
						|
 | 
						|
        if (!raw_operand) {
 | 
						|
            return undefined;
 | 
						|
        }
 | 
						|
 | 
						|
        let negated = false;
 | 
						|
        if (operator[0] === "-") {
 | 
						|
            negated = true;
 | 
						|
            operator = operator.slice(1);
 | 
						|
        }
 | 
						|
 | 
						|
        const operand = decode_operand(operator, raw_operand);
 | 
						|
        operators.push({negated, operator, operand});
 | 
						|
    }
 | 
						|
    return operators;
 | 
						|
}
 | 
						|
 | 
						|
export function is_overlay_hash(hash) {
 | 
						|
    // Hash changes within this list are overlays and should not unnarrow (etc.)
 | 
						|
    const overlay_list = [
 | 
						|
        "streams",
 | 
						|
        "drafts",
 | 
						|
        "settings",
 | 
						|
        "organization",
 | 
						|
        "invite",
 | 
						|
        "keyboard-shortcuts",
 | 
						|
        "message-formatting",
 | 
						|
        "search-operators",
 | 
						|
    ];
 | 
						|
    const main_hash = get_hash_category(hash);
 | 
						|
 | 
						|
    return overlay_list.includes(main_hash);
 | 
						|
}
 |