mirror of
https://github.com/hcengineering/platform.git
synced 2026-09-23 01:55:00 +02:00
132 lines
3.3 KiB
Svelte
132 lines
3.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 type { Ref, Class, Doc, Space, FindOptions } from '@anticrm/core'
|
|
import { buildModel } from '../utils'
|
|
import { getClient } from '@anticrm/presentation'
|
|
import { Label, showModal, Loading } from '@anticrm/ui'
|
|
import type { AnyComponent } from '@anticrm/ui'
|
|
|
|
import { createQuery } from '@anticrm/presentation'
|
|
|
|
export let _class: Ref<Class<Doc>>
|
|
export let space: Ref<Space>
|
|
export let open: AnyComponent
|
|
export let options: FindOptions<Doc> | undefined
|
|
export let config: string[]
|
|
|
|
let objects: Doc[]
|
|
|
|
const query = createQuery()
|
|
$: query.query(_class, { space }, result => { objects = result }, options)
|
|
|
|
function getValue(doc: Doc, key: string): any {
|
|
if (key.length === 0)
|
|
return doc
|
|
const path = key.split('.')
|
|
const len = path.length
|
|
let obj = doc as any
|
|
for (let i=0; i<len; i++){
|
|
obj = obj?.[path[i]]
|
|
}
|
|
return obj
|
|
}
|
|
|
|
const client = getClient()
|
|
|
|
function onClick(object: Doc) {
|
|
showModal(open, { object, space })
|
|
}
|
|
|
|
</script>
|
|
|
|
{#await buildModel(client, _class, config, options)}
|
|
<Loading/>
|
|
{:then model}
|
|
<table class="table-body">
|
|
<tr class="tr-head">
|
|
{#each model as attribute}
|
|
<th><Label label = {attribute.label}/></th>
|
|
{/each}
|
|
</tr>
|
|
{#if objects}
|
|
{#each objects as object (object._id)}
|
|
<tr class="tr-body" on:click={() => onClick(object)}>
|
|
{#each model as attribute}
|
|
<td><svelte:component this={attribute.presenter} value={getValue(object, attribute.key)}/></td>
|
|
{/each}
|
|
</tr>
|
|
{/each}
|
|
{/if}
|
|
</table>
|
|
{/await}
|
|
|
|
<style lang="scss">
|
|
.table-body {
|
|
display: table;
|
|
border-collapse: collapse;
|
|
|
|
td {
|
|
align-items: center;
|
|
height: 64px;
|
|
padding: 6px 20px;
|
|
color: var(--theme-content-accent-color);
|
|
}
|
|
th {
|
|
align-items: center;
|
|
height: 50px;
|
|
padding: 0 20px;
|
|
font-weight: 500;
|
|
text-align: left;
|
|
color: var(--theme-content-trans-color);
|
|
}
|
|
.tr-head {
|
|
position: sticky;
|
|
top: 0;
|
|
background-color: var(--theme-bg-color);
|
|
border-bottom: 1px solid var(--theme-bg-focused-color);
|
|
box-shadow: 0 1px 0 var(--theme-bg-focused-color);
|
|
z-index: 5;
|
|
}
|
|
.tr-body {
|
|
position: relative;
|
|
border-top: 1px solid var(--theme-bg-accent-hover);
|
|
&:nth-child(2) {
|
|
border-top: 1px solid transparent;
|
|
}
|
|
&:last-child {
|
|
border-bottom: 1px solid transparent;
|
|
}
|
|
}
|
|
.tr-body:hover {
|
|
& > td {
|
|
border-top: 1px solid transparent;
|
|
border-bottom: 1px solid transparent;
|
|
background-color: var(--theme-button-bg-enabled);
|
|
&:first-child {
|
|
border-radius: 12px 0 0 12px;
|
|
}
|
|
&:last-child {
|
|
border-radius: 0 12px 12px 0;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</style>
|