mirror of
https://github.com/hcengineering/platform.git
synced 2026-08-25 05:42:23 +02:00
148 lines
3.6 KiB
Svelte
148 lines
3.6 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 type { IntlString, Asset } from '@hcengineering/platform'
|
|
import type { AnySvelteComponent } from '@hcengineering/ui'
|
|
import { createEventDispatcher } from 'svelte'
|
|
import { Icon, tooltip, IconColStar } from '@hcengineering/ui'
|
|
|
|
export let label: IntlString
|
|
export let icon: Asset | AnySvelteComponent
|
|
export let selected: boolean
|
|
export let notify: boolean = false
|
|
export let hidden: boolean = false
|
|
export let editable: boolean = false
|
|
|
|
const dispatch = createEventDispatcher()
|
|
</script>
|
|
|
|
<button class="app" class:selected class:hidden class:editable id={'app-' + label} use:tooltip={{ label }}>
|
|
<div class="flex-center icon-container" class:noty={notify}>
|
|
<Icon {icon} size={'large'} />
|
|
</div>
|
|
{#if notify}<div class="marker" />{/if}
|
|
{#if editable}
|
|
<div
|
|
class="starButton"
|
|
class:hidden
|
|
on:click|preventDefault|stopPropagation={() => {
|
|
hidden = !hidden
|
|
dispatch('visible', !hidden)
|
|
}}
|
|
>
|
|
<IconColStar
|
|
size={'small'}
|
|
fill={hidden ? 'var(--warning-color)' : 'var(--activity-status-busy)'}
|
|
border={'var(--button-border-hover)'}
|
|
/>
|
|
</div>
|
|
{/if}
|
|
</button>
|
|
|
|
<style lang="scss">
|
|
.app {
|
|
position: relative;
|
|
padding: 0;
|
|
width: 3.25rem;
|
|
height: 3.25rem;
|
|
background-color: transparent;
|
|
border: 1px solid transparent;
|
|
border-radius: 0.5rem;
|
|
cursor: pointer;
|
|
outline: none;
|
|
|
|
&.editable {
|
|
margin: 0.125rem;
|
|
}
|
|
.icon-container {
|
|
width: 3.25rem;
|
|
height: 3.25rem;
|
|
color: var(--theme-content-trans-color);
|
|
|
|
.normal-font &.noty {
|
|
clip-path: url(#notify-normal);
|
|
}
|
|
.small-font &.noty {
|
|
clip-path: url(#notify-small);
|
|
}
|
|
}
|
|
|
|
&:hover .icon-container {
|
|
color: var(--caption-color);
|
|
}
|
|
&:focus {
|
|
border: 1px solid var(--primary-button-focused-border);
|
|
box-shadow: 0 0 0 3px var(--primary-button-outline);
|
|
.icon-container {
|
|
color: var(--caption-color);
|
|
}
|
|
}
|
|
|
|
&.selected {
|
|
background-color: var(--menu-bg-select);
|
|
.icon-container {
|
|
color: var(--caption-color);
|
|
}
|
|
}
|
|
|
|
&.hidden {
|
|
border: 1px dashed var(--dark-color);
|
|
.icon-container {
|
|
color: var(--dark-color);
|
|
}
|
|
&:hover .icon-container {
|
|
color: var(--content-color);
|
|
}
|
|
}
|
|
}
|
|
|
|
.marker {
|
|
position: absolute;
|
|
top: 0.75rem;
|
|
right: 0.75rem;
|
|
width: 0.5rem;
|
|
height: 0.5rem;
|
|
border-radius: 50%;
|
|
background-color: var(--highlight-red);
|
|
}
|
|
|
|
.starButton {
|
|
position: absolute;
|
|
right: 0.25rem;
|
|
bottom: 0.25rem;
|
|
height: 1rem;
|
|
width: 1rem;
|
|
transform-origin: center center;
|
|
transform: scale(1);
|
|
opacity: 0.8;
|
|
z-index: 10000;
|
|
cursor: pointer;
|
|
|
|
&:hover {
|
|
transform: scale(1.2);
|
|
opacity: 1;
|
|
}
|
|
&.hidden {
|
|
transform: scale(0.7);
|
|
opacity: 0.5;
|
|
|
|
&:hover {
|
|
transform: scale(0.9);
|
|
opacity: 0.8;
|
|
}
|
|
}
|
|
}
|
|
</style>
|