2021-08-07 14:49:14 +00:00
|
|
|
<!--
|
|
|
|
// Copyright © 2020, 2021 Anticrm Platform Contributors.
|
|
|
|
// Copyright © 2021 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">
|
2021-09-08 16:42:40 +00:00
|
|
|
import { getResource } from '@anticrm/platform'
|
2021-08-07 14:49:14 +00:00
|
|
|
import type { Person } from '@anticrm/contact'
|
2021-09-09 07:35:17 +00:00
|
|
|
import { Avatar, getClient } from '@anticrm/presentation'
|
2021-09-08 16:42:40 +00:00
|
|
|
import { showPopup } from '@anticrm/ui'
|
|
|
|
import view from '@anticrm/view'
|
2021-08-07 14:49:14 +00:00
|
|
|
|
|
|
|
export let value: Person
|
|
|
|
|
2021-09-08 16:42:40 +00:00
|
|
|
async function onClick() {
|
|
|
|
const client = getClient()
|
|
|
|
const hierarchy = client.getHierarchy()
|
|
|
|
const clazz = hierarchy.getClass(value._class)
|
|
|
|
const editorMixin = hierarchy.as(clazz, view.mixin.ObjectEditor)
|
|
|
|
const editor = await getResource(editorMixin.editor)
|
2021-09-15 17:03:34 +00:00
|
|
|
showPopup(editor, { _id: value._id }, 'full')
|
2021-09-08 16:42:40 +00:00
|
|
|
}
|
|
|
|
|
2021-08-07 14:49:14 +00:00
|
|
|
</script>
|
|
|
|
|
2021-09-09 07:35:17 +00:00
|
|
|
<div class="flex-row-center user-container" on:click={onClick}>
|
|
|
|
<Avatar size={'x-small'} />
|
|
|
|
<div class="overflow-label user">{value.firstName + ' ' + value.lastName}</div>
|
|
|
|
</div>
|
2021-08-07 14:49:14 +00:00
|
|
|
|
2021-09-09 07:35:17 +00:00
|
|
|
<style lang="scss">
|
|
|
|
.user-container {
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
.user {
|
|
|
|
margin-left: .5rem;
|
|
|
|
font-weight: 500;
|
|
|
|
text-align: left;
|
|
|
|
color: var(--theme-content-accent-color);
|
|
|
|
}
|
|
|
|
&:hover .user {
|
|
|
|
text-decoration: underline;
|
|
|
|
color: var(--theme-caption-color);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|