mirror of
https://github.com/hcengineering/platform.git
synced 2026-08-23 04:42:22 +02:00
191 lines
5.8 KiB
Svelte
191 lines
5.8 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 { Class, DocumentQuery, FindOptions, Ref, SortingOrder } from '@hcengineering/core'
|
|
import { createQuery, getClient } from '@hcengineering/presentation'
|
|
import { DoneState, SpaceWithStates, State, Task } from '@hcengineering/task'
|
|
import type { TabItem } from '@hcengineering/ui'
|
|
import { TabList } from '@hcengineering/ui'
|
|
import { TableBrowser } from '@hcengineering/view-resources'
|
|
import task from '../plugin'
|
|
import Lost from './icons/Lost.svelte'
|
|
import Won from './icons/Won.svelte'
|
|
import StatesBar from './state/StatesBar.svelte'
|
|
|
|
export let _class: Ref<Class<Task>>
|
|
export let space: Ref<SpaceWithStates>
|
|
export let query: DocumentQuery<Task>
|
|
export let options: FindOptions<Task> | undefined
|
|
export let config: string[]
|
|
|
|
let doneStatusesView: boolean = false
|
|
let state: Ref<State> | undefined = undefined
|
|
const selectedDoneStates: Set<Ref<DoneState>> = new Set<Ref<DoneState>>()
|
|
$: resConfig = updateConfig(config)
|
|
let doneStates: DoneState[] = []
|
|
let itemsDS: TabItem[] = []
|
|
let selectedDS: string[] = []
|
|
let withoutDone: boolean = false
|
|
let resultQuery: DocumentQuery<Task>
|
|
|
|
function updateConfig (config: string[]): string[] {
|
|
if (state !== undefined) {
|
|
return config.filter((p) => p !== 'state')
|
|
}
|
|
if (selectedDoneStates.size === 1) {
|
|
return config.filter((p) => p !== 'doneState')
|
|
}
|
|
return config
|
|
}
|
|
|
|
const doneStateQuery = createQuery()
|
|
doneStateQuery.query(
|
|
task.class.DoneState,
|
|
space != null
|
|
? {
|
|
space
|
|
}
|
|
: {},
|
|
(res) => {
|
|
doneStates = res
|
|
itemsDS = doneStates.map((s) => {
|
|
return {
|
|
id: s._id,
|
|
label: s.title,
|
|
icon: s._class === task.class.WonState ? Won : Lost,
|
|
color: s._class === task.class.WonState ? 'var(--won-color)' : 'var(--lost-color)'
|
|
}
|
|
})
|
|
itemsDS.unshift({ id: 'NoDoneState', labelIntl: task.string.NoDoneState })
|
|
},
|
|
{
|
|
sort: {
|
|
_class: SortingOrder.Descending,
|
|
rank: SortingOrder.Descending
|
|
}
|
|
}
|
|
)
|
|
|
|
const client = getClient()
|
|
|
|
async function updateQuery (query: DocumentQuery<Task>, selectedDoneStates: Set<Ref<DoneState>>): Promise<void> {
|
|
resConfig = updateConfig(config)
|
|
const result = client.getHierarchy().clone(query)
|
|
if (state) {
|
|
result.state = state
|
|
}
|
|
if (selectedDoneStates.size > 0) {
|
|
result.doneState = {
|
|
$in: Array.from(selectedDoneStates)
|
|
}
|
|
} else if (withoutDone) {
|
|
result.doneState = null
|
|
}
|
|
resultQuery = result
|
|
}
|
|
|
|
function doneStateClick (id: Ref<DoneState>): void {
|
|
withoutDone = false
|
|
if (selectedDoneStates.has(id)) selectedDoneStates.delete(id)
|
|
else selectedDoneStates.add(id)
|
|
if (selectedDS.length === 2 && selectedDS.includes('NoDoneState')) {
|
|
selectedDS = selectedDS.filter((s) => s !== 'NoDoneState')
|
|
}
|
|
if (selectedDS.length === 0) {
|
|
selectedDS = ['NoDoneState']
|
|
withoutDone = true
|
|
}
|
|
updateQuery(query, selectedDoneStates)
|
|
}
|
|
|
|
function noDoneClick (): void {
|
|
withoutDone = true
|
|
selectedDS = ['NoDoneState']
|
|
selectedDoneStates.clear()
|
|
updateQuery(query, selectedDoneStates)
|
|
}
|
|
|
|
$: updateQuery(query, selectedDoneStates)
|
|
const handleSelect = (result: any) => {
|
|
if (result.type === 'select') {
|
|
const res = result.detail
|
|
if (res.id === 'AllStates') {
|
|
doneStatusesView = false
|
|
state = undefined
|
|
withoutDone = false
|
|
selectedDoneStates.clear()
|
|
updateQuery(query, selectedDoneStates)
|
|
} else if (res.id === 'DoneStates') {
|
|
doneStatusesView = true
|
|
state = undefined
|
|
selectedDoneStates.clear()
|
|
updateQuery(query, selectedDoneStates)
|
|
}
|
|
}
|
|
}
|
|
const handleDoneSelect = (result: any) => {
|
|
if (result.type === 'select') {
|
|
const res = result.detail
|
|
if (res.id === 'NoDoneState') noDoneClick()
|
|
else doneStateClick(res.id)
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<div class="header">
|
|
<TabList
|
|
items={[
|
|
{ id: 'AllStates', labelIntl: task.string.AllStates },
|
|
{ id: 'DoneStates', labelIntl: task.string.DoneStates }
|
|
]}
|
|
multiselect={false}
|
|
size={'small'}
|
|
on:select={handleSelect}
|
|
/>
|
|
{#if doneStatusesView}
|
|
<TabList items={itemsDS} bind:selected={selectedDS} multiselect on:select={handleDoneSelect} size={'small'} />
|
|
{:else}
|
|
<StatesBar bind:state {space} gap={'none'} on:change={() => updateQuery(query, selectedDoneStates)} />
|
|
{/if}
|
|
</div>
|
|
<div class="statustableview-container">
|
|
<TableBrowser {_class} bind:query={resultQuery} config={resConfig} {options} showNotification />
|
|
</div>
|
|
|
|
<style lang="scss">
|
|
.statustableview-container {
|
|
flex-grow: 1;
|
|
min-height: 0;
|
|
height: 100%;
|
|
}
|
|
|
|
.header {
|
|
display: grid;
|
|
grid-template-columns: auto auto;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
column-gap: 1rem;
|
|
padding: 0.75rem 0.75rem 0.75rem 2.5rem;
|
|
width: 100%;
|
|
min-height: 3.25rem;
|
|
min-width: 0;
|
|
background-color: var(--board-bg-color);
|
|
|
|
border-top: 1px solid var(--divider-color);
|
|
// border-bottom: 1px solid var(--divider-color);
|
|
}
|
|
</style>
|