Skip to content

Commit ce3a7bf

Browse files
committed
📔 refactor: docs
- Update examples - Add new `async` hooks usage examples - Lint with markdownlint
1 parent 27ae89c commit ce3a7bf

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+378
-208
lines changed

README.md

+9-4
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,14 @@ FlowRouter.route('/', {
4848
name: 'index',
4949
action() {
5050
// Render a template using Blaze
51-
this.render('templateName');
51+
this.render('layoutName', 'index');
5252

5353
// Can be used with BlazeLayout,
5454
// and ReactLayout for React-based apps
55+
},
56+
waitOn() {
57+
// Dynamically load JS per route
58+
return [import('/imports/client/index.js')];
5559
}
5660
});
5761

@@ -67,11 +71,12 @@ FlowRouter.route('*', {
6771
});
6872
```
6973

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)
7176
7277
## Documentation
7378

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);
7580
- [Quick start](https://github.com/veliovgroup/flow-router/blob/master/docs/quick-start.md) tutorial;
7681
- All docs as [single document](https://github.com/veliovgroup/flow-router/blob/master/docs/full.md).
7782

@@ -110,7 +115,7 @@ MONGO_URL="mongodb://127.0.0.1:27017/flow-router-tests" meteor test-packages ./
110115

111116
### Running Typescript Test
112117

113-
1. Install [tsd](https://github.com/SamVerschueren/tsd) as a global package;
118+
1. Install [`tsd`](https://github.com/SamVerschueren/tsd) as a global package;
114119
2. Run `tsd` in your terminal. `tsd` will find the correct `*.test.d.ts` file and return with any errors.
115120

116121
## Support this project:

docs/README.md

+9-4
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@ FlowRouter.route('*', {
3636
});
3737
```
3838

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
4041
4142
## General tutorials:
4243

