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
Copy file name to clipboardexpand all lines: README.md
+9-4
Original file line number
Diff line number
Diff line change
@@ -48,10 +48,14 @@ FlowRouter.route('/', {
48
48
name:'index',
49
49
action() {
50
50
// Render a template using Blaze
51
-
this.render('templateName');
51
+
this.render('layoutName', 'index');
52
52
53
53
// Can be used with BlazeLayout,
54
54
// and ReactLayout for React-based apps
55
+
},
56
+
waitOn() {
57
+
// Dynamically load JS per route
58
+
return [import('/imports/client/index.js')];
55
59
}
56
60
});
57
61
@@ -67,11 +71,12 @@ FlowRouter.route('*', {
67
71
});
68
72
```
69
73
70
-
> NOTE: If you're using TypeScript, FlowRouter supports it. For types to work you need to install and follow the instructions of [zodern:meteor-types](https://github.com/zodern/meteor-types#meteor-apps) if you haven't done it already.
74
+
> [!TIP]
75
+
> If you're using TypeScript, FlowRouter supports it. For types to work you need to install and follow the instructions of [`zodern:meteor-types`](https://github.com/zodern/meteor-types#meteor-apps)
71
76
72
77
## Documentation
73
78
74
-
- Continue with our [wiki](https://github.com/veliovgroup/flow-router/wiki);
79
+
- Continue with our [wiki](https://github.com/veliovgroup/flow-router/wiki) or [README index](https://github.com/veliovgroup/flow-router/blob/master/docs/README.md);
Copy file name to clipboardexpand all lines: docs/README.md
+9-4
Original file line number
Diff line number
Diff line change
@@ -36,7 +36,8 @@ FlowRouter.route('*', {
36
36
});
37
37
```
38
38
39
-
For the new apps it is recommended to set `decodeQueryParamsOnce` to `true`. This flag is here to fix [#78](https://github.com/veliovgroup/flow-router/issues/78). By default it is `false` due to its historical origin for compatibility purposes.
39
+
> [!IMPORTANT]
40
+
> For the new apps it is recommended to set `decodeQueryParamsOnce` to `true`. This flag is here to fix [#78](https://github.com/veliovgroup/flow-router/issues/78). By default it is `false` due to its historical origin for compatibility purposes
40
41
41
42
## General tutorials:
42
43
@@ -46,6 +47,7 @@ For the new apps it is recommended to set `decodeQueryParamsOnce` to `true`. Thi
46
47
-[Templating with Data](https://github.com/veliovgroup/flow-router/blob/master/docs/templating-with-data.md)
-[Usage in real application](https://github.com/veliovgroup/meteor-files-website/tree/master/imports/client/router)
49
51
50
52
## Hooks (*in execution order*):
51
53
@@ -123,6 +125,9 @@ For the new apps it is recommended to set `decodeQueryParamsOnce` to `true`. Thi
123
125
124
126
## Support this project:
125
127
126
-
This project wouldn't be possible without [ostr.io](https://ostr.io).
127
-
128
-
Using [ostr.io](https://ostr.io) you are not only [protecting domain names](https://ostr.io/info/domain-names-protection), [monitoring websites and servers](https://ostr.io/info/monitoring), using [Prerendering for better SEO](https://ostr.io/info/prerendering) of your JavaScript website, but support our Open Source activity, and great packages like this one could be available for free.
128
+
- Upload and share files using [☄️ meteor-files.com](https://meteor-files.com/?ref=github-flowrouter-repo-footer) — Continue interrupted file uploads without losing any progress. There is nothing that will stop Meteor from delivering your file to the desired destination
129
+
- Use [▲ ostr.io](https://ostr.io?ref=github-flowrouter-repo-footer) for [Server Monitoring](https://snmp-monitoring.com), [Web Analytics](https://ostr.io/info/web-analytics?ref=github-flowrouter-repo-footer), [WebSec](https://domain-protection.info), [Web-CRON](https://web-cron.info) and [SEO Pre-rendering](https://prerendering.com) of a website
130
+
- Star on [GitHub](https://github.com/veliovgroup/flow-router)
131
+
- Star on [Atmosphere](https://atmospherejs.com/ostrio/flow-router-extra)
132
+
-[Sponsor via GitHub](https://github.com/sponsors/dr-dimitru)
133
+
-[Support via PayPal](https://paypal.me/veliovgroup)
The former is no longer recommended, but to maintain compatibility with legacy apps, `false` is the default value for this flag. Enabling this flag manually with `true` is recommended for all new apps. For more info, see [#78](https://github.com/veliovgroup/flow-router/issues/78).
-`options[prop-name]` {*Any*} - [Optional] Any property which will be available inside route call
10
-
-`options[hook-name]` {*Function*} - [Optional] See [all available hooks](https://github.com/veliovgroup/flow-router/tree/master/docs#hooks-in-execution-order)
11
-
- Returns {*Group*}
6
+
7
+
-`options` {*Object*} - [Optional]
8
+
-`options.name` {*String*} - [Optional] Route's name
-`options[prop-name]` {*Any*} - [Optional] Any property which will be available inside route call
11
+
-`options[hook-name]` {*Function*} - [Optional] See [all available hooks](https://github.com/veliovgroup/flow-router/tree/master/docs#hooks-in-execution-order)
This can be useful for determining if the current route is in a specific group (e.g. *admin*, *public*, *loggedIn*) without needing to use prefixes if you don't want to. If it's a nested group, you can get the parent group's name with:
Copy file name to clipboardexpand all lines: docs/api/onRouteRegister.md
+3-2
Original file line number
Diff line number
Diff line change
@@ -3,8 +3,9 @@
3
3
```js
4
4
FlowRouter.onRouteRegister(callback);
5
5
```
6
-
-`callback` {*Function*}
7
-
- Returns {*void*}
6
+
7
+
-`callback` {*Function*}
8
+
- Returns {*void*}
8
9
9
10
This API is specially designed for add-on developers. They can listen for any registered route and add custom functionality to FlowRouter. This works on both server and client alike.
Copy file name to clipboardexpand all lines: docs/api/refresh.md
+10-5
Original file line number
Diff line number
Diff line change
@@ -3,22 +3,25 @@
3
3
```js
4
4
FlowRouter.refresh('layout', 'template');
5
5
```
6
-
-`layout` {*String*} - [required] Name of the layout template
7
-
-`template` {*String*} - [required] Name of the intermediate template, simple `<template>Loading...</template>` might be a good option
8
6
7
+
-`layout` {*String*} - [required] Name of the layout template
8
+
-`template` {*String*} - [required] Name of the intermediate template, simple `<template>Loading...</template>` might be a good option
9
9
10
10
`FlowRouter.refresh()` will force all route's rules and hooks to re-run, including subscriptions, waitOn(s) and template render.
11
11
Useful in cases where template logic depends from route's hooks, example:
12
+
12
13
```handlebars
13
14
{{#if currentUser}}
14
15
{{> yield}}
15
16
{{else}}
16
17
{{> loginForm}}
17
18
{{/if}}
18
19
```
20
+
19
21
in example above "yielded" template may loose data context after user login action, although user login will cause `yield` template to render - `data` and `waitOn` hooks will not fetch new data.
Copy file name to clipboardexpand all lines: docs/api/reload.md
+4-2
Original file line number
Diff line number
Diff line change
@@ -3,11 +3,13 @@
3
3
```js
4
4
FlowRouter.reload();
5
5
```
6
-
- Returns {*void*}
6
+
7
+
- Returns {*void*}
7
8
8
9
FlowRouter routes are idempotent. That means, even if you call `FlowRouter.go()` to the same URL multiple times, it only activates in the first run. This is also true for directly clicking on paths.
9
10
10
11
So, if you really need to reload the route, this is the method you want.
0 commit comments