columnShape
Description
Optional. An object of settings for managing the columns appearance
Usage
columnShape?: {
menu?: {
show?: boolean,
items?: [
{
id?: string,
icon?: string,
text?: string,
disabled?: boolean,
onClick?: ({ id, item, column }) => void
},
{...}
] | ({ column, columnIndex, columns, store }) => array | boolean
},
fixedHeaders?: boolean,
css?: (column, cards) => string,
headerTemplate?: template(column => {
return "The HTML template of the column header in the expanded state";
}),
collapsedTemplate?: template(column => {
return "The HTML template of the column header in the collapsed state";
})
};
Parameters
To configure the columns appearance, in the columnShape object you can specify the following parameters:
-
menu
- (optional) an object of parameters of the columns context menu. Here you can specify the following parameters:show
- (optional) - enables/disables a column context menuitems
- (optional) an array of objects containing parameters of items of the columns context menu. For each item you can specify the following parameters:id
- (optional) an ID of the menu item. To implement the built-in actions, you need to specify the following values:- "add-card" - defines the action to add a new card
- "set-edit" - defines the action to edit a column name
- "move-column:left" - defines the action to move a column left
- "move-column:right" - defines the action to move a column right
- "delete-column" - defines the action to delete a column
icon
- (optional) a class name of icon of the menu item. Here you can specify any icon related to the icon fonts (mdi-delete)text
- (optional) a name of the menu itemdisabled
- (optional) a state of the menu item (active or disabled depending on the boolean value)onClick
- (optional) a custom callback function, that takes the following arguments:- id - an ID of the current menu item
- item - a data object of the current menu item
- column - a data object of the target column
infoYou can also set the
items
parameter to a custom function, that takes the following arguments:-
column - a data object of a current column
-
columnIndex - an index of a current column
-
columns - an array of objects containing all columns data
-
store - an object of dataStore
This function allows customizing menu for any column or hide it for a specific one (by returning null or false):
items: ({ column, columnIndex, columns, store }) => {
if(column.id === "inprogress")
return null
if (column.id === "backlog")
return [
{ id: "set-edit", icon: "wxi-edit", text: "Rename" },
{
id: "delete-card",
icon: "wxi-delete",
text: "Remove card"
}
]
} -
fixedHeaders
- (optional) freezes column headers during vertical scroll (true by default). Scroll must be enabled in Kanban itself (height must be limited) -
css
- (optional) a function that returns a css class that applies to columns conditionally -
headerTemplate
- (optional) the HTML template of the column header in the expanded state -
collapsedTemplate
- (optional) the HTML template of the column header in the collapsed state
Default config
const getDefaultColumnMenuItems = ({ column, columnIndex, columns, store }) => [
{ id: "add-card", icon: "wxi-plus", text: "Add new card" },
{ id: "set-edit", icon: "wxi-edit", text: "Rename" },
{
id: "move-column:left",
icon: "wxi-arrow-left",
text: "Move left",
disabled: columnIndex <= 0
},
{
id: "move-column:right",
icon: "wxi-arrow-right",
text: "Move right",
disabled: columnIndex >= columns.length - 1
},
{ id: "delete-column", icon: "wxi-delete", text: "Delete" }
];
const columnShape = {
menu: {
show: true,
items: getDefaultColumnMenuItems
},
fixedHeaders: true
};
Example
const columnShape = {
menu: {
show: true,
items: [
{
id: "color",
text: "Color",
items: [
{
id:"yellow",
text: "Yellow",
onClick: ({ column }) => changeColumnColor(column, "yellow")
},
{
id:"red",
text: "Red",
onClick: ({ column }) => changeColumnColor(column, "red")
},
{
id:"green",
text: "Green",
onClick: ({ column }) => changeColumnColor(column, "green")
}
]
}
]
},
fixedHeaders: false,
css: (column, cards) => column.id == "inprogress" && cards.length < 5 ? "green" : "red",
headerTemplate: template(column => {
return `<div className="wx-collapse-icon" data-action=${"collapse"}>
<i className=${column.column.collapsed ? "wxi-angle-right" : "wxi-angle-left"}></i>
</div>
${
!column.column.collapsed
? `<div className="wx-label" data-action="rename">
${escapeHTML(column.column.label)}
(${column.columnState.cardsCount})
</div>`
: ""
}
${
!column.column.collapsed
? `<div className="wx-menu" data-menu-id=${column.id}>
<i className="wxi-dots-h"></i>
</div>`
: ""
}`;
}),
collapsedTemplate: template(column => {
return `<div className="wx-collapsed-label">
<div className="wx-label-text">${escapeHTML(column.column.label)} (${
column.columnState?.cardsCount
})</div>
</div>`;
})
};
new kanban.Kanban("#root", {
cards,
columns,
rows,
columnShape,
// other parameters
});
Change log:
- The css parameter was added in v1.4
- The menu.items[0].label parameter was replaced by the menu.items[0].text parameter in v1.4
- The fixedHeaders parameter was added in v1.5
- The headerTemplate and collapsedTemplate parameters were added in v1.6
Related articles: Configuration
Related samples: