forked from argoproj/argo-workflows
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
332 additions
and
263 deletions.
There are no files selected for viewing
28 changes: 28 additions & 0 deletions
28
ui/src/app/cron-workflows/components/cron-workflow-filters/cron-workflow-filters.scss
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,28 @@ | ||
@import 'node_modules/argo-ui/src/styles/config'; | ||
|
||
.wf-filters-container { | ||
overflow: visible; | ||
position: relative; | ||
border-radius: 5px; | ||
box-shadow: 1px 1px 3px #8fa4b1; | ||
padding: 0 1em 0.75em 1em; | ||
margin: 12px 0; | ||
background-color: white; | ||
} | ||
|
||
.wf-filters-container p { | ||
margin: 0; | ||
margin-top: 1em; | ||
color: #6d7f8b; | ||
text-transform: uppercase; | ||
} | ||
|
||
.wf-filters-container__title { | ||
position: relative; | ||
width: 100%; | ||
max-width: 100%; | ||
padding: 8px 0; | ||
font-size: 15px; | ||
background-color: transparent; | ||
border: 0; | ||
} |
77 changes: 77 additions & 0 deletions
77
ui/src/app/cron-workflows/components/cron-workflow-filters/cron-workflow-filters.tsx
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,77 @@ | ||
import * as React from 'react'; | ||
import {useEffect, useState} from 'react'; | ||
import * as models from '../../../../models'; | ||
import {CheckboxFilter} from '../../../shared/components/checkbox-filter/checkbox-filter'; | ||
import {NamespaceFilter} from '../../../shared/components/namespace-filter'; | ||
import {TagsInput} from '../../../shared/components/tags-input/tags-input'; | ||
|
||
require('./cron-workflow-filters.scss'); | ||
|
||
interface WorkflowFilterProps { | ||
cronWorkflows: models.WorkflowTemplate[]; | ||
namespace: string; | ||
labels: string[]; | ||
states: string[]; | ||
onChange: (namespace: string, labels: string[], states: string[]) => void; | ||
} | ||
|
||
export const CronWorkflowFilters = ({cronWorkflows, namespace, labels, states, onChange}: WorkflowFilterProps) => { | ||
const [labelSuggestion, setLabelSuggestion] = useState([]); | ||
|
||
useEffect(() => { | ||
const suggestions = new Array<string>(); | ||
cronWorkflows | ||
.filter(wf => wf.metadata.labels) | ||
.forEach(wf => { | ||
Object.keys(wf.metadata.labels).forEach(label => { | ||
const value = wf.metadata.labels[label]; | ||
const suggestedLabel = `${label}=${value}`; | ||
if (!suggestions.some(v => v === suggestedLabel)) { | ||
suggestions.push(`${label}=${value}`); | ||
} | ||
}); | ||
}); | ||
setLabelSuggestion(suggestions.sort((a, b) => a.localeCompare(b))); | ||
}, [cronWorkflows]); | ||
|
||
return ( | ||
<div className='wf-filters-container'> | ||
<div className='row'> | ||
<div className='columns small-2 xlarge-12'> | ||
<p className='wf-filters-container__title'>Namespace</p> | ||
<NamespaceFilter | ||
value={namespace} | ||
onChange={ns => { | ||
onChange(ns, labels, states); | ||
}} | ||
/> | ||
</div> | ||
<div className='columns small-2 xlarge-12'> | ||
<p className='wf-filters-container__title'>Labels</p> | ||
<TagsInput | ||
placeholder='' | ||
autocomplete={labelSuggestion} | ||
tags={labels} | ||
onChange={tags => { | ||
onChange(namespace, tags, states); | ||
}} | ||
/> | ||
</div> | ||
<div className='columns small-3 xlarge-12'> | ||
<p className='wf-filters-container__title'>State</p> | ||
<CheckboxFilter | ||
selected={states} | ||
onChange={selected => { | ||
onChange(namespace, labels, selected); | ||
}} | ||
items={[ | ||
{name: 'Running', count: 0}, | ||
{name: 'Suspended', count: 1} | ||
]} | ||
type='state' | ||
/> | ||
</div> | ||
</div> | ||
</div> | ||
); | ||
}; |
Oops, something went wrong.