e597e75847
This means we also apply the collapsing to normal queries, which might also collapse other things like joins / quits which may be undesired by some Fixes: https://github.com/thelounge/thelounge/issues/4583
47 lines
785 B
TypeScript
47 lines
785 B
TypeScript
const colorCodeMap = [
|
|
["00", "White"],
|
|
["01", "Black"],
|
|
["02", "Blue"],
|
|
["03", "Green"],
|
|
["04", "Red"],
|
|
["05", "Brown"],
|
|
["06", "Magenta"],
|
|
["07", "Orange"],
|
|
["08", "Yellow"],
|
|
["09", "Light Green"],
|
|
["10", "Cyan"],
|
|
["11", "Light Cyan"],
|
|
["12", "Light Blue"],
|
|
["13", "Pink"],
|
|
["14", "Grey"],
|
|
["15", "Light Grey"],
|
|
];
|
|
|
|
const condensedTypes = new Set([
|
|
"away",
|
|
"back",
|
|
"chghost",
|
|
"join",
|
|
"kick",
|
|
"mode",
|
|
"nick",
|
|
"part",
|
|
"quit",
|
|
]);
|
|
|
|
const timeFormats = {
|
|
msgDefault: "HH:mm",
|
|
msgWithSeconds: "HH:mm:ss",
|
|
msg12h: "hh:mm A",
|
|
msg12hWithSeconds: "hh:mm:ss A",
|
|
};
|
|
|
|
export default {
|
|
colorCodeMap,
|
|
commands: [] as string[],
|
|
condensedTypes,
|
|
timeFormats,
|
|
// Same value as media query in CSS that forces sidebars to become overlays
|
|
mobileViewportPixels: 768,
|
|
};
|