Unpoly will update the browser location, document title and meta tags as the user follows links and submits forms.
There are some restrictions for when Unpoly will change history. This sections explains the reasons for these restrictions and shows how to override them.
By default Unpoly only changes history when a main element is rendered. This is to prevent location changes when rendering a minor fragment, like a table row or a message counter.
This behavior is a navigation default in
up.fragment.config.navigateOptions.history === 'auto'
.
To cause auto-history to trigger on fragments other than main elements, add a selector to up.fragment.config.autoHistoryTargets
.
To force a change of history state, use one of the following:
[up-history=true]
attribute on your link or form.{ history: true }
option when rendering a fragment programmatically.up.fragment.config.navigateOptions.history = true
. This will be the new default for all links and forms.up:link:follow
or up:form:submit
may set event.renderOptions.history = true
.To prevent changing history-related state after rendering a major fragment, use one of the following:
[up-history=false]
attribute on your link or form.{ history: false }
option when rendering a fragment programmatically.up.fragment.config.navigateOptions.history = false
. This will be the new default for all links and forms.up:link:follow
or up:form:submit
may set event.renderOptions.history = false
.up.history.config.enabled = false
to globally prevent Unpoly from making history changes.GET
requests change historyOnly requests with a GET
method are egible to change browser history.
This is because only GET
requests can be reloaded and restored safely.
This behavior cannot be configured.
Form submissions with methods like POST
, PUT
or PATCH
never change history.
However, if a successful form submssion redirects to a GET
URL, that new request is
again egible to change history.
When your JavaScript updates a fragment using up.render()
, history is never changed by default.
You may opt into history changes using one of the following:
{ history: true }
option to force a history change.{ history: 'auto' }
option to update history if updating a major fragment.up.navigate()
instead of up.render()
to inherit navigation defaults.A history update comprises the following:
meta[name=description]
or link[rel=canonical]
.[lang]
attribute of the root <html>
element.In the document below, the highlighted nodes will be updated when history is changed, in additional to the location URL:
<html lang="en"> <!-- mark-phrase "en" -->
<head>
<title>AcmeCorp</title> <!-- mark-line -->
<link rel="canonical" href="https://example.com/dresses/green-dresses"> <!-- mark-line -->
<meta name="description" content="About the AcmeCorp team"> <!-- mark-line -->
<meta prop="og:image" content="https://app.com/og.jpg"> <!-- mark-line -->
<script src="/assets/app.js"></script>
<link rel="stylesheet" href="/assets/app.css">
</head>
<body>
...
</body>
</html>
The linked JavaScript and stylesheet are not part of history state and will not be updated.
You may choose to only update some history-related state, but keep others unchanged:
[up-location="false"]
on a link or form, or by passing { location: false }
to a rendering function.[up-title="false"]
on a link or form, or by passing { title: false }
to a rendering function.[up-meta-tags="false"]
on a link or form, or by passing { metaTags: false }
to a rendering function.html[lang]
attribute can be disabled by setting [up-lang="false"]
on a link or form, or by passing { title: false }
to a rendering function.Note
Options like
{ location }
will only be honored when a render pass is changing history.