-
Notifications
You must be signed in to change notification settings - Fork 615
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use page route instead of resource for vmtemplates
- Loading branch information
Showing
4 changed files
with
264 additions
and
23 deletions.
There are no files selected for viewing
149 changes: 149 additions & 0 deletions
149
frontend/packages/kubevirt-plugin/src/components/vm-templates/vm-template.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,149 @@ | ||
import * as React from 'react'; | ||
import * as _ from 'lodash'; | ||
import * as classNames from 'classnames'; | ||
import { sortable } from '@patternfly/react-table'; | ||
|
||
import { | ||
TemplateSource, | ||
getTemplateOperatingSystems, | ||
getTemplateFlavors, | ||
TEMPLATE_TYPE_LABEL, | ||
} from 'kubevirt-web-ui-components'; | ||
|
||
import { ListPage, Table, TableRow, TableData } from '@console/internal/components/factory'; | ||
import { Kebab, ResourceLink, ResourceKebab } from '@console/internal/components/utils'; | ||
import { getName, getNamespace, DASH, getUid } from '@console/shared'; | ||
import { TemplateModel } from '@console/internal/models'; | ||
import { K8sResourceKind } from '../../../../../public/module/k8s/index'; | ||
|
||
export const menuActions = Kebab.factory.common; | ||
|
||
const { kind } = TemplateModel; | ||
const selector = { | ||
matchLabels: { [TEMPLATE_TYPE_LABEL]: 'vm' }, | ||
}; | ||
const labelPlural = 'Virtual Machine Templates'; | ||
|
||
const tableColumnClass = classNames('col-lg-2', 'col-sm-4', 'col-xs-4'); | ||
const tableColumnClassHiddenOnSmall = classNames('col-lg-2', 'hidden-sm', 'hidden-xs'); | ||
|
||
const tableColumnClasses = [ | ||
tableColumnClass, | ||
tableColumnClass, | ||
tableColumnClass, | ||
tableColumnClassHiddenOnSmall, | ||
tableColumnClassHiddenOnSmall, | ||
tableColumnClassHiddenOnSmall, | ||
Kebab.columnClass, | ||
]; | ||
|
||
const VmTempleateTableHeader = () => { | ||
return [ | ||
{ | ||
title: 'Name', | ||
sortField: 'metadata.name', | ||
transforms: [sortable], | ||
props: { className: tableColumnClasses[0] }, | ||
}, | ||
{ | ||
title: 'Namespace', | ||
sortField: 'metadata.namespace', | ||
transforms: [sortable], | ||
props: { className: tableColumnClasses[1] }, | ||
}, | ||
{ | ||
title: 'Description', | ||
sortField: 'metadata.annotations.description', | ||
transforms: [sortable], | ||
props: { className: tableColumnClasses[2] }, | ||
}, | ||
{ | ||
title: 'Source', | ||
props: { className: tableColumnClasses[3] }, | ||
}, | ||
{ | ||
title: 'OS', | ||
props: { className: tableColumnClasses[4] }, | ||
}, | ||
{ | ||
title: 'Flavor', | ||
props: { className: tableColumnClasses[5] }, | ||
}, | ||
{ | ||
title: '', | ||
props: { className: tableColumnClasses[6] }, | ||
}, | ||
]; | ||
}; | ||
VmTempleateTableHeader.displayName = 'VmTemplateTableHeader'; | ||
|
||
const VmTemplateTableRow = ({ template, index, key, style }: VmTemplateTableRowProps) => { | ||
const os = getTemplateOperatingSystems([template])[0]; | ||
|
||
return ( | ||
<TableRow id={template.metadata.uid} index={index} trKey={key} style={style}> | ||
<TableData className={tableColumnClasses[0]}> | ||
<ResourceLink | ||
kind={kind} | ||
name={getName(template)} | ||
namespace={getNamespace(template)} | ||
title={getUid(template)} | ||
/> | ||
</TableData> | ||
<TableData className={tableColumnClasses[1]}> | ||
<ResourceLink | ||
kind="Namespace" | ||
name={getNamespace(template)} | ||
title={getNamespace(template)} | ||
/> | ||
</TableData> | ||
<TableData className={tableColumnClasses[2]}> | ||
{_.get(template.metadata, 'annotations.description', DASH)} | ||
</TableData> | ||
<TableData className={tableColumnClasses[3]}> | ||
<TemplateSource template={template} /> | ||
</TableData> | ||
<TableData className={tableColumnClasses[4]}>{os ? os.name || os.id : DASH}</TableData> | ||
<TableData className={tableColumnClasses[5]}>{getTemplateFlavors([template])[0]}</TableData> | ||
<TableData className={tableColumnClasses[6]}> | ||
<ResourceKebab actions={menuActions} kind={kind} resource={template} /> | ||
</TableData> | ||
</TableRow> | ||
); | ||
}; | ||
VmTemplateTableRow.displayName = 'VmTemplateTableRow'; | ||
|
||
const VirtualMachineTemplates: React.FC< | ||
React.ComponentProps<typeof Table> & VirtualMachineTemplatesProps | ||
> = (props) => ( | ||
<Table | ||
{...props} | ||
aria-label={labelPlural} | ||
Header={VmTempleateTableHeader} | ||
Row={VmTemplateTableRow} | ||
/> | ||
); | ||
|
||
const VirtualMachineTemplatesPage: React.FC< | ||
React.ComponentProps<typeof ListPage> & VirtualMachineTemplatesPageProps | ||
> = (props) => ( | ||
<ListPage | ||
{...props} | ||
title={labelPlural} | ||
ListComponent={VirtualMachineTemplates} | ||
kind={kind} | ||
selector={selector} | ||
canCreate | ||
/> | ||
); | ||
|
||
type VmTemplateTableRowProps = { | ||
template: K8sResourceKind; | ||
index: number; | ||
key: string; | ||
style: any; | ||
}; | ||
type VirtualMachineTemplatesProps = {}; | ||
type VirtualMachineTemplatesPageProps = {}; | ||
|
||
export { VirtualMachineTemplates, VirtualMachineTemplatesPage }; |
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
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