mirror of
https://github.com/hcengineering/platform.git
synced 2025-02-08 20:07:36 +00:00
87 lines
2.5 KiB
Svelte
87 lines
2.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, EmployeeAccount } from '@hcengineering/contact'
|
|
import core, { Account, Ref } from '@hcengineering/core'
|
|
import { IntlString } from '@hcengineering/platform'
|
|
import { createQuery, getClient } from '@hcengineering/presentation'
|
|
import { ButtonKind } from '@hcengineering/ui'
|
|
import UserBoxList from './UserBoxList.svelte'
|
|
|
|
export let label: IntlString
|
|
export let value: Ref<Account>[]
|
|
export let onChange: (refs: Ref<Account>[]) => void
|
|
export let readonly = false
|
|
export let kind: ButtonKind = 'link'
|
|
export let width: string | undefined = undefined
|
|
export let excludeItems: Ref<Account>[] | undefined = undefined
|
|
|
|
let timer: any
|
|
const client = getClient()
|
|
|
|
function onUpdate (evt: CustomEvent<Ref<Employee>[]>): void {
|
|
clearTimeout(timer)
|
|
timer = setTimeout(async () => {
|
|
const accounts = await client.findAll(contact.class.EmployeeAccount, { employee: { $in: evt.detail } })
|
|
onChange(accounts.map((it) => it._id))
|
|
}, 500)
|
|
}
|
|
|
|
const accountQuery = createQuery()
|
|
|
|
let accounts: Account[] = []
|
|
|
|
$: accountQuery.query(core.class.Account, { _id: { $in: value } }, (res) => {
|
|
accounts = res
|
|
})
|
|
|
|
const excludedQuery = createQuery()
|
|
|
|
let excluded: Account[] = []
|
|
|
|
$: if (excludeItems !== undefined && excludeItems.length > 0) {
|
|
excludedQuery.query(core.class.Account, { _id: { $in: excludeItems } }, (res) => {
|
|
excluded = res
|
|
})
|
|
} else {
|
|
excludedQuery.unsubscribe()
|
|
excluded = []
|
|
}
|
|
|
|
$: employess = accounts.map((it) => (it as EmployeeAccount).employee)
|
|
|
|
$: docQuery =
|
|
excluded.length > 0
|
|
? {
|
|
active: true,
|
|
_id: { $nin: excluded.map((p) => (p as EmployeeAccount).employee) }
|
|
}
|
|
: {
|
|
active: true
|
|
}
|
|
</script>
|
|
|
|
<UserBoxList
|
|
items={employess}
|
|
{label}
|
|
{readonly}
|
|
{docQuery}
|
|
on:update={onUpdate}
|
|
size={'medium'}
|
|
justify={'left'}
|
|
width={width ?? 'min-content'}
|
|
{kind}
|
|
/>
|