Skip to content
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

Fix search navigate(): Include Site root #47

Closed
wants to merge 1 commit into from
Closed
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
6 changes: 4 additions & 2 deletions src/blocks/interactive/movie-search/view.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
// Disclaimer: Importing the `store` using a global is just a temporary solution.
const { store, navigate } = window.__experimentalInteractivity;

const siteRoot = document.querySelector('link[rel*="api.w.org"]').href.replace('/wp-json/', '');

const updateURL = async (value) => {
const url = new URL(window.location);
url.searchParams.set('post_type', 'movies');
url.searchParams.set('orderby', 'name');
url.searchParams.set('order', 'asc');
url.searchParams.set('s', value);
await navigate(`/${url.search}${url.hash}`);
await navigate(`${siteRoot}/${url.search}${url.hash}`);
};

store({
Expand All @@ -23,7 +25,7 @@ store({

if (value === '') {
// If the search is empty, navigate to the home page.
await navigate('/');
await navigate(siteRoot);
} else {
// If not, navigate to the new URL.
await updateURL(value);
Expand Down