Files
huly-platform/plugins/document-resources/src/components/Documents.svelte
T
67b7c9df24 New themes (#3049)
Signed-off-by: Alexander Platov <sas_lord@mail.ru>
Signed-off-by: Denis Bykhov <bykhov.denis@gmail.com>
Co-authored-by: Denis Bykhov <bykhov.denis@gmail.com>
2023-04-24 00:37:24 +07:00

117 lines
3.4 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 { Doc, DocumentQuery } from '@hcengineering/core'
import { Document } from '@hcengineering/document'
import { createQuery, getClient } from '@hcengineering/presentation'
import { ActionIcon, IconMoreH, Label, Loading, SearchEdit } from '@hcengineering/ui'
import view, { Viewlet, ViewletPreference } from '@hcengineering/view'
import {
ActionContext,
FilterButton,
getViewOptions,
setActiveViewletId,
viewOptionStore,
TableBrowser,
ViewletSettingButton
} from '@hcengineering/view-resources'
import document from '../plugin'
export let query: DocumentQuery<Document> = {}
let search = ''
let resultQuery: DocumentQuery<Doc> = query
function updateResultQuery (search: string, query: DocumentQuery<Document>): void {
resultQuery = search === '' ? { ...query } : { ...query, $search: search }
}
let viewlet: Viewlet | undefined
let loading = true
const preferenceQuery = createQuery()
let preference: ViewletPreference | undefined
const client = getClient()
client
.findOne<Viewlet>(view.class.Viewlet, {
attachTo: document.class.Document,
descriptor: view.viewlet.Table
})
.then((res) => {
viewlet = res
if (res !== undefined) {
setActiveViewletId(res._id)
preferenceQuery.query(
view.class.ViewletPreference,
{
attachedTo: res._id
},
(res) => {
preference = res[0]
loading = false
},
{ limit: 1 }
)
}
})
// let twoRows: boolean
// $: twoRows = $deviceInfo.docWidth <= 680
$: viewOptions = getViewOptions(viewlet, $viewOptionStore)
</script>
<ActionContext
context={{
mode: 'browser'
}}
/>
<div class="antiPanel-component">
<div class="ac-header full divide caption-height">
<div class="ac-header__wrap-title mr-3">
<span class="ac-header__title"><Label label={document.string.Documents} /></span>
</div>
</div>
<div class="ac-header full divide search-start">
<div class="ac-header-full small-gap">
<SearchEdit bind:value={search} on:change={() => updateResultQuery(search, query)} />
<ActionIcon icon={IconMoreH} size={'small'} />
<div class="buttons-divider" />
<FilterButton _class={document.class.Document} />
</div>
<div class="ac-header-full medium-gap">
<ViewletSettingButton bind:viewOptions {viewlet} />
<ActionIcon icon={IconMoreH} size={'small'} />
</div>
</div>
{#if viewlet}
{#if loading}
<Loading />
{:else}
<TableBrowser
_class={document.class.Document}
config={preference?.config ?? viewlet.config}
options={viewlet.options}
query={resultQuery}
showNotification
/>
{/if}
{/if}
</div>