@@ -46,6 +47,7 @@ For the new apps it is recommended to set `decodeQueryParamsOnce` to `true`. Thi
4647
- [Templating with Data](https://github.com/veliovgroup/flow-router/blob/master/docs/templating-with-data.md)
4748
- [Auto-scroll](https://github.com/veliovgroup/flow-router/blob/master/docs/auto-scroll.md)
4849
- [React.js usage](https://github.com/veliovgroup/flow-router/blob/master/docs/react.md)
50+
- [Usage in real application](https://github.com/veliovgroup/meteor-files-website/tree/master/imports/client/router)
4951

5052
## Hooks (*in execution order*):
5153

@@ -123,6 +125,9 @@ For the new apps it is recommended to set `decodeQueryParamsOnce` to `true`. Thi
123125

124126
## Support this project:
125127

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)

docs/api/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# API:
1+
# API
22

33
- __General Methods:__
44
- [`.go()` method](https://github.com/veliovgroup/flow-router/blob/master/docs/api/go.md)

docs/api/current.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,14 @@
33
```js
44
FlowRouter.current();
55
```
6-
- Returns {*Object*}
6+
7+
- Returns {*Object*}
78

89
Get the current state of the router. **This API is not reactive**.
910
If you need to watch the changes in the path simply use `FlowRouter.watchPathChange()`.
1011

1112
#### Example
13+
1214
```js
1315
// route def: /apps/:appId
1416
// url: /apps/this-is-my-app?show=yes&color=red
@@ -26,4 +28,5 @@ console.log(current);
2628
```
2729

2830
#### Further reading
29-
- [`.watchPathChange()` method](https://github.com/veliovgroup/flow-router/blob/master/docs/api/watchPathChange.md)
31+
32+
- [`.watchPathChange()` method](https://github.com/veliovgroup/flow-router/blob/master/docs/api/watchPathChange.md)

docs/api/decodeQueryParamsOnce.md

+7-3
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,13 @@ FlowRouter.decodeQueryParamsOnce = true;
1212
#### Example
1313

1414
Given the URL in the address bar:
15-
```
15+
16+
```plain
1617
http://localhost:3000/signin?after=%2Foauth%2Fauthorize%3Fclient_id%3D123%26redirect_uri%3Dhttps%253A%252F%252Fothersite.com%252F
1718
```
1819

1920
If `decodeQueryParamsOnce` is not set or set to `false` ❌ ...
21+
2022
```js
2123
FlowRouter.getQueryParam("after");
2224
// returns: "/oauth/authorize?client_id=123"
@@ -26,6 +28,7 @@ FlowRouter.current().queryParams;
2628
```
2729

2830
If `decodeQueryParamsOnce` is set to `true` ✔️ ...
31+
2932
```js
3033
FlowRouter.getQueryParam("after");
3134
// returns: "/oauth/authorize?client_id=123&redirect_uri=https%3A%2F%2Fothersite.com%2F"
@@ -37,5 +40,6 @@ FlowRouter.current().queryParams;
3740
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).
3841

3942
#### Further reading
40-
- [`.getQueryParam()` method](https://github.com/veliovgroup/flow-router/blob/master/docs/api/getQueryParam.md)
41-
- [`.current()` method](https://github.com/veliovgroup/flow-router/blob/master/docs/api/current.md)
43+
44+
- [`.getQueryParam()` method](https://github.com/veliovgroup/flow-router/blob/master/docs/api/getQueryParam.md)
45+
- [`.current()` method](https://github.com/veliovgroup/flow-router/blob/master/docs/api/current.md)

docs/api/getParam.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,14 @@
33
```js
44
FlowRouter.getParam(paramName);
55
```
6-
- `paramName` {*String*}
7-
- Returns {*String*}
6+
7+
- `paramName` {*String*}
8+
- Returns {*String*}
89

910
Reactive function which you can use to get a parameter from the URL.
1011

1112
#### Example
13+
1214
```js
1315
// route def: /apps/:appId
1416
// url: /apps/this-is-my-app

docs/api/getQueryParam.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,9 @@
33
```js
44
FlowRouter.getQueryParam(queryKey);
55
```
6-
- `queryKey` {*String*}
7-
- Returns {*String*}
6+
7+
- `queryKey` {*String*}
8+
- Returns {*String*}
89

910
Reactive function which you can use to get a value from the query string.
1011

docs/api/getRouteName.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,13 @@
33
```js
44
FlowRouter.getRouteName();
55
```
6-
- Returns {*String*}
6+
7+
- Returns {*String*}
78

89
Use to get the name of the route reactively.
910

1011
#### Example
12+
1113
```js
1214
Tracker.autorun(function () {
1315
const routeName = FlowRouter.getRouteName();
@@ -16,4 +18,5 @@ Tracker.autorun(function () {
1618
```
1719

1820
#### Further reading
19-
- [`.current()` method](https://github.com/veliovgroup/flow-router/blob/master/docs/api/current.md)
21+
22+
- [`.current()` method](https://github.com/veliovgroup/flow-router/blob/master/docs/api/current.md)

docs/api/go.md

+8-6
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
### go method
22

33
`.go(path, params, qs)`
4-
- `path` {*String*} - Path or Route's name
5-
- `params` {*Object*} - Serialized route parameters, `{ _id: 'str' }`
6-
- `qs` {*Object*} - Serialized query string, `{ key: 'val' }`
7-
- Returns {*true*}
4+
5+
- `path` {*String*} - Path or Route's name
6+
- `params` {*Object*} - Serialized route parameters, `{ _id: 'str' }`
7+
- `qs` {*Object*} - Serialized GET-query string, `{ key: 'val' }`
8+
- Returns {*true*}
89

910
```js
1011
import { FlowRouter } from 'meteor/ostrio:flow-router-extra';
@@ -19,5 +20,6 @@ FlowRouter.go('blogPost', { _id: 'post_id' }, { commentId: '123' }); // /blog/po
1920
```
2021

2122
#### Further reading
22-
- [`.route()` method](https://github.com/veliovgroup/flow-router/blob/master/docs/api/route.md)
23-
- [`.getRouteName()` method](https://github.com/veliovgroup/flow-router/blob/master/docs/api/getRouteName.md)
23+
24+
- [`.route()` method](https://github.com/veliovgroup/flow-router/blob/master/docs/api/route.md)
25+
- [`.getRouteName()` method](https://github.com/veliovgroup/flow-router/blob/master/docs/api/getRouteName.md)

docs/api/group.md

+15-10
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,13 @@
33
Use group routes for better route organization.
44

55
`.group(options)`
6-
- `options` {*Object*} - [Optional]
7-
- `options.name` {*String*} - [Optional] Route's name
8-
- `options.prefix` {*String*} - [Optional] Route prefix
9-
- `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
9+
- `options.prefix` {*String*} - [Optional] Route prefix
10+
- `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)
12+
- Returns {*Group*}
1213

1314
```js
1415
const adminRoutes = FlowRouter.group({
@@ -33,6 +34,7 @@ adminRoutes.route('/posts', {
3334
```
3435

3536
#### Nested Group
37+
3638
```js
3739
const adminRoutes = FlowRouter.group({
3840
prefix: '/admin',
@@ -51,17 +53,20 @@ superAdminRoutes.route('/post', {
5153
```
5254

5355
#### Get group name
56+
5457
```js
5558
FlowRouter.current().route.group.name
5659
```
5760

5861
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:
62+
5963
```js
6064
FlowRouter.current().route.group.parent.name
6165
```
6266

6367
#### Further reading
64-
- [`.triggersEnter()` hooks](https://github.com/veliovgroup/flow-router/blob/master/docs/hooks/triggersEnter.md)
65-
- [`.action()` hook](https://github.com/veliovgroup/flow-router/blob/master/docs/hooks/action.md)
66-
- [`.route()` method](https://github.com/veliovgroup/flow-router/blob/master/docs/api/route.md)
67-
- [`.current()` method](https://github.com/veliovgroup/flow-router/blob/master/docs/api/current.md)
68+
69+
- [`.triggersEnter()` hooks](https://github.com/veliovgroup/flow-router/blob/master/docs/hooks/triggersEnter.md)
70+
- [`.action()` hook](https://github.com/veliovgroup/flow-router/blob/master/docs/hooks/action.md)
71+
- [`.route()` method](https://github.com/veliovgroup/flow-router/blob/master/docs/api/route.md)
72+
- [`.current()` method](https://github.com/veliovgroup/flow-router/blob/master/docs/api/current.md)

docs/api/onRouteRegister.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,9 @@
33
```js
44
FlowRouter.onRouteRegister(callback);
55
```
6-
- `callback` {*Function*}
7-
- Returns {*void*}
6+
7+
- `callback` {*Function*}
8+
- Returns {*void*}
89

910
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.
1011

docs/api/path.md

+7-5
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,11 @@
33
```js
44
FlowRouter.path(path, params, qs);
55
```
6-
- `path` {*String*} - Path or Route's name
7-
- `params` {*Object*} - Serialized route parameters, `{ _id: 'str' }`
8-
- `qs` {*Object*} - Serialized query string, `{ key: 'val' }`
9-
- Returns {*String*} - URI
6+
7+
- `path` {*String*} - Path or Route's name
8+
- `params` {*Object*} - Serialized route parameters, `{ _id: 'str' }`
9+
- `qs` {*Object*} - Serialized query string, `{ key: 'val' }`
10+
- Returns {*String*} - URI
1011

1112
```js
1213
const pathDef = '/blog/:cat/:id';
@@ -20,4 +21,5 @@ console.log(path); // --> "/blog/met%20eor/abc?show=y%2Be%3Ds&color=black"
2021
If there are no `params` or `qs`, it will simply return the path as it is.
2122

2223
#### Further reading
23-
- [`.url()` method](https://github.com/veliovgroup/flow-router/blob/master/docs/api/url.md)
24+
25+
- [`.url()` method](https://github.com/veliovgroup/flow-router/blob/master/docs/api/url.md)

docs/api/pathRegExp.md

+6-4
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,13 @@
44
// Use dashes as separators so `/:id-:slug/` isn't translated to `id-:slug` but to `:id`-`:slug`
55
FlowRouter.pathRegExp = /(:[\w\(\)\\\+\*\.\?\[\]]+)+/g;
66
```
7-
- `pathRegExp` {*RegExp*}
8-
- Default - `/(:[\w\(\)\\\+\*\.\?\[\]\-]+)+/g`
7+
8+
- `pathRegExp` {*RegExp*}
9+
- Default - `/(:[\w\(\)\\\+\*\.\?\[\]\-]+)+/g`
910

1011
Use to change the URI RegEx parser used for `params`, for more info see [#25](https://github.com/veliovgroup/flow-router/issues/25).
1112

1213
#### Further reading
13-
- [`.route()` method](https://github.com/veliovgroup/flow-router/blob/master/docs/api/route.md)
14-
- [`.group()` method](https://github.com/veliovgroup/flow-router/blob/master/docs/api/group.md)
14+
15+
- [`.route()` method](https://github.com/veliovgroup/flow-router/blob/master/docs/api/route.md)
16+
- [`.group()` method](https://github.com/veliovgroup/flow-router/blob/master/docs/api/group.md)

docs/api/refresh.md

+10-5
Original file line numberDiff line numberDiff line change
@@ -3,22 +3,25 @@
33
```js
44
FlowRouter.refresh('layout', 'template');
55
```
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
86

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
99

1010
`FlowRouter.refresh()` will force all route's rules and hooks to re-run, including subscriptions, waitOn(s) and template render.
1111
Useful in cases where template logic depends from route's hooks, example:
12+
1213
```handlebars
1314
{{#if currentUser}}
1415
{{> yield}}
1516
{{else}}
1617
{{> loginForm}}
1718
{{/if}}
1819
```
20+
1921
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.
2022

2123
#### Login example
24+
2225
```js
2326
Meteor.loginWithPassword({
2427
username: '[email protected]'
@@ -37,6 +40,7 @@ Meteor.loginWithPassword({
3740
```
3841

3942
#### Logout example
43+
4044
```js
4145
Meteor.logout((error) => {
4246
if (error) {
@@ -48,6 +52,7 @@ Meteor.logout((error) => {
4852
```
4953

5054
#### Further reading
51-
- [`.go()` method](https://github.com/veliovgroup/flow-router/blob/master/docs/api/go.md)
52-
- [`.route()` method](https://github.com/veliovgroup/flow-router/blob/master/docs/api/route.md)
53-
- [`.group()` method](https://github.com/veliovgroup/flow-router/blob/master/docs/api/group.md)
55+
56+
- [`.go()` method](https://github.com/veliovgroup/flow-router/blob/master/docs/api/go.md)
57+
- [`.route()` method](https://github.com/veliovgroup/flow-router/blob/master/docs/api/route.md)
58+
- [`.group()` method](https://github.com/veliovgroup/flow-router/blob/master/docs/api/group.md)

docs/api/reload.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,13 @@
33
```js
44
FlowRouter.reload();
55
```
6-
- Returns {*void*}
6+
7+
- Returns {*void*}
78

89
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.
910

1011
So, if you really need to reload the route, this is the method you want.
1112

1213
#### Further reading
13-
- [`.refresh()` method](https://github.com/veliovgroup/flow-router/blob/master/docs/api/refresh.md)
14+
15+
- [`.refresh()` method](https://github.com/veliovgroup/flow-router/blob/master/docs/api/refresh.md)

docs/api/render.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22

33
`this.render()` method is available only [inside hooks](https://github.com/veliovgroup/flow-router/tree/master/docs#hooks-in-execution-order).
44

5-
- __Note__: `this.render()` method is available only if application has `templating` and `blaze`, or `blaze-html-templates` packages installed.
5+
> [!NOTE]
6+
> `this.render()` method is available only if application has `templating` and `blaze`, or `blaze-html-templates` packages installed
67
78
#### With Layout
89

0 commit comments

Comments
 (0)