Files
huly-platform/plugins/gmail-resources/src/components/Connect.svelte
T
2025-04-28 11:37:30 +05:00

142 lines
3.8 KiB
Svelte

<!--
// Copyright © 2020, 2021 Anticrm Platform Contributors.
// Copyright © 2021 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 { getMetadata, translate } from '@hcengineering/platform'
import { Button, Html, IconClose, Label, themeStore, IconError } from '@hcengineering/ui'
import { createEventDispatcher } from 'svelte'
import gmail from '../plugin'
import { concatLink } from '@hcengineering/core'
import presentation from '@hcengineering/presentation'
const dispatch = createEventDispatcher()
let connecting = false
const gmailUrl = getMetadata(gmail.metadata.GmailURL) ?? ''
let error = false
async function sendRequest (): Promise<void> {
try {
connecting = true
const link = concatLink(gmailUrl, '/signin')
const url = new URL(link)
url.search = new URLSearchParams({
redirectURL: (getMetadata(presentation.metadata.FrontUrl) ?? window.location.origin) + window.location.pathname
}).toString()
const res = await fetch(url.toString(), {
method: 'GET',
headers: {
Authorization: 'Bearer ' + getMetadata(presentation.metadata.Token),
'Content-Type': 'application/json'
}
})
const redirectTo = await res.text()
window.open(redirectTo)
dispatch('close')
} catch (e: any) {
Analytics.handleError(e)
console.error(e)
error = true
} finally {
connecting = false
}
}
let label = ''
$: translate(gmail.string.GooglePrivacy, {}, $themeStore.language).then((res) => {
label = res
})
</script>
<div class="card">
<div class="flex-between header">
<div class="overflow-label fs-title"><Label label={gmail.string.ConnectGmail} /></div>
<!-- svelte-ignore a11y-click-events-have-key-events -->
<!-- svelte-ignore a11y-no-static-element-interactions -->
<div
class="tool"
on:click={() => {
dispatch('close')
}}
>
<IconClose size={'small'} />
</div>
</div>
<div class="content">
<Label label={gmail.string.RedirectGoogle} />
<div class="mt-2">
<Html value={label} />
</div>
{#if error}
<div class="flex-row-center gap-2 pt-2">
<IconError size={'medium'} />
<Label label={gmail.string.FailedToConnect} />
</div>
{/if}
<div class="footer">
<Button label={gmail.string.Connect} kind={'primary'} disabled={connecting} on:click={sendRequest} />
</div>
</div>
</div>
<style lang="scss">
.card {
position: relative;
display: flex;
flex-direction: column;
width: 20rem;
min-width: 20rem;
max-width: 20rem;
background-color: var(--popup-bg-hover);
border-radius: 0.75rem;
box-shadow: var(--popup-shadow);
.header {
flex-shrink: 0;
margin: 1.75rem 1.75rem 1.25rem;
.tool {
cursor: pointer;
&:hover {
color: var(--caption-color);
}
&:active {
color: var(--accent-color);
}
}
}
.content {
flex-shrink: 0;
flex-grow: 1;
height: fit-content;
margin: 0 1.75rem 0.5rem;
}
.footer {
display: flex;
flex-direction: row-reverse;
justify-content: space-between;
align-items: center;
padding: 1rem 0;
}
}
</style>