platform/plugins/recruit-resources/src/components/Applications.svelte
Denis Bykhov 07cc690d23
UBER-691 (#3564)
Signed-off-by: Denis Bykhov <bykhov.denis@gmail.com>
2023-08-07 21:17:31 +07:00

81 lines
2.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 type { Doc, Ref } from '@hcengineering/core'
import { Button, Icon, IconAdd, Label, Scroller, showPopup } from '@hcengineering/ui'
import { Viewlet, ViewletPreference } from '@hcengineering/view'
import { Table, ViewletsSettingButton } from '@hcengineering/view-resources'
import recruit from '../plugin'
import CreateApplication from './CreateApplication.svelte'
import IconApplication from './icons/Application.svelte'
import FileDuo from './icons/FileDuo.svelte'
export let objectId: Ref<Doc>
export let applications: number
const createApp = (ev: MouseEvent): void => {
showPopup(CreateApplication, { candidate: objectId, preserveCandidate: true }, ev.target as HTMLElement)
}
let viewlet: Viewlet | undefined
let preference: ViewletPreference | undefined
let loading = true
</script>
<div class="antiSection">
<div class="antiSection-header">
<div class="antiSection-header__icon">
<Icon icon={IconApplication} size={'small'} />
</div>
<span class="antiSection-header__title">
<Label label={recruit.string.Applications} />
</span>
<div class="flex-row-center gap-2 reverse">
<ViewletsSettingButton
viewletQuery={{ _id: recruit.viewlet.VacancyApplicationsEmbeddeed }}
kind={'ghost'}
bind:viewlet
bind:loading
bind:preference
/>
<Button id="appls.add" icon={IconAdd} kind={'ghost'} on:click={createApp} />
</div>
</div>
{#if applications > 0 && viewlet && !loading}
<Scroller horizontal>
<Table
_class={recruit.class.Applicant}
config={preference?.config ?? viewlet.config}
query={{ attachedTo: objectId, ...(viewlet?.baseQuery ?? {}) }}
loadingProps={{ length: applications }}
/>
</Scroller>
{:else}
<div class="antiSection-empty solid flex-col-center mt-3">
<div class="caption-color">
<FileDuo size={'large'} />
</div>
<span class="content-dark-color">
<Label label={recruit.string.NoApplicationsForTalent} />
</span>
<!-- svelte-ignore a11y-click-events-have-key-events -->
<span class="over-underline content-color" on:click={createApp}>
<Label label={recruit.string.CreateAnApplication} />
</span>
</div>
{/if}
</div>