platform/plugins/contact-resources/src/components/PersonPresenter.svelte

79 lines
2.5 KiB
Svelte
Raw Normal View History

<!--
// 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 { getName, Person } from '@hcengineering/contact'
import { getEmbeddedLabel, IntlString } from '@hcengineering/platform'
2023-01-14 10:54:54 +00:00
import { LabelAndProps } from '@hcengineering/ui'
import { PersonLabelTooltip } from '..'
import PersonContent from './PersonContent.svelte'
2022-06-07 08:57:05 +00:00
export let value: Person | null | undefined
export let inline = false
export let enlargedText = false
export let isInteractive = true
export let shouldShowAvatar = true
export let shouldShowName = true
export let shouldShowPlaceholder = false
export let defaultName: IntlString | undefined = undefined
export let statusLabel: IntlString | undefined = undefined
2023-01-14 10:54:54 +00:00
export let tooltipLabels: PersonLabelTooltip | undefined = undefined
export let avatarSize: 'inline' | 'tiny' | 'x-small' | 'small' | 'medium' | 'large' | 'x-large' = 'x-small'
export let onEdit: ((event: MouseEvent) => void) | undefined = undefined
export let element: HTMLElement | undefined = undefined
2023-01-14 10:54:54 +00:00
function getTooltip (
tooltipLabels: PersonLabelTooltip | undefined,
value: Person | null | undefined
): LabelAndProps | undefined {
if (!tooltipLabels) {
return !value
? undefined
: {
label: getEmbeddedLabel(getName(value))
2023-01-14 10:54:54 +00:00
}
}
const component = value ? tooltipLabels.component : undefined
const label = value
? tooltipLabels.personLabel
? tooltipLabels.personLabel
: getEmbeddedLabel(getName(value))
2023-01-14 10:54:54 +00:00
: undefined
const props = tooltipLabels.props ? tooltipLabels.props : undefined
2023-01-14 10:54:54 +00:00
return {
component,
label,
props
}
}
</script>
{#if value || shouldShowPlaceholder}
<PersonContent
2023-01-14 10:54:54 +00:00
showTooltip={getTooltip(tooltipLabels, value)}
{value}
{inline}
{onEdit}
{avatarSize}
{defaultName}
{isInteractive}
{shouldShowAvatar}
{shouldShowName}
{shouldShowPlaceholder}
{enlargedText}
{statusLabel}
bind:element
/>
{/if}