mirror of
https://github.com/hcengineering/platform.git
synced 2025-02-08 20:07:36 +00:00
92 lines
2.7 KiB
Svelte
92 lines
2.7 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 { Organization } from '@anticrm/contact'
|
||
|
import { Avatar } from '@anticrm/presentation'
|
||
|
import { closePanel, closePopup, closeTooltip, getCurrentLocation, Label, navigate } from '@anticrm/ui'
|
||
|
import contact from '../plugin'
|
||
|
|
||
|
export let organization: Organization
|
||
|
export let disabled: boolean = false
|
||
|
</script>
|
||
|
|
||
|
<div class="flex-col h-full card-container">
|
||
|
<div class="label uppercase"><Label label={contact.string.Organization} /></div>
|
||
|
<div class="flex-center logo">
|
||
|
<Avatar avatar={organization.avatar} size={'large'} icon={contact.icon.Company} />
|
||
|
</div>
|
||
|
{#if organization}
|
||
|
<div
|
||
|
class="name lines-limit-2"
|
||
|
class:over-underline={!disabled}
|
||
|
on:click={() => {
|
||
|
if (!disabled) {
|
||
|
closeTooltip()
|
||
|
closePopup()
|
||
|
closePanel()
|
||
|
const loc = getCurrentLocation()
|
||
|
loc.path[2] = organization._id
|
||
|
loc.path.length = 3
|
||
|
navigate(loc)
|
||
|
}
|
||
|
}}
|
||
|
>
|
||
|
{organization.name}
|
||
|
</div>
|
||
|
{#if organization}
|
||
|
<span class="label">{organization.name}</span>
|
||
|
{/if}
|
||
|
{/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);
|
||
|
}
|
||
|
|
||
|
.logo {
|
||
|
width: 5rem;
|
||
|
height: 5rem;
|
||
|
color: var(--primary-button-color);
|
||
|
background-color: var(--primary-button-enabled);
|
||
|
border-radius: 50%;
|
||
|
}
|
||
|
.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);
|
||
|
}
|
||
|
}
|
||
|
</style>
|