2022-05-11 05:36:35 +00:00
|
|
|
<!--
|
|
|
|
// 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">
|
2023-04-27 16:52:31 +00:00
|
|
|
import { MultipleDraftController } from '@hcengineering/presentation'
|
|
|
|
import { Button, IconAdd, showPopup } from '@hcengineering/ui'
|
|
|
|
import { onDestroy } from 'svelte'
|
2022-05-11 05:36:35 +00:00
|
|
|
import recruit from '../plugin'
|
|
|
|
import CreateCandidate from './CreateCandidate.svelte'
|
|
|
|
|
2023-04-27 16:52:31 +00:00
|
|
|
let draftExists = false
|
|
|
|
|
|
|
|
const draftController = new MultipleDraftController(recruit.mixin.Candidate)
|
|
|
|
onDestroy(
|
|
|
|
draftController.hasNext((res) => {
|
|
|
|
draftExists = res
|
|
|
|
})
|
|
|
|
)
|
2022-12-14 04:52:41 +00:00
|
|
|
|
|
|
|
async function newCandidate (): Promise<void> {
|
2023-03-24 10:23:44 +00:00
|
|
|
showPopup(CreateCandidate, { shouldSaveDraft: true }, 'top')
|
2022-05-11 05:36:35 +00:00
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
2023-04-05 07:14:32 +00:00
|
|
|
<div class="antiNav-subheader">
|
|
|
|
<Button
|
|
|
|
icon={IconAdd}
|
|
|
|
label={draftExists ? recruit.string.ResumeDraft : recruit.string.CreateTalent}
|
|
|
|
justify={'left'}
|
|
|
|
kind={'primary'}
|
|
|
|
width={'100%'}
|
|
|
|
size={'large'}
|
|
|
|
on:click={newCandidate}
|
|
|
|
>
|
|
|
|
<div slot="content" class="draft-circle-container">
|
|
|
|
{#if draftExists}
|
|
|
|
<div class="draft-circle" />
|
|
|
|
{/if}
|
|
|
|
</div>
|
|
|
|
</Button>
|
2022-05-11 05:36:35 +00:00
|
|
|
</div>
|
2022-12-14 04:52:41 +00:00
|
|
|
|
|
|
|
<style lang="scss">
|
|
|
|
.draft-circle-container {
|
|
|
|
margin-left: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.draft-circle {
|
|
|
|
height: 6px;
|
|
|
|
width: 6px;
|
|
|
|
background-color: var(--primary-bg-color);
|
|
|
|
border-radius: 50%;
|
|
|
|
}
|
|
|
|
</style>
|