Skip to content

Commit 6400921

Browse files
committed
docs(navigation): initial rewrite of Navigation docs (#330)
1 parent 211fefc commit 6400921

File tree

4 files changed

+2152
-1167
lines changed

4 files changed

+2152
-1167
lines changed

build/plugins/remark.js

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
const low = require('lowlight');
2+
low.registerAlias('xml', [ 'vue', 'Vue' ]);
3+
14
const remark = require('remark');
25
const lint = require('remark-preset-lint-recommended');
36
const html = require('remark-html');
@@ -10,6 +13,7 @@ const remarkPing = require('remark-ping');
1013
const shortcodes = require('remark-shortcodes');
1114
const report = require('vfile-reporter');
1215

16+
1317
function processMarkdown(contents) {
1418
return new Promise((resolve, reject) => {
1519
remark()
@@ -101,4 +105,4 @@ module.exports = function permalinks(options = {}) {
101105

102106
done();
103107
}
104-
};
108+
};

content/docs/en/routing/navigation.md

+71
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
---
2+
title: Navigation
3+
contributors: [rigor789]
4+
---
5+
6+
Most apps are made of multiple screens the users can interact with. In order to present these different screens to the user, we need a way to navigate between them. NativeScript-Vue provides the following methods to achieve this:
7+
* [`$navigateTo`](#)
8+
* [`$navigateBack`](#)
9+
* [`$showModal`](#)
10+
11+
In NativeScript-Vue different screens are denoted by the [`<Page>`](#) tag.
12+
13+
// todo: emphasize early on that `<Page>` tags are mandatory
14+
15+
## A basic scenario: navigating to a different `<Page>`
16+
17+
Let's say the user is presented with the default `<Page>` in our `Home.vue` component and we would like to navigate to a component we defined in `Settings.vue`:
18+
```vue
19+
<template>
20+
<Page>
21+
<ActionBar title="Settings" />
22+
<StackLayout>
23+
<!-- page content goes here -->
24+
</StackLayout>
25+
</Page>
26+
</template>
27+
```
28+
29+
In our Home component, we first need to import the `<Settings>` component. Most navigation is triggered by the user, in this case we will attach a `@tap` handler to a `<Button>` and call our navigation in the handler.
30+
```vue
31+
<template>
32+
<Page>
33+
<ActionBar title="Home" />
34+
<StackLayout>
35+
<Button text="Go to Settings" @tap="onSettingsTap" />
36+
<!-- page content goes here -->
37+
</StackLayout>
38+
</Page>
39+
</template>
40+
41+
<script>
42+
import Settings from './Settings'
43+
44+
export default {
45+
methods: {
46+
onSettingsTap() {
47+
this.$navigateTo(Settings)
48+
}
49+
}
50+
}
51+
</script>
52+
```
53+
54+
[You can try this example in the Playground](https://play.nativescript.org/?template=play-vue&id=Gsxbge)
55+
56+
// todo: incorporate $navigateBack into the basic guide
57+
58+
## A basic scenario: showing a modal `<Page>`
59+
60+
Often times, we need to present the user with data that doesn't fit in the navigation flow. In these cases we can show a `<Page>` in a modal, completely independent of the current navigation history.
61+
62+
// todo: create example and walkthrough
63+
64+
# Troubleshooting
65+
66+
// todo
67+
68+
```js
69+
this.$navigateTo(Component).catch(error => console.log(error))
70+
```
71+

0 commit comments

Comments
 (0)