platform/plugins/chunter-resources/src/components/EditChannel.svelte
Alexander Platov 9cecb990ee
Fix Activity layout. ()
Signed-off-by: Alexander Platov <sas_lord@mail.ru>
2022-05-15 11:50:49 +07:00

125 lines
4.0 KiB
Svelte
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!--
//
// Copyright © 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 { ChunterSpace } from '@anticrm/chunter'
import { EmployeeAccount } from '@anticrm/contact'
import type { Class, Ref } from '@anticrm/core'
import { createQuery, getClient, Members } from '@anticrm/presentation'
import { Icon, Label, Scroller, showPopup, Panel } from '@anticrm/ui'
import { createEventDispatcher } from 'svelte'
import chunter from '../plugin'
import AddMembersPopup from './AddMembersPopup.svelte'
import EditChannelDescriptionTab from './EditChannelDescriptionTab.svelte'
import EditChannelSettingsTab from './EditChannelSettingsTab.svelte'
import Lock from './icons/Lock.svelte'
export let _id: Ref<ChunterSpace>
export let _class: Ref<Class<ChunterSpace>>
let channel: ChunterSpace
const dispatch = createEventDispatcher()
const client = getClient()
$: clazz = client.getHierarchy().getClass(_class)
const query = createQuery()
$: query.query(chunter.class.ChunterSpace, { _id }, (result) => {
channel = result[0]
})
function openAddMembersPopup () {
showPopup(
AddMembersPopup,
{ channel },
undefined,
() => {},
async (membersIds: Ref<EmployeeAccount>[]) => {
if (membersIds) {
membersIds
.filter((m: Ref<EmployeeAccount>) => !channel.members.includes(m))
.forEach(async (m) => {
await client.update(channel, { $push: { members: m } })
})
}
}
)
}
</script>
<Panel
isHeader={false}
isAside={_class === chunter.class.Channel}
on:close={() => {
dispatch('close')
}}
>
<svelte:fragment slot="title">
{#if clazz && channel}
{#if _class === chunter.class.DirectMessage}
<span class="fs-title"><Label label={clazz.label} /></span>
{:else}
<div class="antiTitle icon-wrapper">
<div class="wrapped-icon">
{#if clazz.icon}<Icon icon={channel.private ? Lock : clazz.icon} size={'medium'} />{/if}
</div>
<div class="title-wrapper">
<span class="wrapped-title">
<span class="trans-title content-color"><Label label={clazz.label} /></span>
{channel.name}
</span>
<span class="wrapped-subtitle">{channel.description}</span>
</div>
</div>
{/if}
{/if}
</svelte:fragment>
<svelte:fragment slot="aside">
{#if _class === chunter.class.Channel}
<div class="flex-col-center">
<span class="fs-title text-xl overflow-label mt-4 mb-2"><Label label={chunter.string.Settings} /></span>
<EditChannelSettingsTab {channel} on:close />
</div>
{/if}
</svelte:fragment>
<Scroller>
<div class="popupPanel-body__main-content py-10 h-full clear-mins">
{#if channel}
<div class="flex-col flex-no-shrink">
<span class="fs-title text-xl overflow-label mb-2 flex-no-shrink">
<Label label={chunter.string.About} />
</span>
<EditChannelDescriptionTab {channel} on:close />
</div>
<div class="flex-col mt-10 flex-no-shrink">
<span class="fs-title text-xl overflow-label mb-2 flex-no-shrink">
<Label label={chunter.string.Members} />
</span>
<Members
space={channel}
withAddButton={true}
withInviteWorkspaceButton={true}
on:addMembers={openAddMembersPopup}
/>
</div>
{/if}
</div>
</Scroller>
</Panel>