UBERF-4716: Activity info message (#4241)

Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
This commit is contained in:
Andrey Sobolev
2023-12-22 01:13:02 +07:00
committed by GitHub
parent 02e5513dda
commit b5bb679998
12 changed files with 318 additions and 78 deletions
@@ -0,0 +1,63 @@
<!--
// Copyright © 2023 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 { ActivityMessage } from '@hcengineering/activity'
import { Person } from '@hcengineering/contact'
import { Doc } from '@hcengineering/core'
import notification from '../../plugin'
import { Label } from '@hcengineering/ui'
import { DocNavLink } from '@hcengineering/view-resources'
import { LinkData, getLinkData } from '../../activityMessagesUtils'
import { IntlString } from '@hcengineering/platform'
export let message: ActivityMessage
export let person: Person | undefined
export let object: Doc | undefined
export let parentObject: Doc | undefined
export let label: IntlString | undefined = undefined
export let isEdited: boolean = false
let linkData: LinkData | undefined = undefined
$: void getLinkData(message, object, parentObject, person).then((data) => {
linkData = data
})
</script>
<span class="text-sm lower">
{#if label}
<Label {label} />
{/if}
</span>
{#if linkData}
<span class="text-sm lower"><Label label={linkData.preposition} /></span>
<span class="text-sm">
<DocNavLink {object} component={linkData.panelComponent} shrink={0}>
<span class="overflow-label select-text">{linkData.title}</span>
</DocNavLink>
</span>
{#if isEdited}
<span class="text-sm lower"><Label label={notification.string.Edited} /></span>
{/if}
{/if}
<style lang="scss">
span {
margin-left: 0.25rem;
font-weight: 400;
line-height: 1.25rem;
}
</style>