Skip to content

Commit

Permalink
docs: fix links paths after the site update
Browse files Browse the repository at this point in the history
  • Loading branch information
artalar committed Jul 16, 2023
1 parent f124cee commit f0942a0
Show file tree
Hide file tree
Showing 14 changed files with 16 additions and 16 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ document.getElementById('save')!.addEventListener('click', () => {

Check out [@reatom/core docs](https://www.reatom.dev/core) for detailed explanation of key principles and features.

Do you use React.js? Check out [npm-react](https://www.reatom.dev/packages/npm-react) package!
Do you use React.js? Check out [npm-react](https://www.reatom.dev/adapter/npm-react) package!

## Advanced example

Expand Down Expand Up @@ -188,7 +188,7 @@ To get maximum of Reatom and the ecosystem just go to [tutorial](https://www.rea

- Finish [forms package](https://github.com/artalar/reatom/tree/v3/packages/form)
- Finish [persist](https://github.com/artalar/reatom/tree/v3/packages/persist) and [navigation](https://github.com/artalar/reatom/tree/v3/packages/navigation) packages
- Add adapters for most popular ui frameworks: ~~[react](https://www.reatom.dev/packages/npm-react)~~, angular, vue, ~~[svelte](https://www.reatom.dev/packages/npm-svelte)~~, solid.
- Add adapters for most popular ui frameworks: ~~[react](https://www.reatom.dev/adapter/npm-react)~~, angular, vue, ~~[svelte](https://www.reatom.dev/adapter/npm-svelte)~~, solid.
- Port some components logic from reakit.io, to made it fast, light and portable.
- Add ability to made async transaction and elaborate optimistic-ui patterns and helpers / package.
- Try to write own jsx renderer.
Expand Down
2 changes: 1 addition & 1 deletion docs/src/content/docs/core.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ document.getElementById('search-input').addEventListener('input', (event) => {
})
```

> Do you want to see next [the docs for React adapter](https://reatom.dev/packages/npm-react)?
> Do you want to see next [the docs for React adapter](https://reatom.dev/adapter/npm-react)?
### Action handling (advanced)

Expand Down
2 changes: 1 addition & 1 deletion docs/src/content/docs/guides/naming.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description: Main advices for things naming

### Packages

We want to grow a huge ecosystem of packages, which will be useful for everyone. So, it's crucial to have naming convention for packages, especially when different platforms could have packages with the same name. For this reason we use prefixes for adapter packages related to a specific scope. For example [`npm-history`](https://www.reatom.dev/packages/npm-history) for [history package](https://www.npmjs.com/package/history) adapter, `web-history` for potential [History API](https://developer.mozilla.org/en-US/docs/Web/API/History_API) wrapper, and `node-http` for potential [Node HTTP](https://nodejs.org/docs/latest-v18.x/api/http.html) adapter.
We want to grow a huge ecosystem of packages, which will be useful for everyone. So, it's crucial to have naming convention for packages, especially when different platforms could have packages with the same name. For this reason we use prefixes for adapter packages related to a specific scope. For example [`npm-history`](https://www.reatom.dev/adapter/npm-history) for [history package](https://www.npmjs.com/package/history) adapter, `web-history` for potential [History API](https://developer.mozilla.org/en-US/docs/Web/API/History_API) wrapper, and `node-http` for potential [Node HTTP](https://nodejs.org/docs/latest-v18.x/api/http.html) adapter.

### Fabric and model

Expand Down
4 changes: 2 additions & 2 deletions docs/src/content/docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ document.getElementById('save')!.addEventListener('click', () => {

Check out [@reatom/core docs](/core) for detailed explanation of key principles and features.

Do you use React.js? Check out [npm-react](/packages/npm-react) package!
Do you use React.js? Check out [npm-react](/adapter/npm-react) package!

## Advanced example

Expand Down Expand Up @@ -193,7 +193,7 @@ To get maximum of Reatom and the ecosystem just go to [tutorial](/tutorial). If

- Finish [forms package](https://github.com/artalar/reatom/tree/v3/packages/form)
- Finish [persist](https://github.com/artalar/reatom/tree/v3/packages/persist) and [navigation](https://github.com/artalar/reatom/tree/v3/packages/navigation) packages
- Add adapters for most popular ui frameworks: ~~[react](/packages/npm-react)~~, angular, vue, ~~[svelte](/packages/npm-svelte)~~, solid.
- Add adapters for most popular ui frameworks: ~~[react](/adapter/npm-react)~~, angular, vue, ~~[svelte](/adapter/npm-svelte)~~, solid.
- Port some components logic from reakit.io, to made it fast, light and portable.
- Add ability to made async transaction and elaborate optimistic-ui patterns and helpers / package.
- Try to write own jsx renderer.
Expand Down
2 changes: 1 addition & 1 deletion docs/src/content/docs/package/async.md
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ export const fetchList = reatomAsync(
onConnect(fetchList.dataAtom, fetchList)
```

What this code do? When you connect to `fetchList.dataAtom` it will automatically call `fetchList` action. Connection could appear in any place of your application, by `ctx.subscribe(fetchList.dataAtom, cb)` or by using `useAtom(fetchList.dataAtom)` hook from [@reatom/npm-react](/packages/npm-react). Even by a different atom.
What this code do? When you connect to `fetchList.dataAtom` it will automatically call `fetchList` action. Connection could appear in any place of your application, by `ctx.subscribe(fetchList.dataAtom, cb)` or by using `useAtom(fetchList.dataAtom)` hook from [@reatom/npm-react](/adapter/npm-react). Even by a different atom.

```ts
export const filteredListAtom = atom(
Expand Down
2 changes: 1 addition & 1 deletion packages/async/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ export const fetchList = reatomAsync(
onConnect(fetchList.dataAtom, fetchList)
```

What this code do? When you connect to `fetchList.dataAtom` it will automatically call `fetchList` action. Connection could appear in any place of your application, by `ctx.subscribe(fetchList.dataAtom, cb)` or by using `useAtom(fetchList.dataAtom)` hook from [@reatom/npm-react](https://www.reatom.dev/packages/npm-react). Even by a different atom.
What this code do? When you connect to `fetchList.dataAtom` it will automatically call `fetchList` action. Connection could appear in any place of your application, by `ctx.subscribe(fetchList.dataAtom, cb)` or by using `useAtom(fetchList.dataAtom)` hook from [@reatom/npm-react](https://www.reatom.dev/adapter/npm-react). Even by a different atom.

```ts
export const filteredListAtom = atom(
Expand Down
2 changes: 1 addition & 1 deletion packages/core-v1/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"bugs": {
"url": "https://github.com/artalar/reatom/issues"
},
"homepage": "https://www.reatom.dev/packages/core-v1",
"homepage": "https://www.reatom.dev/adapter/core-v1",
"files": [
"/build",
"/package.json"
Expand Down
2 changes: 1 addition & 1 deletion packages/core-v2/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"bugs": {
"url": "https://github.com/artalar/reatom/issues"
},
"homepage": "https://www.reatom.dev/packages/core-v2",
"homepage": "https://www.reatom.dev/adapter/core-v2",
"files": [
"/build",
"/package.json",
Expand Down
2 changes: 1 addition & 1 deletion packages/core/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ document.getElementById('search-input').addEventListener('input', (event) => {
})
```

> Do you want to see next [the docs for React adapter](https://reatom.dev/packages/npm-react)?
> Do you want to see next [the docs for React adapter](https://reatom.dev/adapter/npm-react)?
### Action handling (advanced)

Expand Down
2 changes: 1 addition & 1 deletion packages/npm-cookie-baker/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
"bugs": {
"url": "https://github.com/artalar/reatom/issues"
},
"homepage": "https://www.reatom.dev/packages/npm-cookie-baker",
"homepage": "https://www.reatom.dev/adapter/npm-cookie-baker",
"files": [
"/build",
"/package.json"
Expand Down
2 changes: 1 addition & 1 deletion packages/npm-history/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
"bugs": {
"url": "https://github.com/artalar/reatom/issues"
},
"homepage": "https://github.com/artalar/reatom/packages/npm-history",
"homepage": "https://github.com/artalar/reatom/adapter/npm-history",
"files": [
"/build",
"/package.json"
Expand Down
2 changes: 1 addition & 1 deletion packages/npm-react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"bugs": {
"url": "https://github.com/artalar/reatom/issues"
},
"homepage": "https://www.reatom.dev/packages/npm-react",
"homepage": "https://www.reatom.dev/adapter/npm-react",
"files": [
"/build",
"/package.json"
Expand Down
2 changes: 1 addition & 1 deletion packages/npm-svelte/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"bugs": {
"url": "https://github.com/artalar/reatom/issues"
},
"homepage": "https://github.com/artalar/reatom/packages/npm-svelte",
"homepage": "https://github.com/artalar/reatom/adapter/npm-svelte",
"files": [
"/build",
"/package.json"
Expand Down
2 changes: 1 addition & 1 deletion packages/react-v1/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"bugs": {
"url": "https://github.com/artalar/reatom/issues"
},
"homepage": "https://www.reatom.dev/packages/react-v1",
"homepage": "https://www.reatom.dev/adapter/react-v1",
"files": [
"/build",
"/package.json"
Expand Down

1 comment on commit f0942a0

@vercel
Copy link

@vercel vercel bot commented on f0942a0 Jul 16, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.