hardlounge/client/components/MessageCondensed.vue

130 lines
2.9 KiB
Vue
Raw Normal View History

2018-07-09 08:14:44 -04:00
<template>
2019-12-15 06:46:43 -05:00
<div :class="['msg', {closed: isCollapsed}]" data-type="condensed">
2018-07-13 03:43:31 -04:00
<div class="condensed-summary">
2018-07-29 13:57:14 -04:00
<span class="time" />
<span class="from" />
2019-07-17 05:33:59 -04:00
<span class="content" @click="onCollapseClick"
>{{ condensedText
}}<button class="toggle-button" aria-label="Toggle status messages"
/></span>
2018-07-09 08:14:44 -04:00
</div>
<Message
v-for="message in messages"
2018-07-29 13:57:14 -04:00
:key="message.id"
2018-07-19 13:44:24 -04:00
:network="network"
:message="message"
/>
2018-07-09 08:14:44 -04:00
</div>
</template>
<script>
2019-12-17 17:10:50 -05:00
const constants = require("../js/constants");
2018-07-09 08:14:44 -04:00
import Message from "./Message.vue";
export default {
name: "MessageCondensed",
components: {
Message,
2018-07-09 08:14:44 -04:00
},
props: {
2018-07-19 13:44:24 -04:00
network: Object,
2018-07-09 08:14:44 -04:00
messages: Array,
keepScrollPosition: Function,
focused: Boolean,
2018-07-09 08:14:44 -04:00
},
data() {
return {
isCollapsed: true,
};
},
2018-07-09 08:14:44 -04:00
computed: {
condensedText() {
const obj = {};
constants.condensedTypes.forEach((type) => {
obj[type] = 0;
});
for (const message of this.messages) {
// special case since one MODE message can change multiple modes
if (message.type === "mode") {
// syntax: +vv-t maybe-some targets
// we want the number of mode changes in the message, so count the
// number of chars other than + and - before the first space
const modeChangesCount = message.text
.split(" ")[0]
.split("")
.filter((char) => char !== "+" && char !== "-").length;
obj[message.type] += modeChangesCount;
} else {
obj[message.type]++;
}
2018-07-09 08:14:44 -04:00
}
// Count quits as parts in condensed messages to reduce information density
obj.part += obj.quit;
const strings = [];
constants.condensedTypes.forEach((type) => {
if (obj[type]) {
switch (type) {
2019-07-17 05:33:59 -04:00
case "chghost":
strings.push(
obj[type] +
(obj[type] > 1
? " users have changed hostname"
: " user has changed hostname")
);
break;
case "join":
strings.push(
obj[type] +
(obj[type] > 1 ? " users have joined" : " user has joined")
);
break;
case "part":
strings.push(
obj[type] + (obj[type] > 1 ? " users have left" : " user has left")
);
break;
case "nick":
strings.push(
obj[type] +
(obj[type] > 1
? " users have changed nick"
: " user has changed nick")
);
break;
case "kick":
strings.push(
obj[type] +
(obj[type] > 1 ? " users were kicked" : " user was kicked")
);
break;
case "mode":
strings.push(
obj[type] + (obj[type] > 1 ? " modes were set" : " mode was set")
);
break;
2018-07-09 08:14:44 -04:00
}
}
});
let text = strings.pop();
if (strings.length) {
text = strings.join(", ") + ", and " + text;
}
return text;
},
},
methods: {
onCollapseClick() {
this.isCollapsed = !this.isCollapsed;
this.keepScrollPosition();
},
},
2018-07-09 08:14:44 -04:00
};
</script>