mirror of
https://github.com/hcengineering/platform.git
synced 2026-09-12 12:47:45 +02:00
* add generic uploader interface Signed-off-by: Alexander Onnikov <Alexander.Onnikov@xored.com> * fix: refactor xhr upload Signed-off-by: Alexander Onnikov <Alexander.Onnikov@xored.com> * enhance xhr upload Signed-off-by: Alexander Onnikov <Alexander.Onnikov@xored.com> * refactor uploader Signed-off-by: Alexander Onnikov <Alexander.Onnikov@xored.com> * fix: restore files url Signed-off-by: Alexander Onnikov <Alexander.Onnikov@xored.com> * move storage client to core Signed-off-by: Alexander Onnikov <Alexander.Onnikov@xored.com> * fix: revert front cookie Signed-off-by: Alexander Onnikov <Alexander.Onnikov@xored.com> --------- Signed-off-by: Alexander Onnikov <Alexander.Onnikov@xored.com>
407 lines
12 KiB
Svelte
407 lines
12 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 { Analytics } from '@hcengineering/analytics'
|
|
import attachmentP, { Attachment } from '@hcengineering/attachment'
|
|
import { AttachmentPresenter } from '@hcengineering/attachment-resources'
|
|
import contact, { Channel, Contact, getName as getContactName } from '@hcengineering/contact'
|
|
import core, { generateId, getCurrentAccount, Markup, Ref, toIdMap } from '@hcengineering/core'
|
|
import { InboxNotificationsClientImpl } from '@hcengineering/notification-resources'
|
|
import { getResource, setPlatformStatus, unknownError } from '@hcengineering/platform'
|
|
import { createQuery, getClient } from '@hcengineering/presentation'
|
|
import setting, { Integration } from '@hcengineering/setting'
|
|
import templates, { TemplateDataProvider } from '@hcengineering/templates'
|
|
import { StyledTextEditor } from '@hcengineering/text-editor-resources'
|
|
import { EmptyMarkup, isEmptyMarkup, markupToJSON } from '@hcengineering/text'
|
|
import { markupToHtml } from '@hcengineering/text-html'
|
|
import {
|
|
Button,
|
|
EditBox,
|
|
eventToHTMLElement,
|
|
IconAttachment,
|
|
Label,
|
|
Panel,
|
|
Scroller,
|
|
showPopup
|
|
} from '@hcengineering/ui'
|
|
import { GmailEvents } from '@hcengineering/gmail'
|
|
import { createEventDispatcher, onDestroy } from 'svelte'
|
|
import plugin from '../plugin'
|
|
import Connect from './Connect.svelte'
|
|
import IntegrationSelector from './IntegrationSelector.svelte'
|
|
|
|
export let value: Contact[] | Contact
|
|
const contacts = Array.isArray(value) ? value : [value]
|
|
|
|
const contactMap = toIdMap(contacts)
|
|
|
|
const query = createQuery()
|
|
query.query(
|
|
contact.class.Channel,
|
|
{
|
|
provider: contact.channelProvider.Email,
|
|
attachedTo: { $in: contacts.map((p) => p._id) }
|
|
},
|
|
(res) => {
|
|
const map = new Map()
|
|
for (const channel of res) {
|
|
if (!map.has(channel.attachedTo)) {
|
|
map.set(channel.attachedTo, channel)
|
|
}
|
|
}
|
|
channels = Array.from(map.values())
|
|
}
|
|
)
|
|
let channels: Channel[] = []
|
|
|
|
const client = getClient()
|
|
const inboxClient = InboxNotificationsClientImpl.getClient()
|
|
|
|
const attachmentParentId = generateId()
|
|
const account = getCurrentAccount()
|
|
const mySocialIds = account.socialIds
|
|
|
|
let subject: string = ''
|
|
let content: Markup = EmptyMarkup
|
|
let copy: string = ''
|
|
let saved = false
|
|
|
|
async function sendMsg (): Promise<void> {
|
|
const templateProvider = (await getResource(templates.function.GetTemplateDataProvider))()
|
|
if (templateProvider === undefined || selectedIntegration === undefined) return
|
|
for (const channel of channels) {
|
|
const target = contacts.find((p) => p._id === channel.attachedTo)
|
|
if (target === undefined) continue
|
|
templateProvider.set(contact.class.Contact, target)
|
|
const htmlContent = markupToHtml(markupToJSON(content))
|
|
const message = await templateProvider.fillTemplate(htmlContent)
|
|
const id = await client.createDoc(plugin.class.NewMessage, core.space.Workspace, {
|
|
subject,
|
|
content: message,
|
|
to: channel.value,
|
|
status: 'new',
|
|
from: selectedIntegration.createdBy,
|
|
copy: copy
|
|
.split(',')
|
|
.map((m) => m.trim())
|
|
.filter((m) => m.length)
|
|
})
|
|
Analytics.handleEvent(GmailEvents.SentEmail, { to: channel.value })
|
|
await inboxClient.forceReadDoc(channel)
|
|
for (const attachment of attachments) {
|
|
await client.addCollection(
|
|
attachmentP.class.Attachment,
|
|
core.space.Workspace,
|
|
id,
|
|
plugin.class.NewMessage,
|
|
'attachments',
|
|
{
|
|
name: attachment.name,
|
|
file: attachment.file,
|
|
type: attachment.type,
|
|
size: attachment.size,
|
|
lastModified: attachment.lastModified
|
|
}
|
|
)
|
|
}
|
|
templateProvider.destroy()
|
|
}
|
|
saved = true
|
|
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, metadata } = await uploadFile(file)
|
|
await client.addCollection(
|
|
attachmentP.class.Attachment,
|
|
core.space.Workspace,
|
|
attachmentParentId,
|
|
plugin.class.NewMessage,
|
|
'attachments',
|
|
{
|
|
name: file.name,
|
|
file: uuid,
|
|
type: file.type,
|
|
size: file.size,
|
|
lastModified: file.lastModified,
|
|
metadata
|
|
}
|
|
)
|
|
} catch (err: any) {
|
|
setPlatformStatus(unknownError(err))
|
|
}
|
|
}
|
|
|
|
const attachmentsQ = 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[] = []
|
|
|
|
attachmentsQ.query(
|
|
attachmentP.class.Attachment,
|
|
{
|
|
attachedTo: attachmentParentId
|
|
},
|
|
(res) => {
|
|
attachments = res
|
|
}
|
|
)
|
|
|
|
function getName (channel: Channel): string {
|
|
const contact = contactMap.get(channel.attachedTo as Ref<Contact>)
|
|
if (contact === undefined) return channel.value
|
|
return `${getContactName(client.getHierarchy(), contact)} (${channel.value})`
|
|
}
|
|
|
|
const settingsQuery = createQuery()
|
|
|
|
let templateProvider: TemplateDataProvider | undefined
|
|
let integrations: Integration[] = []
|
|
let selectedIntegration: Integration | undefined = undefined
|
|
|
|
getResource(templates.function.GetTemplateDataProvider).then((p) => {
|
|
templateProvider = p()
|
|
})
|
|
|
|
onDestroy(() => {
|
|
templateProvider?.destroy()
|
|
})
|
|
|
|
$: templateProvider && selectedIntegration && templateProvider.set(setting.class.Integration, selectedIntegration)
|
|
$: templateProvider && !Array.isArray(value) && templateProvider.set(contact.class.Contact, value)
|
|
|
|
settingsQuery.query(setting.class.Integration, { type: plugin.integrationType.Gmail, disabled: false }, (res) => {
|
|
integrations = res.filter(
|
|
(p) =>
|
|
(p.createdBy !== undefined && mySocialIds.includes(p.createdBy)) ||
|
|
((p.shared ?? []).includes(account.uuid) && p.value !== '')
|
|
)
|
|
selectedIntegration =
|
|
integrations.find((p) => p.createdBy !== undefined && mySocialIds.includes(p.createdBy)) ?? integrations[0]
|
|
})
|
|
|
|
function onTemplate (e: CustomEvent<string>): void {
|
|
if (e.detail !== undefined) {
|
|
if (subject.trim() === '') {
|
|
subject = e.detail
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<Panel
|
|
isHeader={true}
|
|
isAside={false}
|
|
isFullSize
|
|
on:fullsize
|
|
on:close={() => {
|
|
if (!saved) {
|
|
attachments.map((p) => removeAttachment(p))
|
|
}
|
|
dispatch('close')
|
|
}}
|
|
>
|
|
<svelte:fragment slot="title">
|
|
<div class="title not-active">Email</div>
|
|
</svelte:fragment>
|
|
|
|
<svelte:fragment slot="utils">
|
|
{#if integrations.length === 0}
|
|
<Button
|
|
label={plugin.string.Connect}
|
|
kind={'primary'}
|
|
on:click={(e) => {
|
|
showPopup(Connect, {}, eventToHTMLElement(e))
|
|
}}
|
|
/>
|
|
{:else}
|
|
<Label label={plugin.string.From} />
|
|
<IntegrationSelector bind:selected={selectedIntegration} {integrations} />
|
|
{/if}
|
|
</svelte:fragment>
|
|
|
|
<input
|
|
bind:this={inputFile}
|
|
disabled={inputFile == null}
|
|
multiple
|
|
type="file"
|
|
name="file"
|
|
id="file"
|
|
style="display: none"
|
|
on:change={fileSelected}
|
|
/>
|
|
<div class="popupPanel-body__main-header bottom-divider p-2">
|
|
<div class="flex-between">
|
|
<div class="buttons-group">
|
|
<div class="flex-grow flex-col">
|
|
<Label label={plugin.string.NewMessage} />
|
|
<div class="caption-color targets">
|
|
<b>
|
|
{#each channels as channel, i}
|
|
<div>
|
|
{getName(channel)}
|
|
</div>
|
|
{/each}
|
|
</b>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="buttons-group small-gap">
|
|
<Button
|
|
icon={IconAttachment}
|
|
kind={'ghost'}
|
|
disabled={channels.length === 0}
|
|
on:click={() => {
|
|
inputFile.click()
|
|
}}
|
|
/>
|
|
{#if selectedIntegration}
|
|
<Button
|
|
label={plugin.string.Send}
|
|
size={'small'}
|
|
kind={'primary'}
|
|
disabled={channels.length === 0 || isEmptyMarkup(content)}
|
|
on:click={sendMsg}
|
|
/>
|
|
{/if}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<Scroller>
|
|
<!-- svelte-ignore a11y-no-static-element-interactions -->
|
|
<div
|
|
class="popupPanel-body__main-content py-4 h-full"
|
|
on:dragover|preventDefault={() => {}}
|
|
on:dragleave={() => {}}
|
|
on:drop|preventDefault|stopPropagation={fileDrop}
|
|
>
|
|
<div class="mb-2">
|
|
<EditBox label={plugin.string.Subject} bind:value={subject} placeholder={plugin.string.SubjectPlaceholder} />
|
|
</div>
|
|
<div>
|
|
<EditBox label={plugin.string.Copy} bind:value={copy} placeholder={plugin.string.CopyPlaceholder} />
|
|
</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}
|
|
showPreview
|
|
removable
|
|
on:remove={(result) => {
|
|
if (result !== undefined) removeAttachment(attachment)
|
|
}}
|
|
/>
|
|
</div>
|
|
{/each}
|
|
</div>
|
|
{/if}
|
|
<div class="input mt-4 clear-mins">
|
|
<StyledTextEditor full bind:content on:template={onTemplate} />
|
|
</div>
|
|
</div>
|
|
</Scroller>
|
|
</Panel>
|
|
|
|
<style lang="scss">
|
|
.list {
|
|
padding: 0.5rem;
|
|
color: var(--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);
|
|
}
|
|
}
|
|
|
|
.targets {
|
|
max-height: 10rem;
|
|
overflow-x: auto;
|
|
}
|
|
|
|
.input {
|
|
overflow: auto;
|
|
padding: 1rem;
|
|
background-color: var(--outcoming-msg);
|
|
color: #d6d6d6;
|
|
caret-color: var(--theme-caret-color);
|
|
min-height: 0;
|
|
height: 100%;
|
|
margin-bottom: 2rem;
|
|
border-radius: 0.25rem;
|
|
|
|
: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>
|