You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Here, `1` will be displayed next to the button, and the button, when clicked, will log a message to the console.
353
354
354
-
Inline partials may also be yielded within a component by specifying a name with `yield` e.g. `\{{yielditem}}`. Currently, only partials defined inside the component body may be yielded.
355
+
Inline partials may also be yielded within a component by specifying a name with `yield` e.g. `\{{yielditem}}`. Any partial, including dynamic partials, may be yielded.
355
356
356
357
```html
357
358
<Foo>
@@ -367,6 +368,23 @@ var Foo = Ractive.extend({
367
368
});
368
369
```
369
370
371
+
The component may provide references for the yielded content by specifying aliases in the `\{{yield}}` directive. Since the yielded content has no access to the *component* scope, injecting aliases allows the component to provide the caller with relevant contextual data. For instance, without supplying an alias, `\{{yield}}` is useless within an `\{{#each}}` section because the context for the `\{{yield}}` is always the parent context of the component. By specifying an alias, for instance, `this` as `item`, the component can provide the caller with the object in the current iteration.
To yield to the default/unnamed partial, just leave out the name e.g. `\{{yieldwithfooasbar, bazasbat}}`. To yield to a named partial, list the aliases after the name and `with` e.g. `\{{yieldfoowithfooasbar, bazasbat}}`.
387
+
370
388
## <aname="parent"></a>Parents and Containers
371
389
372
390
Components that are nested within other components have access to their parents, containers, and root.
@@ -377,3 +395,16 @@ Components that are nested within other components have access to their parents,
377
395
378
396
`this.findParent(name)` will search up the hierarchy until it finds a parent component named `name`.
379
397
`this.findContainer(name)` will search up the surrogate hierarchy until if finds a container named `name`.
398
+
399
+
## <aname="anchors"></a>Anchors and Embedding External Instances
400
+
401
+
External components or instances can be embedded at an anchor in the template. An anchor is basically a component that doesn't create its own instance when it renders but uses a supplied instance that is attached to the Ractive instance using {{{createLink'ractive.attachChild()'}}} with a target specified that matches the anchor name. Anchors can supply inline partials and mappings in the same way that components can. An anchor looks like a component with a `#` in front of the anchor name like `<#anchorName />`.
402
+
403
+
```html
404
+
<#anchorName mapping1="\{{some.path}}">
405
+
\{{#partialfoo}}This will be made available to the child instance.\{{/partial}}
406
+
And this is in the content/unnamed partial.
407
+
</#anchorName>
408
+
```
409
+
410
+
Multiple anchors may exist with the same name, so any additional instances that are targeted to the same anchor name will inhabit the additional anchors. This allows iterative sections to usefully contain anchors. There is a special instance-maintained keypath that allows automatic tracking of attached children by anchor name at `@this.children.byName.anchorName` where `anchorName` is the name of the anchor. For instance, `\{{#each@.children.byName.foo}}<#foo />\{{/each}}` will automatically create anchors for each instance targeting a `foo` anchor.
While there are no _required_ options, the three shown above - __el__ement, __template__ and __data__ - are the most common. They specify __what data__ to bind to __what template__ and __where__ it should be placed
21
-
in the __html document__.
20
+
While there are no _required_ options, the three shown above - __target__, __template__ and __data__ - are the most common. They specify __what data__ to bind to __what template__ and __where__ it should be placed in the __html document__.
22
21
23
22
A good way to get up and running is with the [60 second setup](http://ractivejs.org/60-second-setup). After that, working your way through the [interactive tutorials](http://learn.ractivejs.org) will familiarise you with the various ways you can use Ractive.
24
23
@@ -27,6 +26,6 @@ all the available options.
27
26
28
27
If you get stuck at any point, visit the {{{createLink'Get support'}}} page to find help.
29
28
30
-
*Documentation for previous versions: [0.3.9](../0.3.9), [0.4.0](../0.4.0), [0.5.x](../0.5), [0.6.x](../0.6), [0.7.x](../0.7)*
29
+
*Documentation for previous versions: [0.3.9](../0.3.9), [0.4.0](../0.4.0), [0.5.x](../0.5), [0.6.x](../0.6), [0.7.x](../0.7), [0.8.x](../0.8)*
31
30
32
31
*Documentation for latest version: [latest](../latest)*
Copy file name to clipboardexpand all lines: docs/edge/Lifecycle events.md.hbs
+4-2
Original file line number
Diff line number
Diff line change
@@ -32,25 +32,27 @@ The full list of lifecycle events is as follows:
32
32
33
33
| Name | Event is fired...
34
34
| --------------- | --------------
35
+
| `attachchild` | ...when the instance is attached to a parent with {{{createLink 'ractive.attachChild()'}}}
35
36
| `construct` | ...as soon as `new Ractive(...)` happens, before any setup work takes place
36
37
| `config` | ...once all configuration options have been processed
38
+
| `detachchild` | ...when the instance is detached from a parent with {{{createLink 'ractive.detachChild()'}}}
37
39
| `init` | ...when the instance is ready to be rendered
38
40
| `render` | ...each time the instance is rendered (normally only once)
39
41
| `complete` | ...after `render`, once any intro {{{createLink 'transitions'}}} have completed
40
42
| `change` | ...when data changes
41
43
| `update` | ...after `ractive.update()` is called
42
44
| `unrender` | ...each time the instance is unrendered
43
45
| `teardown` | ...each time the instance is destroyed (after `unrender`, if the teardown is responsible for triggering the unrender)
46
+
| `destruct` | ...after `teardown`, once any outro {{{createLink 'transitions'}}} have completed
44
47
| `insert` | ...each time `ractive.insert()` is called
45
48
| `detach` | ...each time `ractive.detach()` is called (note: `ractive.insert()`calls `ractive.detach()`)
46
49
47
50
<br>
48
-
Most of the events do not have arguments, except for:
51
+
Lifecycle events receive their source Ractive instance as their _last_ argument. Aside from that, most events have no other arguments, except for the following, which have an argument _before_ the source instance:
49
52
50
53
* `construct` supplies the actual initialisation options provided to the instance constructor
51
54
* `change` supplies a change object with each change keypath as a property and the new change value as the value of that property
52
55
53
56
## Reserved event names
54
57
55
58
Note: the built-in lifecycle events are **reserved**, which means you can't use their names as {{{createLink 'proxy events'}}}.
Copy file name to clipboardexpand all lines: docs/edge/Migrating.md.hbs
+90
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,96 @@ title: 'Migrating to Edge'
4
4
5
5
Many of these migration notes are cribbed from the [CHANGELOG](https://github.com/ractivejs/ractive/blob/dev/CHANGELOG.md). While we strive to minimise breaking changes, and to highlight the ones we do introduce, if you discover an undocumented breaking change please edit this page.
6
6
7
+
## Migrating from 0.8.x
8
+
9
+
0.9 is a much more evolutionary change from 0.8. The biggest breaking changes are that there is no longer a legacy version supplied, so you must bring your own polyfills, and deprecations have been removed. When 0.9 is released, there will likely be a packaged polyfills script distributed with Ractive to make assembling the necessary polyfills easier.
10
+
11
+
### What's new
12
+
13
+
#### Stable
14
+
15
+
`target` is now an alias for `el` when creating a Ractive instance.
16
+
17
+
You can now use spread expressions with array and object literals in expressions in addition to method calls. Object spreads will require `Object.assign` to be available.
18
+
19
+
There is a new lifecycle hook, `destruct` that fires after teardown is complete and any related transitions have completed.
20
+
21
+
Lifecycle events now receive the source Ractive instance as their last argument.
22
+
23
+
You can now use context-relative `observe` and `observeOnce` from event and node info objects.
24
+
25
+
You can now access decorator objects from event and node info objects using `obj.decorators.name`, where name is the decorator name as specified in the template e.g. `foo` in `<div as-foo />`.
26
+
27
+
#### Unstable (pending feedback to stabilize in 0.10)
28
+
29
+
You can now create cross-instance links by passing an options object with a target instance e.g. `this.link('source.path', 'dest.path', { ractive: sourceInstance })`. This covers many of the cases handled by the `ractive-ractive` adaptor in a considerably more efficient manner.
30
+
31
+
There is now an API to manage embedding external instances i.e. out-of-template components. You can use `ractive.attachChild(otherRactive, { options })` and `ractive.detachChild(otherRactive)` to create a component relationship between two instances. There is a new anchor construct `<#anchorName />` that behaves mostly like a regular inline component except that it won't create its own Ractive instance. You can target an anchor when attaching a child by giving an anchor name as an option e.g. `ractive.attachChild(otherRactive, { target: 'anchorName' })`. Attached children need not be components, so you can attach a plain Ractive instance e.g. `const foo = new Ractive({ ... }); ractive.attachChild(foo);`.
32
+
33
+
`\{{yield}}` can now be used with any partial, not just inlines, and it may also use an expression to look up the target partial. It basically behaves as a regular partial with a special context. `\{{yield}}` can also specify aliases, so that yielding is useful inside an iterative section. `\{{yieldpartialNamewithfooasbar}}` and `\{{yieldwithfooasbar}}` will make `foo` from the component context available to the `partialName` partial as `bar`.
34
+
35
+
You can specify that child keypaths of computations should trigger updates on the computation's dependencies, which _should_ have the effect of keeping the models involved in the computation in sync with changes to the computed models. The flag to enable this behavior at instance creation is `syncComputedChildren: true`. With that flag set, children of computations are available for two-way binding and mutation from event or `getNodeInfo` objects using relative keypaths.
36
+
37
+
`@.foo` has been introduced as shorthand for `@this.foo`. This mirrors the data shorthand `.foo` for `this.foo`.
38
+
39
+
You can now pop contexts using `^^/` in the same way that you can pop keypaths with `../`.
40
+
41
+
Special keypaths that resolve to Ractive instances now resolve using the proper model rather than a computation, so they now stay in sync.
42
+
43
+
There is now a special key `data` on special keypaths that resolve to Ractive instances that resolves to the instance's root model. This allows things like `@.root.data.foo` to keep the root instance `foo` reference in sync throughout the component tree.
44
+
45
+
There is a new Ractive-private shared store, `@shared`. This is roughly the same as `@global`, but it is not susceptible to interference from the global scope.
46
+
47
+
There is a new option, `resolveInstanceMembers`, which defaults to `true`, and when enabled, it adds the instance scope `@this` to the end of the reference resolution process. This means that as long as there are no conflicting members in the context hierarchy, things like `<buttonon-click="set('foo', 'bar')">yep</button>` work as expected. Note that the resolved function will only be bound to the instance if it contains a `this` reference, which can be a little strange if you're debugging.
48
+
49
+
There is a new option, `warnAboutAmbiguity`, which defaults to `false`, and when set, it will issue a warning any time a reference fails to resolve at all or fails to resolve to a member in the immediate context.
50
+
51
+
API methods can now handle things like `ractive.set('~/foo', 'bar')`, mirroring how context methods for `getNodeInfo` and `event`s are handled. Things like `ractive.set('.foo', 'bar')` will now issue a warning and do nothing rather than creating an incorrect keypath (`<empty string>.foo`).
52
+
53
+
You can now trigger event listeners in the VDOM from event and node info objects e.g. with `<divon-foo="@global.alert('hello')" >` with `ractive.getNodeInfo('div').raise('foo');` will trigger an alert.
54
+
55
+
There are two new options available for subscribing events and observers when an instance is created using two new options.
56
+
* `on` takes a hash of event listeners that will be subscribed just after the `construct` phase of instantiation, meaning that any lifecycle events after `construct` may also have listeners added in the event hash.
57
+
* `observe` takes a hash of observers that will be subscribed just after the `config` phase of instantiation.
58
+
* Both of these options are additive, so any subscriptions defined in component super classes are applied first in sequence from the root of the component class hierarchy down to the options of the instance being created.
59
+
* The hashes can contain keys that could be passed directly to the matching method e.g. `ractive.on( key, ... )` or `ractive.observe( key, ... )`.
60
+
* The hashes can contain values that are either a callback function or an object that has a `handler` property that is a callback function. If the object form is used, any additional keys are passed to the method. If a `once` property is supplied and is truthy, then the appropriate single-fire method will be used to subscribe. For instance `observe: { 'foo.* bar': { handler() { ... }, strict: true, once: true, defer: true } }` passed in an options object is equivalent to calling `ractive.observeOnce( 'foo.* bar', function() { ... }, { strict: true, defer: true } )` during the `init` phase of instantiation.
61
+
62
+
Event listener handles return from `ractive.on( ... )` now have methods to silence and resume the listener. The existing `cancel()` method now has siblings `isSilenced()`, `silence()`, and `resume()`. When a listener is silenced, it will not call its callback.
63
+
64
+
Like event listeners, observer listener handles also have methods to silence and resume the listener. While an observer is silenced, it will still track state changes internally, meaning the old value on the next call after being resumed will be the last value it observed, including those observed while it was silenced. It simply won't fire its callback while it is silenced.
65
+
66
+
You can now stop component outros from firing while a component is being unrendered by specifying `noOutro: true`, which mirrors the behavior of `noIntro`.
67
+
68
+
You can now specify whether or not transitions should occur if they are on a child element of another transitioning element by using:
69
+
* Instance option `nestedTransitions`, which defaults to `true`, meaning that transitions will fire whether they are on elements that are children of other transitioning elements or not.
70
+
* The transition option `nested`, which also defaults to `true`.
71
+
72
+
There's a new `ractive` command distributed with the node module that allows easy pre-parsing of templates and building of components. If you have the module installed locally, see `./node_modules/.bin/ractive` for more details.
73
+
74
+
### Breaking changes and deprecations
75
+
76
+
* All deprecations have been removed, including proxy events with args, un-prefixed method events, decorator="...", transition="...", the ractive.data getter, partial comment definitions, and lifecycle methods like `init` and `beforeInit`.
77
+
78
+
* The template spec is now a bit simpler after the removal of deprecations, and templates parsed with previous versions of Ractive are no longer compatible.
79
+
80
+
* Partial context (`\{{>foothisIsTheContext}}`) now only applies inside the partial template, meaning it is no longer equivalent to `\{{#withthisIsTheContext}}\{{>foo}}\{{/with}}`. The with is wrapped around the content of `foo`, so that the context doesn't interfere with the partial expression.
81
+
82
+
* Any partial may be yielded, so yielding non-inline partials will no longer warn.
83
+
84
+
* The same partial may be yielded multiple times.
85
+
86
+
* Events now fire in an initial implicit `this.` namespace. This means that with `this.on( '*.foo', handler )`, `handler` will be called if and component fires a `foo` event or if the `this` instance fires a `foo` event.
87
+
88
+
* The `noIntro` option now applies to any nested components that are also being rendered, unless they have their own explicit setting.
89
+
90
+
* Legacy builds removed. Only regular and runtime builds are now available.
91
+
* `Promise` shim required for IE11.
92
+
* `requestAnimationFrame` polyfill required for IE10.
93
+
* es5-shim required for non-ES5 browsers.
94
+
95
+
* `ractive.nodes` no longer contains elements by id. The same functionality can be handled more safely and conveniently with a decorator.
0 commit comments