My sapper app revolves around a table component. This table component has state (offset, limit, sort, filters, etc) that I would like to represent in the query string of the URL.
The table works fine currently by directly updating its state:
<button on:click="{() => offset += limit}" disabled="{offset + rows.length >= count}">»</button>
I see that there is the page read-only store which can give me access to the current value of the query string. I imagine I can use something like URLSearchParams
to generate links with the relevant value updated.
Is there a better way of handling this (some way of directly binding variables to the query string)? If not, what would be the best way to generate the links with the updated query strings?
EDIT:
My current solution is the following function:
const getLink = queryStringDiff => {
const query = $page.query;
const path = $page.path;
const str = Object.entries({...query, ...queryStringDiff}).reduce(
(acc, cur) => `${acc}&${cur[0]}=${cur[1]}`, ''
).replace('&', '?');
return `${path}${str}`;
}
Which I reference in an a
tag replacing the above button with:
href="{getLink({'offset': (offset - limit)})}"
It works, but I feel like there should be a better way