platform/plugins/recruit-resources/src/components/EditCandidate.svelte

197 lines
6.2 KiB
Svelte
Raw Normal View History

<!--
// 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 { createEventDispatcher } from 'svelte'
import { getCurrentAccount, Ref, Space } from '@anticrm/core'
import { CircleButton, EditBox, showPopup, IconAdd, Label, AnyComponent, IconActivity } from '@anticrm/ui'
import { getClient, createQuery, Channels, AttributeEditor, AttributesBar, Avatar } from '@anticrm/presentation'
import { Panel } from '@anticrm/panel'
import type { Candidate } from '@anticrm/recruit'
2021-09-11 18:33:51 +00:00
import Contact from './icons/Contact.svelte'
import Edit from './icons/Edit.svelte'
import Applications from './Applications.svelte'
import { Attachments } from '@anticrm/attachment-resources'
import recruit from '../plugin'
import setting from '@anticrm/setting'
import { IntegrationType } from '@anticrm/setting'
import contact, { combineName, formatName, getFirstName, getLastName } from '@anticrm/contact'
export let _id: Ref<Candidate>
let object: Candidate
let rightSection: AnyComponent | undefined
let fullSize: boolean = false
let firstName = ''
let lastName = ''
const client = getClient()
const query = createQuery()
$: query.query(recruit.class.Candidate, { _id }, (result) => {
object = result[0]
firstName = getFirstName(result[0].name)
lastName = getLastName(result[0].name)
})
const dispatch = createEventDispatcher()
function saveChannels (result: any) {
if (result !== undefined) {
object.channels = result
client.updateDoc(recruit.class.Candidate, object.space, object._id, { channels: result })
}
}
function firstNameChange () {
client.updateDoc(recruit.class.Candidate, object.space, object._id, {
name: combineName(firstName, getLastName(object.name))
})
}
function lastNameChange () {
client.updateDoc(recruit.class.Candidate, object.space, object._id, {
name: combineName(getFirstName(object.name), lastName)
})
}
const openActivity = (): void => {
rightSection = undefined
fullSize = true
}
const accountId = getCurrentAccount()._id
let integrations: Set<Ref<IntegrationType>> = new Set<Ref<IntegrationType>>()
const settingsQuery = createQuery()
$: settingsQuery.query(setting.class.Integration, { space: accountId as string as Ref<Space> }, (res) => {
integrations = new Set(res.map((p) => p.type))
})
</script>
{#if object !== undefined}
<Panel
icon={Contact}
title={formatName(object.name)}
{rightSection}
{fullSize}
{object}
on:close={() => {
dispatch('close')
}}
>
<AttributesBar {object} keys={['city', 'onsite', 'remote', 'source']} slot="subtitle" />
<div class="flex-row-center">
<div class="mr-8">
<Avatar avatar={object.avatar} size={'x-large'} />
</div>
<div class="flex-grow flex-col">
<div class="name">
<EditBox placeholder="John" maxWidth="20rem" bind:value={firstName} on:change={firstNameChange} />
</div>
<div class="name">
<EditBox placeholder="Appleseed" maxWidth="20rem" bind:value={lastName} on:change={lastNameChange} />
</div>
<div class="title">
<AttributeEditor maxWidth="20rem" _class={recruit.class.Candidate} {object} key="title" />
</div>
<div class="separator" />
<div class="flex-between">
<div class="flex-row-center">
{#if !object.channels || object.channels.length === 0}
<CircleButton
icon={IconAdd}
size={'small'}
selected
on:click={(ev) =>
showPopup(contact.component.SocialEditor, { values: object.channels ?? [] }, ev.target, (result) => {
saveChannels(result)
})}
/>
<span class="ml-2"><Label label={'Add social links'} /></span>
{:else}
<Channels
value={object.channels}
{integrations}
size={'small'}
on:click={(ev) => {
if (ev.detail.presenter) {
fullSize = true
rightSection = ev.detail.presenter
}
}}
/>
<div class="ml-1">
<CircleButton
icon={Edit}
size={'small'}
on:click={(ev) =>
showPopup(
contact.component.SocialEditor,
{ values: object.channels ?? [] },
ev.target,
(result) => {
saveChannels(result)
}
)}
/>
</div>
{/if}
</div>
<div class="flex-row-center">
<a href={'#'} class="flex-row-center" on:click={openActivity}>
<CircleButton icon={IconActivity} size={'small'} primary on:click={openActivity} />
<span class="ml-2 small-text">View activity</span>
</a>
</div>
</div>
</div>
</div>
<div class="mt-14">
<Applications objectId={object._id} _class={object._class} space={object.space} />
</div>
<div class="mt-14">
<Attachments
objectId={object._id}
_class={object._class}
space={object.space}
noLabel={recruit.string.NoAttachmentsForCandidate}
/>
</div>
</Panel>
{/if}
<style lang="scss">
.name {
font-weight: 500;
font-size: 1.25rem;
color: var(--theme-caption-color);
}
.title {
margin-top: 0.25rem;
font-size: 0.75rem;
}
.separator {
margin: 1rem 0;
height: 1px;
background-color: var(--theme-card-divider);
}
</style>