mirror of
https://github.com/ClusterCockpit/cc-backend
synced 2025-01-24 10:29:06 +01:00
142 lines
4.0 KiB
Svelte
142 lines
4.0 KiB
Svelte
<!--
|
|
@component Main job list component
|
|
|
|
Properties:
|
|
- `filterPresets Object?`: Optional predefined filter values [Default: {}]
|
|
- `authlevel Number`: The current users authentication level
|
|
- `roles [Number]`: Enum containing available roles
|
|
-->
|
|
|
|
<script>
|
|
import { onMount, getContext } from "svelte";
|
|
import {
|
|
Row,
|
|
Col,
|
|
Button,
|
|
ButtonGroup,
|
|
Icon,
|
|
Card,
|
|
Spinner,
|
|
} from "@sveltestrap/sveltestrap";
|
|
import { init } from "./generic/utils.js";
|
|
import Filters from "./generic/Filters.svelte";
|
|
import JobList from "./generic/JobList.svelte";
|
|
import TextFilter from "./generic/helper/TextFilter.svelte";
|
|
import Refresher from "./generic/helper/Refresher.svelte";
|
|
import Sorting from "./generic/select/SortSelection.svelte";
|
|
import MetricSelection from "./generic/select/MetricSelection.svelte";
|
|
|
|
const { query: initq } = init();
|
|
|
|
const ccconfig = getContext("cc-config");
|
|
|
|
export let filterPresets = {};
|
|
export let authlevel;
|
|
export let roles;
|
|
|
|
let filterComponent; // see why here: https://stackoverflow.com/questions/58287729/how-can-i-export-a-function-from-a-svelte-component-that-changes-a-value-in-the
|
|
let jobList,
|
|
matchedJobs = null;
|
|
let sorting = { field: "startTime", type: "col", order: "DESC" },
|
|
isSortingOpen = false,
|
|
isMetricsSelectionOpen = false;
|
|
let metrics = filterPresets.cluster
|
|
? ccconfig[`plot_list_selectedMetrics:${filterPresets.cluster}`] ||
|
|
ccconfig.plot_list_selectedMetrics
|
|
: ccconfig.plot_list_selectedMetrics;
|
|
let showFootprint = filterPresets.cluster
|
|
? !!ccconfig[`plot_list_showFootprint:${filterPresets.cluster}`]
|
|
: !!ccconfig.plot_list_showFootprint;
|
|
let selectedCluster = filterPresets?.cluster ? filterPresets.cluster : null;
|
|
let presetProject = filterPresets?.project ? filterPresets.project : ""
|
|
|
|
// The filterPresets are handled by the Filters component,
|
|
// so we need to wait for it to be ready before we can start a query.
|
|
// This is also why JobList component starts out with a paused query.
|
|
onMount(() => filterComponent.updateFilters());
|
|
</script>
|
|
|
|
<!-- ROW1: Status-->
|
|
{#if $initq.fetching}
|
|
<Row class="mb-3">
|
|
<Col>
|
|
<Spinner />
|
|
</Col>
|
|
</Row>
|
|
{:else if $initq.error}
|
|
<Row class="mb-3">
|
|
<Col>
|
|
<Card body color="danger">{$initq.error.message}</Card>
|
|
</Col>
|
|
</Row>
|
|
{/if}
|
|
|
|
<!-- ROW2: Tools-->
|
|
<Row cols={{ xs: 1, md: 2, lg: 4}} class="mb-3">
|
|
<Col lg="2" class="mb-2 mb-lg-0">
|
|
<ButtonGroup class="w-100">
|
|
<Button outline color="primary" on:click={() => (isSortingOpen = true)}>
|
|
<Icon name="sort-up" /> Sorting
|
|
</Button>
|
|
<Button
|
|
outline
|
|
color="primary"
|
|
on:click={() => (isMetricsSelectionOpen = true)}
|
|
>
|
|
<Icon name="graph-up" /> Metrics
|
|
</Button>
|
|
</ButtonGroup>
|
|
</Col>
|
|
<Col lg="4" xl="{(presetProject !== '') ? 5 : 6}" class="mb-1 mb-lg-0">
|
|
<Filters
|
|
{filterPresets}
|
|
{matchedJobs}
|
|
bind:this={filterComponent}
|
|
on:update-filters={({ detail }) => {
|
|
selectedCluster = detail.filters[0]?.cluster
|
|
? detail.filters[0].cluster.eq
|
|
: null;
|
|
jobList.queryJobs(detail.filters);
|
|
}}
|
|
/>
|
|
</Col>
|
|
<Col lg="3" xl="{(presetProject !== '') ? 3 : 2}" class="mb-2 mb-lg-0">
|
|
<TextFilter
|
|
{presetProject}
|
|
bind:authlevel
|
|
bind:roles
|
|
on:set-filter={({ detail }) => filterComponent.updateFilters(detail)}
|
|
/>
|
|
</Col>
|
|
<Col lg="3" xl="2" class="mb-1 mb-lg-0">
|
|
<Refresher on:refresh={() => {
|
|
jobList.refreshJobs()
|
|
jobList.refreshAllMetrics()
|
|
}} />
|
|
</Col>
|
|
</Row>
|
|
|
|
<!-- ROW3: Job List-->
|
|
<Row>
|
|
<Col>
|
|
<JobList
|
|
bind:this={jobList}
|
|
bind:metrics
|
|
bind:sorting
|
|
bind:matchedJobs
|
|
bind:showFootprint
|
|
/>
|
|
</Col>
|
|
</Row>
|
|
|
|
<Sorting bind:sorting bind:isOpen={isSortingOpen} />
|
|
|
|
<MetricSelection
|
|
bind:cluster={selectedCluster}
|
|
configName="plot_list_selectedMetrics"
|
|
bind:metrics
|
|
bind:isOpen={isMetricsSelectionOpen}
|
|
bind:showFootprint
|
|
footprintSelect={true}
|
|
/>
|