platform/plugins/chunter-resources/src/components/chat/create/CreateChannel.svelte
Kristina af332c6beb
Fix extra tg notifications (#6362)
Signed-off-by: Kristina Fefelova <kristin.fefelova@gmail.com>
2024-08-21 17:38:53 +07:00

116 lines
3.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 { createEventDispatcher } from 'svelte'
import { ModernEditbox, ButtonMenu, Label, Modal, TextArea } from '@hcengineering/ui'
import presentation, { getClient } from '@hcengineering/presentation'
import core, { getCurrentAccount } from '@hcengineering/core'
import notification from '@hcengineering/notification'
import contact, { PersonAccount } from '@hcengineering/contact'
import Lock from '../../icons/Lock.svelte'
import chunter from '../../../plugin'
import { openChannel } from '../../../navigation'
const dispatch = createEventDispatcher()
const client = getClient()
const visibilityOptions = [
{
id: 'public',
icon: chunter.icon.Hashtag,
label: chunter.string.Public
},
{
id: 'private',
icon: Lock,
label: chunter.string.Private
}
]
let selectedVisibilityId = visibilityOptions[0].id
let channelName = ''
let description = ''
let canSave = true
$: visibilityIcon = visibilityOptions.find(({ id }) => id === selectedVisibilityId)?.icon ?? visibilityOptions[0].icon
$: visibilityLabel =
visibilityOptions.find(({ id }) => id === selectedVisibilityId)?.label ?? visibilityOptions[0].label
$: canSave = !!channelName
async function save (): Promise<void> {
const account = getCurrentAccount() as PersonAccount
const space = await client.findOne(
contact.class.PersonSpace,
{ person: account.person },
{ projection: { _id: 1 } }
)
if (!space) return
const channelId = await client.createDoc(chunter.class.Channel, core.space.Space, {
name: channelName,
description: '',
private: selectedVisibilityId === 'private',
archived: false,
members: [account._id],
topic: description
})
openChannel(channelId, chunter.class.Channel)
}
function handleCancel (): void {
dispatch('close')
}
</script>
<Modal
label={chunter.string.NewChannel}
type="type-popup"
okLabel={presentation.string.Create}
okAction={save}
{canSave}
onCancel={handleCancel}
on:close
>
<div class="hulyModal-content__titleGroup" style="padding: 0">
<ModernEditbox bind:value={channelName} label={chunter.string.NewChannel} size="large" kind="ghost" />
<TextArea
placeholder={chunter.string.DescriptionOptional}
width="100%"
height="6.5rem"
margin="var(--spacing-1) var(--spacing-2)"
noFocusBorder
bind:value={description}
/>
</div>
<div class="hulyModal-content__settingsSet">
<div class="hulyModal-content__settingsSet-line">
<span class="label"><Label label={chunter.string.Visibility} /></span>
<ButtonMenu
items={visibilityOptions}
selected={selectedVisibilityId}
icon={visibilityIcon}
label={visibilityLabel}
kind="secondary"
size="medium"
on:selected={(ev) => {
selectedVisibilityId = ev.detail
}}
/>
</div>
</div>
</Modal>