mirror of
https://github.com/hcengineering/platform.git
synced 2025-05-10 17:30:51 +00:00
145 lines
4.3 KiB
Svelte
145 lines
4.3 KiB
Svelte
<!--
|
|
// Copyright © 2023 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 { IdMap, Ref, toIdMap } from '@hcengineering/core'
|
|
import type {
|
|
NotificationGroup,
|
|
NotificationProvider,
|
|
NotificationSetting,
|
|
NotificationType
|
|
} from '@hcengineering/notification'
|
|
import { IntlString } from '@hcengineering/platform'
|
|
import { createQuery, getClient } from '@hcengineering/presentation'
|
|
import { Grid, Label, ToggleWithLabel } from '@hcengineering/ui'
|
|
import notification from '../plugin'
|
|
|
|
export let group: Ref<NotificationGroup>
|
|
export let settings: Map<Ref<NotificationType>, NotificationSetting[]>
|
|
|
|
const client = getClient()
|
|
let types: NotificationType[] = []
|
|
let typesMap: IdMap<NotificationType> = new Map()
|
|
let providers: NotificationProvider[] = []
|
|
let providersMap: IdMap<NotificationProvider> = new Map()
|
|
|
|
load()
|
|
|
|
const query = createQuery()
|
|
$: query.query(notification.class.NotificationType, { group }, (res) => {
|
|
types = res
|
|
typesMap = toIdMap(types)
|
|
})
|
|
|
|
async function load () {
|
|
providers = await client.findAll(notification.class.NotificationProvider, {})
|
|
providersMap = toIdMap(providers)
|
|
}
|
|
|
|
$: column = providers.length + 1
|
|
|
|
function getStatus (
|
|
settings: Map<Ref<NotificationType>, NotificationSetting[]>,
|
|
type: Ref<NotificationType>,
|
|
provider: Ref<NotificationProvider>
|
|
): boolean {
|
|
const setting = getSetting(settings, type, provider)
|
|
if (setting !== undefined) return setting.enabled
|
|
const prov = providersMap.get(provider)
|
|
if (prov === undefined) return false
|
|
const typeValue = typesMap.get(type)
|
|
if (typeValue === undefined) return false
|
|
return typeValue?.providers?.[provider] ?? false
|
|
}
|
|
|
|
function createHandler (type: Ref<NotificationType>, provider: Ref<NotificationProvider>): (evt: any) => void {
|
|
return (evt: any) => change(type, provider, evt.detail)
|
|
}
|
|
|
|
async function change (
|
|
type: Ref<NotificationType>,
|
|
provider: Ref<NotificationProvider>,
|
|
value: boolean
|
|
): Promise<void> {
|
|
const current = getSetting(settings, type, provider)
|
|
if (current === undefined) {
|
|
await client.createDoc(notification.class.NotificationSetting, notification.space.Notifications, {
|
|
attachedTo: provider,
|
|
type,
|
|
enabled: value
|
|
})
|
|
} else {
|
|
await client.update(current, {
|
|
enabled: value
|
|
})
|
|
}
|
|
}
|
|
|
|
function getSetting (
|
|
map: Map<Ref<NotificationType>, NotificationSetting[]>,
|
|
type: Ref<NotificationType>,
|
|
provider: Ref<NotificationProvider>
|
|
): NotificationSetting | undefined {
|
|
const typeMap = map.get(type)
|
|
if (typeMap === undefined) return
|
|
return typeMap.find((p) => p.attachedTo === provider)
|
|
}
|
|
|
|
function getLabel (type: NotificationType): IntlString {
|
|
if (type.attachedToClass !== undefined) {
|
|
return notification.string.AddedRemoved
|
|
}
|
|
return notification.string.Change
|
|
}
|
|
</script>
|
|
|
|
<div class="flex-grow vScroll w-full">
|
|
<div class="container">
|
|
<Grid {column} columnGap={5} rowGap={1.5}>
|
|
{#each types as type}
|
|
<div class="flex">
|
|
{#if type.generated}
|
|
<Label label={getLabel(type)} />:
|
|
{/if}
|
|
<Label label={type.label} />
|
|
</div>
|
|
{#each providers as provider (provider._id)}
|
|
{#if type.providers[provider._id] !== undefined}
|
|
<div class="toggle">
|
|
<ToggleWithLabel
|
|
label={provider.label}
|
|
on={getStatus(settings, type._id, provider._id)}
|
|
on:change={createHandler(type._id, provider._id)}
|
|
/>
|
|
</div>
|
|
{:else}
|
|
<div />
|
|
{/if}
|
|
{/each}
|
|
{/each}
|
|
</Grid>
|
|
</div>
|
|
</div>
|
|
|
|
<style lang="scss">
|
|
.container {
|
|
padding: 3rem;
|
|
width: fit-content;
|
|
}
|
|
|
|
.toggle {
|
|
width: fit-content;
|
|
}
|
|
</style>
|