Skip to content

Commit ba2f3a4

Browse files
committed
add/update various docs based on the edge changelog
1 parent 6b981be commit ba2f3a4

14 files changed

+372
-89
lines changed

docs/edge/Components.md.hbs

+40-9
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ First, you need to **create the component** with {{{createLink 'Ractive.extend()
1111
* [The \{{>content}} Directive](#content)
1212
* [The \{{yield}} Directive](#yield)
1313
* [Parents and Containers](#parent)
14+
* [Anchors and Embedding External Instances](#anchors)
1415

1516
## <a name="init"></a>Initialisation Options
1617

@@ -65,7 +66,7 @@ var ractive = new Ractive({
6566

6667
```
6768

68-
```html
69+
```html
6970

7071
<script id="template" type="text/ractive">
7172
<div>
@@ -110,7 +111,7 @@ Then the resulting output would be
110111
Very complex example for such a simple idea but this could drastically effect you.
111112

112113

113-
init is called after the extended component has been initialized
114+
init is called after the extended component has been initialized
114115

115116
```js
116117
var MyWidget = Ractive.extend({
@@ -183,9 +184,9 @@ var data = {
183184
style: 'tint'
184185
}
185186
Ractive.components.widget = Ractive.extend({})
186-
var ractive = new Ractive({
187+
var ractive = new Ractive({
187188
template: '<widget items='\{{colors}}' option1='A' option2='\{{style}}'/>',
188-
data: data
189+
data: data
189190
})
190191

191192
function logData(){
@@ -201,7 +202,7 @@ ractive.set('colors.1', 'green')
201202

202203
logData()
203204
// main {"name":"Colors","colors":["red","green","yellow"],"style":"tint"}
204-
// widget {"items":["red","green","yellow"],"option1":"A","option2":"tint"}
205+
// widget {"items":["red","green","yellow"],"option1":"A","option2":"tint"}
205206
```
206207

207208

@@ -272,7 +273,7 @@ Here, `Bar.foo`, `Baz.`, and `*.bippy` events will not bubble beyond the `Foo` c
272273
Here, no internal component events will bubble above `Foo`.
273274

274275

275-
## <a name="content"></a>The `\{{>content}}` Directive
276+
## <a name="content"></a>The `\{{>content}}` Directive
276277

277278
Any content in the template calling the component:
278279

@@ -284,7 +285,7 @@ Any content in the template calling the component:
284285
<list items='\{{fates}}'>
285286
"\{{.}}"
286287
</list>
287-
```
288+
```
288289
is exposed in the component as a partial named "content":
289290
290291
```html
@@ -303,7 +304,7 @@ Partials, components, and any other valid template items can be used as well:
303304
</list>
304305
305306
<list items='\{{fates}}'>
306-
<widget value='\{{.}}'/>
307+
<widget value='\{{.}}'/>
307308
</list>
308309
```
309310
@@ -351,7 +352,7 @@ ractive.on('clicked', function(ev) {
351352

352353
Here, `1` will be displayed next to the button, and the button, when clicked, will log a message to the console.
353354

354-
Inline partials may also be yielded within a component by specifying a name with `yield` e.g. `\{{yield item}}`. 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. `\{{yield item}}`. Any partial, including dynamic partials, may be yielded.
355356

356357
```html
357358
<Foo>
@@ -367,6 +368,23 @@ var Foo = Ractive.extend({
367368
});
368369
```
369370

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.
372+
373+
```html
374+
<Foo items="\{{items}}">
375+
\{{#partial row}}
376+
<li>\{{item}}</li>
377+
\{{/partial}}
378+
</Foo>
379+
```
380+
```js
381+
const Foo = Ractive.extend({
382+
template: `<ul>\{{#each items}}\{{yield row with this as item}}\{{/each}}</ul>`
383+
});
384+
```
385+
386+
To yield to the default/unnamed partial, just leave out the name e.g. `\{{yield with foo as bar, baz as bat}}`. To yield to a named partial, list the aliases after the name and `with` e.g. `\{{yield foo with foo as bar, baz as bat}}`.
387+
370388
## <a name="parent"></a>Parents and Containers
371389

372390
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,
377395

378396
`this.findParent(name)` will search up the hierarchy until it finds a parent component named `name`.
379397
`this.findContainer(name)` will search up the surrogate hierarchy until if finds a container named `name`.
398+
399+
## <a name="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+
\{{#partial foo}}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.

docs/edge/Get started.md.hbs

+3-4
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,13 @@ with the desired options:
1111

1212
```js
1313
var ractive = new Ractive({
14-
el: 'container',
14+
target: 'container',
1515
template: '<p>\{{greeting}}, \{{recipient}}!</p>',
1616
data: { greeting: 'Hello', recipient: 'world' }
1717
});
1818
```
1919

20-
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__.
2221

2322
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.
2423

@@ -27,6 +26,6 @@ all the available options.
2726

2827
If you get stuck at any point, visit the {{{createLink 'Get support'}}} page to find help.
2928

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)*
3130

3231
*Documentation for latest version: [latest](../latest)*

docs/edge/Lifecycle events.md.hbs

+4-2
Original file line numberDiff line numberDiff line change
@@ -32,25 +32,27 @@ The full list of lifecycle events is as follows:
3232

3333
| Name | Event is fired...
3434
| --------------- | --------------
35+
| `attachchild` | ...when the instance is attached to a parent with {{{createLink 'ractive.attachChild()'}}}
3536
| `construct` | ...as soon as `new Ractive(...)` happens, before any setup work takes place
3637
| `config` | ...once all configuration options have been processed
38+
| `detachchild` | ...when the instance is detached from a parent with {{{createLink 'ractive.detachChild()'}}}
3739
| `init` | ...when the instance is ready to be rendered
3840
| `render` | ...each time the instance is rendered (normally only once)
3941
| `complete` | ...after `render`, once any intro {{{createLink 'transitions'}}} have completed
4042
| `change` | ...when data changes
4143
| `update` | ...after `ractive.update()` is called
4244
| `unrender` | ...each time the instance is unrendered
4345
| `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
4447
| `insert` | ...each time `ractive.insert()` is called
4548
| `detach` | ...each time `ractive.detach()` is called (note: `ractive.insert()` calls `ractive.detach()`)
4649
4750
<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:
4952
5053
* `construct` supplies the actual initialisation options provided to the instance constructor
5154
* `change` supplies a change object with each change keypath as a property and the new change value as the value of that property
5255
5356
## Reserved event names
5457
5558
Note: the built-in lifecycle events are **reserved**, which means you can't use their names as {{{createLink 'proxy events'}}}.
56-

docs/edge/Migrating.md.hbs

+90
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,96 @@ title: 'Migrating to Edge'
44

55
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.
66

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. `\{{yield partialName with foo as bar}}` and `\{{yield with foo as bar}}` 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 `<button on-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 `<div on-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 (`\{{>foo thisIsTheContext}}`) now only applies inside the partial template, meaning it is no longer equivalent to `\{{#with thisIsTheContext}}\{{>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.
96+
797
## Migrating from 0.7.x
898

999
### What's new

0 commit comments

Comments
 (0)