platform/plugins/chunter-resources/src/components/Replies.svelte
Alexander Platov a07f88033f
UBER-486: updated people avatars. (#3720)
Signed-off-by: Alexander Platov <sas_lord@mail.ru>
2023-09-21 00:01:09 +07:00

129 lines
3.9 KiB
Svelte

<!--
// Copyright © 2022 Hardcore Engineering Inc.
//
// Licensed under the Eclipse Public License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License. You may
// obtain a copy of the License at https://www.eclipse.org/legal/epl-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
//
// See the License for the specific language governing permissions and
// limitations under the License.
-->
<script lang="ts">
import { Message } from '@hcengineering/chunter'
import { Person } from '@hcengineering/contact'
import { personByIdStore } from '@hcengineering/contact-resources'
import { Doc, IdMap, Ref } from '@hcengineering/core'
import { Avatar } from '@hcengineering/contact-resources'
import { Label, TimeSince } from '@hcengineering/ui'
import { NotificationClientImpl } from '@hcengineering/notification-resources'
import { DocUpdates } from '@hcengineering/notification'
import chunter from '../plugin'
export let message: Message
$: lastReply = message.lastReply ?? new Date().getTime()
$: employees = new Set(message.replies)
const notificationClient = NotificationClientImpl.getClient()
const docUpdates = notificationClient.docUpdatesStore
const shown: number = 4
let showReplies: Person[] = []
$: hasNew = checkNewReplies(message, $docUpdates)
$: updateQuery(employees, $personByIdStore)
function checkNewReplies (message: Message, docUpdates: Map<Ref<Doc>, DocUpdates>): boolean {
const docUpdate = docUpdates.get(message._id)
if (docUpdate === undefined) return false
return docUpdate.txes.filter((tx) => tx.isNew).length > 0
}
function updateQuery (employees: Set<Ref<Person>>, map: IdMap<Person>) {
showReplies = []
for (const employee of employees) {
const emp = map.get(employee)
if (emp !== undefined) {
showReplies.push(emp)
}
}
showReplies = showReplies
}
</script>
<!-- svelte-ignore a11y-click-events-have-key-events -->
<div class="flex-row-center container cursor-pointer" on:click>
<div class="flex-row-center">
{#each showReplies as reply}
<div class="reply"><Avatar size={'x-small'} avatar={reply.avatar} name={reply.name} /></div>
{/each}
{#if employees.size > shown}
<div class="reply"><span>+{employees.size - shown}</span></div>
{/if}
</div>
<div class="whitespace-nowrap ml-2 mr-2 over-underline">
<Label label={chunter.string.RepliesCount} params={{ replies: message.replies?.length ?? 0 }} />
</div>
{#if hasNew}
<div class="marker" />
{/if}
{#if (message.replies?.length ?? 0) > 1}
<div class="mr-1">
<Label label={chunter.string.LastReply} />
</div>
{/if}
<TimeSince value={lastReply} />
</div>
<style lang="scss">
.container {
user-select: none;
border: 1px solid transparent;
border-radius: 0.5rem;
padding: 0.25rem;
.reply {
display: flex;
justify-content: center;
align-items: center;
background-color: var(--theme-bg-color);
border-radius: 50%;
span {
display: flex;
justify-content: center;
align-items: center;
width: 1.5rem;
height: 1.5rem;
font-size: 0.75rem;
font-weight: 500;
line-height: 0.5;
color: var(--caption-color);
background-color: var(--theme-bg-accent-color);
border-radius: 50%;
}
}
.reply + .reply {
margin-left: 0.25rem;
}
&:hover {
border: 1px solid var(--button-border-hover);
background-color: var(--theme-bg-color);
}
}
.marker {
margin: 0 0.25rem 0 -0.25rem;
width: 0.425rem;
height: 0.425rem;
border-radius: 50%;
background-color: var(--highlight-red);
}
</style>