Files
huly-platform/plugins/gmail-resources/src/components/NewMessage.svelte
T
2022-05-05 15:29:46 +07:00

273 lines
7.5 KiB
Svelte

<!--
// 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 attachmentP, { Attachment } from '@anticrm/attachment'
import { AttachmentPresenter } from '@anticrm/attachment-resources'
import { Channel, Contact, formatName } from '@anticrm/contact'
import { Data, generateId } from '@anticrm/core'
import { NewMessage, SharedMessage } from '@anticrm/gmail'
import { NotificationClientImpl } from '@anticrm/notification-resources'
import { getResource, setPlatformStatus, unknownError } from '@anticrm/platform'
import { createQuery, getClient } from '@anticrm/presentation'
import { TextEditor } from '@anticrm/text-editor'
import { Scroller, IconArrowLeft, IconAttachment, Label } from '@anticrm/ui'
import Button from '@anticrm/ui/src/components/Button.svelte'
import EditBox from '@anticrm/ui/src/components/EditBox.svelte'
import { createEventDispatcher } from 'svelte'
import plugin from '../plugin'
export let object: Contact
export let channel: Channel
export let currentMessage: SharedMessage | undefined
const client = getClient()
const notificationClient = NotificationClientImpl.getClient()
let objectId = generateId()
let editor: TextEditor
let copy: string = ''
const obj: Data<NewMessage> = {
subject: currentMessage ? 'RE: ' + currentMessage.subject : '',
content: '',
to: channel.value,
replyTo: currentMessage?.messageId,
status: 'new'
}
async function sendMsg () {
await client.createDoc(
plugin.class.NewMessage,
plugin.space.Gmail,
{
...obj,
attachments: attachments.length,
copy: copy
.split(',')
.map((m) => m.trim())
.filter((m) => m.length)
},
objectId
)
await notificationClient.updateLastView(channel._id, channel._class, undefined, true)
objectId = generateId()
dispatch('close')
}
const dispatch = createEventDispatcher()
let inputFile: HTMLInputElement
function fileSelected () {
const list = inputFile.files
if (list === null || list.length === 0) return
for (let index = 0; index < list.length; index++) {
const file = list.item(index)
if (file !== null) createAttachment(file)
}
inputFile.value = ''
}
function fileDrop (e: DragEvent) {
const list = e.dataTransfer?.files
if (list === undefined || list.length === 0) return
for (let index = 0; index < list.length; index++) {
const file = list.item(index)
if (file !== null) createAttachment(file)
}
}
async function createAttachment (file: File) {
try {
const uploadFile = await getResource(attachmentP.helper.UploadFile)
const uuid = await uploadFile(file, { space: plugin.space.Gmail, attachedTo: objectId })
console.log('uploaded file uuid', uuid)
await client.addCollection(
attachmentP.class.Attachment,
plugin.space.Gmail,
objectId,
plugin.class.NewMessage,
'attachments',
{
name: file.name,
file: uuid,
type: file.type,
size: file.size,
lastModified: file.lastModified
}
)
} catch (err: any) {
setPlatformStatus(unknownError(err))
}
}
const query = createQuery()
async function removeAttachment (attachment: Attachment): Promise<void> {
const deleteFile = await getResource(attachmentP.helper.DeleteFile)
await client.removeCollection(
attachment._class,
attachment.space,
attachment._id,
attachment.attachedTo,
attachment.attachedToClass,
'attachments'
)
await deleteFile(attachment.file)
}
let attachments: Attachment[] = []
$: objectId &&
query.query(
attachmentP.class.Attachment,
{
attachedTo: objectId
},
(res) => (attachments = res)
)
</script>
<input
bind:this={inputFile}
multiple
type="file"
name="file"
id="file"
style="display: none"
on:change={fileSelected}
/>
<div class="popupPanel-body__main-header bottom-divider">
<div class="flex-between">
<div class="buttons-group">
<Button
icon={IconArrowLeft}
kind={'transparent'}
on:click={() => {
dispatch('close')
}}
/>
<div class="flex-grow flex-col">
<Label label={plugin.string.NewMessage} />
<span class="content-accent-color"><b>{formatName(object.name)} ({channel.value})</b></span>
</div>
</div>
<div class="buttons-group small-gap">
<Button
icon={IconAttachment}
kind={'transparent'}
on:click={() => {
inputFile.click()
}}
/>
<Button label={plugin.string.Send} kind={'primary'} on:click={sendMsg} />
</div>
</div>
</div>
<Scroller>
<div
class="popupPanel-body__main-content py-4"
on:dragover|preventDefault={() => {}}
on:dragleave={() => {}}
on:drop|preventDefault|stopPropagation={fileDrop}
>
<div class="mb-2">
<EditBox
label={plugin.string.Subject}
bind:value={obj.subject}
placeholder={plugin.string.SubjectPlaceholder}
maxWidth={'min-content'}
/>
</div>
<div>
<EditBox
label={plugin.string.Copy}
bind:value={copy}
placeholder={plugin.string.CopyPlaceholder}
maxWidth={'min-content'}
/>
</div>
{#if attachments.length}
<div class="flex-row-center list mt-2 scroll-divider-color">
{#each attachments as attachment}
<div class="item flex-row-center flex-no-shrink">
<AttachmentPresenter
value={attachment}
removable
on:remove={(result) => {
if (result !== undefined) removeAttachment(attachment)
}}
/>
</div>
{/each}
</div>
{/if}
<div class="input mt-4 clear-mins">
<TextEditor bind:this={editor} bind:content={obj.content} on:blur={editor.submit} />
</div>
</div>
</Scroller>
<style lang="scss">
.list {
padding: 0.5rem;
color: var(--theme-caption-color);
overflow-x: auto;
overflow-y: hidden;
background-color: var(--accent-bg-color);
border: 1px solid var(--divider-color);
border-radius: 0.25rem;
.item + .item {
padding-left: 1rem;
border-left: 1px solid var(--divider-color);
}
}
.input {
overflow: auto;
padding: 1rem;
background-color: var(--outcoming-msg);
color: #d6d6d6;
caret-color: var(--caret-color);
min-height: 0;
height: calc(100% - 12rem);
border-radius: 0.25rem;
:global(.ProseMirror) {
min-height: 0;
max-height: 100%;
height: auto;
}
:global(a) {
font: inherit;
font-weight: 500;
text-decoration: initial;
color: initial;
outline: initial;
&:hover {
color: initial;
text-decoration: initial;
}
&:active {
color: initial;
text-decoration: initial;
}
&:visited {
color: initial;
}
}
}
</style>