mirror of
https://github.com/hcengineering/platform.git
synced 2025-02-07 11:30:16 +00:00
110 lines
3.5 KiB
Svelte
110 lines
3.5 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 core from '@hcengineering/core'
|
|
import { IntlString } from '@hcengineering/platform'
|
|
import calendar from '@hcengineering/calendar'
|
|
import { Button, IconAdd, Label, showPopup, resizeObserver, Scroller } from '@hcengineering/ui'
|
|
import { Table } from '@hcengineering/view-resources'
|
|
import recruit from '../../plugin'
|
|
import FileDuo from '../icons/FileDuo.svelte'
|
|
import CreateReview from './CreateReview.svelte'
|
|
|
|
export let objectId: Ref<Doc>
|
|
export let reviews: number
|
|
export let label: IntlString = recruit.string.Reviews
|
|
|
|
const createApp = (): void => {
|
|
showPopup(CreateReview, { candidate: objectId, preserveCandidate: true }, 'top')
|
|
}
|
|
let wSection: number
|
|
</script>
|
|
|
|
<div class="antiSection" use:resizeObserver={(element) => (wSection = element.clientWidth)}>
|
|
<div class="antiSection-header">
|
|
<span class="antiSection-header__title">
|
|
<Label {label} />
|
|
</span>
|
|
<Button icon={IconAdd} kind={'transparent'} shape={'circle'} on:click={createApp} />
|
|
</div>
|
|
{#if reviews > 0}
|
|
{#if wSection < 640}
|
|
<Scroller horizontal>
|
|
<Table
|
|
_class={recruit.class.Review}
|
|
config={[
|
|
'',
|
|
'verdict',
|
|
{
|
|
key: '',
|
|
presenter: recruit.component.OpinionsPresenter,
|
|
label: recruit.string.Opinions,
|
|
sortingKey: 'opinions'
|
|
},
|
|
{
|
|
key: '',
|
|
presenter: calendar.component.DateTimePresenter,
|
|
label: calendar.string.Date,
|
|
sortingKey: 'date'
|
|
}
|
|
]}
|
|
options={{
|
|
lookup: {
|
|
space: core.class.Space
|
|
}
|
|
}}
|
|
query={{ attachedTo: objectId }}
|
|
loadingProps={{ length: reviews }}
|
|
/>
|
|
</Scroller>
|
|
{:else}
|
|
<Table
|
|
_class={recruit.class.Review}
|
|
config={[
|
|
'',
|
|
'verdict',
|
|
{
|
|
key: '',
|
|
presenter: recruit.component.OpinionsPresenter,
|
|
label: recruit.string.Opinions,
|
|
sortingKey: 'opinions'
|
|
},
|
|
{ key: '', presenter: calendar.component.DateTimePresenter, label: calendar.string.Date, sortingKey: 'date' }
|
|
]}
|
|
options={{
|
|
lookup: {
|
|
space: core.class.Space
|
|
}
|
|
}}
|
|
query={{ attachedTo: objectId }}
|
|
loadingProps={{ length: reviews }}
|
|
/>
|
|
{/if}
|
|
{:else}
|
|
<div class="antiSection-empty solid flex-col-center mt-3">
|
|
<div class="caption-color">
|
|
<FileDuo size={'large'} />
|
|
</div>
|
|
<span class="dark-color mt-2">
|
|
<Label label={recruit.string.NoReviewForCandidate} />
|
|
</span>
|
|
<span class="over-underline content-accent-color" on:click={createApp}>
|
|
<Label label={recruit.string.CreateAnReview} />
|
|
</span>
|
|
</div>
|
|
{/if}
|
|
</div>
|