mirror of
https://github.com/thelounge/thelounge
synced 2024-11-10 14:44:13 +00:00
Merge pull request #1475 from thelounge/xpaw/condensed-css
Implement condensed messages option entirely with CSS
This commit is contained in:
commit
918b7382b8
6 changed files with 40 additions and 39 deletions
|
@ -820,24 +820,33 @@ kbd {
|
||||||
flex-basis: 100%;
|
flex-basis: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
#chat .condensed-text {
|
#chat .condensed-summary .content {
|
||||||
|
display: block;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
transition: opacity 0.2s;
|
transition: opacity 0.2s;
|
||||||
}
|
}
|
||||||
|
|
||||||
#chat .condensed-text:hover {
|
#chat .condensed-summary {
|
||||||
opacity: 0.6;
|
|
||||||
}
|
|
||||||
|
|
||||||
#chat .condensed-text .toggle-button:hover {
|
|
||||||
opacity: 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
#chat .condensed.closed .msg {
|
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
#chat .condensed > .time {
|
#chat.condensed-status-messages .condensed-summary {
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
|
||||||
|
#chat .condensed-summary:hover {
|
||||||
|
opacity: 0.6;
|
||||||
|
}
|
||||||
|
|
||||||
|
#chat .condensed-summary .toggle-button:hover {
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
#chat.condensed-status-messages .condensed.closed .msg {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#chat .condensed-summary .time {
|
||||||
visibility: hidden;
|
visibility: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1132,11 +1141,6 @@ kbd {
|
||||||
color: #555;
|
color: #555;
|
||||||
}
|
}
|
||||||
|
|
||||||
#chat.hide-status-messages .join,
|
|
||||||
#chat.hide-status-messages .mode,
|
|
||||||
#chat.hide-status-messages .nick,
|
|
||||||
#chat.hide-status-messages .part,
|
|
||||||
#chat.hide-status-messages .quit,
|
|
||||||
#chat.hide-status-messages .condensed,
|
#chat.hide-status-messages .condensed,
|
||||||
#chat.hide-motd .motd {
|
#chat.hide-motd .motd {
|
||||||
display: none !important;
|
display: none !important;
|
||||||
|
|
|
@ -50,6 +50,6 @@ function updateText(condensed, addedTypes) {
|
||||||
text = strings.join(", ") + ", and " + text;
|
text = strings.join(", ") + ", and " + text;
|
||||||
}
|
}
|
||||||
|
|
||||||
condensed.find(".condensed-text")
|
condensed.find(".condensed-summary .content")
|
||||||
.html(text + templates.msg_condensed_toggle());
|
.html(text + templates.msg_condensed_toggle());
|
||||||
}
|
}
|
||||||
|
|
|
@ -295,7 +295,7 @@ $(function() {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
chat.on("click", ".condensed-text", function() {
|
chat.on("click", ".condensed-summary .content", function() {
|
||||||
$(this).closest(".msg.condensed").toggleClass("closed");
|
$(this).closest(".msg.condensed").toggleClass("closed");
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
@ -84,6 +84,7 @@ settings.on("change", "input, select, textarea", function() {
|
||||||
chat.toggleClass("hide-" + name, !self.prop("checked"));
|
chat.toggleClass("hide-" + name, !self.prop("checked"));
|
||||||
} else if (name === "statusMessages") {
|
} else if (name === "statusMessages") {
|
||||||
chat.toggleClass("hide-status-messages", options[name] === "hidden");
|
chat.toggleClass("hide-status-messages", options[name] === "hidden");
|
||||||
|
chat.toggleClass("condensed-status-messages", options[name] === "condensed");
|
||||||
} else if (name === "coloredNicks") {
|
} else if (name === "coloredNicks") {
|
||||||
chat.toggleClass("colored-nicks", self.prop("checked"));
|
chat.toggleClass("colored-nicks", self.prop("checked"));
|
||||||
} else if (name === "theme") {
|
} else if (name === "theme") {
|
||||||
|
|
|
@ -61,10 +61,9 @@ function appendMessage(container, chanId, chanType, msg) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO: To fix #1432, statusMessage option should entirely be implemented in CSS
|
|
||||||
// If current window is not a channel or this message is not condensable,
|
// If current window is not a channel or this message is not condensable,
|
||||||
// then just append the message to container and be done with it
|
// then just append the message to container and be done with it
|
||||||
if (constants.condensedTypes.indexOf(msg.type) === -1 || chanType !== "channel" || options.statusMessages !== "condensed") {
|
if (constants.condensedTypes.indexOf(msg.type) === -1 || chanType !== "channel") {
|
||||||
container.append(renderedMessage);
|
container.append(renderedMessage);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -74,21 +73,18 @@ function appendMessage(container, chanId, chanType, msg) {
|
||||||
if (lastChild.hasClass("condensed")) {
|
if (lastChild.hasClass("condensed")) {
|
||||||
lastChild.append(renderedMessage);
|
lastChild.append(renderedMessage);
|
||||||
condensed.updateText(lastChild, [msg.type]);
|
condensed.updateText(lastChild, [msg.type]);
|
||||||
// If the previous message can be condensed, we create a new condensed wrapper
|
return;
|
||||||
} else if (lastChild.is(constants.condensedTypesQuery)) {
|
}
|
||||||
|
|
||||||
const newCondensed = buildChatMessage(chanId, {
|
const newCondensed = buildChatMessage(chanId, {
|
||||||
type: "condensed",
|
type: "condensed",
|
||||||
time: msg.time,
|
time: msg.time,
|
||||||
previews: []
|
previews: []
|
||||||
});
|
});
|
||||||
|
|
||||||
condensed.updateText(newCondensed, [msg.type, lastChild.attr("data-type")]);
|
condensed.updateText(newCondensed, [msg.type]);
|
||||||
container.append(newCondensed);
|
|
||||||
newCondensed.append(lastChild);
|
|
||||||
newCondensed.append(renderedMessage);
|
newCondensed.append(renderedMessage);
|
||||||
} else {
|
container.append(newCondensed);
|
||||||
container.append(renderedMessage);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function buildChatMessage(chanId, msg) {
|
function buildChatMessage(chanId, msg) {
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<div class="msg condensed closed" data-time="{{time}}">
|
<div class="msg condensed closed" data-time="{{time}}">
|
||||||
|
<div class="condensed-summary">
|
||||||
<span class="time">{{tz time}}</span>
|
<span class="time">{{tz time}}</span>
|
||||||
<span class="from"></span>
|
<span class="from"></span>
|
||||||
<span class="content">
|
<span class="content"></span>
|
||||||
<span class="condensed-text"></span>
|
</div>
|
||||||
</span>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue