mirror of
https://github.com/hcengineering/platform.git
synced 2025-02-07 19:38:46 +00:00
6c739dc935
Signed-off-by: Denis Bykhov <80476319+BykhovDenis@users.noreply.github.com>
121 lines
3.7 KiB
Svelte
121 lines
3.7 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 contact, { Channel, formatName } from '@anticrm/contact'
|
|
import { ChannelsEditor } from '@anticrm/contact-resources'
|
|
import { Avatar, createQuery } from '@anticrm/presentation'
|
|
import type { Candidate } from '@anticrm/recruit'
|
|
import { Component, Label, showPanel } from '@anticrm/ui'
|
|
import view from '@anticrm/view'
|
|
import chunter from '@anticrm/chunter'
|
|
import attachment from '@anticrm/attachment'
|
|
import recruit from '../plugin'
|
|
|
|
export let candidate: Candidate
|
|
export let disabled: boolean = false
|
|
|
|
let channels: Channel[] = []
|
|
const channelsQuery = createQuery()
|
|
channelsQuery.query(
|
|
contact.class.Channel,
|
|
{
|
|
attachedTo: candidate._id
|
|
},
|
|
(res) => {
|
|
channels = res
|
|
}
|
|
)
|
|
</script>
|
|
|
|
<div class="flex-col h-full card-container">
|
|
<div class="label uppercase"><Label label={recruit.string.Talent} /></div>
|
|
<Avatar avatar={candidate.avatar} size={'large'} />
|
|
{#if candidate}
|
|
<div
|
|
class="name lines-limit-2"
|
|
class:over-underline={!disabled}
|
|
on:click={() => {
|
|
if (!disabled) showPanel(view.component.EditDoc, candidate._id, candidate._class, 'content')
|
|
}}
|
|
>
|
|
{formatName(candidate.name)}
|
|
</div>
|
|
<div class="description lines-limit-2">{candidate.title ?? ''}</div>
|
|
<div class="description overflow-label">{candidate.city ?? ''}</div>
|
|
<div class="footer flex flex-reverse flex-grow">
|
|
<div class="flex-center flex-wrap">
|
|
<Component
|
|
is={chunter.component.CommentsPresenter}
|
|
props={{ value: candidate.comments, object: candidate, size: 'medium', showCounter: true }}
|
|
/>
|
|
<Component
|
|
is={attachment.component.AttachmentsPresenter}
|
|
props={{ value: candidate.attachments, object: candidate, size: 'medium', showCounter: true }}
|
|
/>
|
|
</div>
|
|
{#if channels[0]}
|
|
<div class="flex flex-grow">
|
|
<ChannelsEditor
|
|
attachedTo={channels[0].attachedTo}
|
|
attachedClass={channels[0].attachedToClass}
|
|
length={'short'}
|
|
editable={false}
|
|
/>
|
|
</div>
|
|
{/if}
|
|
</div>
|
|
{/if}
|
|
</div>
|
|
|
|
<style lang="scss">
|
|
.card-container {
|
|
padding: 1rem 1.5rem 1.25rem;
|
|
background-color: var(--board-card-bg-color);
|
|
border: 1px solid var(--divider-color);
|
|
border-radius: 0.5rem;
|
|
transition-property: box-shadow, background-color, border-color;
|
|
transition-timing-function: var(--timing-shadow);
|
|
transition-duration: 0.15s;
|
|
user-select: text;
|
|
|
|
&:hover {
|
|
background-color: var(--board-card-bg-hover);
|
|
border-color: var(--button-border-color);
|
|
box-shadow: var(--accent-shadow);
|
|
}
|
|
|
|
.label {
|
|
margin-bottom: 1.75rem;
|
|
font-weight: 500;
|
|
font-size: 0.625rem;
|
|
color: var(--theme-content-dark-color);
|
|
}
|
|
.name {
|
|
margin: 1rem 0 0.25rem;
|
|
font-weight: 500;
|
|
font-size: 1rem;
|
|
color: var(--theme-caption-color);
|
|
}
|
|
.description {
|
|
font-size: 0.75rem;
|
|
color: var(--theme-content-dark-color);
|
|
}
|
|
.footer {
|
|
margin-top: 1.5rem;
|
|
// overflow: hidden;
|
|
}
|
|
}
|
|
</style>
|