Skip to content

Add simple example for hooks #40

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Nov 24, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,39 @@ RequestInterceptor.register(async (request) => {
RequestInterceptor.reset()
```

#### Before and after hooks

Wrap the request `Promise` with your own code. Just pure and simple JavaScript like this:

```javascript
import { FetchRequest } from "@rails/request.js"
import { navigator } from "@hotwired/turbo"

function showProgressBar() {
navigator.delegate.adapter.progressBar.setValue(0)
navigator.delegate.adapter.progressBar.show()
}

function hideProgressBar() {
navigator.delegate.adapter.progressBar.setValue(1)
navigator.delegate.adapter.progressBar.hide()
}

export function withProgress(request) {
showProgressBar()

return request.then((response) => {
hideProgressBar()
return response
})
}

export function get(url, options) {
const request = new FetchRequest("get", url, options)
return withProgress(request.perform())
}
```

## Response

### statusCode
Expand Down