Skip to content

Commit 27171b1

Browse files
committed
fixed docs links
1 parent 1e0713e commit 27171b1

File tree

30 files changed

+58
-58
lines changed

30 files changed

+58
-58
lines changed
File renamed without changes.

docs/api/100-components/cable.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
The `cable` component enables us to update the DOM based on events and data pushed via ActionCable without a browser reload.
44

5-
Please read the [ActionCable Guide](/docs/guides/1000-action_cable/README.md) if you need help setting up ActionCable for your project, and make sure you have set up ActionCable correctly. The following code snippet is crucial to make the `cable` component work correctly:
5+
Please read the [ActionCable Guide](/docs/reactive_components/1000-action_cable/README.md) if you need help setting up ActionCable for your project, and make sure you have set up ActionCable correctly. The following code snippet is crucial to make the `cable` component work correctly:
66

77
`app/javascript/channels/matestack_ui_core_channel.js`
88

File renamed without changes.

docs/reactive_apps/1000-tutorial/00_introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,4 +45,4 @@ VueJsComponents are more complex components. These always have a Vue.js counterp
4545
We introduced you to the apps, pages and components concepts of matestack. In order to unterstand better how matestack works, we create an application from the ground up using matestack and enhancing it step by step while leveraging more and more features of matestack.
4646
Read the following guides to get started with matestack and get a better understanding about how apps, pages, components work.
4747

48-
Let's setup a rails app with matestack by following the [next guide](/docs/guides/100-tutorial/01_setup.md)
48+
Let's setup a rails app with matestack by following the [next guide](/docs/reactive_apps/1000-tutorial/01_setup.md)

docs/reactive_apps/1000-tutorial/01_setup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -346,4 +346,4 @@ We now have a working Rails app using `matestack`.
346346

347347
In this guide we learned how matestack pages work, how we can use matestacks components to create html and how we can use an app as a layout for pages and what benefits we get through using an app.
348348

349-
After taking a well deserved rest, make sure to continue exploring the features `matestack` offers you by checking out the [next part of the series](/docs/guides/100-tutorial/02_active_record.md).
349+
After taking a well deserved rest, make sure to continue exploring the features `matestack` offers you by checking out the [next part of the series](/docs/reactive_apps/1000-tutorial/02_active_record.md).

docs/reactive_apps/1000-tutorial/02_active_record.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ Welcome to the second part of our tutorial about building a web application with
77

88
## Introduction
99

10-
In the [previous guide](/docs/guides/100-tutorial/01_setup.md), we created a new project, installed the necessary libraries, added a demo `matestack` app featuring two `matestack` pages, and deployed it using Heroku.
10+
In the [previous guide](/docs/reactive_apps/1000-tutorial/01_setup.md), we created a new project, installed the necessary libraries, added a demo `matestack` app featuring two `matestack` pages, and deployed it using Heroku.
1111

1212
In this guide, we will
1313
- create an ActiveRecord model to work with throughout this series
1414
- add some seeded data and migrate the database
1515

1616
## Prerequisites
1717

18-
We expect you to have successfully finished the [previous guide](/docs/guides/100-tutorial/01_setup.md).
18+
We expect you to have successfully finished the [previous guide](/docs/reactive_apps/1000-tutorial/01_setup.md).
1919

2020
## Adding the ActiveRecord model
2121

@@ -138,4 +138,4 @@ git add . && git commit -m "Introduce person model including seeds, add it to ma
138138

139139
We have updated the app to use a working database model, added some records and displayed them on an index page.
140140

141-
Let's continue and build even cooler stuff by heading directly to the [next part of the series](/docs/guides/100-tutorial/03_index_show.md).
141+
Let's continue and build even cooler stuff by heading directly to the [next part of the series](/docs/reactive_apps/1000-tutorial/03_index_show.md).

docs/reactive_apps/1000-tutorial/03_index_show_transition.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ Welcome to the third part of our tutorial about building a web application with
77

88
## Introduction
99

10-
In the [previous guide](/docs/guides/100-tutorial/02_active_record.md), we added an ActiveRecord model to our project, added some fake persons to our database and displayed them on an index page.
10+
In the [previous guide](/docs/reactive_apps/1000-tutorial/02_active_record.md), we added an ActiveRecord model to our project, added some fake persons to our database and displayed them on an index page.
1111

1212
In this guide, we will
1313
- a detail page for every person
1414
- dive more into the concept of page transitions
1515

1616
## Prerequisites
1717

18-
We expect you to have successfully finished the [previous guide](/docs/guides/100-tutorial/02_active_record.md).
18+
We expect you to have successfully finished the [previous guide](/docs/reactive_apps/1000-tutorial/02_active_record.md).
1919

2020
## Update person controller and routes
2121

