mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-04 05:53:43 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			109 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			109 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
import $ from "jquery";
 | 
						|
 | 
						|
import * as overlays from "./overlays";
 | 
						|
import * as people from "./people";
 | 
						|
import * as user_status from "./user_status";
 | 
						|
 | 
						|
export function input_field() {
 | 
						|
    return $(".user_status_overlay input.user_status");
 | 
						|
}
 | 
						|
 | 
						|
export function submit_button() {
 | 
						|
    return $(".user_status_overlay .set_user_status");
 | 
						|
}
 | 
						|
 | 
						|
export function open_overlay() {
 | 
						|
    const overlay = $(".user_status_overlay");
 | 
						|
    overlays.open_overlay({
 | 
						|
        name: "user_status_overlay",
 | 
						|
        overlay,
 | 
						|
        on_close() {},
 | 
						|
    });
 | 
						|
 | 
						|
    const user_id = people.my_current_user_id();
 | 
						|
    const old_status_text = user_status.get_status_text(user_id);
 | 
						|
    const field = input_field();
 | 
						|
    field.val(old_status_text);
 | 
						|
    field.trigger("select");
 | 
						|
    field.trigger("focus");
 | 
						|
    toggle_clear_message_button();
 | 
						|
 | 
						|
    const button = submit_button();
 | 
						|
    button.prop("disabled", true);
 | 
						|
}
 | 
						|
 | 
						|
export function close_overlay() {
 | 
						|
    overlays.close_overlay("user_status_overlay");
 | 
						|
}
 | 
						|
 | 
						|
export function submit_new_status() {
 | 
						|
    const user_id = people.my_current_user_id();
 | 
						|
    let old_status_text = user_status.get_status_text(user_id) || "";
 | 
						|
    old_status_text = old_status_text.trim();
 | 
						|
    const new_status_text = input_field().val().trim();
 | 
						|
 | 
						|
    if (old_status_text === new_status_text) {
 | 
						|
        close_overlay();
 | 
						|
        return;
 | 
						|
    }
 | 
						|
 | 
						|
    user_status.server_update({
 | 
						|
        status_text: new_status_text,
 | 
						|
        success() {
 | 
						|
            close_overlay();
 | 
						|
        },
 | 
						|
    });
 | 
						|
}
 | 
						|
 | 
						|
export function update_button() {
 | 
						|
    const user_id = people.my_current_user_id();
 | 
						|
    let old_status_text = user_status.get_status_text(user_id) || "";
 | 
						|
    old_status_text = old_status_text.trim();
 | 
						|
    const new_status_text = input_field().val().trim();
 | 
						|
    const button = submit_button();
 | 
						|
 | 
						|
    if (old_status_text === new_status_text) {
 | 
						|
        button.prop("disabled", true);
 | 
						|
    } else {
 | 
						|
        button.prop("disabled", false);
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
export function toggle_clear_message_button() {
 | 
						|
    if (input_field().val() !== "") {
 | 
						|
        $("#clear_status_message_button").prop("disabled", false);
 | 
						|
    } else {
 | 
						|
        $("#clear_status_message_button").prop("disabled", true);
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
export function clear_message() {
 | 
						|
    const field = input_field();
 | 
						|
    field.val("");
 | 
						|
    $("#clear_status_message_button").prop("disabled", true);
 | 
						|
}
 | 
						|
 | 
						|
export function initialize() {
 | 
						|
    $("body").on("click", ".user_status_overlay .set_user_status", () => {
 | 
						|
        submit_new_status();
 | 
						|
    });
 | 
						|
 | 
						|
    $("body").on("keypress", ".user_status_overlay .user_status", (event) => {
 | 
						|
        if (event.key === "Enter") {
 | 
						|
            event.preventDefault();
 | 
						|
 | 
						|
            submit_new_status();
 | 
						|
        }
 | 
						|
    });
 | 
						|
 | 
						|
    $("body").on("keyup", ".user_status_overlay input.user_status", () => {
 | 
						|
        update_button();
 | 
						|
        toggle_clear_message_button();
 | 
						|
    });
 | 
						|
 | 
						|
    $("#clear_status_message_button").on("click", () => {
 | 
						|
        clear_message();
 | 
						|
        update_button();
 | 
						|
    });
 | 
						|
}
 |