mirror of
https://github.com/hcengineering/platform.git
synced 2025-04-08 09:02:06 +00:00
81 lines
2.3 KiB
Svelte
81 lines
2.3 KiB
Svelte
<!--
|
|
// Copyright © 2020, 2021 Anticrm Platform Contributors.
|
|
// Copyright © 2021 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 { createEventDispatcher } from 'svelte'
|
|
import { CheckBox, resizeObserver } from '@hcengineering/ui'
|
|
import BooleanPresenter from './BooleanPresenter.svelte'
|
|
|
|
export let value: boolean
|
|
export let withoutUndefined: boolean = false
|
|
|
|
const dispatch = createEventDispatcher()
|
|
</script>
|
|
|
|
<div class="selectPopup" use:resizeObserver={() => dispatch('changeContent')}>
|
|
<div class="menu-item" on:click={() => dispatch('close', 1)}>
|
|
<BooleanPresenter value={true} />
|
|
{#if value === true}
|
|
<div class="check">
|
|
<CheckBox checked={value === true} accented />
|
|
</div>
|
|
{/if}
|
|
</div>
|
|
<div class="menu-item" on:click={() => dispatch('close', 2)}>
|
|
<BooleanPresenter value={false} />
|
|
{#if value === false}
|
|
<div class="check">
|
|
<CheckBox checked={value === false} accented />
|
|
</div>
|
|
{/if}
|
|
</div>
|
|
{#if !withoutUndefined}
|
|
<div class="menu-item" on:click={() => dispatch('close', 3)}>
|
|
<BooleanPresenter value={undefined} />
|
|
{#if value === undefined}
|
|
<div class="check">
|
|
<CheckBox checked={value === undefined} accented />
|
|
</div>
|
|
{/if}
|
|
</div>
|
|
{/if}
|
|
</div>
|
|
|
|
<style lang="scss">
|
|
.menu-item {
|
|
flex-shrink: 0;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 0.25rem 0.75rem;
|
|
min-height: 2rem;
|
|
text-align: left;
|
|
color: var(--caption-color);
|
|
cursor: pointer;
|
|
|
|
.check {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
margin: 0;
|
|
pointer-events: none;
|
|
}
|
|
&:focus,
|
|
&:hover {
|
|
background-color: var(--popup-bg-hover);
|
|
}
|
|
}
|
|
</style>
|