platform/plugins/recruit-resources/src/components/VacancyCountPresenter.svelte
Andrey Sobolev 7621bccf22
UBER-1074: Svelte 4 (#4014)
Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
2023-11-20 17:01:43 +07:00

55 lines
1.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 { Ref } from '@hcengineering/core'
import { recruitId, Vacancy } from '@hcengineering/recruit'
import { closeTooltip, getCurrentResolvedLocation, Icon, navigate, tooltip } from '@hcengineering/ui'
import recruit from '../plugin'
import VacancyApplicationsPopup from './VacancyApplicationsPopup.svelte'
export let value: Vacancy
export let applications: Map<Ref<Vacancy>, { count: number, modifiedOn: number }> | undefined
function click () {
closeTooltip()
const loc = getCurrentResolvedLocation()
loc.fragment = undefined
loc.query = undefined
loc.path[2] = recruitId
loc.path[3] = value._id
loc.path.length = 4
navigate(loc)
}
</script>
{#if value}
<!-- svelte-ignore a11y-click-events-have-key-events -->
<div
class="sm-tool-icon"
use:tooltip={{
// label: recruit.string.Applications,
component: VacancyApplicationsPopup,
props: { value, openList: click }
}}
on:click|stopPropagation|preventDefault={click}
>
<div class="icon">
<Icon icon={recruit.icon.Application} size={'small'} />
</div>
&nbsp;
{applications?.get(value._id)?.count ?? 0}
</div>
{/if}