Spaces:
Runtime error
Runtime error
File size: 44,565 Bytes
ec3efd7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 |
import { onMount, tick } from 'svelte';
import { writable } from 'svelte/store';
import { assets, set_paths } from '../paths.js';
import Root from '__GENERATED__/root.svelte';
import { components, dictionary, matchers } from '__GENERATED__/client-manifest.js';
import { init } from './singletons.js';
/**
* @param {unknown} err
* @return {Error}
*/
function coalesce_to_error(err) {
return err instanceof Error ||
(err && /** @type {any} */ (err).name && /** @type {any} */ (err).message)
? /** @type {Error} */ (err)
: new Error(JSON.stringify(err));
}
/**
* @param {import('types').LoadOutput} loaded
* @returns {import('types').NormalizedLoadOutput}
*/
function normalize(loaded) {
// TODO remove for 1.0
// @ts-expect-error
if (loaded.fallthrough) {
throw new Error(
'fallthrough is no longer supported. Use matchers instead: https://kit.svelte.dev/docs/routing#advanced-routing-matching'
);
}
// TODO remove for 1.0
if ('maxage' in loaded) {
throw new Error('maxage should be replaced with cache: { maxage }');
}
const has_error_status =
loaded.status && loaded.status >= 400 && loaded.status <= 599 && !loaded.redirect;
if (loaded.error || has_error_status) {
const status = loaded.status;
if (!loaded.error && has_error_status) {
return { status: status || 500, error: new Error() };
}
const error = typeof loaded.error === 'string' ? new Error(loaded.error) : loaded.error;
if (!(error instanceof Error)) {
return {
status: 500,
error: new Error(
`"error" property returned from load() must be a string or instance of Error, received type "${typeof error}"`
)
};
}
if (!status || status < 400 || status > 599) {
console.warn('"error" returned from load() without a valid status code — defaulting to 500');
return { status: 500, error };
}
return { status, error };
}
if (loaded.redirect) {
if (!loaded.status || Math.floor(loaded.status / 100) !== 3) {
throw new Error(
'"redirect" property returned from load() must be accompanied by a 3xx status code'
);
}
if (typeof loaded.redirect !== 'string') {
throw new Error('"redirect" property returned from load() must be a string');
}
}
if (loaded.dependencies) {
if (
!Array.isArray(loaded.dependencies) ||
loaded.dependencies.some((dep) => typeof dep !== 'string')
) {
throw new Error('"dependencies" property returned from load() must be of type string[]');
}
}
// TODO remove before 1.0
if (/** @type {any} */ (loaded).context) {
throw new Error(
'You are returning "context" from a load function. ' +
'"context" was renamed to "stuff", please adjust your code accordingly.'
);
}
return /** @type {import('types').NormalizedLoadOutput} */ (loaded);
}
/**
* @param {string} path
* @param {import('types').TrailingSlash} trailing_slash
*/
function normalize_path(path, trailing_slash) {
if (path === '/' || trailing_slash === 'ignore') return path;
if (trailing_slash === 'never') {
return path.endsWith('/') ? path.slice(0, -1) : path;
} else if (trailing_slash === 'always' && !path.endsWith('/')) {
return path + '/';
}
return path;
}
class LoadURL extends URL {
/** @returns {string} */
get hash() {
throw new Error(
'url.hash is inaccessible from load. Consider accessing hash from the page store within the script tag of your component.'
);
}
}
/** @param {HTMLDocument} doc */
function get_base_uri(doc) {
let baseURI = doc.baseURI;
if (!baseURI) {
const baseTags = doc.getElementsByTagName('base');
baseURI = baseTags.length ? baseTags[0].href : doc.URL;
}
return baseURI;
}
function scroll_state() {
return {
x: pageXOffset,
y: pageYOffset
};
}
/** @param {Event} event */
function find_anchor(event) {
const node = event
.composedPath()
.find((e) => e instanceof Node && e.nodeName.toUpperCase() === 'A'); // SVG <a> elements have a lowercase name
return /** @type {HTMLAnchorElement | SVGAElement | undefined} */ (node);
}
/** @param {HTMLAnchorElement | SVGAElement} node */
function get_href(node) {
return node instanceof SVGAElement
? new URL(node.href.baseVal, document.baseURI)
: new URL(node.href);
}
/** @param {any} value */
function notifiable_store(value) {
const store = writable(value);
let ready = true;
function notify() {
ready = true;
store.update((val) => val);
}
/** @param {any} new_value */
function set(new_value) {
ready = false;
store.set(new_value);
}
/** @param {(value: any) => void} run */
function subscribe(run) {
/** @type {any} */
let old_value;
return store.subscribe((new_value) => {
if (old_value === undefined || (ready && new_value !== old_value)) {
run((old_value = new_value));
}
});
}
return { notify, set, subscribe };
}
function create_updated_store() {
const { set, subscribe } = writable(false);
const interval = +(
/** @type {string} */ (import.meta.env.VITE_SVELTEKIT_APP_VERSION_POLL_INTERVAL)
);
const initial = import.meta.env.VITE_SVELTEKIT_APP_VERSION;
/** @type {NodeJS.Timeout} */
let timeout;
async function check() {
if (import.meta.env.DEV || import.meta.env.SSR) return false;
clearTimeout(timeout);
if (interval) timeout = setTimeout(check, interval);
const file = import.meta.env.VITE_SVELTEKIT_APP_VERSION_FILE;
const res = await fetch(`${assets}/${file}`, {
headers: {
pragma: 'no-cache',
'cache-control': 'no-cache'
}
});
if (res.ok) {
const { version } = await res.json();
const updated = version !== initial;
if (updated) {
set(true);
clearTimeout(timeout);
}
return updated;
} else {
throw new Error(`Version check failed: ${res.status}`);
}
}
if (interval) timeout = setTimeout(check, interval);
return {
subscribe,
check
};
}
/**
* Hash using djb2
* @param {import('types').StrictBody} value
*/
function hash(value) {
let hash = 5381;
let i = value.length;
if (typeof value === 'string') {
while (i) hash = (hash * 33) ^ value.charCodeAt(--i);
} else {
while (i) hash = (hash * 33) ^ value[--i];
}
return (hash >>> 0).toString(36);
}
let loading = 0;
const native_fetch = window.fetch;
function lock_fetch() {
loading += 1;
}
function unlock_fetch() {
loading -= 1;
}
if (import.meta.env.DEV) {
let can_inspect_stack_trace = false;
const check_stack_trace = async () => {
const stack = /** @type {string} */ (new Error().stack);
can_inspect_stack_trace = stack.includes('check_stack_trace');
};
check_stack_trace();
window.fetch = (input, init) => {
const url = input instanceof Request ? input.url : input.toString();
const stack = /** @type {string} */ (new Error().stack);
const heuristic = can_inspect_stack_trace ? stack.includes('load_node') : loading;
if (heuristic) {
console.warn(
`Loading ${url} using \`window.fetch\`. For best results, use the \`fetch\` that is passed to your \`load\` function: https://kit.svelte.dev/docs/loading#input-fetch`
);
}
return native_fetch(input, init);
};
}
/**
* @param {RequestInfo} resource
* @param {RequestInit} [opts]
*/
function initial_fetch(resource, opts) {
const url = JSON.stringify(typeof resource === 'string' ? resource : resource.url);
let selector = `script[sveltekit\\:data-type="data"][sveltekit\\:data-url=${url}]`;
if (opts && typeof opts.body === 'string') {
selector += `[sveltekit\\:data-body="${hash(opts.body)}"]`;
}
const script = document.querySelector(selector);
if (script && script.textContent) {
const { body, ...init } = JSON.parse(script.textContent);
return Promise.resolve(new Response(body, init));
}
return native_fetch(resource, opts);
}
const param_pattern = /^(\.\.\.)?(\w+)(?:=(\w+))?$/;
/** @param {string} id */
function parse_route_id(id) {
/** @type {string[]} */
const names = [];
/** @type {string[]} */
const types = [];
// `/foo` should get an optional trailing slash, `/foo.json` should not
// const add_trailing_slash = !/\.[a-z]+$/.test(key);
let add_trailing_slash = true;
const pattern =
id === ''
? /^\/$/
: new RegExp(
`^${decodeURIComponent(id)
.split(/(?:@[a-zA-Z0-9_-]+)?(?:\/|$)/)
.map((segment, i, segments) => {
// special case — /[...rest]/ could contain zero segments
const match = /^\[\.\.\.(\w+)(?:=(\w+))?\]$/.exec(segment);
if (match) {
names.push(match[1]);
types.push(match[2]);
return '(?:/(.*))?';
}
const is_last = i === segments.length - 1;
return (
segment &&
'/' +
segment
.split(/\[(.+?)\]/)
.map((content, i) => {
if (i % 2) {
const [, rest, name, type] = /** @type {RegExpMatchArray} */ (
param_pattern.exec(content)
);
names.push(name);
types.push(type);
return rest ? '(.*?)' : '([^/]+?)';
}
if (is_last && content.includes('.')) add_trailing_slash = false;
return (
content // allow users to specify characters on the file system in an encoded manner
.normalize()
// We use [ and ] to denote parameters, so users must encode these on the file
// system to match against them. We don't decode all characters since others
// can already be epressed and so that '%' can be easily used directly in filenames
.replace(/%5[Bb]/g, '[')
.replace(/%5[Dd]/g, ']')
// '#', '/', and '?' can only appear in URL path segments in an encoded manner.
// They will not be touched by decodeURI so need to be encoded here, so
// that we can match against them.
// We skip '/' since you can't create a file with it on any OS
.replace(/#/g, '%23')
.replace(/\?/g, '%3F')
// escape characters that have special meaning in regex
.replace(/[.*+?^${}()|[\]\\]/g, '\\$&')
); // TODO handle encoding
})
.join('')
);
})
.join('')}${add_trailing_slash ? '/?' : ''}$`
);
return { pattern, names, types };
}
/**
* @param {RegExpMatchArray} match
* @param {string[]} names
* @param {string[]} types
* @param {Record<string, import('types').ParamMatcher>} matchers
*/
function exec(match, names, types, matchers) {
/** @type {Record<string, string>} */
const params = {};
for (let i = 0; i < names.length; i += 1) {
const name = names[i];
const type = types[i];
const value = match[i + 1] || '';
if (type) {
const matcher = matchers[type];
if (!matcher) throw new Error(`Missing "${type}" param matcher`); // TODO do this ahead of time?
if (!matcher(value)) return;
}
params[name] = value;
}
return params;
}
/**
* @param {import('types').CSRComponentLoader[]} components
* @param {Record<string, [number[], number[], 1?]>} dictionary
* @param {Record<string, (param: string) => boolean>} matchers
* @returns {import('types').CSRRoute[]}
*/
function parse(components, dictionary, matchers) {
const routes = Object.entries(dictionary).map(([id, [a, b, has_shadow]]) => {
const { pattern, names, types } = parse_route_id(id);
return {
id,
/** @param {string} path */
exec: (path) => {
const match = pattern.exec(path);
if (match) return exec(match, names, types, matchers);
},
a: a.map((n) => components[n]),
b: b.map((n) => components[n]),
has_shadow: !!has_shadow
};
});
return routes;
}
const SCROLL_KEY = 'sveltekit:scroll';
const INDEX_KEY = 'sveltekit:index';
const routes = parse(components, dictionary, matchers);
// we import the root layout/error components eagerly, so that
// connectivity errors after initialisation don't nuke the app
const default_layout = components[0]();
const default_error = components[1]();
const root_stuff = {};
// We track the scroll position associated with each history entry in sessionStorage,
// rather than on history.state itself, because when navigation is driven by
// popstate it's too late to update the scroll position associated with the
// state we're navigating from
/** @typedef {{ x: number, y: number }} ScrollPosition */
/** @type {Record<number, ScrollPosition>} */
let scroll_positions = {};
try {
scroll_positions = JSON.parse(sessionStorage[SCROLL_KEY]);
} catch {
// do nothing
}
/** @param {number} index */
function update_scroll_positions(index) {
scroll_positions[index] = scroll_state();
}
/**
* @param {{
* target: Element;
* session: App.Session;
* base: string;
* trailing_slash: import('types').TrailingSlash;
* }} opts
* @returns {import('./types').Client}
*/
function create_client({ target, session, base, trailing_slash }) {
/** @type {Map<string, import('./types').NavigationResult>} */
const cache = new Map();
/** @type {Array<((href: string) => boolean)>} */
const invalidated = [];
const stores = {
url: notifiable_store({}),
page: notifiable_store({}),
navigating: writable(/** @type {import('types').Navigation | null} */ (null)),
session: writable(session),
updated: create_updated_store()
};
/** @type {{id: string | null, promise: Promise<import('./types').NavigationResult | undefined> | null}} */
const load_cache = {
id: null,
promise: null
};
const callbacks = {
/** @type {Array<(opts: { from: URL, to: URL | null, cancel: () => void }) => void>} */
before_navigate: [],
/** @type {Array<(opts: { from: URL | null, to: URL }) => void>} */
after_navigate: []
};
/** @type {import('./types').NavigationState} */
let current = {
branch: [],
error: null,
session_id: 0,
stuff: root_stuff,
// @ts-ignore - we need the initial value to be null
url: null
};
let started = false;
let autoscroll = true;
let updating = false;
let session_id = 1;
/** @type {Promise<void> | null} */
let invalidating = null;
/** @type {import('svelte').SvelteComponent} */
let root;
/** @type {App.Session} */
let $session;
let ready = false;
stores.session.subscribe(async (value) => {
$session = value;
if (!ready) return;
session_id += 1;
update(new URL(location.href), [], true);
});
ready = true;
let router_enabled = true;
// keeping track of the history index in order to prevent popstate navigation events if needed
let current_history_index = history.state?.[INDEX_KEY];
if (!current_history_index) {
// we use Date.now() as an offset so that cross-document navigations
// within the app don't result in data loss
current_history_index = Date.now();
// create initial history entry, so we can return here
history.replaceState(
{ ...history.state, [INDEX_KEY]: current_history_index },
'',
location.href
);
}
// if we reload the page, or Cmd-Shift-T back to it,
// recover scroll position
const scroll = scroll_positions[current_history_index];
if (scroll) {
history.scrollRestoration = 'manual';
scrollTo(scroll.x, scroll.y);
}
let hash_navigating = false;
/** @type {import('types').Page} */
let page;
/** @type {{}} */
let token;
/**
* @param {string | URL} url
* @param {{ noscroll?: boolean; replaceState?: boolean; keepfocus?: boolean; state?: any }} opts
* @param {string[]} redirect_chain
*/
async function goto(
url,
{ noscroll = false, replaceState = false, keepfocus = false, state = {} },
redirect_chain
) {
if (typeof url === 'string') {
url = new URL(url, get_base_uri(document));
}
if (router_enabled) {
return navigate({
url,
scroll: noscroll ? scroll_state() : null,
keepfocus,
redirect_chain,
details: {
state,
replaceState
},
accepted: () => {},
blocked: () => {}
});
}
await native_navigation(url);
}
/** @param {URL} url */
async function prefetch(url) {
const intent = get_navigation_intent(url);
if (!intent) {
throw new Error('Attempted to prefetch a URL that does not belong to this app');
}
load_cache.promise = load_route(intent, false);
load_cache.id = intent.id;
return load_cache.promise;
}
/**
* Returns `true` if update completes, `false` if it is aborted
* @param {URL} url
* @param {string[]} redirect_chain
* @param {boolean} no_cache
* @param {{hash?: string, scroll: { x: number, y: number } | null, keepfocus: boolean, details: { replaceState: boolean, state: any } | null}} [opts]
* @param {() => void} [callback]
*/
async function update(url, redirect_chain, no_cache, opts, callback) {
const intent = get_navigation_intent(url);
const current_token = (token = {});
let navigation_result = intent && (await load_route(intent, no_cache));
if (
!navigation_result &&
url.origin === location.origin &&
url.pathname === location.pathname
) {
// this could happen in SPA fallback mode if the user navigated to
// `/non-existent-page`. if we fall back to reloading the page, it
// will create an infinite loop. so whereas we normally handle
// unknown routes by going to the server, in this special case
// we render a client-side error page instead
navigation_result = await load_root_error_page({
status: 404,
error: new Error(`Not found: ${url.pathname}`),
url,
routeId: null
});
}
if (!navigation_result) {
await native_navigation(url);
return false; // unnecessary, but TypeScript prefers it this way
}
// abort if user navigated during update
if (token !== current_token) return false;
invalidated.length = 0;
if (navigation_result.redirect) {
if (redirect_chain.length > 10 || redirect_chain.includes(url.pathname)) {
navigation_result = await load_root_error_page({
status: 500,
error: new Error('Redirect loop'),
url,
routeId: null
});
} else {
if (router_enabled) {
goto(new URL(navigation_result.redirect, url).href, {}, [
...redirect_chain,
url.pathname
]);
} else {
await native_navigation(new URL(navigation_result.redirect, location.href));
}
return false;
}
} else if (navigation_result.props?.page?.status >= 400) {
const updated = await stores.updated.check();
if (updated) {
await native_navigation(url);
}
}
updating = true;
if (opts && opts.details) {
const { details } = opts;
const change = details.replaceState ? 0 : 1;
details.state[INDEX_KEY] = current_history_index += change;
history[details.replaceState ? 'replaceState' : 'pushState'](details.state, '', url);
}
if (started) {
current = navigation_result.state;
if (navigation_result.props.page) {
navigation_result.props.page.url = url;
}
root.$set(navigation_result.props);
} else {
initialize(navigation_result);
}
// opts must be passed if we're navigating
if (opts) {
const { scroll, keepfocus } = opts;
if (!keepfocus) {
// Reset page selection and focus
// We try to mimic browsers' behaviour as closely as possible by targeting the
// first scrollable region, but unfortunately it's not a perfect match — e.g.
// shift-tabbing won't immediately cycle up from the end of the page on Chromium
// See https://html.spec.whatwg.org/multipage/interaction.html#get-the-focusable-area
const root = document.body;
const tabindex = root.getAttribute('tabindex');
getSelection()?.removeAllRanges();
root.tabIndex = -1;
root.focus({ preventScroll: true });
// restore `tabindex` as to prevent `root` from stealing input from elements
if (tabindex !== null) {
root.setAttribute('tabindex', tabindex);
} else {
root.removeAttribute('tabindex');
}
}
// need to render the DOM before we can scroll to the rendered elements
await tick();
if (autoscroll) {
const deep_linked = url.hash && document.getElementById(url.hash.slice(1));
if (scroll) {
scrollTo(scroll.x, scroll.y);
} else if (deep_linked) {
// Here we use `scrollIntoView` on the element instead of `scrollTo`
// because it natively supports the `scroll-margin` and `scroll-behavior`
// CSS properties.
deep_linked.scrollIntoView();
} else {
scrollTo(0, 0);
}
}
} else {
// in this case we're simply invalidating
await tick();
}
load_cache.promise = null;
load_cache.id = null;
autoscroll = true;
if (navigation_result.props.page) {
page = navigation_result.props.page;
}
const leaf_node = navigation_result.state.branch[navigation_result.state.branch.length - 1];
router_enabled = leaf_node?.module.router !== false;
if (callback) callback();
updating = false;
}
/** @param {import('./types').NavigationResult} result */
function initialize(result) {
current = result.state;
const style = document.querySelector('style[data-sveltekit]');
if (style) style.remove();
page = result.props.page;
root = new Root({
target,
props: { ...result.props, stores },
hydrate: true
});
if (router_enabled) {
const navigation = { from: null, to: new URL(location.href) };
callbacks.after_navigate.forEach((fn) => fn(navigation));
}
started = true;
}
/**
*
* @param {{
* url: URL;
* params: Record<string, string>;
* stuff: Record<string, any>;
* branch: Array<import('./types').BranchNode | undefined>;
* status: number;
* error: Error | null;
* routeId: string | null;
* }} opts
*/
async function get_navigation_result_from_branch({
url,
params,
stuff,
branch,
status,
error,
routeId
}) {
const filtered = /** @type {import('./types').BranchNode[] } */ (branch.filter(Boolean));
const redirect = filtered.find((f) => f.loaded?.redirect);
/** @type {import('./types').NavigationResult} */
const result = {
redirect: redirect?.loaded?.redirect,
state: {
url,
params,
branch,
error,
stuff,
session_id
},
props: {
components: filtered.map((node) => node.module.default)
}
};
for (let i = 0; i < filtered.length; i += 1) {
const loaded = filtered[i].loaded;
result.props[`props_${i}`] = loaded ? await loaded.props : null;
}
const page_changed =
!current.url ||
url.href !== current.url.href ||
current.error !== error ||
current.stuff !== stuff;
if (page_changed) {
result.props.page = { error, params, routeId, status, stuff, url };
// TODO remove this for 1.0
/**
* @param {string} property
* @param {string} replacement
*/
const print_error = (property, replacement) => {
Object.defineProperty(result.props.page, property, {
get: () => {
throw new Error(`$page.${property} has been replaced by $page.url.${replacement}`);
}
});
};
print_error('origin', 'origin');
print_error('path', 'pathname');
print_error('query', 'searchParams');
}
const leaf = filtered[filtered.length - 1];
const load_cache = leaf?.loaded?.cache;
if (load_cache) {
const key = url.pathname + url.search; // omit hash
let ready = false;
const clear = () => {
if (cache.get(key) === result) {
cache.delete(key);
}
unsubscribe();
clearTimeout(timeout);
};
const timeout = setTimeout(clear, load_cache.maxage * 1000);
const unsubscribe = stores.session.subscribe(() => {
if (ready) clear();
});
ready = true;
cache.set(key, result);
}
return result;
}
/**
* @param {{
* status?: number;
* error?: Error;
* module: import('types').CSRComponent;
* url: URL;
* params: Record<string, string>;
* stuff: Record<string, any>;
* props?: Record<string, any>;
* routeId: string | null;
* }} options
*/
async function load_node({ status, error, module, url, params, stuff, props, routeId }) {
/** @type {import('./types').BranchNode} */
const node = {
module,
uses: {
params: new Set(),
url: false,
session: false,
stuff: false,
dependencies: new Set()
},
loaded: null,
stuff
};
/** @param dep {string} */
function add_dependency(dep) {
const { href } = new URL(dep, url);
node.uses.dependencies.add(href);
}
if (props) {
// shadow endpoint props means we need to mark this URL as a dependency of itself
node.uses.dependencies.add(url.href);
}
/** @type {Record<string, string>} */
const uses_params = {};
for (const key in params) {
Object.defineProperty(uses_params, key, {
get() {
node.uses.params.add(key);
return params[key];
},
enumerable: true
});
}
const session = $session;
const load_url = new LoadURL(url);
if (module.load) {
/** @type {import('types').LoadEvent} */
const load_input = {
routeId,
params: uses_params,
props: props || {},
get url() {
node.uses.url = true;
return load_url;
},
get session() {
node.uses.session = true;
return session;
},
get stuff() {
node.uses.stuff = true;
return { ...stuff };
},
async fetch(resource, init) {
let requested;
if (typeof resource === 'string') {
requested = resource;
} else {
requested = resource.url;
// we're not allowed to modify the received `Request` object, so in order
// to fixup relative urls we create a new equivalent `init` object instead
init = {
// the request body must be consumed in memory until browsers
// implement streaming request bodies and/or the body getter
body:
resource.method === 'GET' || resource.method === 'HEAD'
? undefined
: await resource.blob(),
cache: resource.cache,
credentials: resource.credentials,
headers: resource.headers,
integrity: resource.integrity,
keepalive: resource.keepalive,
method: resource.method,
mode: resource.mode,
redirect: resource.redirect,
referrer: resource.referrer,
referrerPolicy: resource.referrerPolicy,
signal: resource.signal,
...init
};
}
// we must fixup relative urls so they are resolved from the target page
const normalized = new URL(requested, url).href;
add_dependency(normalized);
// prerendered pages may be served from any origin, so `initial_fetch` urls shouldn't be normalized
return started ? native_fetch(normalized, init) : initial_fetch(requested, init);
},
status: status ?? null,
error: error ?? null
};
if (import.meta.env.DEV) {
// TODO remove this for 1.0
Object.defineProperty(load_input, 'page', {
get: () => {
throw new Error('`page` in `load` functions has been replaced by `url` and `params`');
}
});
}
let loaded;
if (import.meta.env.DEV) {
try {
lock_fetch();
loaded = await module.load.call(null, load_input);
} finally {
unlock_fetch();
}
} else {
loaded = await module.load.call(null, load_input);
}
if (!loaded) {
throw new Error('load function must return a value');
}
node.loaded = normalize(loaded);
if (node.loaded.stuff) node.stuff = node.loaded.stuff;
if (node.loaded.dependencies) {
node.loaded.dependencies.forEach(add_dependency);
}
} else if (props) {
node.loaded = normalize({ props });
}
return node;
}
/**
* @param {import('./types').NavigationIntent} intent
* @param {boolean} no_cache
*/
async function load_route({ id, url, params, route }, no_cache) {
if (load_cache.id === id && load_cache.promise) {
return load_cache.promise;
}
if (!no_cache) {
const cached = cache.get(id);
if (cached) return cached;
}
const { a, b, has_shadow } = route;
const changed = current.url && {
url: id !== current.url.pathname + current.url.search,
params: Object.keys(params).filter((key) => current.params[key] !== params[key]),
session: session_id !== current.session_id
};
/** @type {Array<import('./types').BranchNode | undefined>} */
let branch = [];
/** @type {Record<string, any>} */
let stuff = root_stuff;
let stuff_changed = false;
/** @type {number | undefined} */
let status = 200;
/** @type {Error | null} */
let error = null;
// preload modules to avoid waterfall, but handle rejections
// so they don't get reported to Sentry et al (we don't need
// to act on the failures at this point)
a.forEach((loader) => loader().catch(() => {}));
load: for (let i = 0; i < a.length; i += 1) {
/** @type {import('./types').BranchNode | undefined} */
let node;
try {
if (!a[i]) continue;
const module = await a[i]();
const previous = current.branch[i];
const changed_since_last_render =
!previous ||
module !== previous.module ||
(changed.url && previous.uses.url) ||
changed.params.some((param) => previous.uses.params.has(param)) ||
(changed.session && previous.uses.session) ||
Array.from(previous.uses.dependencies).some((dep) => invalidated.some((fn) => fn(dep))) ||
(stuff_changed && previous.uses.stuff);
if (changed_since_last_render) {
/** @type {Record<string, any>} */
let props = {};
const is_shadow_page = has_shadow && i === a.length - 1;
if (is_shadow_page) {
const res = await native_fetch(
`${url.pathname}${url.pathname.endsWith('/') ? '' : '/'}__data.json${url.search}`,
{
headers: {
'x-sveltekit-load': 'true'
}
}
);
if (res.ok) {
const redirect = res.headers.get('x-sveltekit-location');
if (redirect) {
return {
redirect,
props: {},
state: current
};
}
props = res.status === 204 ? {} : await res.json();
} else {
status = res.status;
error = new Error('Failed to load data');
}
}
if (!error) {
node = await load_node({
module,
url,
params,
props,
stuff,
routeId: route.id
});
}
if (node) {
if (is_shadow_page) {
node.uses.url = true;
}
if (node.loaded) {
if (node.loaded.error) {
status = node.loaded.status;
error = node.loaded.error;
}
if (node.loaded.redirect) {
return {
redirect: node.loaded.redirect,
props: {},
state: current
};
}
if (node.loaded.stuff) {
stuff_changed = true;
}
}
}
} else {
node = previous;
}
} catch (e) {
status = 500;
error = coalesce_to_error(e);
}
if (error) {
while (i--) {
if (b[i]) {
let error_loaded;
/** @type {import('./types').BranchNode | undefined} */
let node_loaded;
let j = i;
while (!(node_loaded = branch[j])) {
j -= 1;
}
try {
error_loaded = await load_node({
status,
error,
module: await b[i](),
url,
params,
stuff: node_loaded.stuff,
routeId: route.id
});
if (error_loaded?.loaded?.error) {
continue;
}
if (error_loaded?.loaded?.stuff) {
stuff = {
...stuff,
...error_loaded.loaded.stuff
};
}
branch = branch.slice(0, j + 1).concat(error_loaded);
break load;
} catch (e) {
continue;
}
}
}
return await load_root_error_page({
status,
error,
url,
routeId: route.id
});
} else {
if (node?.loaded?.stuff) {
stuff = {
...stuff,
...node.loaded.stuff
};
}
branch.push(node);
}
}
return await get_navigation_result_from_branch({
url,
params,
stuff,
branch,
status,
error,
routeId: route.id
});
}
/**
* @param {{
* status: number;
* error: Error;
* url: URL;
* routeId: string | null
* }} opts
*/
async function load_root_error_page({ status, error, url, routeId }) {
/** @type {Record<string, string>} */
const params = {}; // error page does not have params
const root_layout = await load_node({
module: await default_layout,
url,
params,
stuff: {},
routeId
});
const root_error = await load_node({
status,
error,
module: await default_error,
url,
params,
stuff: (root_layout && root_layout.loaded && root_layout.loaded.stuff) || {},
routeId
});
return await get_navigation_result_from_branch({
url,
params,
stuff: {
...root_layout?.loaded?.stuff,
...root_error?.loaded?.stuff
},
branch: [root_layout, root_error],
status,
error,
routeId
});
}
/** @param {URL} url */
function get_navigation_intent(url) {
if (url.origin !== location.origin || !url.pathname.startsWith(base)) return;
const path = decodeURI(url.pathname.slice(base.length) || '/');
for (const route of routes) {
const params = route.exec(path);
if (params) {
/** @type {import('./types').NavigationIntent} */
const intent = {
id: url.pathname + url.search,
route,
params,
url
};
return intent;
}
}
}
/**
* @param {{
* url: URL;
* scroll: { x: number, y: number } | null;
* keepfocus: boolean;
* redirect_chain: string[];
* details: {
* replaceState: boolean;
* state: any;
* } | null;
* accepted: () => void;
* blocked: () => void;
* }} opts
*/
async function navigate({ url, scroll, keepfocus, redirect_chain, details, accepted, blocked }) {
const from = current.url;
let should_block = false;
const navigation = {
from,
to: url,
cancel: () => (should_block = true)
};
callbacks.before_navigate.forEach((fn) => fn(navigation));
if (should_block) {
blocked();
return;
}
const pathname = normalize_path(url.pathname, trailing_slash);
const normalized = new URL(url.origin + pathname + url.search + url.hash);
update_scroll_positions(current_history_index);
accepted();
if (started) {
stores.navigating.set({
from: current.url,
to: normalized
});
}
await update(
normalized,
redirect_chain,
false,
{
scroll,
keepfocus,
details
},
() => {
const navigation = { from, to: normalized };
callbacks.after_navigate.forEach((fn) => fn(navigation));
stores.navigating.set(null);
}
);
}
/**
* Loads `href` the old-fashioned way, with a full page reload.
* Returns a `Promise` that never resolves (to prevent any
* subsequent work, e.g. history manipulation, from happening)
* @param {URL} url
*/
function native_navigation(url) {
location.href = url.href;
return new Promise(() => {});
}
if (import.meta.hot) {
import.meta.hot.on('vite:beforeUpdate', () => {
if (current.error) location.reload();
});
}
return {
after_navigate: (fn) => {
onMount(() => {
callbacks.after_navigate.push(fn);
return () => {
const i = callbacks.after_navigate.indexOf(fn);
callbacks.after_navigate.splice(i, 1);
};
});
},
before_navigate: (fn) => {
onMount(() => {
callbacks.before_navigate.push(fn);
return () => {
const i = callbacks.before_navigate.indexOf(fn);
callbacks.before_navigate.splice(i, 1);
};
});
},
disable_scroll_handling: () => {
if (import.meta.env.DEV && started && !updating) {
throw new Error('Can only disable scroll handling during navigation');
}
if (updating || !started) {
autoscroll = false;
}
},
goto: (href, opts = {}) => goto(href, opts, []),
invalidate: (resource) => {
if (typeof resource === 'function') {
invalidated.push(resource);
} else {
const { href } = new URL(resource, location.href);
invalidated.push((dep) => dep === href);
}
if (!invalidating) {
invalidating = Promise.resolve().then(async () => {
await update(new URL(location.href), [], true);
invalidating = null;
});
}
return invalidating;
},
prefetch: async (href) => {
const url = new URL(href, get_base_uri(document));
await prefetch(url);
},
// TODO rethink this API
prefetch_routes: async (pathnames) => {
const matching = pathnames
? routes.filter((route) => pathnames.some((pathname) => route.exec(pathname)))
: routes;
const promises = matching.map((r) => Promise.all(r.a.map((load) => load())));
await Promise.all(promises);
},
_start_router: () => {
history.scrollRestoration = 'manual';
// Adopted from Nuxt.js
// Reset scrollRestoration to auto when leaving page, allowing page reload
// and back-navigation from other pages to use the browser to restore the
// scrolling position.
addEventListener('beforeunload', (e) => {
let should_block = false;
const navigation = {
from: current.url,
to: null,
cancel: () => (should_block = true)
};
callbacks.before_navigate.forEach((fn) => fn(navigation));
if (should_block) {
e.preventDefault();
e.returnValue = '';
} else {
history.scrollRestoration = 'auto';
}
});
addEventListener('visibilitychange', () => {
if (document.visibilityState === 'hidden') {
update_scroll_positions(current_history_index);
try {
sessionStorage[SCROLL_KEY] = JSON.stringify(scroll_positions);
} catch {
// do nothing
}
}
});
/** @param {Event} event */
const trigger_prefetch = (event) => {
const a = find_anchor(event);
if (a && a.href && a.hasAttribute('sveltekit:prefetch')) {
prefetch(get_href(a));
}
};
/** @type {NodeJS.Timeout} */
let mousemove_timeout;
/** @param {MouseEvent|TouchEvent} event */
const handle_mousemove = (event) => {
clearTimeout(mousemove_timeout);
mousemove_timeout = setTimeout(() => {
// event.composedPath(), which is used in find_anchor, will be empty if the event is read in a timeout
// add a layer of indirection to address that
event.target?.dispatchEvent(
new CustomEvent('sveltekit:trigger_prefetch', { bubbles: true })
);
}, 20);
};
addEventListener('touchstart', trigger_prefetch);
addEventListener('mousemove', handle_mousemove);
addEventListener('sveltekit:trigger_prefetch', trigger_prefetch);
/** @param {MouseEvent} event */
addEventListener('click', (event) => {
if (!router_enabled) return;
// Adapted from https://github.com/visionmedia/page.js
// MIT license https://github.com/visionmedia/page.js#license
if (event.button || event.which !== 1) return;
if (event.metaKey || event.ctrlKey || event.shiftKey || event.altKey) return;
if (event.defaultPrevented) return;
const a = find_anchor(event);
if (!a) return;
if (!a.href) return;
const is_svg_a_element = a instanceof SVGAElement;
const url = get_href(a);
// Ignore if url does not have origin (e.g. `mailto:`, `tel:`.)
// MEMO: Without this condition, firefox will open mailer twice.
// See: https://github.com/sveltejs/kit/issues/4045
if (!is_svg_a_element && url.origin === 'null') return;
// Ignore if tag has
// 1. 'download' attribute
// 2. 'rel' attribute includes external
const rel = (a.getAttribute('rel') || '').split(/\s+/);
if (
a.hasAttribute('download') ||
rel.includes('external') ||
a.hasAttribute('sveltekit:reload')
) {
return;
}
// Ignore if <a> has a target
if (is_svg_a_element ? a.target.baseVal : a.target) return;
// Check if new url only differs by hash and use the browser default behavior in that case
// This will ensure the `hashchange` event is fired
// Removing the hash does a full page navigation in the browser, so make sure a hash is present
const [base, hash] = url.href.split('#');
if (hash !== undefined && base === location.href.split('#')[0]) {
// set this flag to distinguish between navigations triggered by
// clicking a hash link and those triggered by popstate
hash_navigating = true;
update_scroll_positions(current_history_index);
stores.page.set({ ...page, url });
stores.page.notify();
return;
}
navigate({
url,
scroll: a.hasAttribute('sveltekit:noscroll') ? scroll_state() : null,
keepfocus: false,
redirect_chain: [],
details: {
state: {},
replaceState: url.href === location.href
},
accepted: () => event.preventDefault(),
blocked: () => event.preventDefault()
});
});
addEventListener('popstate', (event) => {
if (event.state && router_enabled) {
// if a popstate-driven navigation is cancelled, we need to counteract it
// with history.go, which means we end up back here, hence this check
if (event.state[INDEX_KEY] === current_history_index) return;
navigate({
url: new URL(location.href),
scroll: scroll_positions[event.state[INDEX_KEY]],
keepfocus: false,
redirect_chain: [],
details: null,
accepted: () => {
current_history_index = event.state[INDEX_KEY];
},
blocked: () => {
const delta = current_history_index - event.state[INDEX_KEY];
history.go(delta);
}
});
}
});
addEventListener('hashchange', () => {
// if the hashchange happened as a result of clicking on a link,
// we need to update history, otherwise we have to leave it alone
if (hash_navigating) {
hash_navigating = false;
history.replaceState(
{ ...history.state, [INDEX_KEY]: ++current_history_index },
'',
location.href
);
}
});
},
_hydrate: async ({ status, error, nodes, params, routeId }) => {
const url = new URL(location.href);
/** @type {Array<import('./types').BranchNode | undefined>} */
const branch = [];
/** @type {Record<string, any>} */
let stuff = {};
/** @type {import('./types').NavigationResult | undefined} */
let result;
let error_args;
try {
for (let i = 0; i < nodes.length; i += 1) {
const is_leaf = i === nodes.length - 1;
let props;
if (is_leaf) {
const serialized = document.querySelector('script[sveltekit\\:data-type="props"]');
if (serialized) {
props = JSON.parse(/** @type {string} */ (serialized.textContent));
}
}
const node = await load_node({
module: await components[nodes[i]](),
url,
params,
stuff,
status: is_leaf ? status : undefined,
error: is_leaf ? error : undefined,
props,
routeId
});
if (props) {
node.uses.dependencies.add(url.href);
node.uses.url = true;
}
branch.push(node);
if (node && node.loaded) {
if (node.loaded.error) {
if (error) throw node.loaded.error;
error_args = {
status: node.loaded.status,
error: node.loaded.error,
url,
routeId
};
} else if (node.loaded.stuff) {
stuff = {
...stuff,
...node.loaded.stuff
};
}
}
}
result = error_args
? await load_root_error_page(error_args)
: await get_navigation_result_from_branch({
url,
params,
stuff,
branch,
status,
error,
routeId
});
} catch (e) {
if (error) throw e;
result = await load_root_error_page({
status: 500,
error: coalesce_to_error(e),
url,
routeId
});
}
if (result.redirect) {
// this is a real edge case — `load` would need to return
// a redirect but only in the browser
await native_navigation(new URL(result.redirect, location.href));
}
initialize(result);
}
};
}
/**
* @param {{
* paths: {
* assets: string;
* base: string;
* },
* target: Element;
* session: any;
* route: boolean;
* spa: boolean;
* trailing_slash: import('types').TrailingSlash;
* hydrate: {
* status: number;
* error: Error;
* nodes: number[];
* params: Record<string, string>;
* routeId: string | null;
* };
* }} opts
*/
async function start({ paths, target, session, route, spa, trailing_slash, hydrate }) {
const client = create_client({
target,
session,
base: paths.base,
trailing_slash
});
init({ client });
set_paths(paths);
if (hydrate) {
await client._hydrate(hydrate);
}
if (route) {
if (spa) client.goto(location.href, { replaceState: true });
client._start_router();
}
dispatchEvent(new CustomEvent('sveltekit:start'));
}
export { start };
|