mirror of
https://github.com/hcengineering/platform.git
synced 2025-04-08 09:02:06 +00:00
55 lines
1.8 KiB
Svelte
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>
|
|
|
|
{applications?.get(value._id)?.count ?? 0}
|
|
</div>
|
|
{/if}
|