mirror of
https://github.com/hcengineering/platform.git
synced 2025-05-03 13:53:42 +00:00
76 lines
2.5 KiB
Svelte
76 lines
2.5 KiB
Svelte
<!--
|
|
// Copyright © 2022 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 { createEventDispatcher } from 'svelte'
|
|
import { deepEqual } from 'fast-equals'
|
|
|
|
import contact, { Employee } from '@hcengineering/contact'
|
|
import core, { getCurrentAccount, Ref } from '@hcengineering/core'
|
|
import { getClient, SpaceCreateCard } from '@hcengineering/presentation'
|
|
import workbench from '@hcengineering/workbench'
|
|
import { getResource } from '@hcengineering/platform'
|
|
|
|
import chunter from '../plugin'
|
|
import { UserBoxList } from '@hcengineering/contact-resources'
|
|
|
|
const dispatch = createEventDispatcher()
|
|
const client = getClient()
|
|
const myAccId = getCurrentAccount()._id
|
|
|
|
let employeeIds: Ref<Employee>[] = []
|
|
|
|
async function createDirectMessage () {
|
|
const employeeAccounts = await client.findAll(contact.class.EmployeeAccount, { employee: { $in: employeeIds } })
|
|
|
|
const accIds = [myAccId, ...employeeAccounts.filter((ea) => ea._id !== myAccId).map((ea) => ea._id)].sort()
|
|
const existingDms = await client.findAll(chunter.class.DirectMessage, {})
|
|
const navigate = await getResource(workbench.actionImpl.Navigate)
|
|
|
|
for (const dm of existingDms) {
|
|
if (deepEqual(dm.members.sort(), accIds)) {
|
|
await navigate([], undefined as any, {
|
|
mode: 'space',
|
|
space: dm._id
|
|
})
|
|
return
|
|
}
|
|
}
|
|
|
|
const dmId = await client.createDoc(chunter.class.DirectMessage, core.space.Space, {
|
|
name: '',
|
|
description: '',
|
|
private: true,
|
|
archived: false,
|
|
members: accIds
|
|
})
|
|
|
|
await navigate([], undefined as any, {
|
|
mode: 'space',
|
|
space: dmId
|
|
})
|
|
}
|
|
</script>
|
|
|
|
<SpaceCreateCard
|
|
label={chunter.string.NewDirectMessage}
|
|
okAction={createDirectMessage}
|
|
canSave={employeeIds.length > 0}
|
|
on:close={() => {
|
|
dispatch('close')
|
|
}}
|
|
>
|
|
<UserBoxList label={chunter.string.Members} on:update={(evt) => (employeeIds = evt.detail)} />
|
|
</SpaceCreateCard>
|