> For the complete documentation index, see [llms.txt](https://jho406.gitbook.io/breezy/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://jho406.gitbook.io/breezy/docs/requests.md).

# Requests

If you prefer to navigate using Javascript, or need more functionality than what UJS offers, Superglue comes with two functions built around `fetch`, `visit` and `remote`. These are wrapped with your own implementation in [application\_visit.js](/breezy/docs/configuration.md#application_visitjs) and can be accessed via the [NavigationContext](/breezy/docs/reference/types.md#navigationcontextprops).

!!! tip Superglue does not come with a `<Link>` component. Instead we encourage you to build one that is unique to your projects needs using the functions provided by the [NavigationContext](/breezy/docs/reference/types.md#navigationcontextprops).

```js
import { NavigationContext } from '@thoughtbot/superglue';

const { remote, visit } = useContext(NavigationContext)
```

## visit

`visit` is designed to mimic browser navigation for clicks and form submissions without the impact of a full page reload. There can be only one visit at a time and when successful `visit` will swap out the current page component for the next one.

At glance it looks like this:

```mermaid
sequenceDiagram
    autonumber
    Browser ->> Superglue: Click request to `/posts/new` intercepted
    activate Superglue
    Superglue -->> Server: Re-request with format JSON `/posts/new.json`
    activate Server
    Server -->> Superglue: `/posts/new.json` response
    Superglue -->> Superglue: Save response and swap page components
    deactivate Server
    Superglue -->> Browser: Update browser history, scroll position
    deactivate Superglue
```

!!! hint Its possible to modify the visit payload before it saves to the store. See the [beforeSave](/breezy/docs/reference/types.requests.md#visitprops) callback.

\- \[:octicons-arrow-right-24: See complete reference]\(reference/types.requests.md#visit) for \`visit\`

## remote

Use `remote` when you want to asynchronously update parts of a page or save a page to the store without swapping the page component or change the browser history. Unlike visit, you can fire off as many async `remote` requests as you want.

!!! hint Its possible to modify the remote payload before it saves to the store. See the [beforeSave](/breezy/docs/reference/types.requests.md#remoteprops) callback.

At glance it looks like this:

```mermaid
sequenceDiagram
  alt target default current page
    autonumber
    Browser ->> Superglue: Click request to `/posts/new` intercepted
    activate Superglue
    Superglue -->> Server: Re-request with format JSON `/posts/new.json`
    activate Server
    Server -->> Superglue: `/posts/new.json` response
    Superglue -->> Superglue: Save response
    Superglue -->> Browser: User on current page sees update
    deactivate Server
    deactivate Superglue
  end
```

By default, `remote` derives a `pagekey` from the response to save the page. You can override this behavior and expliclity pass a `pageKey` option to target a different page in the store. If the user is not viewing the target page, they will not see an update.

!!! warning The componentIdentifier from the page response **MUST** match the target page, otherwise remote will throw a `MismatchedComponentError` error. You can override this by using the `force: true` option. See the [docs](/breezy/docs/reference/types.requests.md#remoteprops) for details.

```mermaid
sequenceDiagram
  alt target another page in the store
    autonumber
    Browser ->> Superglue: Click request to `/posts/new` intercepted
    activate Superglue
    Superglue -->> Server: Re-request with format JSON `/posts/new.json`
    activate Server
    Server -->> Superglue: `/posts/new.json` response
    Superglue -->> Superglue: Save response or update target page
    Note right of Browser: User does not see an update to the current page
    deactivate Server
    deactivate Superglue
  end
```

\- \[:octicons-arrow-right-24: See complete reference]\(reference/types.requests.md#remote) for \`remote\`- \[:octicons-arrow-right-24: See note]\(./ujs.md#data-sg-remote) for differences between \`remote\` and \`data-sg-remote\`

!!! tip "Customizations" You can modify the behavior of `visit` and `remote` functions globally from `application_visit.js`. If you need a global customization, e.g, progress bars, you can add them there.
