2019-12-31 16:21:34 +00:00
|
|
|
<template>
|
|
|
|
<div id="chat-container" class="window">
|
|
|
|
<div
|
|
|
|
id="chat"
|
|
|
|
:class="{
|
|
|
|
'colored-nicks': $store.state.settings.coloredNicks,
|
|
|
|
'show-seconds': $store.state.settings.showSeconds,
|
|
|
|
}"
|
|
|
|
>
|
|
|
|
<div
|
|
|
|
class="chat-view"
|
|
|
|
data-type="search-results"
|
|
|
|
aria-label="Search results"
|
|
|
|
role="tabpanel"
|
|
|
|
>
|
|
|
|
<div class="header">
|
|
|
|
<SidebarToggle />
|
|
|
|
<span class="title"
|
|
|
|
>Search results for "{{ $route.params.term }}" in
|
|
|
|
{{ $route.params.target }}</span
|
|
|
|
>
|
|
|
|
<span class="topic"></span>
|
|
|
|
<MessageSearchForm :network="network" :channel="channel" />
|
|
|
|
</div>
|
|
|
|
<div class="chat-content">
|
|
|
|
<div ref="chat" class="chat" tabindex="-1">
|
|
|
|
<div v-show="moreResultsAvailable" class="show-more">
|
|
|
|
<button
|
|
|
|
ref="loadMoreButton"
|
|
|
|
:disabled="
|
|
|
|
$store.state.messageSearchInProgress ||
|
2020-03-07 12:56:50 +00:00
|
|
|
!$store.state.isConnected
|
2019-12-31 16:21:34 +00:00
|
|
|
"
|
|
|
|
class="btn"
|
|
|
|
@click="onShowMoreClick"
|
|
|
|
>
|
|
|
|
<span v-if="$store.state.messageSearchInProgress">Loading…</span>
|
|
|
|
<span v-else>Show older messages</span>
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
|
2020-04-23 16:50:45 +00:00
|
|
|
<div
|
|
|
|
v-if="$store.state.messageSearchInProgress && !offset"
|
|
|
|
class="search-status"
|
|
|
|
>
|
2020-03-07 11:01:22 +00:00
|
|
|
Searching…
|
2019-12-31 16:21:34 +00:00
|
|
|
</div>
|
2020-04-23 16:50:45 +00:00
|
|
|
<div v-else-if="!messages.length && !offset" class="search-status">
|
2019-12-31 16:21:34 +00:00
|
|
|
No results found.
|
|
|
|
</div>
|
|
|
|
<div
|
|
|
|
v-else
|
|
|
|
class="messages"
|
|
|
|
role="log"
|
|
|
|
aria-live="polite"
|
|
|
|
aria-relevant="additions"
|
|
|
|
>
|
|
|
|
<template v-for="(message, id) in messages">
|
2021-01-26 22:51:22 +00:00
|
|
|
<div class="result" v-on:click="jump(message, id)">
|
|
|
|
<DateMarker
|
|
|
|
v-if="shouldDisplayDateMarker(message, id)"
|
|
|
|
:key="message.date"
|
|
|
|
:message="message"
|
|
|
|
/>
|
|
|
|
<Message
|
|
|
|
:key="message.id"
|
|
|
|
:channel="channel"
|
|
|
|
:network="network"
|
|
|
|
:message="message"
|
|
|
|
:data-id="message.id"
|
|
|
|
/>
|
|
|
|
</div>
|
2019-12-31 16:21:34 +00:00
|
|
|
</template>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import socket from "../../js/socket";
|
|
|
|
|
|
|
|
import SidebarToggle from "../SidebarToggle.vue";
|
|
|
|
import Message from "../Message.vue";
|
|
|
|
import MessageSearchForm from "../MessageSearchForm.vue";
|
|
|
|
import DateMarker from "../DateMarker.vue";
|
|
|
|
|
|
|
|
export default {
|
|
|
|
name: "SearchResults",
|
|
|
|
components: {
|
|
|
|
SidebarToggle,
|
|
|
|
Message,
|
|
|
|
DateMarker,
|
|
|
|
MessageSearchForm,
|
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
offset: 0,
|
|
|
|
moreResultsAvailable: false,
|
2020-04-23 16:50:45 +00:00
|
|
|
oldScrollTop: 0,
|
|
|
|
oldChatHeight: 0,
|
2019-12-31 16:21:34 +00:00
|
|
|
};
|
|
|
|
},
|
|
|
|
computed: {
|
|
|
|
search() {
|
|
|
|
return this.$store.state.messageSearchResults;
|
|
|
|
},
|
|
|
|
messages() {
|
|
|
|
if (!this.search) {
|
|
|
|
return [];
|
|
|
|
}
|
|
|
|
|
|
|
|
return this.search.results.slice().reverse();
|
|
|
|
},
|
|
|
|
chan() {
|
|
|
|
if (!this.search) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const chan = this.$store.getters.findChannelOnNetwork(
|
|
|
|
this.search.networkUuid,
|
|
|
|
this.search.target
|
|
|
|
);
|
|
|
|
return chan;
|
|
|
|
},
|
|
|
|
network() {
|
|
|
|
if (!this.chan) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
return this.chan.network;
|
|
|
|
},
|
|
|
|
channel() {
|
|
|
|
if (!this.chan) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
return this.chan.channel;
|
|
|
|
},
|
|
|
|
},
|
|
|
|
watch: {
|
|
|
|
"$route.params.uuid"() {
|
|
|
|
this.doSearch();
|
|
|
|
},
|
|
|
|
"$route.params.target"() {
|
|
|
|
this.doSearch();
|
|
|
|
},
|
|
|
|
"$route.params.term"() {
|
|
|
|
this.doSearch();
|
|
|
|
},
|
|
|
|
messages() {
|
|
|
|
this.moreResultsAvailable = this.messages.length && !(this.messages.length % 100);
|
2020-04-23 16:50:45 +00:00
|
|
|
|
|
|
|
if (!this.offset) {
|
|
|
|
this.jumpToBottom();
|
|
|
|
} else {
|
|
|
|
this.$nextTick(() => {
|
|
|
|
const currentChatHeight = this.$refs.chat.scrollHeight;
|
|
|
|
this.$refs.chat.scrollTop =
|
|
|
|
this.oldScrollTop + currentChatHeight - this.oldChatHeight;
|
|
|
|
});
|
|
|
|
}
|
2019-12-31 16:21:34 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
mounted() {
|
|
|
|
this.doSearch();
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
shouldDisplayDateMarker(message, id) {
|
|
|
|
const previousMessage = this.messages[id - 1];
|
|
|
|
|
|
|
|
if (!previousMessage) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return new Date(previousMessage.time).getDay() !== new Date(message.time).getDay();
|
|
|
|
},
|
|
|
|
doSearch() {
|
|
|
|
this.offset = 0;
|
|
|
|
this.$store.commit("messageSearchInProgress", true);
|
2020-04-23 16:50:45 +00:00
|
|
|
|
|
|
|
if (!this.offset) {
|
|
|
|
this.$store.commit("messageSearchResults", null); // Only reset if not getting offset
|
|
|
|
}
|
|
|
|
|
2019-12-31 16:21:34 +00:00
|
|
|
socket.emit("search", {
|
|
|
|
networkUuid: this.$route.params.uuid,
|
|
|
|
channelName: this.$route.params.target,
|
|
|
|
searchTerm: this.$route.params.term,
|
|
|
|
offset: this.offset,
|
|
|
|
});
|
|
|
|
},
|
|
|
|
onShowMoreClick() {
|
|
|
|
this.offset += 100;
|
|
|
|
this.$store.commit("messageSearchInProgress", true);
|
2020-04-23 16:50:45 +00:00
|
|
|
|
|
|
|
this.oldScrollTop = this.$refs.chat.scrollTop;
|
|
|
|
this.oldChatHeight = this.$refs.chat.scrollHeight;
|
|
|
|
|
2019-12-31 16:21:34 +00:00
|
|
|
socket.emit("search", {
|
|
|
|
networkUuid: this.$route.params.uuid,
|
|
|
|
channelName: this.$route.params.target,
|
|
|
|
searchTerm: this.$route.params.term,
|
2020-03-07 12:56:50 +00:00
|
|
|
offset: this.offset + 1,
|
2019-12-31 16:21:34 +00:00
|
|
|
});
|
|
|
|
},
|
|
|
|
jumpToBottom() {
|
|
|
|
this.$nextTick(() => {
|
|
|
|
const el = this.$refs.chat;
|
|
|
|
el.scrollTop = el.scrollHeight;
|
|
|
|
});
|
|
|
|
},
|
2021-01-26 22:51:22 +00:00
|
|
|
jump(message, id) {
|
|
|
|
// TODO: Implement jumping to messages!
|
|
|
|
// This is difficult because it means client will need to handle a potentially nonlinear message set
|
|
|
|
// (loading IntersectionObserver both before AND after the messages)
|
|
|
|
// this.$router.push({
|
|
|
|
// name: "MessageList",
|
|
|
|
// params: {
|
|
|
|
// id: this.chan.id,
|
|
|
|
// },
|
|
|
|
// query: {
|
|
|
|
// focused: id
|
|
|
|
// }
|
|
|
|
// });
|
|
|
|
},
|
2019-12-31 16:21:34 +00:00
|
|
|
},
|
|
|
|
};
|
|
|
|
</script>
|