platform/plugins/request-resources/src/components/RequestsPopup.svelte
Andrey Sobolev 161d26ebeb
UBER-665: Rename EmployeeAccount->PersonAccount (#3550)
Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
2023-08-05 01:06:21 +07:00

81 lines
2.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 { PersonAccount } from '@hcengineering/contact'
import { Class, getCurrentAccount, Ref } from '@hcengineering/core'
import { createQuery, getClient } from '@hcengineering/presentation'
import { Request, RequestStatus } from '@hcengineering/request'
import { Label, Scroller, deviceOptionsStore as deviceInfo, AnyComponent, Component } from '@hcengineering/ui'
import request from '../plugin'
let requests: Request[] = []
const me = getCurrentAccount()._id as Ref<PersonAccount>
const query = createQuery()
query.query(
request.class.Request,
{
requested: me,
status: RequestStatus.Active
},
(res) =>
(requests = res.filter(
(p) => p.requested.filter((a) => a === me).length > p.approved.filter((a) => a === me).length
))
)
const client = getClient()
const hierarchy = client.getHierarchy()
const defaultPresenter = request.component.RequestPresenter
$: classes = new Set(requests.map((r) => r._class))
const presenters: Record<Ref<Class<Request>>, AnyComponent> = {}
function getEditor (_class: Ref<Class<Request>>): AnyComponent {
const clazz = hierarchy.getClass(_class)
const mixin = hierarchy.as(clazz, request.mixin.RequestPresenter)
if (mixin?.presenter == null && clazz.extends != null) return getEditor(clazz.extends)
return mixin.presenter
}
$: updatePresenters(classes)
function updatePresenters (classes: Set<Ref<Class<Request>>>) {
classes.forEach((cl) => {
const presenter = getEditor(cl)
presenters[cl] = presenter || defaultPresenter
})
}
$: isMobile = $deviceInfo.isMobile
</script>
<div class="notifyPopup" class:justify-center={requests.length === 0} class:min-w-168={!isMobile}>
<div class="header flex-between">
<span class="fs-title overflow-label"><Label label={request.string.Requests} /></span>
</div>
{#if requests.length > 0}
<Scroller padding={'0 .5rem'}>
{#each requests as request}
<Component is={presenters[request._class]} props={{ value: request }} />
{/each}
</Scroller>
{:else}
<div class="flex-grow flex-center">
<Label label={request.string.NoRequests} />
</div>
{/if}
</div>