$ gnpm install composite-class
An isomorphic, load-anywhere JavaScript class for building composite structures. Suitable for use as a super class or mixin.
The Composite
class implements the composite design pattern, useful for building and traversing tree structures. For example, build a composite structure representing the French government:
const Composite = require('composite-class')
class Person extends Composite {
constructor (name, role) {
super()
this.name = name
this.role = role
}
toString () {
return `${this.name} [${this.role}]`
}
}
const government = new Person('Gouvernement de la République française', 'Government')
const headOfState = new Person('Emmanuel Macron', 'Head of State')
const primeMinister = new Person('Édouard Philippe', 'Prime Minister')
const ministerArmedForces = new Person('Florence Parly', 'Minister of the Armed Forces')
const ministerEconomy = new Person('Bruno Le Maire', 'Minister of Finance and the Economy')
government.add(headOfState)
headOfState.add(primeMinister)
primeMinister.add(ministerArmedForces)
primeMinister.add(ministerEconomy)
console.log(government.tree())
Output.
- Gouvernement de la République française [Government]
- Emmanuel Macron [Head of State]
- Édouard Philippe [Prime Minister]
- Florence Parly [Minister of the Armed Forces]
- Bruno Le Maire [Minister of Finance and the Economy]
The Composite
class implements an iterable interface, therefore can be iterated using standard JavaScript methods.
for (const person of government) {
console.log('Processing:', person.name)
}
Output.
Processing: Gouvernement de la République française
Processing: Emmanuel Macron
Processing: Édouard Philippe
Processing: Florence Parly
Processing: Bruno Le Maire
An isomorphic, load-anywhere JavaScript class for building composite structures. Suitable for use as a super class or mixin.
Example
const Composite = require('composite-class')
Array
Composite
Composite
Composite
Composite
Composite
number
number
string
Composite
Array.<Composite>
Array
Children
Kind: instance property of Composite
Composite
Parent
Kind: instance property of Composite
Composite
Add a child
Kind: instance method of Composite
Composite
Kind: instance method of Composite
Param | Type | Description |
---|---|---|
child | Composite |
the child node to append |
Composite
Kind: instance method of Composite
Param | Type | Description |
---|---|---|
child | Composite |
the child node to prepend |
Composite
Kind: instance method of Composite
Param | Type | Description |
---|---|---|
child | Composite |
the child node to remove |
number
depth level in the tree, 0 being root.
Kind: instance method of Composite
number
Kind: instance method of Composite
string
prints a tree using the .toString() representation of each node in the tree
Kind: instance method of Composite
Composite
Returns the root instance of this tree.
Kind: instance method of Composite
default iteration strategy
Kind: instance method of Composite
Used by node's util.inspect
.
Kind: instance method of Composite
Array.<Composite>
Returns an array of ancestors
Kind: instance method of Composite
This library is compatible with Node.js, the Web and any style of module loader. It can be loaded anywhere, natively without transpilation.
Node.js:
const Composite = require('composite-class')
Within Node.js with ECMAScript Module support enabled:
import Composite from 'composite-class'
Within an modern browser ECMAScript Module:
import Composite from './node_modules/composite-class/index.mjs'
Old browser (adds window.Composite
):
<script nomodule src="./node_modules/composite-class/dist/index.js"></script>
© 2016-20 Lloyd Brookes <75pound@gmail.com>.
Isomorphic test suite by test-runner and web-runner. Documented by jsdoc-to-markdown.
Copyright 2013 - present © cnpmjs.org | Home |