mirror of
https://github.com/zulip/zulip.git
synced 2025-10-23 16:14:02 +00:00
129 lines
4.2 KiB
JavaScript
129 lines
4.2 KiB
JavaScript
import $ from "jquery";
|
|
|
|
import * as color_class from "./color_class";
|
|
import {$t} from "./i18n";
|
|
import * as message_view_header from "./message_view_header";
|
|
import * as subs from "./subs";
|
|
|
|
function update_table_stream_color(table, stream_name, color) {
|
|
// This is ugly, but temporary, as the new design will make it
|
|
// so that we only have color in the headers.
|
|
const style = color;
|
|
|
|
const stream_labels = $("#floating_recipient_bar").add(table).find(".stream_label");
|
|
|
|
for (const label of stream_labels) {
|
|
const $label = $(label);
|
|
if ($label.text().trim() === stream_name) {
|
|
const messages = $label.closest(".recipient_row").children(".message_row");
|
|
messages
|
|
.children(".messagebox")
|
|
.css(
|
|
"box-shadow",
|
|
"inset 2px 0px 0px 0px " + style + ", -1px 0px 0px 0px " + style,
|
|
);
|
|
messages
|
|
.children(".date_row")
|
|
.css(
|
|
"box-shadow",
|
|
"inset 2px 0px 0px 0px " + style + ", -1px 0px 0px 0px " + style,
|
|
);
|
|
$label.css({background: style, "border-left-color": style});
|
|
$label.removeClass("dark_background");
|
|
$label.addClass(color_class.get_css_class(color));
|
|
}
|
|
}
|
|
}
|
|
|
|
function update_stream_sidebar_swatch_color(id, color) {
|
|
$(`#stream_sidebar_swatch_${CSS.escape(id)}`).css("background-color", color);
|
|
$(`#stream_sidebar_privacy_swatch_${CSS.escape(id)}`).css("color", color);
|
|
}
|
|
|
|
function update_historical_message_color(stream_name, color) {
|
|
update_table_stream_color($(".focused_table"), stream_name, color);
|
|
if ($(".focused_table").attr("id") !== "#zhome") {
|
|
update_table_stream_color($("#zhome"), stream_name, color);
|
|
}
|
|
}
|
|
|
|
const stream_color_palette = [
|
|
["a47462", "c2726a", "e4523d", "e7664d", "ee7e4a", "f4ae55"],
|
|
["76ce90", "53a063", "94c849", "bfd56f", "fae589", "f5ce6e"],
|
|
["a6dcbf", "addfe5", "a6c7e5", "4f8de4", "95a5fd", "b0a5fd"],
|
|
["c2c2c2", "c8bebf", "c6a8ad", "e79ab5", "bd86e5", "9987e1"],
|
|
];
|
|
|
|
const subscriptions_table_colorpicker_options = {
|
|
clickoutFiresChange: true,
|
|
showPalette: true,
|
|
showInput: true,
|
|
palette: stream_color_palette,
|
|
};
|
|
|
|
export function set_colorpicker_color(colorpicker, color) {
|
|
colorpicker.spectrum({
|
|
...subscriptions_table_colorpicker_options,
|
|
color,
|
|
container: "#subscription_overlay .subscription_settings.show",
|
|
});
|
|
}
|
|
|
|
export function update_stream_color(sub, color, {update_historical = false} = {}) {
|
|
sub.color = color;
|
|
const stream_id = sub.stream_id;
|
|
// The swatch in the subscription row header.
|
|
$(`.stream-row[data-stream-id='${CSS.escape(stream_id)}'] .icon`).css(
|
|
"background-color",
|
|
color,
|
|
);
|
|
// The swatch in the color picker.
|
|
set_colorpicker_color(
|
|
$(
|
|
`#subscription_overlay .subscription_settings[data-stream-id='${CSS.escape(
|
|
stream_id,
|
|
)}'] .colorpicker`,
|
|
),
|
|
color,
|
|
);
|
|
$(
|
|
`#subscription_overlay .subscription_settings[data-stream-id='${CSS.escape(
|
|
stream_id,
|
|
)}'] .large-icon`,
|
|
).css("color", color);
|
|
|
|
if (update_historical) {
|
|
update_historical_message_color(sub.name, color);
|
|
}
|
|
update_stream_sidebar_swatch_color(stream_id, color);
|
|
message_view_header.colorize_message_view_header();
|
|
}
|
|
|
|
function picker_do_change_color(color) {
|
|
const stream_id = Number.parseInt($(this).attr("stream_id"), 10);
|
|
const hex_color = color.toHexString();
|
|
subs.set_color(stream_id, hex_color);
|
|
}
|
|
subscriptions_table_colorpicker_options.change = picker_do_change_color;
|
|
|
|
export const sidebar_popover_colorpicker_options = {
|
|
clickoutFiresChange: true,
|
|
showPaletteOnly: true,
|
|
showPalette: true,
|
|
showInput: true,
|
|
flat: true,
|
|
palette: stream_color_palette,
|
|
change: picker_do_change_color,
|
|
};
|
|
|
|
export const sidebar_popover_colorpicker_options_full = {
|
|
clickoutFiresChange: false,
|
|
showPalette: true,
|
|
showInput: true,
|
|
flat: true,
|
|
cancelText: "",
|
|
chooseText: $t({defaultMessage: "Confirm"}),
|
|
palette: stream_color_palette,
|
|
change: picker_do_change_color,
|
|
};
|