-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Chunter: Convert direct message to private channel (#1752)
Signed-off-by: Denis Bunakalya <denis.bunakalya@xored.com>
- Loading branch information
1 parent
b834d4c
commit d689bf5
Showing
7 changed files
with
108 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
71 changes: 71 additions & 0 deletions
71
plugins/chunter-resources/src/components/ConvertDmToPrivateChannel.svelte
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
<!-- | ||
// 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 { getClient, Card } from '@anticrm/presentation' | ||
import { DirectMessage } from '@anticrm/chunter' | ||
import workbench from '@anticrm/workbench' | ||
import { getResource } from '@anticrm/platform' | ||
import { EditBox, IconFolder } from '@anticrm/ui' | ||
import chunter from '../plugin' | ||
export let dm: DirectMessage | ||
let name = '' | ||
const dispatch = createEventDispatcher() | ||
async function convertDmToPrivateChannel () { | ||
const client = getClient() | ||
await client.updateDoc(dm._class, dm.space, dm._id, { | ||
_class: chunter.class.Channel, | ||
name | ||
} as any) | ||
const navigate = await getResource(workbench.actionImpl.Navigate) | ||
await navigate([], undefined as any, { | ||
mode: 'space', | ||
space: dm.space | ||
}) | ||
await navigate([], undefined as any, { | ||
mode: 'space', | ||
space: dm._id | ||
}) | ||
} | ||
</script> | ||
|
||
<Card | ||
label={chunter.string.ConvertToPrivate} | ||
okLabel={chunter.string.ConvertToPrivate} | ||
okAction={convertDmToPrivateChannel} | ||
canSave={!!name} | ||
on:close={() => { | ||
dispatch('close') | ||
}} | ||
> | ||
<EditBox | ||
label={chunter.string.ChannelName} | ||
icon={IconFolder} | ||
bind:value={name} | ||
placeholder={chunter.string.ChannelNamePlaceholder} | ||
maxWidth={'16rem'} | ||
focus | ||
/> | ||
</Card> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters