framework/FRONTEND FRAMEWORK REWRITE CHANGES.md

24 lines
935 B
Markdown
Raw Normal View History

### Changes
* Mithril
- See changes from v0.2.x @ https://mithril.js.org/migration-v02x.html
- Kept `m.prop` and `m.withAttr`
- Actual Promises are used now instead of `m.deferred`
* Component
- Use new Mithril lifecycle hooks (`component.config` is gone)
2020-01-06 05:57:48 +08:00
- When implementing your own, you *must* call `super.<hook>(vnode)` to update `this.attrs`
- `component.render` is gone
* Application
- New different methods
- `app.bus` for some event hooking
* Translator
- Added `app.translator.transText`, automatically extracts text from `translator.trans` output
* Utils
- Changed `computed` util to require multiple keys to be passed as an array
2020-01-06 05:57:48 +08:00
- `SubtreeRetainer` now has an `update` method instead of `retain`, and its output is used in `onbeforeupdate` lifecycle hook
#### Forum
* Forum Application
- Renamed to `Forum`
- `app.search` is no longer global, extend using `extend`