mirror of
https://github.com/hcengineering/platform.git
synced 2026-08-28 10:49:45 +02:00
154 lines
4.5 KiB
Svelte
154 lines
4.5 KiB
Svelte
<!--
|
|
// 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 { Contact, Employee, getCurrentEmployee, getName, Person } from '@hcengineering/contact'
|
|
import { notEmpty, PersonId, Ref } from '@hcengineering/core'
|
|
import { IntlString } from '@hcengineering/platform'
|
|
import { getClient } from '@hcengineering/presentation'
|
|
import { ButtonKind, ButtonSize } from '@hcengineering/ui'
|
|
import { onDestroy } from 'svelte'
|
|
import contact from '../plugin'
|
|
import { employeeByPersonIdStore, primarySocialIdByEmployeeRefStore } from '../utils'
|
|
import UserBoxList from './UserBoxList.svelte'
|
|
|
|
export let label: IntlString
|
|
export let value: PersonId[]
|
|
export let onChange: ((refs: PersonId[]) => void | Promise<void>) | undefined
|
|
export let readonly = false
|
|
export let kind: ButtonKind = 'link'
|
|
export let size: ButtonSize = 'large'
|
|
export let width: string | undefined = undefined
|
|
export let includeItems: Ref<Person>[] = []
|
|
export let excludeItems: Ref<Person>[] = []
|
|
export let emptyLabel: IntlString | undefined = undefined
|
|
export let allowGuests: boolean = false
|
|
|
|
let timer: any = null
|
|
const client = getClient()
|
|
let update: (() => Promise<void>) | undefined
|
|
|
|
$: valueByPersonRef = new Map<Ref<Employee>, PersonId>(
|
|
value
|
|
.map((p) => {
|
|
const employee = $employeeByPersonIdStore.get(p)
|
|
const ref = employee?._id
|
|
|
|
if (ref == null) {
|
|
console.error('Employee not found for social id', p)
|
|
return null
|
|
}
|
|
|
|
return [ref, p] as const
|
|
})
|
|
.filter(notEmpty)
|
|
)
|
|
|
|
function onUpdate (evt: CustomEvent<Ref<Employee>[]>): void {
|
|
if (timer !== null) {
|
|
clearTimeout(timer)
|
|
}
|
|
update = async () => {
|
|
const newPersons = evt.detail
|
|
const newSocialIds: PersonId[] = []
|
|
for (const person of newPersons) {
|
|
const socialId = valueByPersonRef.get(person)
|
|
if (socialId !== undefined) {
|
|
newSocialIds.push(socialId)
|
|
} else {
|
|
const primaryId = $primarySocialIdByEmployeeRefStore.get(person)
|
|
|
|
if (primaryId === undefined) {
|
|
console.error('Primary social id not found for person', person)
|
|
continue
|
|
}
|
|
|
|
newSocialIds.push(primaryId)
|
|
}
|
|
}
|
|
|
|
void onChange?.(newSocialIds)
|
|
if (timer !== null) {
|
|
clearTimeout(timer)
|
|
}
|
|
timer = null
|
|
update = undefined
|
|
}
|
|
// eslint-disable-next-line @typescript-eslint/no-misused-promises
|
|
timer = setTimeout(() => update?.(), 500)
|
|
}
|
|
|
|
onDestroy(() => {
|
|
void update?.()
|
|
})
|
|
|
|
$: employees = value.map((p) => $employeeByPersonIdStore.get(p)?._id).filter((p) => p !== undefined)
|
|
$: docQuery =
|
|
excludeItems.length === 0 && includeItems.length === 0
|
|
? {}
|
|
: {
|
|
_id: {
|
|
...(includeItems.length > 0
|
|
? {
|
|
$in: includeItems
|
|
}
|
|
: {}),
|
|
...(excludeItems.length > 0
|
|
? {
|
|
$nin: excludeItems
|
|
}
|
|
: {})
|
|
}
|
|
}
|
|
|
|
const hierarchy = client.getHierarchy()
|
|
const me = getCurrentEmployee()
|
|
|
|
function sort (a: Contact, b: Contact): number {
|
|
if (me === a._id) {
|
|
return -1
|
|
}
|
|
if (me === b._id) {
|
|
return 1
|
|
}
|
|
const aIncludes = employees.includes(a._id as Ref<Employee>)
|
|
const bIncludes = employees.includes(b._id as Ref<Employee>)
|
|
if (aIncludes && !bIncludes) {
|
|
return -1
|
|
}
|
|
if (!aIncludes && bIncludes) {
|
|
return 1
|
|
}
|
|
const aName = getName(hierarchy, a)
|
|
const bName = getName(hierarchy, b)
|
|
return aName.localeCompare(bName)
|
|
}
|
|
</script>
|
|
|
|
<UserBoxList
|
|
_class={contact.mixin.Employee}
|
|
items={employees}
|
|
{label}
|
|
{emptyLabel}
|
|
{readonly}
|
|
{docQuery}
|
|
on:update={onUpdate}
|
|
{size}
|
|
{sort}
|
|
justify={'left'}
|
|
width={width ?? 'min-content'}
|
|
{kind}
|
|
create={allowGuests ? { component: contact.component.CreateGuest, label: contact.string.AddGuest } : undefined}
|
|
/>
|