Merge remote-tracking branch 'origin/develop' into staging

Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
This commit is contained in:
Andrey Sobolev 2024-12-13 22:02:43 +07:00
commit d81bfae5d0
No known key found for this signature in database
GPG Key ID: BD80F68D68D8F7F2
8 changed files with 71 additions and 15 deletions

View File

@ -572,6 +572,37 @@ export const taskOperation: MigrateOperation = {
{
state: 'migrateRanks',
func: migrateRanks
},
{
state: 'migrate_wrong_isdone',
func: async (client: MigrationClient) => {
const statuses = client.model.findAllSync(core.class.Status, {
category: { $in: [task.statusCategory.Won, task.statusCategory.Lost] }
})
await client.update<Task>(
DOMAIN_TASK,
{
_class: { $in: client.hierarchy.getDescendants(task.class.Task) },
status: { $in: statuses.map((it) => it._id) },
isDone: false
},
{
isDone: true
}
)
await client.update<Task>(
DOMAIN_TASK,
{
_class: { $in: client.hierarchy.getDescendants(task.class.Task) },
status: { $nin: statuses.map((it) => it._id) },
isDone: true
},
{
isDone: false
}
)
}
}
])
},

View File

@ -104,6 +104,7 @@
on:valid
on:validate
on:submit
on:select
>
<slot />
</svelte:component>
@ -123,6 +124,7 @@
on:valid
on:validate
on:submit
on:select
/>
{/if}
</ErrorBoundary>

View File

@ -77,12 +77,12 @@
titleKey: 'name',
parentKey: 'parent',
noParentId: testManagement.ids.NoParent,
getFolderLink: testManagement.function.GetTestSuiteLink,
allObjectsLabel: testManagement.string.AllTestSuites,
allObjectsIcon: testManagement.icon.TestSuites,
space
}}
mainComponentProps={{ space }}
syncWithLocationQuery={false}
{space}
/>
<svelte:fragment slot="footerRight">

View File

@ -21,13 +21,18 @@
import testManagement from '../../plugin'
export let baseQuery: DocumentQuery<Doc> = {}
export let query: DocumentQuery<Doc> = {}
let testCases: number
const query = createQuery()
$: query.query(testManagement.class.TestCase, baseQuery, (res) => {
testCases = res.length
})
const docQuery = createQuery()
$: docQuery.query(
testManagement.class.TestCase,
query,
(res) => {
testCases = res.length
},
{ total: true, limit: 1 }
)
let viewlet: Viewlet | undefined
let preference: ViewletPreference | undefined
@ -59,7 +64,7 @@
<TableBrowser
_class={testManagement.class.TestCase}
config={preference?.config ?? viewlet.config}
query={baseQuery}
{query}
loadingProps={{ length: testCases }}
enableChecking={true}
readonly={true}

View File

@ -14,6 +14,8 @@
-->
<script lang="ts">
import { createEventDispatcher } from 'svelte'
import { Class, Doc, DocumentQuery, Ref, SortingOrder } from '@hcengineering/core'
import { createQuery, getClient } from '@hcengineering/presentation'
import { Action, IconEdit, navigate, type Location, Scroller, location, getLocation } from '@hcengineering/ui'
@ -29,11 +31,13 @@
export let titleKey: string = 'title'
export let parentKey: string = 'parent'
export let noParentId: Ref<Doc>
export let getFolderLink: Resource<(doc: Ref<Doc> | undefined) => Location>
export let getFolderLink: Resource<(doc: Ref<Doc> | undefined) => Location> | undefined
export let allObjectsIcon: Asset
export let allObjectsLabel: IntlString
export let plainList: boolean = false
const dispatch = createEventDispatcher()
const getFolderId = (): Ref<Doc> => {
return (getLocation()?.query?.attachedTo as Ref<Doc>) ?? noParentId
}
@ -77,8 +81,13 @@
)
async function handleFolderSelected (_id: Ref<Doc>): Promise<void> {
const getFolderLinkFunction = await getResource(getFolderLink)
navigate(getFolderLinkFunction(_id))
if (getFolderLink !== undefined) {
const getFolderLinkFunction = await getResource(getFolderLink)
navigate(getFolderLinkFunction(_id))
} else {
selected = _id
}
dispatch('select', _id)
}
async function handleAllItemsSelected (): Promise<void> {

View File

@ -53,25 +53,31 @@
export let mainComponent: AnyComponent | AnySvelteComponent
export let mainComponentProps = {}
export let showNavigator: boolean = false
export let parentKey: string = 'attachedTo'
const FLOAT_LIMIT = 760
let container: HTMLDivElement
let locationQuery: DocumentQuery<Doc> = {}
let parentQuery: DocumentQuery<Doc> = {}
let resultQuery: DocumentQuery<Doc> = {}
let spaceQuery: DocumentQuery<Doc> = {}
$: spaceQuery = space !== undefined ? { space } : {}
$: resultQuery = mergeQueries(query, mergeQueries(spaceQuery, locationQuery)) ?? {}
$: resultQuery = mergeQueries(query, mergeQueries(spaceQuery, parentQuery)) ?? {}
if (syncWithLocationQuery) {
locationQuery = getLocation()?.query as any
parentQuery = getLocation()?.query as any
onDestroy(
resolvedLocationStore.subscribe((newLocation) => {
locationQuery = newLocation?.query ?? {}
parentQuery = newLocation?.query ?? {}
})
)
}
function onSelected (e: CustomEvent<any>): void {
if (syncWithLocationQuery) return
parentQuery = { [parentKey]: e.detail }
}
function showCreateDialog (): void {
if (createComponent === undefined) return
showPopup(createComponent, { ...createComponentProps, space }, 'top')
@ -147,6 +153,7 @@
...navigationComponentProps,
query: spaceQuery
}}
on:select={onSelected}
/>
</div>
<Separator

View File

@ -1672,7 +1672,7 @@ export async function getAllWorkspaces (
}
return (await db.workspace.find({})).map((it) => {
it.accounts = it.accounts.map((it) => it.toString())
it.accounts = (it.accounts ?? []).map((it) => it.toString())
return it
})
}

View File

@ -60,7 +60,9 @@ const withBlob: RequestHandler<BlobRequest> = (request: BlobRequest) => {
router
.get('/blob/:workspace/:name', withBlob, handleBlobGet)
.get('/blob/:workspace/:name/:filename', withBlob, handleBlobGet)
.head('/blob/:workspace/:name', withBlob, handleBlobHead)
.head('/blob/:workspace/:name/:filename', withBlob, handleBlobHead)
.delete('/blob/:workspace/:name', withBlob, handleBlobDelete)
// Image
.get('/image/:transform/:workspace/:name', withBlob, handleImageGet)