platform/plugins/contact-resources/src/components/ChannelsEditor.svelte
Denis Bykhov 3179d122b8
Employee email channel (#2711)
Signed-off-by: Denis Bykhov <bykhov.denis@gmail.com>
2023-03-06 15:51:41 +07:00

135 lines
3.9 KiB
Svelte

<!--
// Copyright © 2020, 2021 Anticrm Platform Contributors.
// Copyright © 2021, 2022 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 type { Class, Doc, Ref } from '@hcengineering/core'
import { createQuery, getClient } from '@hcengineering/presentation'
import { ButtonKind, ButtonSize, closeTooltip } from '@hcengineering/ui'
import { Channel, ChannelProvider } from '@hcengineering/contact'
import { showPopup } from '@hcengineering/ui'
import contact from '../plugin'
import ChannelsDropdown from './ChannelsDropdown.svelte'
export let attachedTo: Ref<Doc>
export let attachedClass: Ref<Class<Doc>>
export let integrations: Set<Ref<Doc>> | undefined = undefined
export let editable: boolean = true
export let allowOpen = true
export let focusIndex = -1
export let kind: ButtonKind = 'link-bordered'
export let size: ButtonSize = 'small'
export let length: 'short' | 'full' = 'full'
export let shape: 'circle' | undefined = 'circle'
export let restricted: Ref<ChannelProvider>[] = []
let channels: Channel[] = []
function findValue (provider: Ref<ChannelProvider>): Channel | undefined {
for (let i = 0; i < channels.length; i++) {
if (channels[i].provider === provider) return channels[i]
}
return undefined
}
const query = createQuery()
$: attachedTo &&
query.query(
contact.class.Channel,
{
attachedTo
},
(res) => {
channels = res
}
)
const client = getClient()
async function save (newValues: Channel[]): Promise<void> {
const currentProviders = new Set(channels.map((p) => p.provider))
const promises = []
for (const value of newValues) {
const oldChannel = findValue(value.provider)
if (oldChannel === undefined) {
if (value.value.length === 0) continue
promises.push(
client.addCollection(contact.class.Channel, contact.space.Contacts, attachedTo, attachedClass, 'channels', {
value: value.value,
provider: value.provider
})
)
} else {
currentProviders.delete(value.provider)
if (value.value === oldChannel.value) continue
promises.push(
client.updateCollection(
oldChannel._class,
oldChannel.space,
oldChannel._id,
oldChannel.attachedTo,
oldChannel.attachedToClass,
oldChannel.collection,
{
value: value.value
}
)
)
}
}
for (const value of currentProviders) {
const oldChannel = findValue(value)
if (oldChannel === undefined) continue
promises.push(
client.removeCollection(
oldChannel._class,
oldChannel.space,
oldChannel._id,
oldChannel.attachedTo,
oldChannel.attachedToClass,
oldChannel.collection
)
)
}
Promise.all(promises)
}
function _open (ev: any) {
if (ev.detail.presenter !== undefined) {
if (allowOpen) {
closeTooltip()
showPopup(ev.detail.presenter, { _id: attachedTo, _class: attachedClass }, 'float')
}
}
}
</script>
<ChannelsDropdown
value={channels}
{kind}
{size}
{length}
{integrations}
{editable}
{restricted}
{shape}
{focusIndex}
on:change={(e) => {
if (editable) save(e.detail)
}}
on:open={_open}
/>