-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #17449 from guerler/align_published_histories
Adds published histories to grid list
- Loading branch information
Showing
9 changed files
with
193 additions
and
368 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
112 changes: 112 additions & 0 deletions
112
client/src/components/Grid/configs/historiesPublished.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,112 @@ | ||
import { faEye } from "@fortawesome/free-solid-svg-icons"; | ||
import { useEventBus } from "@vueuse/core"; | ||
|
||
import { historiesFetcher } from "@/api/histories"; | ||
import Filtering, { contains, expandNameTag, type ValidFilter } from "@/utils/filtering"; | ||
import _l from "@/utils/localization"; | ||
|
||
import type { FieldArray, GridConfig } from "./types"; | ||
|
||
const { emit } = useEventBus<string>("grid-router-push"); | ||
|
||
/** | ||
* Local types | ||
*/ | ||
type HistoryEntry = Record<string, unknown>; | ||
type SortKeyLiteral = "name" | "update_time" | undefined; | ||
|
||
/** | ||
* Request and return data from server | ||
*/ | ||
async function getData(offset: number, limit: number, search: string, sort_by: string, sort_desc: boolean) { | ||
const { data, headers } = await historiesFetcher({ | ||
limit, | ||
offset, | ||
search, | ||
sort_by: sort_by as SortKeyLiteral, | ||
sort_desc, | ||
show_own: false, | ||
show_published: true, | ||
show_shared: false, | ||
}); | ||
const totalMatches = parseInt(headers.get("total_matches") ?? "0"); | ||
return [data, totalMatches]; | ||
} | ||
|
||
/** | ||
* Declare columns to be displayed | ||
*/ | ||
const fields: FieldArray = [ | ||
{ | ||
key: "name", | ||
title: "Name", | ||
type: "operations", | ||
operations: [ | ||
{ | ||
title: "View", | ||
icon: faEye, | ||
condition: (data: HistoryEntry) => !data.deleted, | ||
handler: (data: HistoryEntry) => { | ||
emit(`/histories/view?id=${data.id}`); | ||
}, | ||
}, | ||
], | ||
}, | ||
{ | ||
key: "annotation", | ||
title: "Annotation", | ||
type: "text", | ||
}, | ||
{ | ||
key: "id", | ||
title: "Size", | ||
type: "datasets", | ||
}, | ||
{ | ||
key: "tags", | ||
title: "Tags", | ||
type: "tags", | ||
disabled: true, | ||
}, | ||
{ | ||
key: "update_time", | ||
title: "Updated", | ||
type: "date", | ||
}, | ||
{ | ||
key: "username", | ||
title: "Username", | ||
type: "text", | ||
}, | ||
]; | ||
|
||
/** | ||
* Declare filter options | ||
*/ | ||
const validFilters: Record<string, ValidFilter<string | boolean | undefined>> = { | ||
name: { placeholder: "name", type: String, handler: contains("name"), menuItem: true }, | ||
user: { placeholder: "user", type: String, handler: contains("username"), menuItem: true }, | ||
tag: { | ||
placeholder: "tag(s)", | ||
type: "MultiTags", | ||
handler: contains("tag", "tag", expandNameTag), | ||
menuItem: true, | ||
}, | ||
}; | ||
|
||
/** | ||
* Grid configuration | ||
*/ | ||
const gridConfig: GridConfig = { | ||
id: "histories-published-grid", | ||
fields: fields, | ||
filtering: new Filtering(validFilters, undefined, false, false), | ||
getData: getData, | ||
plural: "Histories", | ||
sortBy: "update_time", | ||
sortDesc: true, | ||
sortKeys: ["name", "update_time", "username"], | ||
title: "Published Histories", | ||
}; | ||
|
||
export default gridConfig; |
Oops, something went wrong.