generated from layer5io/layer5-repo-template
-
Notifications
You must be signed in to change notification settings - Fork 100
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 #823 from amitamrutiya/amit/workspace-sistent
Convert workspace data table into sistent component
- Loading branch information
Showing
47 changed files
with
3,216 additions
and
51 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
236 changes: 236 additions & 0 deletions
236
src/custom/CatalogDesignTable/DesignTableColumnConfig.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,236 @@ | ||
import { MUIDataTableColumn, MUIDataTableMeta } from 'mui-datatables'; | ||
import { PLAYGROUND_MODES } from '../../constants/constants'; | ||
import { ChainIcon, CopyIcon, KanvasIcon, PublishIcon } from '../../icons'; | ||
import Download from '../../icons/Download/Download'; | ||
import { CHARCOAL } from '../../theme'; | ||
import { downloadYaml, slugify } from '../CatalogDetail/helper'; | ||
import { RESOURCE_TYPES } from '../CatalogDetail/types'; | ||
import { Pattern } from '../CustomCatalog/CustomCard'; | ||
import { ConditionalTooltip } from '../Helpers/CondtionalTooltip'; | ||
import { ColView } from '../Helpers/ResponsiveColumns/responsive-coulmns.tsx'; | ||
import { DataTableEllipsisMenu } from '../ResponsiveDataTable'; | ||
import AuthorCell from './AuthorCell'; | ||
import { getColumnValue } from './helper'; | ||
import { L5DeleteIcon, NameDiv } from './style'; | ||
|
||
interface TableMeta extends MUIDataTableMeta { | ||
rowIndex: number; | ||
tableData: Pattern[]; | ||
} | ||
|
||
interface ColumnConfigProps { | ||
handleDeleteModal: (data: Pattern) => () => void; | ||
handlePublishModal: (data: Pattern) => void; | ||
handleUnpublishModal: (data: Pattern) => () => void; | ||
handleCopyUrl: (type: string, name: string, id: string) => void; | ||
handleClone: (name: string, id: string) => void; | ||
handleShowDetails: (designId: string, designName: string) => void; | ||
isDownloadAllowed: boolean; | ||
isCopyLinkAllowed: boolean; | ||
isDeleteAllowed: boolean; | ||
isPublishAllowed: boolean; | ||
isUnpublishAllowed: boolean; | ||
// for workspace designs table page only | ||
isFromWorkspaceTable?: boolean; | ||
isRemoveAllowed?: boolean; | ||
} | ||
|
||
export const colViews: ColView[] = [ | ||
['id', 'na'], | ||
['name', 'xs'], | ||
['first_name', 'xs'], | ||
['created_at', 'na'], | ||
['updated_at', 'l'], | ||
['visibility', 'l'], | ||
['user_id', 'na'], | ||
['actions', 'xs'] | ||
]; | ||
|
||
export const createDesignsColumnsConfig = ({ | ||
handleDeleteModal, | ||
handlePublishModal, | ||
handleUnpublishModal, | ||
handleCopyUrl, | ||
handleClone, | ||
handleShowDetails, | ||
isUnpublishAllowed, | ||
isCopyLinkAllowed, | ||
isDeleteAllowed, | ||
isPublishAllowed, | ||
isDownloadAllowed, | ||
isRemoveAllowed, | ||
isFromWorkspaceTable = false | ||
}: ColumnConfigProps): MUIDataTableColumn[] => { | ||
return [ | ||
{ | ||
name: 'id', | ||
label: 'ID', | ||
options: { | ||
filter: false, | ||
customBodyRender: (value: string) => <ConditionalTooltip value={value} maxLength={10} /> | ||
} | ||
}, | ||
{ | ||
name: 'name', | ||
label: 'Pattern Name', | ||
options: { | ||
filter: false, | ||
sort: true, | ||
searchable: true, | ||
customBodyRender: (value: string, tableMeta: MUIDataTableMeta) => { | ||
const designId = (tableMeta as TableMeta).tableData[tableMeta.rowIndex]?.id ?? ''; | ||
const designName = (tableMeta as TableMeta).tableData[tableMeta.rowIndex]?.name ?? ''; | ||
|
||
return <NameDiv onClick={() => handleShowDetails(designId, designName)}>{value}</NameDiv>; | ||
} | ||
} | ||
}, | ||
{ | ||
name: 'first_name', | ||
label: 'Author', | ||
options: { | ||
filter: false, | ||
sort: true, | ||
searchable: true, | ||
customBodyRender: (_, tableMeta: MUIDataTableMeta) => { | ||
const firstName = getColumnValue(tableMeta as TableMeta, 'first_name'); | ||
const lastName = getColumnValue(tableMeta as TableMeta, 'last_name'); | ||
const avatar_url = getColumnValue(tableMeta as TableMeta, 'avatar_url'); | ||
const user_id = getColumnValue(tableMeta as TableMeta, 'user_id'); | ||
|
||
return ( | ||
<AuthorCell | ||
firstName={firstName} | ||
lastName={lastName} | ||
avatarUrl={avatar_url} | ||
userId={user_id} | ||
/> | ||
); | ||
} | ||
} | ||
}, | ||
{ | ||
name: 'created_at', | ||
label: 'Created At', | ||
options: { | ||
filter: false, | ||
sort: true, | ||
searchable: true, | ||
setCellHeaderProps: () => { | ||
return { align: 'center' }; | ||
} | ||
} | ||
}, | ||
{ | ||
name: 'updated_at', | ||
label: 'Updated At', | ||
options: { | ||
filter: false, | ||
sort: true, | ||
searchable: true, | ||
setCellHeaderProps: () => { | ||
return { align: 'center' }; | ||
} | ||
} | ||
}, | ||
{ | ||
name: 'visibility', | ||
label: 'Visibility', | ||
options: { | ||
filter: false, | ||
sort: false, | ||
searchable: true | ||
} | ||
}, | ||
{ | ||
name: 'user_id', | ||
label: 'User ID', | ||
options: { | ||
filter: false, | ||
sort: false, | ||
searchable: false | ||
} | ||
}, | ||
{ | ||
name: 'actions', | ||
label: 'Actions', | ||
options: { | ||
filter: false, | ||
sort: false, | ||
searchable: false, | ||
setCellHeaderProps: () => ({ align: 'center' as const }), | ||
setCellProps: () => ({ align: 'center' as const }), | ||
customBodyRender: function CustomBody(_, tableMeta: MUIDataTableMeta) { | ||
const rowIndex = (tableMeta as TableMeta).rowIndex; | ||
const rowData = (tableMeta as TableMeta).tableData[rowIndex]; | ||
|
||
const actionsList = [ | ||
{ | ||
title: 'Download', | ||
onClick: () => downloadYaml(rowData?.pattern_file, rowData?.name), | ||
disabled: !isDownloadAllowed, | ||
icon: <Download width={24} height={24} fill={CHARCOAL} /> | ||
}, | ||
{ | ||
title: 'Copy Link', | ||
disabled: rowData.visibility === 'private' || !isCopyLinkAllowed, | ||
onClick: () => { | ||
handleCopyUrl(RESOURCE_TYPES.DESIGNS, rowData?.name, rowData?.id); | ||
}, | ||
icon: <ChainIcon width={'24'} height={'24'} fill={CHARCOAL} /> | ||
}, | ||
{ | ||
title: 'Open in playground', | ||
onClick: () => { | ||
window.open( | ||
`https://playground.meshery.io/extension/meshmap?mode=${ | ||
PLAYGROUND_MODES.DESIGNER | ||
}&type=${RESOURCE_TYPES.DESIGNS}&id=${rowData?.id}&name=${slugify( | ||
rowData?.name | ||
)}`, | ||
'_blank' | ||
); | ||
}, | ||
icon: <KanvasIcon width={24} height={24} primaryFill={CHARCOAL} /> | ||
}, | ||
{ | ||
title: isFromWorkspaceTable ? 'Remove Design' : 'Delete', | ||
disabled: isFromWorkspaceTable ? !isRemoveAllowed : !isDeleteAllowed, | ||
onClick: () => handleDeleteModal(rowData)(), | ||
icon: <L5DeleteIcon /> | ||
} | ||
]; | ||
|
||
const publishAction = { | ||
title: 'Publish', | ||
disabled: !isPublishAllowed, | ||
onClick: () => handlePublishModal(rowData), | ||
icon: <PublishIcon width={24} height={24} fill={CHARCOAL} /> | ||
}; | ||
|
||
const unpublishAction = { | ||
title: 'Unpublish', | ||
onClick: () => handleUnpublishModal(rowData)(), | ||
disabled: !isUnpublishAllowed, | ||
icon: <PublishIcon width={24} height={24} fill={CHARCOAL} /> | ||
}; | ||
|
||
const cloneAction = { | ||
title: 'Clone', | ||
onClick: () => handleClone(rowData?.name, rowData?.id), | ||
icon: <CopyIcon width={24} height={24} fill={CHARCOAL} /> | ||
}; | ||
|
||
if (rowData.visibility === 'published') { | ||
actionsList.splice(0, 0, cloneAction); | ||
actionsList.splice(2, 0, unpublishAction); | ||
} else { | ||
actionsList.splice(1, 0, publishAction); | ||
} | ||
|
||
return <DataTableEllipsisMenu actionsList={actionsList} />; | ||
} | ||
} | ||
} | ||
]; | ||
}; |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
/* eslint-disable @typescript-eslint/no-explicit-any */ | ||
|
||
export const getColumnValue = (tableMeta: any, targetColumn: string): any => { | ||
const rowData = tableMeta.tableData[tableMeta.rowIndex]; | ||
return (rowData as any)[targetColumn] || ''; | ||
}; |
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 |
---|---|---|
@@ -1,6 +1,17 @@ | ||
import AuthorCell from './AuthorCell'; | ||
import CatalogDesignsTable from './CatalogDesignTable'; | ||
import { colViews, createDesignColumns } from './columnConfig'; | ||
import { | ||
createDesignsColumnsConfig, | ||
colViews as designColumnsColViews | ||
} from './DesignTableColumnConfig'; | ||
export { TableVisibilityControl } from './TableVisibilityControl'; | ||
export { ViewSwitch } from './ViewSwitch'; | ||
export { AuthorCell, CatalogDesignsTable, colViews, createDesignColumns }; | ||
export { | ||
AuthorCell, | ||
CatalogDesignsTable, | ||
colViews, | ||
createDesignColumns, | ||
createDesignsColumnsConfig, | ||
designColumnsColViews | ||
}; |
Oops, something went wrong.