Files
huly-platform/plugins/setting-resources/src/components/PluginCard.svelte
T

160 lines
4.9 KiB
Svelte

<!--
// Copyright © 2020 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 { getCurrentAccount, Ref, Space } from '@hcengineering/core'
import { getResource } from '@hcengineering/platform'
import { getClient } from '@hcengineering/presentation'
import type { Integration, IntegrationType } from '@hcengineering/setting'
import {
AnyComponent,
Button,
Component,
eventToHTMLElement,
Label,
PopupPosAlignment,
showPopup
} from '@hcengineering/ui'
import setting from '../plugin'
export let integrationType: IntegrationType
export let integration: Integration | undefined
const accountId = getCurrentAccount()._id
const client = getClient()
const space = accountId as string as Ref<Space>
async function close (res: any): Promise<void> {
if (res?.value && integration !== undefined) {
await client.update(integration, {
value: res.value,
disabled: false
})
}
}
async function reconnect (res: any): Promise<void> {
if (res?.value) {
const current = await client.findOne(setting.class.Integration, {
space,
type: integrationType._id
})
if (current === undefined) return
await client.update(current, {
disabled: false,
value: res.value
})
}
}
async function disconnect (): Promise<void> {
if (integration !== undefined && integrationType.onDisconnect !== undefined) {
const disconnect = await getResource(integrationType.onDisconnect)
await disconnect()
}
}
const handleConfigure = async (e: any, component?: AnyComponent, pos?: PopupPosAlignment): Promise<void> => {
if (component === undefined) {
return
}
if (integration === undefined) {
const id = await client.createDoc(setting.class.Integration, space, {
type: integrationType._id,
value: '',
disabled: false
})
integration = await client.findOne(setting.class.Integration, { _id: id })
}
showPopup(component, { integration }, pos ?? eventToHTMLElement(e), close)
}
const handleReconnect = (e: any) => {
if (integrationType.reconnectComponent) {
showPopup(integrationType.reconnectComponent, { integration }, eventToHTMLElement(e), reconnect)
}
}
</script>
<div class="flex-col plugin-container">
<div class="flex-row-center header">
<div class="icon mr-4"><Component is={integrationType.icon} /></div>
<div class="flex-grow flex-col">
<div class="fs-title overflow-label"><Label label={integrationType.label} /></div>
</div>
</div>
<div class="content">
<Label label={integrationType.description} />
</div>
<div class="footer">
{#if (integration?.value ?? '') === ''}
{#if integrationType.createComponent}
<Button
label={setting.string.Add}
kind={'primary'}
on:click={(ev) => handleConfigure(ev, integrationType.createComponent)}
/>
{/if}
{:else if (integration?.disabled ?? false) && integrationType.reconnectComponent}
<Button label={setting.string.Reconnect} kind={'primary'} on:click={handleReconnect} />
{:else if integration?.value !== ''}
{#if integrationType.onDisconnect}
<Button label={setting.string.Disconnect} on:click={disconnect} />
{/if}
{#if integrationType.configureComponent !== undefined}
<Button
label={setting.string.Configure}
kind={'primary'}
on:click={(ev) => handleConfigure(ev, integrationType.configureComponent, 'top')}
/>
{/if}
{/if}
</div>
</div>
<style lang="scss">
.plugin-container {
background-color: var(--accent-bg-color);
border: 1px solid var(--divider-color);
border-radius: 0.75rem;
}
.header {
margin: 1.5rem 1.5rem 1rem;
}
.max-label {
max-width: calc(100% - 6.25rem);
}
.icon {
flex-shrink: 0;
min-width: 2.25rem;
min-height: 2.25rem;
}
.content {
flex-grow: 1;
margin: 0 1.5rem 0.25rem;
color: var(--caption-color);
}
.footer {
flex-shrink: 0;
display: grid;
grid-auto-flow: column;
direction: rtl;
justify-content: start;
align-items: center;
column-gap: 1rem;
padding: 1.5rem 1.75rem 1.25rem;
height: 5.25rem;
mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 1.25rem, rgba(0, 0, 0, 1) 2.5rem);
overflow: hidden;
border-radius: 0 0 1.25rem 1.25rem;
}
</style>