Files
huly-platform/packages/presentation/src/components/UserInfo.svelte
T
Alexander PlatovandGitHub 03d2100c84 Fix avatars (#302)
Signed-off-by: Alexander Platov <sas_lord@mail.ru>
2021-11-15 14:51:24 +01:00

51 lines
1.5 KiB
Svelte

<!--
// Copyright © 2020 Anticrm Platform Contributors.
//
// 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 Avatar from './Avatar.svelte'
import { formatName, Person } from '@anticrm/contact'
export let value: Person
export let subtitle: string | undefined = undefined
export let size: 'x-small' | 'small' | 'medium' | 'large' | 'x-large'
</script>
<div class="flex-row-center" on:click>
<Avatar avatar={value.avatar} {size} />
<div class="flex-col user-info">
{#if subtitle}<div class="subtitle">{subtitle}</div>{/if}
<div class="title">{formatName(value.name)}</div>
</div>
</div>
<style lang="scss">
.user-info {
margin-left: .5rem;
color: var(--theme-content-accent-color);
.subtitle {
font-size: .75rem;
color: var(--theme-content-dark-color);
}
.title {
font-weight: 500;
text-align: left;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
}
</style>