mithril-tree-component
v0.7.1
Published
A tree component for the Mitrhil framework.
Downloads
131
Maintainers
Readme
mithril-tree-component
A tree component for Mithril that supports drag-and-drop, as well as selecting, creating and deleting items. You can play with it here.
Functionality
- Drag-and-drop to move items (if
editable.canUpdate
is true). - Create and delete tree items (if
editable.canDelete
andeditable.canDeleteParent
is true). - Configurable properties for:
id
property: unique id of the item.parentId
property: id of the parent.name
property: display title. Alternatively, provide your own component.maxDepth
: when specified, and editable.canCreate is true, do not add children that would exceed this depth, where depth is 0 for root items, 1 for children, etc.create
: function to be used to add your own TreeItem creation logic.selectedId
: can be set in theTreeContainer
to select a tree item automatically.isOpen
: to indicate whether the tree should show the children. By default, when nothing is set, thetreeItem.isOpen
property is used. IfisOpen
is a string,treeItem[isOpen]
is used instead. In caseisOpen
isundefined
, the open/close state is maintained internally. Finally, you can also use a function(id: string, action: 'get' | 'set', value?: boolean) => boolean | void
, in which case you can maintain the open/close state externally, e.g. for synchronization between different components:
const isOpen = (() => {
const store: Record<string, boolean> = {};
return (id: string, action: 'get' | 'set', value?: boolean) => {
if (action === 'get') {
return store.hasOwnProperty(id) ? store[id] : false;
} else if (typeof value !== 'undefined') {
store[id] = value;
}
};
})();
- Callback events:
onSelect
: when a tree item is selected.onToggle
: when a tree item is expanded or closed.onBefore
[Create | Update | Delete]: can be used to intercept (and block) tree item actions. If the onBeforeX call returns false, the action is stopped.on[Create | Update | Delete]
: when the creation is done.- When using async functions or promises, please make sure to call
m.redraw()
when you are done.
This repository contains two projects:
- An example project, showcasing the usage of the component.
- The mithril-tree-component itself.
Changes
0.7.1 No breaking changes
selectedId
: can be set in theTreeContainer
to select a tree item automatically. In this case, you need to handle theonSelect
event yourself in order to select the item, as in the example.- When creating a new item, this item is selected automatically.
0.7.0 No breaking changes
- Added
onToggle
callback event. - Added option to maintain the open/close tree state externally by setting the
isOpen
property to a function.
0.6.4 No breaking changes
- Fixed: Do not crash when
onCreate
is not defined.
0.6.1 No breaking changes
- Fixed
onBeforeUpdate
checks, so the code using this library can determine whether a drop is valid.
0.6.0 No breaking changes
- Improved drag-n-drop behaviour: drop above or below an item to create a sibling, drop on an item to create a child. Also the cursor now indicates correctly
no-drop
zones. - Long lines use
text-overflow: ellipsis
. - Adding a child is now done by clicking its parent '+' sign (instead of underneath). The advantage is that the tree does not become longer anymore.
- The add '+' and delete 'x' action buttons are swapped, so when adding multiple children, the add symbol keeps the same position.
0.5.2
- Publishing two libraries:
mithril-tree-component.js
andmithril-tree-component.mjs
, the latter using ES modules. - Integrated
css
inside the component, so you do not need to load a separate stylesheet. - Using BEM naming convention for the
css
, and prefix every class withmtc-
to make their names more unique. - Improved usability:
- display a placeholder for the empty tree.
- only show the action buttons when hovering, and only then, create vertical space for them (so the tree is more continuous).
0.4.0
This version of the tree component:
- Does no longer require a tree-layout: input is a flat Array of items, and the
children
are resolved by processing all items based on theparentId
property. So thechildren
property is no longer used. - Does not mutate the tree components anymore if you keep the
isOpen
property undefined.
0.3.6
- maxDepth: can be set to limit the ability to create children.
- treeItemView: to provide your own view component
- open or close state when displaying children: can be maintained internally, so different components do not share open/close state.
Usage
npm i mithril-tree-component
From the example project. There you can also find some CSS styles.
import m from 'mithril';
import { unflatten } from '../utils';
import { TreeContainer, ITreeOptions, ITreeItem, uuid4 } from 'mithril-tree-component';
interface IMyTree extends ITreeItem {
id: number | string;
parentId: number | string;
title: string;
}
export const TreeView = () => {
const data: IMyTree[] = [
{ id: 1, parentId: 0, title: 'My id is 1' },
{ id: 2, parentId: 1, title: 'My id is 2' },
{ id: 3, parentId: 1, title: 'My id is 3' },
{ id: 4, parentId: 2, title: 'My id is 4' },
{ id: 5, parentId: 0, title: 'My id is 5' },
{ id: 6, parentId: 0, title: 'My id is 6' },
{ id: 7, parentId: 4, title: 'My id is 7' },
];
const tree = unflatten(data);
const options = {
id: 'id',
parentId: 'parentId',
isOpen: 'isOpen',
name: 'title',
onSelect: (ti, isSelected) => console.log(`On ${isSelected ? 'select' : 'unselect'}: ${ti.title}`),
onBeforeCreate: ti => console.log(`On before create ${ti.title}`),
onCreate: ti => console.log(`On create ${ti.title}`),
onBeforeDelete: ti => console.log(`On before delete ${ti.title}`),
onDelete: ti => console.log(`On delete ${ti.title}`),
onBeforeUpdate: (ti, action, newParent) =>
console.log(`On before ${action} update ${ti.title} to ${newParent ? newParent.title : ''}.`),
onUpdate: ti => console.log(`On update ${ti.title}`),
create: (parent?: IMyTree) => {
const item = {} as IMyTree;
item.id = uuid4();
if (parent) {
item.parentId = parent.id;
}
item.title = `Created at ${new Date().toLocaleTimeString()}`;
return item as ITreeItem;
},
editable: { canCreate: true, canDelete: true, canUpdate: true, canDeleteParent: false },
} as ITreeOptions;
return {
view: () =>
m('.row', [
m('.col.s6', [m('h3', 'Mithril-tree-component'), m(TreeContainer, { tree, options })]),
m('.col.s6', [m('h3', 'Tree data'), m('pre', m('code', JSON.stringify(tree, null, 2)))]),
]),
};
};
Build instructions
This repository uses Lerna to manage multiple projects (packages) in one repository. To compile and run both packages, proceed as follows (from the root):
npm i
npm start