platform/plugins/setting-resources/src/components/activity/TxIntegrationDisableReconnect.svelte
Andrey Sobolev 5b6ef778f3
Migrate to hcengineering and publish to github packages ()
Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
2022-09-21 14:08:25 +06:00

55 lines
1.8 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 { TxUpdateDoc } from '@hcengineering/core'
import { getClient } from '@hcengineering/presentation'
import { Integration, IntegrationType } from '@hcengineering/setting'
import { Button, eventToHTMLElement, showPopup } from '@hcengineering/ui'
import setting from '../../plugin'
export let tx: TxUpdateDoc<Integration>
let doc: Integration | undefined
const client = getClient()
let type: IntegrationType | undefined
$: getType(tx)
async function getType (tx: TxUpdateDoc<Integration>): Promise<IntegrationType | undefined> {
doc = await client.findOne(setting.class.Integration, { _id: tx.objectId })
if (doc === undefined) return
type = await client.findOne(setting.class.IntegrationType, { _id: doc.type })
}
async function reconnect (res: any): Promise<void> {
if (res?.value) {
if (doc === undefined) return
await client.update(doc, {
disabled: false
})
}
}
const handleReconnect = (e: MouseEvent) => {
if (type?.reconnectComponent) {
showPopup(type.reconnectComponent, {}, eventToHTMLElement(e), reconnect)
}
}
</script>
<div class="flex-center">
<Button label={setting.string.Reconnect} kind={'primary'} on:click={handleReconnect} />
</div>