Change log
- Getting Started
- Resources
- Key concepts
- Social
- Misc
Upcoming...
v2.0.0-rc
Breaking changes
- API: Component vnode
children
are not normalized into vnodes on ingestion; normalization only happens if and when they are ingested by the view (#2155 (thanks to @magikstm for related optimization #2064)) - API:
m.redraw()
is always asynchronous (#1592) - API:
m.mount()
will only render its own root when called, it will not trigger aredraw()
(#1592) - API: Assigning to
vnode.state
(as invnode.state = ...
) is no longer supported. Instead, an error is thrown ifvnode.state
changes upon the invocation of a lifecycle hook. - API:
m.request
will no longer reject the Promise on server errors (eg. status >= 400) if the caller supplies anextract
callback. This gives applications more control over handling server responses. - hyperscript: when attributes have a
null
orundefined
value, they are treated as if they were absent. #1773 (#2174) - API:
m.request
errors no longer copy response fields to the error, but instead assign the parsed JSON response toerror.response
and the HTTP status codeerror.code
. - hyperscript: when an attribute is defined on both the first and second argument (as a CSS selector and an
attrs
field, respectively), the latter takes precedence, except forclass
attributes that are still added together. #2172 (#2174) - render: Align custom elements to work like normal elements, minus all the HTML-specific magic. (#2221)
- cast className using toString (#2309)
- render: call attrs' hooks first, with express exception of
onbeforeupdate
to allow attrs to block components from even diffing (#2297) - API:
m.withAttr
removed. (#2317) - request:
data
has now been split toparams
andbody
anduseBody
has been removed in favor of just usingbody
. (#2361) - route, request: Interpolated arguments are URL-escaped (and for declared routes, URL-unescaped) automatically. If you want to use a raw route parameter, use a variadic parameter like in
/asset/:path.../view
. This was previously only available inm.route
route definitions, but it's now usable in both that and where paths are accepted. (#2361) - route, request: Interpolated arguments are not appended to the query string. This means
m.request({url: "/api/user/:id/get", params: {id: user.id}})
would result in a request likeGET /api/user/1/get
, not one likeGET /api/user/1/get?id=1
. If you really need it in both places, pass the same value via two separate parameters with the non-query-string parameter renamed, like inm.request({url: "/api/user/:urlID/get", params: {id: user.id, urlID: user.id}})
. (#2361) - route, request:
m.route.set
,m.request
, andm.jsonp
all use the same path template syntax now, and vary only in how they receive their parameters. Furthermore, declared routes inm.route
shares the same syntax and semantics, but acts in reverse as if via pattern matching. (#2361) - request:
options.responseType
now defaults to"json"
ifextract
is absent, anddeserialize
receives the parsed response, not the raw string. If you want the old behavior, useresponseType: "text"
(#2335) - request: set
Content-Type: application/json; charset=utf-8
for all XHR methods by default, provided they have a body that's!= null
(#2361, #2421)- This can cause CORS issues when issuing
GET
with bodies, but you can address them through configuring CORS appropriately. - Previously, it was only set for all non-
GET
methods and only whenuseBody: true
was passed (the default), and it was always set for them. Now it's automatically omitted when no body is present, so the hole is slightly broadened.
- This can cause CORS issues when issuing
- route: query parameters in hash strings are no longer supported (#2448 @isiahmeadows)
- It's technically invalid in hashes, so I'd rather push people to keep in line with spec.
- render: validate all elements are either keyed or unkeyed, and treat
null
/undefined
/booleans as strictly unkeyed (#2452 @isiahmeadows)- Gives a nice little perf boost with keyed fragments.
- Minor, but imperceptible impact (within the margin of error) with unkeyed fragments.
- Also makes the model a lot more consistent - all values are either keyed or unkeyed.
- vnodes: normalize boolean children to
null
/undefined
at the vnode level, always stringify non-object children that aren't holes (#2452 @isiahmeadows)- Previously,
true
was equivalent to"true"
andfalse
was equivalent to""
. - Previously, numeric children weren't coerced. Now, they are.
- Unlikely to break most components, but it could break some users.
- This increases consistency with how booleans are handled with children, so it should be more intuitive.
- Previously,
- route:
key
parameter for routes now only works globally for components (#2458 @isiahmeadows)- Previously, it worked for route resolvers, too.
- This lets you ensure global layouts used in
render
still render by diff.
- redraw:
mithril/redraw
now just exposes them.redraw
callback (#2458 @isiahmeadows)- The
.schedule
,.unschedule
, and.render
properties of the formerredrawService
are all removed. - If you want to know how to work around it, look at the call to
mount
in Mithril's source form.route
. That should help you in finding ways around the removed feature. (It doesn't take that much more code.)
- The
- api:
m.version
has been removed. If you really need the version for whatever reason, just read theversion
field ofmithril/package.json
directly. (#2466 @isiahmeadows) - route:
m.route.prefix(...)
is nowm.route.prefix = ...
. (#2469 @isiahmeadows)- This is a fully fledged property, so you can not only write to it, but you can also read from it.
- This aligns better with user intuition.
- route:
m.route.link
function removed in favor ofm.route.Link
component. (#2469 @isiahmeadows)- An optional
options
object is accepted as an attribute. This was initially targeting the oldm.route.link
function and was transferred to this. (#1930) - The new component handles many more edge cases around user interaction, including accessibility.
- Link navigation can be disabled and cancelled.
- Link targets can be trivially changed.
- An optional
- API: Full DOM no longer required to execute
require("mithril")
. You just need to set the necessary globals to something, even ifnull
orundefined
, so they can be properly used. (#2469 @isiahmeadows)- This enables isomorphic use of
m.route.Link
andm.route.prefix
. - This enables isomorphic use of
m.request
, provided thebackground: true
option is set and that anXMLHttpRequest
polyfill is included as necessary. - Note that methods requiring DOM operations will still throw errors, such as
m.render(...)
,m.redraw()
, andm.route(...)
.
- This enables isomorphic use of
News
- Mithril now only officially supports IE11, Firefox ESR, and the last two versions of Chrome/FF/Edge/Safari. (#2296)
- API: Introduction of
m.redraw.sync()
(#1592) - API: Event handlers may also be objects with
handleEvent
methods (#1949, #2222). - API:
m.request
better error message on JSON parse error - (#2195, @codeclown) - API:
m.request
supportstimeout
as attr - (#1966) - API:
m.request
supportsresponseType
as attr - (#2193) - Mocks: add limited support for the DOMParser API (#2097)
- API: add support for raw SVG in
m.trust()
string (#2097) - render/core: remove the DOM nodes recycling pool (#2122)
- render/core: revamp the core diff engine, and introduce a longest-increasing-subsequence-based logic to minimize DOM operations when re-ordering keyed nodes.
- docs: Emphasize Closure Components for stateful components, use them for all stateful component examples.
- API: ES module bundles are now available for
mithril
andmithril/stream
(#2194 @porsager).- All of the
m.*
properties frommithril
are re-exported as named exports in addition to being attached tom
. m()
itself frommithril
is exported as the default export.mithril/stream
's primary export is exported as the default export.
- All of the
- fragments: allow same attrs/children overloading logic as hyperscript (#2328)
- route: Declared routes may check against path names with query strings. (#2361)
- route: Declared routes in
m.route
now support-
and.
as delimiters for path segments. This means you can have a route like"/edit/:file.:ext"
. (#2361)- Previously, this was possible to do in
m.route.set
,m.request
, andm.jsonp
, but it was wholly untested for and also undocumented.
- Previously, this was possible to do in
- API:
m.buildPathname
andm.parsePathname
added. (#2361) - route: Use
m.mount(root, null)
to unsubscribe and clean up after am.route(root, ...)
call. (#2453) - render: new
redraw
parameter exposed any time a child event handler is used (#2458 @isiahmeadows) - route:
m.route.SKIP
can be returned from route resolvers to skip to the next route (#2469 @isiahmeadows)
Bug fixes
- API:
m.route.set()
causes all mount points to be redrawn (#1592) - render/attrs: Using style objects in hyperscript calls will now properly diff style properties from one render to another as opposed to re-writing all element style properties every render.
- render/attrs All vnodes attributes are properly removed when absent or set to
null
orundefined
#1804 #2082 (#1865, #2130) - render/core: Render state correctly on select change event #1916 (#1918 @robinchew, #2052)
- render/core: fix various updateNodes/removeNodes issues when the pool and fragments are involved #1990, #1991, #2003, #2021
- render/core: fix crashes when the keyed vnodes with the same
key
had differenttag
values #2128 @JacksonJN (#2130) - render/core: fix cached nodes behavior in some keyed diff scenarios #2132 (#2130)
- render/events:
addEventListener
andremoveEventListener
are always used to manage event subscriptions, preventing external interference. - render/events: Event listeners allocate less memory, swap at low cost, and are properly diffed now when rendered via
m.mount()
/m.redraw()
. - render/events:
Object.prototype
properties can no longer interfere with event listener calls. - render/events: Event handlers, when set to literally
undefined
(or any non-function), are now correctly removed. - render/hooks: fixed an ommission that caused
oninit
to be called unnecessarily in some cases #1992 - docs: tweaks: (#2104 @mikeyb, #2205, @cavemansspa, #2250 @isiahmeadows, #2265, @isiahmeadows)
- render/core: avoid touching
Object.prototype.__proto__
setter withkey: "__proto__"
in certain situations (#2251) - render/core: Vnodes stored in the dom node supplied to
m.render()
are now normalized #2266 - render/core: CSS vars can now be specified in
{style}
attributes (#2192 @barneycarroll), (#2311 @porsager), (#2312 @isiahmeadows) - request: don't modify params, call
extract
/serialize
/deserialize
with correctthis
value (#2288) - render: simplify component removal (#2214)
- render: remove some redundancy within the component initialization code (#2213)
- API:
mithril
loadsmithril/index.js
, not the bundle, so users ofmithril/hyperscript
,mithril/render
, and similar see the same Mithril instance as those just usingmithril
itself.https://unpkg.com/mithril
is configured to receive the minified bundle, not the development bundle.- The raw bundle itself remains accessible at
mithril.js
, and is not browser-wrapped. - Note: this will increase overhead with bundlers like Webpack, Rollup, and Browserify.
- request: autoredraw support fixed for
async
/await
in Chrome (#2428 @isiahmeadows) - render: fix when attrs change with
onbeforeupdate
returning false, then remaining the same on next redraw (#2447 @isiahmeadows) - render: fix internal error when
onbeforeupdate
returns false and then true with new child tree (#2447 @isiahmeadows) - route: arbitrary prefixes are properly supported now, including odd prefixes like
?#
and invalid prefixes like#foo#bar
(#2448 @isiahmeadows) - request: correct IE workaround for response type non-support (#2449 @isiahmeadows)
- render: correct
contenteditable
check to also check forcontentEditable
property name (#2450 @isiahmeadows) - docs: clarify valid key usage (#2452 @isiahmeadows)
- route: don't pollute globals (#2453 @isiahmeadows)
- request: track xhr replacements correctly (#2455 @isiahmeadows)
v1.2.0
News
- Promise polyfill implementation separated from polyfilling logic.
PromisePolyfill
is now available on the exported/globalm
.
Bug fixes
- core: Workaround for Internet Explorer bug when running in an iframe
Note
- Stream references no longer magically coerce to their underlying values (#2150, stream breaking change:
mithril-stream@2.0.0
)
v1.1.6
Bug fixes
- core: render() function can no longer prevent from changing
document.activeElement
in lifecycle hooks (#1988, @purplecode) - core: don't call
onremove
on the children of components that return null from the view #1921 @octavore (#1922) - hypertext: correct handling of shared attributes object passed to
m()
. Will copy attributes when it's necessary #1941 @s-ilya (#1942)
Ospec improvements
- ospec v1.4.0
- Added support for async functions and promises in tests (#1928, @StephanHoyer)
- Error handling for async tests with
done
callbacks supports error as first argument (#1928) - Error messages which include newline characters do not swallow the stack trace #1495 (#1984, @RodericDay)
- ospec v2.0.0 (to be released)
- Added support for custom reporters (#2009)
- Make Ospec more Flemsfriendly (#2034)
- Works either as a global or in CommonJS environments
- the o.run() report is always printed asynchronously (it could be synchronous before if none of the tests were async).
- Properly point to the assertion location of async errors #2036
- expose the default reporter as
o.report(results)
- Don't try to access the stack traces in IE9
v1.1.5
Bug fixes
- API: If a user sets the Content-Type header within a request's options, that value will be the entire header value rather than being appended to the default value #1919 (#1924, @tskillian)
v1.1.4
Bug fixes
- Fix IE bug where active element is null causing render function to throw error (#1943, @JacksonJN)
Ospec improvements:
v1.1.3
Bug fixes
- move out npm dependencies added by mistake
v1.1.2
Bug fixes
- core: Namespace fixes #1819, (#1825 @SamuelTilly), #1820 (#1864), #1872 (#1873)
- core: Fix select option to allow empty string value #1814 (#1828 @spacejack)
- core: Reset e.redraw when it was set to
false
#1850 (#1890) - core: differentiate between
{ value: "" }
and{ value: 0 }
for form elements #1595 comment (#1862) - core: Don't reset the cursor of textareas in IE10 when setting an identical
value
#1870 (#1871) - hypertext: Correct handling of
[value=""]
(#1843, @CreaturesInUnitards) - router: Don't overwrite the options object when redirecting from
onmatch with m.route.set()
#1857 (#1889) - stream: Move the "use strict" directive inside the IIFE #1831 (#1893)
Docs / Repo maintenance
Our thanks to @0joshuaolson1, @ACXgit, @cavemansspa, @CreaturesInUnitards, @dlepaux, @isaaclyman, @kevinkace, @micellius, @spacejack and @yurivish
Other
- Addition of a performance regression test suite (#1789)
v1.1.1
Bug fixes
- hyperscript: Allow
0
as the second argument tom()
- #1752 / #1753 (@StephanHoyer) - hyperscript: restore
attrs.class
handling to what it was in v1.0.1 - #1764 / #1769 - documentation improvements (@JAForbes, @smuemd, @hankeypancake)
v1.1.0
News
- support for ES6 class components
- support for closure components
- improvements in build and release automation
Bug fixes
- fix IE11 input[type] error - #1610
- apply #1609 to unkeyed children case
- fix abort detection #1612
- fix input value focus issue when value is loosely equal to old value #1593
v1.0.1
News
- performance improvements in IE #1598
Bug fixes
- prevent infinite loop in non-existent default route - #1579
- call correct lifecycle methods on children of recycled keyed vnodes - #1609
Migrating from v0.2.x
v1.x
is largely API-compatible with v0.2.x
, but there are some breaking changes.
If you are migrating, consider using the mithril-codemods tool to help automate the most straightforward migrations.
m.prop
removedm.component
removedconfig
function- Changes in redraw behaviour
- Component
controller
function - Component arguments
view()
parameters- Passing components to
m()
- Passing vnodes to
m.mount()
andm.route()
m.route.mode
m.route
and anchor tags- Reading/writing the current route
- Accessing route params
- Building/Parsing query strings
- Preventing unmounting
- Run code on component removal
m.request
m.deferred
removedm.sync
removedxlink
namespace required- Nested arrays in views
vnode
equality checks
m.prop
removed
In v1.x
, m.prop()
is now a more powerful stream micro-library, but it's no longer part of core. You can read about how to use the optional Streams module in the documentation.
v0.2.x
var m = require("mithril")
var num = m.prop(1)
v1.x
var m = require("mithril")
var prop = require("mithril/stream")
var num = prop(1)
var doubled = num.map(function(n) {return n * 2})
m.component
removed
In v0.2.x
components could be created using either m(component)
or m.component(component)
. v1.x
only supports m(component)
.
v0.2.x
// These are equivalent
m.component(component)
m(component)
v1.x
m(component)
config
function
In v0.2.x
mithril provided a single lifecycle method, config
. v1.x
provides much more fine-grained control over the lifecycle of a vnode.
v0.2.x
m("div", {
config : function(element, isInitialized) {
// runs on each redraw
// isInitialized is a boolean representing if the node has been added to the DOM
}
})
v1.x
More documentation on these new methods is available in lifecycle-methods.md.
m("div", {
// Called before the DOM node is created
oninit : function(vnode) { /*...*/ },
// Called after the DOM node is created
oncreate : function(vnode) { /*...*/ },
// Called before the node is updated, return false to cancel
onbeforeupdate : function(vnode, old) { /*...*/ },
// Called after the node is updated
onupdate : function(vnode) { /*...*/ },
// Called before the node is removed, return a Promise that resolves when
// ready for the node to be removed from the DOM
onbeforeremove : function(vnode) { /*...*/ },
// Called before the node is removed, but after onbeforeremove calls done()
onremove : function(vnode) { /*...*/ }
})
If available the DOM-Element of the vnode can be accessed at vnode.dom
.
Changes in redraw behaviour
Mithril's rendering engine still operates on the basis of semi-automated global redraws, but some APIs and behaviours differ:
No more redraw locks
In v0.2.x, Mithril allowed 'redraw locks' which temporarily prevented blocked draw logic: by default, m.request
would lock the draw loop on execution and unlock when all pending requests had resolved - the same behaviour could be invoked manually using m.startComputation()
and m.endComputation()
. The latter APIs and the associated behaviour has been removed in v1.x. Redraw locking can lead to buggy UIs: the concerns of one part of the application should not be allowed to prevent other parts of the view from updating to reflect change.
Cancelling redraw from event handlers
m.mount()
and m.route()
still automatically redraw after a DOM event handler runs. Cancelling these redraws from within your event handlers is now done by setting the redraw
property on the passed-in event object to false
.
v0.2.x
m("div", {
onclick : function(e) {
m.redraw.strategy("none")
}
})
v1.x
m("div", {
onclick : function(e) {
e.redraw = false
}
})
Synchronous redraw removed
In v0.2.x it was possible to force mithril to redraw immediately by passing a truthy value to m.redraw()
. This behavior complicated usage of m.redraw()
and caused some hard-to-reason about issues and has been removed.
v0.2.x
m.redraw(true) // redraws immediately & synchronously
v1.x
m.redraw() // schedules a redraw on the next requestAnimationFrame tick
m.startComputation
/m.endComputation
removed
They are considered anti-patterns and have a number of problematic edge cases, so they no longer exist in v1.x.
Component controller
function
In v1.x
there is no more controller
property in components, use oninit
instead.
v0.2.x
m.mount(document.body, {
controller : function() {
var ctrl = this
ctrl.fooga = 1
},
view : function(ctrl) {
return m("p", ctrl.fooga)
}
})
v1.x
m.mount(document.body, {
oninit : function(vnode) {
vnode.state.fooga = 1
},
view : function(vnode) {
return m("p", vnode.state.fooga)
}
})
// OR
m.mount(document.body, {
oninit : function(vnode) {
var state = this // this is bound to vnode.state by default
state.fooga = 1
},
view : function(vnode) {
var state = this // this is bound to vnode.state by default
return m("p", state.fooga)
}
})
Component arguments
Arguments to a component in v1.x
must be an object, simple values like String
/Number
/Boolean
will be treated as text children. Arguments are accessed within the component by reading them from the vnode.attrs
object.
v0.2.x
var component = {
controller : function(options) {
// options.fooga === 1
},
view : function(ctrl, options) {
// options.fooga == 1
}
}
m("div", m.component(component, { fooga : 1 }))
v1.x
var component = {
oninit : function(vnode) {
// vnode.attrs.fooga === 1
},
view : function(vnode) {
// vnode.attrs.fooga == 1
}
}
m("div", m(component, { fooga : 1 }))
view()
parameters
In v0.2.x
view functions are passed a reference to the controller
instance and (optionally) any options passed to the component. In v1.x
they are passed only the vnode
, exactly like the controller
function.
v0.2.x
m.mount(document.body, {
controller : function() {},
view : function(ctrl, options) {
// ...
}
})
v1.x
m.mount(document.body, {
oninit : function(vnode) {
// ...
},
view : function(vnode) {
// Use vnode.state instead of ctrl
// Use vnode.attrs instead of options
}
})
Passing components to m()
In v0.2.x
you could pass components as the second argument of m()
w/o any wrapping required. To help with consistency in v1.x
they must always be wrapped with a m()
invocation.
v0.2.x
m("div", component)
v1.x
m("div", m(component))
Passing vnodes to m.mount()
and m.route()
In v0.2.x
, m.mount(element, component)
tolerated vnodes as second arguments instead of components (even though it wasn't documented). Likewise, m.route(element, defaultRoute, routes)
accepted vnodes as values in the routes
object.
In v1.x
, components are required instead in both cases.
v0.2.x
m.mount(element, m('i', 'hello'))
m.mount(element, m(Component, attrs))
m.route(element, '/', {
'/': m('b', 'bye')
})
v1.x
m.mount(element, {view: function () {return m('i', 'hello')}})
m.mount(element, {view: function () {return m(Component, attrs)}})
m.route(element, '/', {
'/': {view: function () {return m('b', 'bye')}}
})
m.route.mode
In v0.2.x
the routing mode could be set by assigning a string of "pathname"
, "hash"
, or "search"
to m.route.mode
. In v.1.x
it is replaced by m.route.prefix(prefix)
where prefix
can be #
, ?
, or an empty string (for "pathname" mode). The new API also supports hashbang (#!
), which is the default, and it supports non-root pathnames and arbitrary mode variations such as querybang (?!
)
v0.2.x
m.route.mode = "pathname"
m.route.mode = "search"
v1.x
m.route.prefix("")
m.route.prefix("?")
m.route()
and anchor tags
Handling clicks on anchor tags via the mithril router is similar to v0.2.x
but uses a new lifecycle method and API.
v0.2.x
// When clicked this link will load the "/path" route instead of navigating
m("a", {
href : "/path",
config : m.route
})
v1.x
// When clicked this link will load the "/path" route instead of navigating
m("a", {
href : "/path",
oncreate : m.route.link
})
Reading/writing the current route
In v0.2.x
all interaction w/ the current route happened via m.route()
. In v1.x
this has been broken out into two functions.
v0.2.x
// Getting the current route
m.route()
// Setting a new route
m.route("/other/route")
v1.x
// Getting the current route
m.route.get()
// Setting a new route
m.route.set("/other/route")
Accessing route params
In v0.2.x
reading route params was entirely handled through m.route.param()
. This API is still available in v1.x
, and additionally any route params are passed as properties in the attrs
object on the vnode.
v0.2.x
m.route(document.body, "/booga", {
"/:attr" : {
controller : function() {
m.route.param("attr") // "booga"
},
view : function() {
m.route.param("attr") // "booga"
}
}
})
v1.x
m.route(document.body, "/booga", {
"/:attr" : {
oninit : function(vnode) {
vnode.attrs.attr // "booga"
m.route.param("attr") // "booga"
},
view : function(vnode) {
vnode.attrs.attr // "booga"
m.route.param("attr") // "booga"
}
}
})
Building/Parsing query strings
v0.2.x
used methods hanging off of m.route
, m.route.buildQueryString()
and m.route.parseQueryString()
. In v1.x
these have been broken out and attached to the root m
.
v0.2.x
var qs = m.route.buildQueryString({ a : 1 });
var obj = m.route.parseQueryString("a=1");
v1.x
var qs = m.buildQueryString({ a : 1 });
var obj = m.parseQueryString("a=1");
Preventing unmounting
It is no longer possible to prevent unmounting via onunload
's e.preventDefault()
. Instead you should explicitly call m.route.set
when the expected conditions are met.
v0.2.x
var Component = {
controller: function() {
this.onunload = function(e) {
if (condition) e.preventDefault()
}
},
view: function() {
return m("a[href=/]", {config: m.route})
}
}
v1.x
var Component = {
view: function() {
return m("a", {onclick: function() {if (!condition) m.route.set("/")}})
}
}
Run code on component removal
Components no longer call this.onunload
when they are being removed. They now use the standardized lifecycle hook onremove
.
v0.2.x
var Component = {
controller: function() {
this.onunload = function(e) {
// ...
}
},
view: function() {
// ...
}
}
v1.x
var Component = {
onremove : function() {
// ...
}
view: function() {
// ...
}
}
m.request
Promises returned by m.request are no longer m.prop
getter-setters. In addition, initialValue
, unwrapSuccess
and unwrapError
are no longer supported options.
In addition, requests no longer have m.startComputation
/m.endComputation
semantics. Instead, redraws are always triggered when a request promise chain completes (unless background:true
is set).
v0.2.x
var data = m.request({
method: "GET",
url: "https://api.github.com/",
initialValue: [],
})
setTimeout(function() {
console.log(data())
}, 1000)
v1.x
var data = []
m.request({
method: "GET",
url: "https://api.github.com/",
})
.then(function (responseBody) {
data = responseBody
})
setTimeout(function() {
console.log(data) // note: not a getter-setter
}, 1000)
Additionally, if the extract
option is passed to m.request
the return value of the provided function will be used directly to resolve the request promise, and the deserialize
callback is ignored.
m.deferred
removed
v0.2.x
used its own custom asynchronous contract object, exposed as m.deferred
, which was used as the basis for m.request
. v1.x
uses Promises instead, and implements a polyfill in non-supporting environments. In situations where you would have used m.deferred
, you should use Promises instead.
v0.2.x
var greetAsync = function() {
var deferred = m.deferred()
setTimeout(function() {
deferred.resolve("hello")
}, 1000)
return deferred.promise
}
greetAsync()
.then(function(value) {return value + " world"})
.then(function(value) {console.log(value)}) //logs "hello world" after 1 second
v1.x
var greetAsync = function() {
return new Promise(function(resolve){
setTimeout(function() {
resolve("hello")
}, 1000)
})
}
greetAsync()
.then(function(value) {return value + " world"})
.then(function(value) {console.log(value)}) //logs "hello world" after 1 second
m.sync
removed
Since v1.x
uses standards-compliant Promises, m.sync
is redundant. Use Promise.all
instead.
v0.2.x
m.sync([
m.request({ method: 'GET', url: 'https://api.github.com/users/lhorie' }),
m.request({ method: 'GET', url: 'https://api.github.com/users/isiahmeadows' }),
])
.then(function (users) {
console.log("Contributors:", users[0].name, "and", users[1].name)
})
v1.x
Promise.all([
m.request({ method: 'GET', url: 'https://api.github.com/users/lhorie' }),
m.request({ method: 'GET', url: 'https://api.github.com/users/isiahmeadows' }),
])
.then(function (users) {
console.log("Contributors:", users[0].name, "and", users[1].name)
})
xlink
namespace required
In v0.2.x
, the xlink
namespace was the only supported attribute namespace, and it was supported via special casing behavior. Now namespace parsing is fully supported, and namespaced attributes should explicitly declare their namespace.
v0.2.x
m("svg",
// the `href` attribute is namespaced automatically
m("image[href='image.gif']")
)
v1.x
m("svg",
// User-specified namespace on the `href` attribute
m("image[xlink:href='image.gif']")
)
Nested arrays in views
Arrays now represent fragments, which are structurally significant in v1.x virtual DOM. Whereas nested arrays in v0.2.x would be flattened into one continuous list of virtual nodes for the purposes of diffing, v1.x preserves the array structure - the children of any given array are not considered siblings of those of adjacent arrays.
vnode
equality checks
If a vnode is strictly equal to the vnode occupying its place in the last draw, v1.x will skip that part of the tree without checking for mutations or triggering any lifecycle methods in the subtree. The component documentation contains more detail on this issue.
License: MIT. © Leo Horie.