mirror of
https://github.com/hcengineering/platform.git
synced 2025-02-11 13:23:11 +00:00
94 lines
2.7 KiB
Svelte
94 lines
2.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 type { IntlString } from '@anticrm/platform'
|
|
import { afterUpdate, createEventDispatcher } from 'svelte'
|
|
|
|
import { Label, EditWithIcon, IconSearch } from '@anticrm/ui'
|
|
import SpaceInfo from './SpaceInfo.svelte'
|
|
|
|
import type { Ref, Class, Space } from '@anticrm/core'
|
|
import { createQuery } from '../utils'
|
|
|
|
export let _class: Ref<Class<Space>>
|
|
|
|
let search: string = ''
|
|
let objects: Space[] = []
|
|
|
|
const dispatch = createEventDispatcher()
|
|
const query = createQuery()
|
|
$: query.query(_class, {}, result => { objects = result })
|
|
afterUpdate(() => { dispatch('update', Date.now()) })
|
|
</script>
|
|
|
|
<div class="popup">
|
|
<div class="flex-col">
|
|
<EditWithIcon icon={IconSearch} bind:value={search} placeholder={'Search...'} />
|
|
<div class="label"><Label label={'SUGGESTED'} /></div>
|
|
</div>
|
|
<div class="flex-grow scroll">
|
|
<div class="flex-col h-full box">
|
|
{#each objects as space}
|
|
<button class="menu-item" on:click={() => { dispatch('close', space) }}>
|
|
<SpaceInfo size={'large'} value={space} />
|
|
</button>
|
|
{/each}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<style lang="scss">
|
|
.popup {
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 1rem;
|
|
color: var(--theme-caption-color);
|
|
background-color: var(--theme-button-bg-hovered);
|
|
border: 1px solid var(--theme-button-border-enabled);
|
|
border-radius: .75rem;
|
|
user-select: none;
|
|
filter: drop-shadow(0 1.5rem 4rem rgba(0, 0, 0, .35));
|
|
}
|
|
|
|
.label {
|
|
margin: 1rem 0 .625rem .375rem;
|
|
font-size: .75rem;
|
|
font-weight: 600;
|
|
text-transform: uppercase;
|
|
color: var(--theme-content-dark-color);
|
|
}
|
|
|
|
.scroll {
|
|
overflow-y: scroll;
|
|
.box { margin-right: 1px; }
|
|
}
|
|
|
|
.menu-item {
|
|
justify-content: start;
|
|
padding: .375rem;
|
|
border-radius: .5rem;
|
|
|
|
&:hover {
|
|
background-color: var(--theme-button-bg-pressed);
|
|
border: 1px solid var(--theme-bg-accent-color);
|
|
}
|
|
&:focus {
|
|
border: 1px solid var(--primary-button-focused-border);
|
|
box-shadow: 0 0 0 3px var(--primary-button-outline);
|
|
z-index: 1;
|
|
}
|
|
}
|
|
</style>
|