Build an item list for the sidebar of the index page. By default this is a "New Discussion" button, and then a DropdownSelect component containing a list of navigation items.
Open the composer for a new message.
StaticinitInitialize the component's attrs.
This can be used to assign default values for missing, optional attrs.
The
Componentclass defines a user interface 'building block'. A component generates a virtual DOM to be rendered on each redraw.Essentially, this is a wrapper for Mithril's components that adds several useful features:
oninitandonbeforeupdatelifecycle hooks, we store vnode attrs in `this.attrs. This allows us to use attrs across components without having to pass the vnode to every single method.initAttrsmethod allows a convenient way to provide defaults (or to otherwise modify) the attrs that have been passed into a component.this.element; this lets us use jQuery to modify child DOM state from internal methods via thethis.$()method.componentmethod, which serves as an alternative to hyperscript and JSX.As with other Mithril components, components extending Component can be initialized and nested using JSX, hyperscript, or a combination of both. The
componentmethod can also be used.Example
Example
See
https://mithril.js.org/components.html