@@ -146,4 +146,4 @@ git add . && git commit -m "Add index/show matestack pages for person model (inc
146146

147147
Our **person** model now has a dedicated index and show page. The pages within our `matestack` app are properly linked to each other. We learned how we can access data and use rails helpers inside of pages, apps and components and how transitions in more detail work.
148148

149-
Let's continue and add the necessary functionality for adding new persons and editing existing ones in the [next part of the series](/docs/guides/100-tutorial/04_forms_edit_new_create_update_delete.md).
149+
Let's continue and add the necessary functionality for adding new persons and editing existing ones in the [next part of the series](/docs/reactive_apps/1000-tutorial/04_forms_edit_new_create_update_delete.md).

docs/reactive_apps/1000-tutorial/04_forms_edit_new_create_update_delete.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Welcome to the fourth part of our tutorial about building a web application with
77

88
## Introduction
99

10-
In the [previous guide](/docs/guides/100-tutorial/03_index_show_transition.md), we added index and show pages for the **person** model. In this part, we will implement the create, update and delete part of our CRUD application. For this we will introduce the matestack `forms`.
10+
In the [previous guide](/docs/reactive_apps/1000-tutorial/03_index_show_transition.md), we added index and show pages for the **person** model. In this part, we will implement the create, update and delete part of our CRUD application. For this we will introduce the matestack `forms`.
1111

1212
In this guide, we will
1313
- add a new page and action action to create new persons
@@ -17,7 +17,7 @@ In this guide, we will
1717
- introduce the concept of matestack actions
1818

1919
## Prerequisites
20-
We expect you to have successfully finished the [previous guide](/docs/guides/100-tutorial/03_index_show_transition.md).
20+
We expect you to have successfully finished the [previous guide](/docs/reactive_apps/1000-tutorial/03_index_show_transition.md).
2121

2222
## Updating the person model
2323

@@ -315,4 +315,4 @@ We got a brief introduction of the `form` and `action` components and know how t
315315

316316
But there's still more guides coming - so what's left? In the upcoming chapters, we will dive deeper into some `matestack` concepts to further enhance both user experience and developer happiness!
317317

318-
Take a well deserved rest and make sure to come back to the next part of this series, introducing the powerful [`toggle component`](/docs/guides/100-tutorial/05_toggle_component.md).
318+
Take a well deserved rest and make sure to come back to the next part of this series, introducing the powerful [`toggle component`](/docs/reactive_apps/1000-tutorial/05_toggle_component.md).

docs/reactive_apps/1000-tutorial/05_toggle_component.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ In this guide, we will introduce matestacks `toggle` and `onclick` components. F
1313

1414
## Prerequisites
1515

16-
We expect you to have successfully finished the [previous guide](/docs/guides/100-tutorial/04_forms_edit_new_create_update_delete.md).
16+
We expect you to have successfully finished the [previous guide](/docs/reactive_apps/1000-tutorial/04_forms_edit_new_create_update_delete.md).
1717

1818
## Adding a show more button with onclick
1919

@@ -96,4 +96,4 @@ git add . && git commit -m "add show more toggle to person show page"
9696

9797
We added a show more button to our persons show page and learned how to use the `onclick` and `toggle` components and what they can be used for.
9898

99-
Take a well deserved rest and make sure to come back to the next part of this series, introducing the powerful [`async` component](/docs/guides/100-tutorial/06_async_component.md).
99+
Take a well deserved rest and make sure to come back to the next part of this series, introducing the powerful [`async` component](/docs/reactive_apps/1000-tutorial/06_async_component.md).

docs/reactive_apps/1000-tutorial/06_async_component.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ In this guide, we will introduce matestacks `async` component. For this we will
1313

1414
## Prerequisites
1515

16-
We expect you to have successfully finished the [previous guide](/docs/guides/100-tutorial/05_toggle_component.md).
16+
We expect you to have successfully finished the [previous guide](/docs/reactive_apps/1000-tutorial/05_toggle_component.md).
1717

1818
## Add a delete button
1919

@@ -127,4 +127,4 @@ git add . && git commit -m "add delete button to person list and update it dynam
127127

128128
We added a delete button to our person list on the index page. When a person is deleted our list gets automatically updated without even reloading the page, just by updating the part that is needed. And all of that with a few lines of code and without writing any JavaScript.
129129

130-
Take a well deserved rest and make sure to come back to the next part of this series, introducing [partials and custom components](/docs/guides/100-tutorial/07_partials_and_custom_components.md).
130+
Take a well deserved rest and make sure to come back to the next part of this series, introducing [partials and custom components](/docs/reactive_apps/1000-tutorial/07_partials_and_custom_components.md).

0 commit comments

Comments
 (0)