Skip to content

Commit

Permalink
feat(ui): show all suites/tests when parent matches (#6106)
Browse files Browse the repository at this point in the history
  • Loading branch information
userquin committed Jul 12, 2024
1 parent bd83f6c commit 840e02f
Show file tree
Hide file tree
Showing 3 changed files with 63 additions and 9 deletions.
63 changes: 56 additions & 7 deletions packages/ui/client/composables/explorer/filter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,14 +48,44 @@ export function* filterNode(
) {
const treeNodes = new Set<string>()

const parentsMap = new Map<string, boolean>()
const list: FilterResult[] = []

for (const entry of visitNode(
node,
treeNodes,
n => matcher(n, search, filter),
)) {
list.push(entry)
let fileId: string | undefined

if (filter.onlyTests) {
for (const [match, child] of visitNode(
node,
treeNodes,
n => matcher(n, search, filter),
)) {
list.push([match, child])
}
}
else {
for (const [match, child] of visitNode(
node,
treeNodes,
n => matcher(n, search, filter),
)) {
if (isParentNode(child)) {
parentsMap.set(child.id, match)
if (isFileNode(child)) {
match && (fileId = child.id)
list.push([match, child])
}
else {
list.push([match || parentsMap.get(child.parentId) === true, child])
}
}
else {
list.push([match || parentsMap.get(child.parentId) === true, child])
}
}
// when expanding a non-file node
if (!fileId && !isFileNode(node) && 'fileId' in node) {
fileId = node.fileId as string
}
}

const filesToShow = new Set<string>()
Expand All @@ -65,6 +95,7 @@ export function* filterNode(
filter.onlyTests,
treeNodes,
filesToShow,
fileId,
)].reverse()

// We show only the files and parents whose parent is expanded.
Expand Down Expand Up @@ -129,10 +160,28 @@ function* filterParents(
collapseParents: boolean,
treeNodes: Set<string>,
filesToShow: Set<string>,
nodeId?: string,
) {
for (let i = list.length - 1; i >= 0; i--) {
const [match, child] = list[i]
if (isParentNode(child)) {
const isParent = isParentNode(child)
if (!collapseParents && nodeId && treeNodes.has(nodeId) && 'fileId' in child && child.fileId === nodeId) {
if (isParent) {
treeNodes.add(child.id)
}
let parent = explorerTree.nodes.get(child.parentId)
while (parent) {
treeNodes.add(parent.id)
if (isFileNode(parent)) {
filesToShow.add(parent.id)
}
parent = explorerTree.nodes.get(parent.parentId)
}
yield child
continue
}

if (isParent) {
const node = expandCollapseNode(
match,
child,
Expand Down
3 changes: 3 additions & 0 deletions packages/ui/client/composables/explorer/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,12 @@ export interface UITaskTreeNode extends TaskTreeNode {
}

export interface TestTreeNode extends UITaskTreeNode {
fileId: string
type: 'test'
}

export interface CustomTestTreeNode extends UITaskTreeNode {
fileId: string
type: 'custom'
}

Expand All @@ -51,6 +53,7 @@ export interface ParentTreeNode extends UITaskTreeNode {
}

export interface SuiteTreeNode extends ParentTreeNode {
fileId: string
type: 'suite'
typecheck?: boolean
}
Expand Down
6 changes: 4 additions & 2 deletions packages/ui/client/composables/explorer/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ export function createOrUpdateNodeTask(id: string) {
}

const task = client.state.idMap.get(id)
// if no children just return
// if it is not a test just return
if (!task || !isAtomTest(task)) {
return
}
Expand Down Expand Up @@ -149,6 +149,7 @@ export function createOrUpdateNode(
if (isAtomTest(task)) {
taskNode = {
id: task.id,
fileId: task.file.id,
parentId,
name: task.name,
mode: task.mode,
Expand All @@ -158,11 +159,12 @@ export function createOrUpdateNode(
indent: node.indent + 1,
duration: task.result?.duration,
state: task.result?.state,
}
} as TestTreeNode | CustomTestTreeNode
}
else {
taskNode = {
id: task.id,
fileId: task.file.id,
parentId,
name: task.name,
mode: task.mode,
Expand Down

0 comments on commit 840e02f

Please sign in to comment.