File size: 77,763 Bytes
1e92f2d |
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 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 |
// tslint:disable:no-console
import type { ComponentType } from 'react'
import type { DomainLocale } from '../../../server/config'
import type { MittEmitter } from '../mitt'
import type { ParsedUrlQuery } from 'querystring'
import type { RouterEvent } from '../../../client/router'
import type { StyleSheetTuple } from '../../../client/page-loader'
import type { UrlObject } from 'url'
import type PageLoader from '../../../client/page-loader'
import type { AppContextType, NextPageContext, NEXT_DATA } from '../utils'
import { removeTrailingSlash } from './utils/remove-trailing-slash'
import {
getClientBuildManifest,
isAssetError,
markAssetError,
} from '../../../client/route-loader'
import { handleClientScriptLoad } from '../../../client/script'
import isError, { getProperError } from '../../../lib/is-error'
import { denormalizePagePath } from '../page-path/denormalize-page-path'
import { normalizeLocalePath } from '../i18n/normalize-locale-path'
import mitt from '../mitt'
import { getLocationOrigin, getURL, loadGetInitialProps, ST } from '../utils'
import { isDynamicRoute } from './utils/is-dynamic'
import { parseRelativeUrl } from './utils/parse-relative-url'
import { getRouteMatcher } from './utils/route-matcher'
import { getRouteRegex } from './utils/route-regex'
import { formatWithValidation } from './utils/format-url'
import { detectDomainLocale } from '../../../client/detect-domain-locale'
import { parsePath } from './utils/parse-path'
import { addLocale } from '../../../client/add-locale'
import { removeLocale } from '../../../client/remove-locale'
import { removeBasePath } from '../../../client/remove-base-path'
import { addBasePath } from '../../../client/add-base-path'
import { hasBasePath } from '../../../client/has-base-path'
import { resolveHref } from '../../../client/resolve-href'
import { isAPIRoute } from '../../../lib/is-api-route'
import { getNextPathnameInfo } from './utils/get-next-pathname-info'
import { formatNextPathnameInfo } from './utils/format-next-pathname-info'
import { compareRouterStates } from './utils/compare-states'
import { isLocalURL } from './utils/is-local-url'
import { isBot } from './utils/is-bot'
import { omit } from './utils/omit'
import { interpolateAs } from './utils/interpolate-as'
import { disableSmoothScrollDuringRouteTransition } from './utils/disable-smooth-scroll'
import type { Params } from '../../../server/request/params'
import { MATCHED_PATH_HEADER } from '../../../lib/constants'
let resolveRewrites: typeof import('./utils/resolve-rewrites').default
if (process.env.__NEXT_HAS_REWRITES) {
resolveRewrites = (
require('./utils/resolve-rewrites') as typeof import('./utils/resolve-rewrites')
).default
}
declare global {
interface Window {
/* prod */
__NEXT_DATA__: NEXT_DATA
}
}
interface RouteProperties {
shallow: boolean
}
interface TransitionOptions {
shallow?: boolean
locale?: string | false
scroll?: boolean
unstable_skipClientCache?: boolean
}
interface NextHistoryState {
url: string
as: string
options: TransitionOptions
}
export type HistoryState =
| null
| { __NA: true; __N?: false }
| { __N: false; __NA?: false }
| ({ __NA?: false; __N: true; key: string } & NextHistoryState)
function buildCancellationError() {
return Object.assign(new Error('Route Cancelled'), {
cancelled: true,
})
}
interface MiddlewareEffectParams<T extends FetchDataOutput> {
fetchData?: () => Promise<T>
locale?: string
asPath: string
router: Router
}
export async function matchesMiddleware<T extends FetchDataOutput>(
options: MiddlewareEffectParams<T>
): Promise<boolean> {
const matchers = await Promise.resolve(
options.router.pageLoader.getMiddleware()
)
if (!matchers) return false
const { pathname: asPathname } = parsePath(options.asPath)
// remove basePath first since path prefix has to be in the order of `/${basePath}/${locale}`
const cleanedAs = hasBasePath(asPathname)
? removeBasePath(asPathname)
: asPathname
const asWithBasePathAndLocale = addBasePath(
addLocale(cleanedAs, options.locale)
)
// Check only path match on client. Matching "has" should be done on server
// where we can access more info such as headers, HttpOnly cookie, etc.
return matchers.some((m) =>
new RegExp(m.regexp).test(asWithBasePathAndLocale)
)
}
function stripOrigin(url: string) {
const origin = getLocationOrigin()
return url.startsWith(origin) ? url.substring(origin.length) : url
}
function prepareUrlAs(router: NextRouter, url: Url, as?: Url) {
// If url and as provided as an object representation,
// we'll format them into the string version here.
let [resolvedHref, resolvedAs] = resolveHref(router, url, true)
const origin = getLocationOrigin()
const hrefWasAbsolute = resolvedHref.startsWith(origin)
const asWasAbsolute = resolvedAs && resolvedAs.startsWith(origin)
resolvedHref = stripOrigin(resolvedHref)
resolvedAs = resolvedAs ? stripOrigin(resolvedAs) : resolvedAs
const preparedUrl = hrefWasAbsolute ? resolvedHref : addBasePath(resolvedHref)
const preparedAs = as
? stripOrigin(resolveHref(router, as))
: resolvedAs || resolvedHref
return {
url: preparedUrl,
as: asWasAbsolute ? preparedAs : addBasePath(preparedAs),
}
}
function resolveDynamicRoute(pathname: string, pages: string[]) {
const cleanPathname = removeTrailingSlash(denormalizePagePath(pathname))
if (cleanPathname === '/404' || cleanPathname === '/_error') {
return pathname
}
// handle resolving href for dynamic routes
if (!pages.includes(cleanPathname)) {
// eslint-disable-next-line array-callback-return
pages.some((page) => {
if (isDynamicRoute(page) && getRouteRegex(page).re.test(cleanPathname)) {
pathname = page
return true
}
})
}
return removeTrailingSlash(pathname)
}
function getMiddlewareData<T extends FetchDataOutput>(
source: string,
response: Response,
options: MiddlewareEffectParams<T>
) {
const nextConfig = {
basePath: options.router.basePath,
i18n: { locales: options.router.locales },
trailingSlash: Boolean(process.env.__NEXT_TRAILING_SLASH),
}
const rewriteHeader = response.headers.get('x-nextjs-rewrite')
let rewriteTarget =
rewriteHeader || response.headers.get('x-nextjs-matched-path')
const matchedPath = response.headers.get(MATCHED_PATH_HEADER)
if (
matchedPath &&
!rewriteTarget &&
!matchedPath.includes('__next_data_catchall') &&
!matchedPath.includes('/_error') &&
!matchedPath.includes('/404')
) {
// leverage x-matched-path to detect next.config.js rewrites
rewriteTarget = matchedPath
}
if (rewriteTarget) {
if (
rewriteTarget.startsWith('/') ||
process.env.__NEXT_EXTERNAL_MIDDLEWARE_REWRITE_RESOLVE
) {
const parsedRewriteTarget = parseRelativeUrl(rewriteTarget)
const pathnameInfo = getNextPathnameInfo(parsedRewriteTarget.pathname, {
nextConfig,
parseData: true,
})
let fsPathname = removeTrailingSlash(pathnameInfo.pathname)
return Promise.all([
options.router.pageLoader.getPageList(),
getClientBuildManifest(),
]).then(([pages, { __rewrites: rewrites }]: any) => {
let as = addLocale(pathnameInfo.pathname, pathnameInfo.locale)
if (
isDynamicRoute(as) ||
(!rewriteHeader &&
pages.includes(
normalizeLocalePath(removeBasePath(as), options.router.locales)
.pathname
))
) {
const parsedSource = getNextPathnameInfo(
parseRelativeUrl(source).pathname,
{
nextConfig: process.env.__NEXT_HAS_REWRITES
? undefined
: nextConfig,
parseData: true,
}
)
as = addBasePath(parsedSource.pathname)
parsedRewriteTarget.pathname = as
}
if (process.env.__NEXT_HAS_REWRITES) {
const result = resolveRewrites(
as,
pages,
rewrites,
parsedRewriteTarget.query,
(path: string) => resolveDynamicRoute(path, pages),
options.router.locales
)
if (result.matchedPage) {
parsedRewriteTarget.pathname = result.parsedAs.pathname
as = parsedRewriteTarget.pathname
Object.assign(parsedRewriteTarget.query, result.parsedAs.query)
}
} else if (!pages.includes(fsPathname)) {
const resolvedPathname = resolveDynamicRoute(fsPathname, pages)
if (resolvedPathname !== fsPathname) {
fsPathname = resolvedPathname
}
}
const resolvedHref = !pages.includes(fsPathname)
? resolveDynamicRoute(
normalizeLocalePath(
removeBasePath(parsedRewriteTarget.pathname),
options.router.locales
).pathname,
pages
)
: fsPathname
if (isDynamicRoute(resolvedHref)) {
const matches = getRouteMatcher(getRouteRegex(resolvedHref))(as)
Object.assign(parsedRewriteTarget.query, matches || {})
}
return {
type: 'rewrite' as const,
parsedAs: parsedRewriteTarget,
resolvedHref,
}
})
}
const src = parsePath(source)
const pathname = formatNextPathnameInfo({
...getNextPathnameInfo(src.pathname, { nextConfig, parseData: true }),
defaultLocale: options.router.defaultLocale,
buildId: '',
})
return Promise.resolve({
type: 'redirect-external' as const,
destination: `${pathname}${src.query}${src.hash}`,
})
}
const redirectTarget = response.headers.get('x-nextjs-redirect')
if (redirectTarget) {
if (redirectTarget.startsWith('/')) {
const src = parsePath(redirectTarget)
const pathname = formatNextPathnameInfo({
...getNextPathnameInfo(src.pathname, { nextConfig, parseData: true }),
defaultLocale: options.router.defaultLocale,
buildId: '',
})
return Promise.resolve({
type: 'redirect-internal' as const,
newAs: `${pathname}${src.query}${src.hash}`,
newUrl: `${pathname}${src.query}${src.hash}`,
})
}
return Promise.resolve({
type: 'redirect-external' as const,
destination: redirectTarget,
})
}
return Promise.resolve({ type: 'next' as const })
}
interface WithMiddlewareEffectsOutput extends FetchDataOutput {
effect: Awaited<ReturnType<typeof getMiddlewareData>>
}
async function withMiddlewareEffects<T extends FetchDataOutput>(
options: MiddlewareEffectParams<T>
): Promise<WithMiddlewareEffectsOutput | null> {
const matches = await matchesMiddleware(options)
if (!matches || !options.fetchData) {
return null
}
const data = await options.fetchData()
const effect = await getMiddlewareData(data.dataHref, data.response, options)
return {
dataHref: data.dataHref,
json: data.json,
response: data.response,
text: data.text,
cacheKey: data.cacheKey,
effect,
}
}
export type Url = UrlObject | string
export type BaseRouter = {
route: string
pathname: string
query: ParsedUrlQuery
asPath: string
basePath: string
locale?: string | undefined
locales?: readonly string[] | undefined
defaultLocale?: string | undefined
domainLocales?: readonly DomainLocale[] | undefined
isLocaleDomain: boolean
}
export type NextRouter = BaseRouter &
Pick<
Router,
| 'push'
| 'replace'
| 'reload'
| 'back'
| 'forward'
| 'prefetch'
| 'beforePopState'
| 'events'
| 'isFallback'
| 'isReady'
| 'isPreview'
>
export type PrefetchOptions = {
priority?: boolean
locale?: string | false
unstable_skipClientCache?: boolean
}
export type PrivateRouteInfo =
| (Omit<CompletePrivateRouteInfo, 'styleSheets'> & { initial: true })
| CompletePrivateRouteInfo
export type CompletePrivateRouteInfo = {
Component: ComponentType
styleSheets: StyleSheetTuple[]
__N_SSG?: boolean
__N_SSP?: boolean
props?: Record<string, any>
err?: Error
error?: any
route?: string
resolvedAs?: string
query?: ParsedUrlQuery
}
export type AppProps = Pick<CompletePrivateRouteInfo, 'Component' | 'err'> & {
router: Router
} & Record<string, any>
export type AppComponent = ComponentType<AppProps>
type Subscription = (
data: PrivateRouteInfo,
App: AppComponent,
resetScroll: { x: number; y: number } | null
) => Promise<void>
type BeforePopStateCallback = (state: NextHistoryState) => boolean
type ComponentLoadCancel = (() => void) | null
type HistoryMethod = 'replaceState' | 'pushState'
const manualScrollRestoration =
process.env.__NEXT_SCROLL_RESTORATION &&
typeof window !== 'undefined' &&
'scrollRestoration' in window.history &&
!!(function () {
try {
let v = '__next'
// eslint-disable-next-line no-sequences
return sessionStorage.setItem(v, v), sessionStorage.removeItem(v), true
} catch (n) {}
})()
const SSG_DATA_NOT_FOUND = Symbol('SSG_DATA_NOT_FOUND')
function fetchRetry(
url: string,
attempts: number,
options: Pick<RequestInit, 'method' | 'headers'>
): Promise<Response> {
return fetch(url, {
// Cookies are required to be present for Next.js' SSG "Preview Mode".
// Cookies may also be required for `getServerSideProps`.
//
// > `fetch` won’t send cookies, unless you set the credentials init
// > option.
// https://developer.mozilla.org/docs/Web/API/Fetch_API/Using_Fetch
//
// > For maximum browser compatibility when it comes to sending &
// > receiving cookies, always supply the `credentials: 'same-origin'`
// > option instead of relying on the default.
// https://github.com/github/fetch#caveats
credentials: 'same-origin',
method: options.method || 'GET',
headers: Object.assign({}, options.headers, {
'x-nextjs-data': '1',
}),
}).then((response) => {
return !response.ok && attempts > 1 && response.status >= 500
? fetchRetry(url, attempts - 1, options)
: response
})
}
interface FetchDataOutput {
dataHref: string
json: Record<string, any> | null
response: Response
text: string
cacheKey: string
}
interface FetchNextDataParams {
dataHref: string
isServerRender: boolean
parseJSON: boolean | undefined
hasMiddleware?: boolean
inflightCache: NextDataCache
persistCache: boolean
isPrefetch: boolean
isBackground?: boolean
unstable_skipClientCache?: boolean
}
function tryToParseAsJSON(text: string) {
try {
return JSON.parse(text)
} catch (error) {
return null
}
}
function fetchNextData({
dataHref,
inflightCache,
isPrefetch,
hasMiddleware,
isServerRender,
parseJSON,
persistCache,
isBackground,
unstable_skipClientCache,
}: FetchNextDataParams): Promise<FetchDataOutput> {
const { href: cacheKey } = new URL(dataHref, window.location.href)
const getData = (params?: { method?: 'HEAD' | 'GET' }) =>
fetchRetry(dataHref, isServerRender ? 3 : 1, {
headers: Object.assign(
{} as HeadersInit,
isPrefetch ? { purpose: 'prefetch' } : {},
isPrefetch && hasMiddleware ? { 'x-middleware-prefetch': '1' } : {},
process.env.NEXT_DEPLOYMENT_ID
? { 'x-deployment-id': process.env.NEXT_DEPLOYMENT_ID }
: {}
),
method: params?.method ?? 'GET',
})
.then((response) => {
if (response.ok && params?.method === 'HEAD') {
return { dataHref, response, text: '', json: {}, cacheKey }
}
return response.text().then((text) => {
if (!response.ok) {
/**
* When the data response is a redirect because of a middleware
* we do not consider it an error. The headers must bring the
* mapped location.
* TODO: Change the status code in the handler.
*/
if (
hasMiddleware &&
[301, 302, 307, 308].includes(response.status)
) {
return { dataHref, response, text, json: {}, cacheKey }
}
if (response.status === 404) {
if (tryToParseAsJSON(text)?.notFound) {
return {
dataHref,
json: { notFound: SSG_DATA_NOT_FOUND },
response,
text,
cacheKey,
}
}
}
const error = new Error(`Failed to load static props`)
/**
* We should only trigger a server-side transition if this was
* caused on a client-side transition. Otherwise, we'd get into
* an infinite loop.
*/
if (!isServerRender) {
markAssetError(error)
}
throw error
}
return {
dataHref,
json: parseJSON ? tryToParseAsJSON(text) : null,
response,
text,
cacheKey,
}
})
})
.then((data) => {
if (
!persistCache ||
process.env.NODE_ENV !== 'production' ||
data.response.headers.get('x-middleware-cache') === 'no-cache'
) {
delete inflightCache[cacheKey]
}
return data
})
.catch((err) => {
if (!unstable_skipClientCache) {
delete inflightCache[cacheKey]
}
if (
// chrome
err.message === 'Failed to fetch' ||
// firefox
err.message === 'NetworkError when attempting to fetch resource.' ||
// safari
err.message === 'Load failed'
) {
markAssetError(err)
}
throw err
})
// when skipping client cache we wait to update
// inflight cache until successful data response
// this allows racing click event with fetching newer data
// without blocking navigation when stale data is available
if (unstable_skipClientCache && persistCache) {
return getData({}).then((data) => {
if (data.response.headers.get('x-middleware-cache') !== 'no-cache') {
// only update cache if not marked as no-cache
inflightCache[cacheKey] = Promise.resolve(data)
}
return data
})
}
if (inflightCache[cacheKey] !== undefined) {
return inflightCache[cacheKey]
}
return (inflightCache[cacheKey] = getData(
isBackground ? { method: 'HEAD' } : {}
))
}
interface NextDataCache {
[asPath: string]: Promise<FetchDataOutput>
}
export function createKey() {
return Math.random().toString(36).slice(2, 10)
}
function handleHardNavigation({
url,
router,
}: {
url: string
router: Router
}) {
// ensure we don't trigger a hard navigation to the same
// URL as this can end up with an infinite refresh
if (url === addBasePath(addLocale(router.asPath, router.locale))) {
throw new Error(
`Invariant: attempted to hard navigate to the same URL ${url} ${location.href}`
)
}
window.location.href = url
}
const getCancelledHandler = ({
route,
router,
}: {
route: string
router: Router
}) => {
let cancelled = false
const cancel = (router.clc = () => {
cancelled = true
})
const handleCancelled = () => {
if (cancelled) {
const error: any = new Error(
`Abort fetching component for route: "${route}"`
)
error.cancelled = true
throw error
}
if (cancel === router.clc) {
router.clc = null
}
}
return handleCancelled
}
export default class Router implements BaseRouter {
basePath: string
/**
* Map of all components loaded in `Router`
*/
components: { [pathname: string]: PrivateRouteInfo }
// Server Data Cache (full data requests)
sdc: NextDataCache = {}
// Server Background Cache (HEAD requests)
sbc: NextDataCache = {}
sub: Subscription
clc: ComponentLoadCancel
pageLoader: PageLoader
_bps: BeforePopStateCallback | undefined
events: MittEmitter<RouterEvent>
_wrapApp: (App: AppComponent) => any
isSsr: boolean
_inFlightRoute?: string | undefined
_shallow?: boolean | undefined
locales?: readonly string[] | undefined
defaultLocale?: string | undefined
domainLocales?: readonly DomainLocale[] | undefined
isReady: boolean
isLocaleDomain: boolean
isFirstPopStateEvent = true
_initialMatchesMiddlewarePromise: Promise<boolean>
// static entries filter
_bfl_s?: import('../../lib/bloom-filter').BloomFilter
// dynamic entires filter
_bfl_d?: import('../../lib/bloom-filter').BloomFilter
private state: Readonly<{
route: string
pathname: string
query: ParsedUrlQuery
asPath: string
locale: string | undefined
isFallback: boolean
isPreview: boolean
}>
private _key: string = createKey()
static events: MittEmitter<RouterEvent> = mitt()
constructor(
pathname: string,
query: ParsedUrlQuery,
as: string,
{
initialProps,
pageLoader,
App,
wrapApp,
Component,
err,
subscription,
isFallback,
locale,
locales,
defaultLocale,
domainLocales,
isPreview,
}: {
subscription: Subscription
initialProps: any
pageLoader: any
Component: ComponentType
App: AppComponent
wrapApp: (WrapAppComponent: AppComponent) => any
err?: Error
isFallback: boolean
locale?: string
locales?: readonly string[]
defaultLocale?: string
domainLocales?: readonly DomainLocale[]
isPreview?: boolean
}
) {
// represents the current component key
const route = removeTrailingSlash(pathname)
// set up the component cache (by route keys)
this.components = {}
// We should not keep the cache, if there's an error
// Otherwise, this cause issues when when going back and
// come again to the errored page.
if (pathname !== '/_error') {
this.components[route] = {
Component,
initial: true,
props: initialProps,
err,
__N_SSG: initialProps && initialProps.__N_SSG,
__N_SSP: initialProps && initialProps.__N_SSP,
}
}
this.components['/_app'] = {
Component: App as ComponentType,
styleSheets: [
/* /_app does not need its stylesheets managed */
],
}
// Backwards compat for Router.router.events
// TODO: Should be remove the following major version as it was never documented
this.events = Router.events
this.pageLoader = pageLoader
// if auto prerendered and dynamic route wait to update asPath
// until after mount to prevent hydration mismatch
const autoExportDynamic =
isDynamicRoute(pathname) && self.__NEXT_DATA__.autoExport
this.basePath = process.env.__NEXT_ROUTER_BASEPATH || ''
this.sub = subscription
this.clc = null
this._wrapApp = wrapApp
// make sure to ignore extra popState in safari on navigating
// back from external site
this.isSsr = true
this.isLocaleDomain = false
this.isReady = !!(
self.__NEXT_DATA__.gssp ||
self.__NEXT_DATA__.gip ||
self.__NEXT_DATA__.isExperimentalCompile ||
(self.__NEXT_DATA__.appGip && !self.__NEXT_DATA__.gsp) ||
(!autoExportDynamic &&
!self.location.search &&
!process.env.__NEXT_HAS_REWRITES)
)
if (process.env.__NEXT_I18N_SUPPORT) {
this.locales = locales
this.defaultLocale = defaultLocale
this.domainLocales = domainLocales
this.isLocaleDomain = !!detectDomainLocale(
domainLocales,
self.location.hostname
)
}
this.state = {
route,
pathname,
query,
asPath: autoExportDynamic ? pathname : as,
isPreview: !!isPreview,
locale: process.env.__NEXT_I18N_SUPPORT ? locale : undefined,
isFallback,
}
this._initialMatchesMiddlewarePromise = Promise.resolve(false)
if (typeof window !== 'undefined') {
// make sure "as" doesn't start with double slashes or else it can
// throw an error as it's considered invalid
if (!as.startsWith('//')) {
// in order for `e.state` to work on the `onpopstate` event
// we have to register the initial route upon initialization
const options: TransitionOptions = { locale }
const asPath = getURL()
this._initialMatchesMiddlewarePromise = matchesMiddleware({
router: this,
locale,
asPath,
}).then((matches) => {
// if middleware matches we leave resolving to the change function
// as the server needs to resolve for correct priority
;(options as any)._shouldResolveHref = as !== pathname
this.changeState(
'replaceState',
matches
? asPath
: formatWithValidation({
pathname: addBasePath(pathname),
query,
}),
asPath,
options
)
return matches
})
}
window.addEventListener('popstate', this.onPopState)
// enable custom scroll restoration handling when available
// otherwise fallback to browser's default handling
if (process.env.__NEXT_SCROLL_RESTORATION) {
if (manualScrollRestoration) {
window.history.scrollRestoration = 'manual'
}
}
}
}
onPopState = (e: PopStateEvent): void => {
const { isFirstPopStateEvent } = this
this.isFirstPopStateEvent = false
const state = e.state as HistoryState
if (!state) {
// We get state as undefined for two reasons.
// 1. With older safari (< 8) and older chrome (< 34)
// 2. When the URL changed with #
//
// In the both cases, we don't need to proceed and change the route.
// (as it's already changed)
// But we can simply replace the state with the new changes.
// Actually, for (1) we don't need to nothing. But it's hard to detect that event.
// So, doing the following for (1) does no harm.
const { pathname, query } = this
this.changeState(
'replaceState',
formatWithValidation({ pathname: addBasePath(pathname), query }),
getURL()
)
return
}
// __NA is used to identify if the history entry can be handled by the app-router.
if (state.__NA) {
window.location.reload()
return
}
if (!state.__N) {
return
}
// Safari fires popstateevent when reopening the browser.
if (
isFirstPopStateEvent &&
this.locale === state.options.locale &&
state.as === this.asPath
) {
return
}
let forcedScroll: { x: number; y: number } | undefined
const { url, as, options, key } = state
if (process.env.__NEXT_SCROLL_RESTORATION) {
if (manualScrollRestoration) {
if (this._key !== key) {
// Snapshot current scroll position:
try {
sessionStorage.setItem(
'__next_scroll_' + this._key,
JSON.stringify({ x: self.pageXOffset, y: self.pageYOffset })
)
} catch {}
// Restore old scroll position:
try {
const v = sessionStorage.getItem('__next_scroll_' + key)
forcedScroll = JSON.parse(v!)
} catch {
forcedScroll = { x: 0, y: 0 }
}
}
}
}
this._key = key
const { pathname } = parseRelativeUrl(url)
// Make sure we don't re-render on initial load,
// can be caused by navigating back from an external site
if (
this.isSsr &&
as === addBasePath(this.asPath) &&
pathname === addBasePath(this.pathname)
) {
return
}
// If the downstream application returns falsy, return.
// They will then be responsible for handling the event.
if (this._bps && !this._bps(state)) {
return
}
this.change(
'replaceState',
url,
as,
Object.assign<{}, TransitionOptions, TransitionOptions>({}, options, {
shallow: options.shallow && this._shallow,
locale: options.locale || this.defaultLocale,
// @ts-ignore internal value not exposed on types
_h: 0,
}),
forcedScroll
)
}
reload(): void {
window.location.reload()
}
/**
* Go back in history
*/
back() {
window.history.back()
}
/**
* Go forward in history
*/
forward() {
window.history.forward()
}
/**
* Performs a `pushState` with arguments
* @param url of the route
* @param as masks `url` for the browser
* @param options object you can define `shallow` and other options
*/
push(url: Url, as?: Url, options: TransitionOptions = {}) {
if (process.env.__NEXT_SCROLL_RESTORATION) {
// TODO: remove in the future when we update history before route change
// is complete, as the popstate event should handle this capture.
if (manualScrollRestoration) {
try {
// Snapshot scroll position right before navigating to a new page:
sessionStorage.setItem(
'__next_scroll_' + this._key,
JSON.stringify({ x: self.pageXOffset, y: self.pageYOffset })
)
} catch {}
}
}
;({ url, as } = prepareUrlAs(this, url, as))
return this.change('pushState', url, as, options)
}
/**
* Performs a `replaceState` with arguments
* @param url of the route
* @param as masks `url` for the browser
* @param options object you can define `shallow` and other options
*/
replace(url: Url, as?: Url, options: TransitionOptions = {}) {
;({ url, as } = prepareUrlAs(this, url, as))
return this.change('replaceState', url, as, options)
}
async _bfl(
as: string,
resolvedAs?: string,
locale?: string | false,
skipNavigate?: boolean
) {
if (process.env.__NEXT_CLIENT_ROUTER_FILTER_ENABLED) {
if (!this._bfl_s && !this._bfl_d) {
const { BloomFilter } =
require('../../lib/bloom-filter') as typeof import('../../lib/bloom-filter')
type Filter = ReturnType<
import('../../lib/bloom-filter').BloomFilter['export']
>
let staticFilterData: Filter | undefined
let dynamicFilterData: Filter | undefined
try {
;({
__routerFilterStatic: staticFilterData,
__routerFilterDynamic: dynamicFilterData,
} = (await getClientBuildManifest()) as any as {
__routerFilterStatic?: Filter
__routerFilterDynamic?: Filter
})
} catch (err) {
// failed to load build manifest hard navigate
// to be safe
console.error(err)
if (skipNavigate) {
return true
}
handleHardNavigation({
url: addBasePath(
addLocale(as, locale || this.locale, this.defaultLocale)
),
router: this,
})
return new Promise(() => {})
}
const routerFilterSValue: Filter | false = process.env
.__NEXT_CLIENT_ROUTER_S_FILTER as any
if (!staticFilterData && routerFilterSValue) {
staticFilterData = routerFilterSValue ? routerFilterSValue : undefined
}
const routerFilterDValue: Filter | false = process.env
.__NEXT_CLIENT_ROUTER_D_FILTER as any
if (!dynamicFilterData && routerFilterDValue) {
dynamicFilterData = routerFilterDValue
? routerFilterDValue
: undefined
}
if (staticFilterData?.numHashes) {
this._bfl_s = new BloomFilter(
staticFilterData.numItems,
staticFilterData.errorRate
)
this._bfl_s.import(staticFilterData)
}
if (dynamicFilterData?.numHashes) {
this._bfl_d = new BloomFilter(
dynamicFilterData.numItems,
dynamicFilterData.errorRate
)
this._bfl_d.import(dynamicFilterData)
}
}
let matchesBflStatic = false
let matchesBflDynamic = false
const pathsToCheck: Array<{ as?: string; allowMatchCurrent?: boolean }> =
[{ as }, { as: resolvedAs }]
for (const { as: curAs, allowMatchCurrent } of pathsToCheck) {
if (curAs) {
const asNoSlash = removeTrailingSlash(
new URL(curAs, 'http://n').pathname
)
const asNoSlashLocale = addBasePath(
addLocale(asNoSlash, locale || this.locale)
)
if (
allowMatchCurrent ||
asNoSlash !==
removeTrailingSlash(new URL(this.asPath, 'http://n').pathname)
) {
matchesBflStatic =
matchesBflStatic ||
!!this._bfl_s?.contains(asNoSlash) ||
!!this._bfl_s?.contains(asNoSlashLocale)
for (const normalizedAS of [asNoSlash, asNoSlashLocale]) {
// if any sub-path of as matches a dynamic filter path
// it should be hard navigated
const curAsParts = normalizedAS.split('/')
for (
let i = 0;
!matchesBflDynamic && i < curAsParts.length + 1;
i++
) {
const currentPart = curAsParts.slice(0, i).join('/')
if (currentPart && this._bfl_d?.contains(currentPart)) {
matchesBflDynamic = true
break
}
}
}
// if the client router filter is matched then we trigger
// a hard navigation
if (matchesBflStatic || matchesBflDynamic) {
if (skipNavigate) {
return true
}
handleHardNavigation({
url: addBasePath(
addLocale(as, locale || this.locale, this.defaultLocale)
),
router: this,
})
return new Promise(() => {})
}
}
}
}
}
return false
}
private async change(
method: HistoryMethod,
url: string,
as: string,
options: TransitionOptions,
forcedScroll?: { x: number; y: number }
): Promise<boolean> {
if (!isLocalURL(url)) {
handleHardNavigation({ url, router: this })
return false
}
// WARNING: `_h` is an internal option for handing Next.js client-side
// hydration. Your app should _never_ use this property. It may change at
// any time without notice.
const isQueryUpdating = (options as any)._h === 1
if (!isQueryUpdating && !options.shallow) {
await this._bfl(as, undefined, options.locale)
}
let shouldResolveHref =
isQueryUpdating ||
(options as any)._shouldResolveHref ||
parsePath(url).pathname === parsePath(as).pathname
const nextState = {
...this.state,
}
// for static pages with query params in the URL we delay
// marking the router ready until after the query is updated
// or a navigation has occurred
const readyStateChange = this.isReady !== true
this.isReady = true
const isSsr = this.isSsr
if (!isQueryUpdating) {
this.isSsr = false
}
// if a route transition is already in progress before
// the query updating is triggered ignore query updating
if (isQueryUpdating && this.clc) {
return false
}
const prevLocale = nextState.locale
if (process.env.__NEXT_I18N_SUPPORT) {
nextState.locale =
options.locale === false
? this.defaultLocale
: options.locale || nextState.locale
if (typeof options.locale === 'undefined') {
options.locale = nextState.locale
}
const parsedAs = parseRelativeUrl(
hasBasePath(as) ? removeBasePath(as) : as
)
const localePathResult = normalizeLocalePath(
parsedAs.pathname,
this.locales
)
if (localePathResult.detectedLocale) {
nextState.locale = localePathResult.detectedLocale
parsedAs.pathname = addBasePath(parsedAs.pathname)
as = formatWithValidation(parsedAs)
url = addBasePath(
normalizeLocalePath(
hasBasePath(url) ? removeBasePath(url) : url,
this.locales
).pathname
)
}
let didNavigate = false
// we need to wrap this in the env check again since regenerator runtime
// moves this on its own due to the return
if (process.env.__NEXT_I18N_SUPPORT) {
// if the locale isn't configured hard navigate to show 404 page
if (!this.locales?.includes(nextState.locale!)) {
parsedAs.pathname = addLocale(parsedAs.pathname, nextState.locale)
handleHardNavigation({
url: formatWithValidation(parsedAs),
router: this,
})
// this was previously a return but was removed in favor
// of better dead code elimination with regenerator runtime
didNavigate = true
}
}
const detectedDomain = detectDomainLocale(
this.domainLocales,
undefined,
nextState.locale
)
// we need to wrap this in the env check again since regenerator runtime
// moves this on its own due to the return
if (process.env.__NEXT_I18N_SUPPORT) {
// if we are navigating to a domain locale ensure we redirect to the
// correct domain
if (
!didNavigate &&
detectedDomain &&
this.isLocaleDomain &&
self.location.hostname !== detectedDomain.domain
) {
const asNoBasePath = removeBasePath(as)
handleHardNavigation({
url: `http${detectedDomain.http ? '' : 's'}://${
detectedDomain.domain
}${addBasePath(
`${
nextState.locale === detectedDomain.defaultLocale
? ''
: `/${nextState.locale}`
}${asNoBasePath === '/' ? '' : asNoBasePath}` || '/'
)}`,
router: this,
})
// this was previously a return but was removed in favor
// of better dead code elimination with regenerator runtime
didNavigate = true
}
}
if (didNavigate) {
return new Promise(() => {})
}
}
// marking route changes as a navigation start entry
if (ST) {
performance.mark('routeChange')
}
const { shallow = false, scroll = true } = options
const routeProps = { shallow }
if (this._inFlightRoute && this.clc) {
if (!isSsr) {
Router.events.emit(
'routeChangeError',
buildCancellationError(),
this._inFlightRoute,
routeProps
)
}
this.clc()
this.clc = null
}
as = addBasePath(
addLocale(
hasBasePath(as) ? removeBasePath(as) : as,
options.locale,
this.defaultLocale
)
)
const cleanedAs = removeLocale(
hasBasePath(as) ? removeBasePath(as) : as,
nextState.locale
)
this._inFlightRoute = as
const localeChange = prevLocale !== nextState.locale
// If the url change is only related to a hash change
// We should not proceed. We should only change the state.
if (!isQueryUpdating && this.onlyAHashChange(cleanedAs) && !localeChange) {
nextState.asPath = cleanedAs
Router.events.emit('hashChangeStart', as, routeProps)
// TODO: do we need the resolved href when only a hash change?
this.changeState(method, url, as, {
...options,
scroll: false,
})
if (scroll) {
this.scrollToHash(cleanedAs)
}
try {
await this.set(nextState, this.components[nextState.route], null)
} catch (err) {
if (isError(err) && err.cancelled) {
Router.events.emit('routeChangeError', err, cleanedAs, routeProps)
}
throw err
}
Router.events.emit('hashChangeComplete', as, routeProps)
return true
}
let parsed = parseRelativeUrl(url)
let { pathname, query } = parsed
// The build manifest needs to be loaded before auto-static dynamic pages
// get their query parameters to allow ensuring they can be parsed properly
// when rewritten to
let pages: string[], rewrites: any
try {
;[pages, { __rewrites: rewrites }] = await Promise.all([
this.pageLoader.getPageList(),
getClientBuildManifest(),
this.pageLoader.getMiddleware(),
])
} catch (err) {
// If we fail to resolve the page list or client-build manifest, we must
// do a server-side transition:
handleHardNavigation({ url: as, router: this })
return false
}
// If asked to change the current URL we should reload the current page
// (not location.reload() but reload getInitialProps and other Next.js stuffs)
// We also need to set the method = replaceState always
// as this should not go into the history (That's how browsers work)
// We should compare the new asPath to the current asPath, not the url
if (!this.urlIsNew(cleanedAs) && !localeChange) {
method = 'replaceState'
}
// we need to resolve the as value using rewrites for dynamic SSG
// pages to allow building the data URL correctly
let resolvedAs = as
// url and as should always be prefixed with basePath by this
// point by either next/link or router.push/replace so strip the
// basePath from the pathname to match the pages dir 1-to-1
pathname = pathname
? removeTrailingSlash(removeBasePath(pathname))
: pathname
let route = removeTrailingSlash(pathname)
const parsedAsPathname = as.startsWith('/') && parseRelativeUrl(as).pathname
// if we detected the path as app route during prefetching
// trigger hard navigation
if ((this.components[pathname] as any)?.__appRouter) {
handleHardNavigation({ url: as, router: this })
return new Promise(() => {})
}
const isMiddlewareRewrite = !!(
parsedAsPathname &&
route !== parsedAsPathname &&
(!isDynamicRoute(route) ||
!getRouteMatcher(getRouteRegex(route))(parsedAsPathname))
)
// we don't attempt resolve asPath when we need to execute
// middleware as the resolving will occur server-side
const isMiddlewareMatch =
!options.shallow &&
(await matchesMiddleware({
asPath: as,
locale: nextState.locale,
router: this,
}))
if (isQueryUpdating && isMiddlewareMatch) {
shouldResolveHref = false
}
if (shouldResolveHref && pathname !== '/_error') {
;(options as any)._shouldResolveHref = true
if (process.env.__NEXT_HAS_REWRITES && as.startsWith('/')) {
const rewritesResult = resolveRewrites(
addBasePath(addLocale(cleanedAs, nextState.locale), true),
pages,
rewrites,
query,
(p: string) => resolveDynamicRoute(p, pages),
this.locales
)
if (rewritesResult.externalDest) {
handleHardNavigation({ url: as, router: this })
return true
}
if (!isMiddlewareMatch) {
resolvedAs = rewritesResult.asPath
}
if (rewritesResult.matchedPage && rewritesResult.resolvedHref) {
// if this directly matches a page we need to update the href to
// allow the correct page chunk to be loaded
pathname = rewritesResult.resolvedHref
parsed.pathname = addBasePath(pathname)
if (!isMiddlewareMatch) {
url = formatWithValidation(parsed)
}
}
} else {
parsed.pathname = resolveDynamicRoute(pathname, pages)
if (parsed.pathname !== pathname) {
pathname = parsed.pathname
parsed.pathname = addBasePath(pathname)
if (!isMiddlewareMatch) {
url = formatWithValidation(parsed)
}
}
}
}
if (!isLocalURL(as)) {
if (process.env.NODE_ENV !== 'production') {
throw new Error(
`Invalid href: "${url}" and as: "${as}", received relative href and external as` +
`\nSee more info: https://nextjs.org/docs/messages/invalid-relative-url-external-as`
)
}
handleHardNavigation({ url: as, router: this })
return false
}
resolvedAs = removeLocale(removeBasePath(resolvedAs), nextState.locale)
route = removeTrailingSlash(pathname)
let routeMatch: Params | false = false
if (isDynamicRoute(route)) {
const parsedAs = parseRelativeUrl(resolvedAs)
const asPathname = parsedAs.pathname
const routeRegex = getRouteRegex(route)
routeMatch = getRouteMatcher(routeRegex)(asPathname)
const shouldInterpolate = route === asPathname
const interpolatedAs = shouldInterpolate
? interpolateAs(route, asPathname, query)
: ({} as { result: undefined; params: undefined })
if (!routeMatch || (shouldInterpolate && !interpolatedAs.result)) {
const missingParams = Object.keys(routeRegex.groups).filter(
(param) => !query[param] && !routeRegex.groups[param].optional
)
if (missingParams.length > 0 && !isMiddlewareMatch) {
if (process.env.NODE_ENV !== 'production') {
console.warn(
`${
shouldInterpolate
? `Interpolating href`
: `Mismatching \`as\` and \`href\``
} failed to manually provide ` +
`the params: ${missingParams.join(
', '
)} in the \`href\`'s \`query\``
)
}
throw new Error(
(shouldInterpolate
? `The provided \`href\` (${url}) value is missing query values (${missingParams.join(
', '
)}) to be interpolated properly. `
: `The provided \`as\` value (${asPathname}) is incompatible with the \`href\` value (${route}). `) +
`Read more: https://nextjs.org/docs/messages/${
shouldInterpolate
? 'href-interpolation-failed'
: 'incompatible-href-as'
}`
)
}
} else if (shouldInterpolate) {
as = formatWithValidation(
Object.assign({}, parsedAs, {
pathname: interpolatedAs.result,
query: omit(query, interpolatedAs.params!),
})
)
} else {
// Merge params into `query`, overwriting any specified in search
Object.assign(query, routeMatch)
}
}
if (!isQueryUpdating) {
Router.events.emit('routeChangeStart', as, routeProps)
}
const isErrorRoute = this.pathname === '/404' || this.pathname === '/_error'
try {
let routeInfo = await this.getRouteInfo({
route,
pathname,
query,
as,
resolvedAs,
routeProps,
locale: nextState.locale,
isPreview: nextState.isPreview,
hasMiddleware: isMiddlewareMatch,
unstable_skipClientCache: options.unstable_skipClientCache,
isQueryUpdating: isQueryUpdating && !this.isFallback,
isMiddlewareRewrite,
})
if (!isQueryUpdating && !options.shallow) {
await this._bfl(
as,
'resolvedAs' in routeInfo ? routeInfo.resolvedAs : undefined,
nextState.locale
)
}
if ('route' in routeInfo && isMiddlewareMatch) {
pathname = routeInfo.route || route
route = pathname
if (!routeProps.shallow) {
query = Object.assign({}, routeInfo.query || {}, query)
}
const cleanedParsedPathname = hasBasePath(parsed.pathname)
? removeBasePath(parsed.pathname)
: parsed.pathname
if (routeMatch && pathname !== cleanedParsedPathname) {
Object.keys(routeMatch).forEach((key) => {
if (routeMatch && query[key] === routeMatch[key]) {
delete query[key]
}
})
}
if (isDynamicRoute(pathname)) {
const prefixedAs =
!routeProps.shallow && routeInfo.resolvedAs
? routeInfo.resolvedAs
: addBasePath(
addLocale(
new URL(as, location.href).pathname,
nextState.locale
),
true
)
let rewriteAs = prefixedAs
if (hasBasePath(rewriteAs)) {
rewriteAs = removeBasePath(rewriteAs)
}
if (process.env.__NEXT_I18N_SUPPORT) {
const localeResult = normalizeLocalePath(rewriteAs, this.locales)
nextState.locale = localeResult.detectedLocale || nextState.locale
rewriteAs = localeResult.pathname
}
const routeRegex = getRouteRegex(pathname)
const curRouteMatch = getRouteMatcher(routeRegex)(
new URL(rewriteAs, location.href).pathname
)
if (curRouteMatch) {
Object.assign(query, curRouteMatch)
}
}
}
// If the routeInfo brings a redirect we simply apply it.
if ('type' in routeInfo) {
if (routeInfo.type === 'redirect-internal') {
return this.change(method, routeInfo.newUrl, routeInfo.newAs, options)
} else {
handleHardNavigation({ url: routeInfo.destination, router: this })
return new Promise(() => {})
}
}
const component: any = routeInfo.Component
if (component && component.unstable_scriptLoader) {
const scripts = [].concat(component.unstable_scriptLoader())
scripts.forEach((script: any) => {
handleClientScriptLoad(script.props)
})
}
// handle redirect on client-transition
if ((routeInfo.__N_SSG || routeInfo.__N_SSP) && routeInfo.props) {
if (
routeInfo.props.pageProps &&
routeInfo.props.pageProps.__N_REDIRECT
) {
// Use the destination from redirect without adding locale
options.locale = false
const destination = routeInfo.props.pageProps.__N_REDIRECT
// check if destination is internal (resolves to a page) and attempt
// client-navigation if it is falling back to hard navigation if
// it's not
if (
destination.startsWith('/') &&
routeInfo.props.pageProps.__N_REDIRECT_BASE_PATH !== false
) {
const parsedHref = parseRelativeUrl(destination)
parsedHref.pathname = resolveDynamicRoute(
parsedHref.pathname,
pages
)
const { url: newUrl, as: newAs } = prepareUrlAs(
this,
destination,
destination
)
return this.change(method, newUrl, newAs, options)
}
handleHardNavigation({ url: destination, router: this })
return new Promise(() => {})
}
nextState.isPreview = !!routeInfo.props.__N_PREVIEW
// handle SSG data 404
if (routeInfo.props.notFound === SSG_DATA_NOT_FOUND) {
let notFoundRoute
try {
await this.fetchComponent('/404')
notFoundRoute = '/404'
} catch (_) {
notFoundRoute = '/_error'
}
routeInfo = await this.getRouteInfo({
route: notFoundRoute,
pathname: notFoundRoute,
query,
as,
resolvedAs,
routeProps: { shallow: false },
locale: nextState.locale,
isPreview: nextState.isPreview,
isNotFound: true,
})
if ('type' in routeInfo) {
throw new Error(`Unexpected middleware effect on /404`)
}
}
}
if (
isQueryUpdating &&
this.pathname === '/_error' &&
self.__NEXT_DATA__.props?.pageProps?.statusCode === 500 &&
routeInfo.props?.pageProps
) {
// ensure statusCode is still correct for static 500 page
// when updating query information
routeInfo.props.pageProps.statusCode = 500
}
// shallow routing is only allowed for same page URL changes.
const isValidShallowRoute =
options.shallow && nextState.route === (routeInfo.route ?? route)
const shouldScroll =
options.scroll ?? (!isQueryUpdating && !isValidShallowRoute)
const resetScroll = shouldScroll ? { x: 0, y: 0 } : null
const upcomingScrollState = forcedScroll ?? resetScroll
// the new state that the router gonna set
const upcomingRouterState = {
...nextState,
route,
pathname,
query,
asPath: cleanedAs,
isFallback: false,
}
// When the page being rendered is the 404 page, we should only update the
// query parameters. Route changes here might add the basePath when it
// wasn't originally present. This is also why this block is before the
// below `changeState` call which updates the browser's history (changing
// the URL).
if (isQueryUpdating && isErrorRoute) {
routeInfo = await this.getRouteInfo({
route: this.pathname,
pathname: this.pathname,
query,
as,
resolvedAs,
routeProps: { shallow: false },
locale: nextState.locale,
isPreview: nextState.isPreview,
isQueryUpdating: isQueryUpdating && !this.isFallback,
})
if ('type' in routeInfo) {
throw new Error(`Unexpected middleware effect on ${this.pathname}`)
}
if (
this.pathname === '/_error' &&
self.__NEXT_DATA__.props?.pageProps?.statusCode === 500 &&
routeInfo.props?.pageProps
) {
// ensure statusCode is still correct for static 500 page
// when updating query information
routeInfo.props.pageProps.statusCode = 500
}
try {
await this.set(upcomingRouterState, routeInfo, upcomingScrollState)
} catch (err) {
if (isError(err) && err.cancelled) {
Router.events.emit('routeChangeError', err, cleanedAs, routeProps)
}
throw err
}
return true
}
Router.events.emit('beforeHistoryChange', as, routeProps)
this.changeState(method, url, as, options)
// for query updates we can skip it if the state is unchanged and we don't
// need to scroll
// https://github.com/vercel/next.js/issues/37139
const canSkipUpdating =
isQueryUpdating &&
!upcomingScrollState &&
!readyStateChange &&
!localeChange &&
compareRouterStates(upcomingRouterState, this.state)
if (!canSkipUpdating) {
try {
await this.set(upcomingRouterState, routeInfo, upcomingScrollState)
} catch (e: any) {
if (e.cancelled) routeInfo.error = routeInfo.error || e
else throw e
}
if (routeInfo.error) {
if (!isQueryUpdating) {
Router.events.emit(
'routeChangeError',
routeInfo.error,
cleanedAs,
routeProps
)
}
throw routeInfo.error
}
if (process.env.__NEXT_I18N_SUPPORT) {
if (nextState.locale) {
document.documentElement.lang = nextState.locale
}
}
if (!isQueryUpdating) {
Router.events.emit('routeChangeComplete', as, routeProps)
}
// A hash mark # is the optional last part of a URL
const hashRegex = /#.+$/
if (shouldScroll && hashRegex.test(as)) {
this.scrollToHash(as)
}
}
return true
} catch (err) {
if (isError(err) && err.cancelled) {
return false
}
throw err
}
}
changeState(
method: HistoryMethod,
url: string,
as: string,
options: TransitionOptions = {}
): void {
if (process.env.NODE_ENV !== 'production') {
if (typeof window.history === 'undefined') {
console.error(`Warning: window.history is not available.`)
return
}
if (typeof window.history[method] === 'undefined') {
console.error(`Warning: window.history.${method} is not available`)
return
}
}
if (method !== 'pushState' || getURL() !== as) {
this._shallow = options.shallow
window.history[method](
{
url,
as,
options,
__N: true,
key: (this._key = method !== 'pushState' ? this._key : createKey()),
} as HistoryState,
// Most browsers currently ignores this parameter, although they may use it in the future.
// Passing the empty string here should be safe against future changes to the method.
// https://developer.mozilla.org/docs/Web/API/History/replaceState
'',
as
)
}
}
async handleRouteInfoError(
err: Error & { code?: any; cancelled?: boolean },
pathname: string,
query: ParsedUrlQuery,
as: string,
routeProps: RouteProperties,
loadErrorFail?: boolean
): Promise<CompletePrivateRouteInfo> {
if (err.cancelled) {
// bubble up cancellation errors
throw err
}
if (isAssetError(err) || loadErrorFail) {
Router.events.emit('routeChangeError', err, as, routeProps)
// If we can't load the page it could be one of following reasons
// 1. Page doesn't exists
// 2. Page does exist in a different zone
// 3. Internal error while loading the page
// So, doing a hard reload is the proper way to deal with this.
handleHardNavigation({
url: as,
router: this,
})
// Changing the URL doesn't block executing the current code path.
// So let's throw a cancellation error stop the routing logic.
throw buildCancellationError()
}
console.error(err)
try {
let props: Record<string, any> | undefined
const { page: Component, styleSheets } =
await this.fetchComponent('/_error')
const routeInfo: CompletePrivateRouteInfo = {
props,
Component,
styleSheets,
err,
error: err,
}
if (!routeInfo.props) {
try {
routeInfo.props = await this.getInitialProps(Component, {
err,
pathname,
query,
} as any)
} catch (gipErr) {
console.error('Error in error page `getInitialProps`: ', gipErr)
routeInfo.props = {}
}
}
return routeInfo
} catch (routeInfoErr) {
return this.handleRouteInfoError(
isError(routeInfoErr) ? routeInfoErr : new Error(routeInfoErr + ''),
pathname,
query,
as,
routeProps,
true
)
}
}
async getRouteInfo({
route: requestedRoute,
pathname,
query,
as,
resolvedAs,
routeProps,
locale,
hasMiddleware,
isPreview,
unstable_skipClientCache,
isQueryUpdating,
isMiddlewareRewrite,
isNotFound,
}: {
route: string
pathname: string
query: ParsedUrlQuery
as: string
resolvedAs: string
hasMiddleware?: boolean
routeProps: RouteProperties
locale: string | undefined
isPreview: boolean
unstable_skipClientCache?: boolean
isQueryUpdating?: boolean
isMiddlewareRewrite?: boolean
isNotFound?: boolean
}) {
/**
* This `route` binding can change if there's a rewrite
* so we keep a reference to the original requested route
* so we can store the cache for it and avoid re-requesting every time
* for shallow routing purposes.
*/
let route = requestedRoute
try {
let existingInfo: PrivateRouteInfo | undefined = this.components[route]
if (routeProps.shallow && existingInfo && this.route === route) {
return existingInfo
}
const handleCancelled = getCancelledHandler({ route, router: this })
if (hasMiddleware) {
existingInfo = undefined
}
let cachedRouteInfo =
existingInfo &&
!('initial' in existingInfo) &&
process.env.NODE_ENV !== 'development'
? existingInfo
: undefined
const isBackground = isQueryUpdating
const fetchNextDataParams: FetchNextDataParams = {
dataHref: this.pageLoader.getDataHref({
href: formatWithValidation({ pathname, query }),
skipInterpolation: true,
asPath: isNotFound ? '/404' : resolvedAs,
locale,
}),
hasMiddleware: true,
isServerRender: this.isSsr,
parseJSON: true,
inflightCache: isBackground ? this.sbc : this.sdc,
persistCache: !isPreview,
isPrefetch: false,
unstable_skipClientCache,
isBackground,
}
let data:
| WithMiddlewareEffectsOutput
| (Pick<WithMiddlewareEffectsOutput, 'json'> &
Omit<Partial<WithMiddlewareEffectsOutput>, 'json'>)
| null =
isQueryUpdating && !isMiddlewareRewrite
? null
: await withMiddlewareEffects({
fetchData: () => fetchNextData(fetchNextDataParams),
asPath: isNotFound ? '/404' : resolvedAs,
locale: locale,
router: this,
}).catch((err) => {
// we don't hard error during query updating
// as it's un-necessary and doesn't need to be fatal
// unless it is a fallback route and the props can't
// be loaded
if (isQueryUpdating) {
return null
}
throw err
})
// when rendering error routes we don't apply middleware
// effects
if (data && (pathname === '/_error' || pathname === '/404')) {
data.effect = undefined
}
if (isQueryUpdating) {
if (!data) {
data = { json: self.__NEXT_DATA__.props }
} else {
data.json = self.__NEXT_DATA__.props
}
}
handleCancelled()
if (
data?.effect?.type === 'redirect-internal' ||
data?.effect?.type === 'redirect-external'
) {
return data.effect
}
if (data?.effect?.type === 'rewrite') {
const resolvedRoute = removeTrailingSlash(data.effect.resolvedHref)
const pages = await this.pageLoader.getPageList()
// during query updating the page must match although during
// client-transition a redirect that doesn't match a page
// can be returned and this should trigger a hard navigation
// which is valid for incremental migration
if (!isQueryUpdating || pages.includes(resolvedRoute)) {
route = resolvedRoute
pathname = data.effect.resolvedHref
query = { ...query, ...data.effect.parsedAs.query }
resolvedAs = removeBasePath(
normalizeLocalePath(data.effect.parsedAs.pathname, this.locales)
.pathname
)
// Check again the cache with the new destination.
existingInfo = this.components[route]
if (
routeProps.shallow &&
existingInfo &&
this.route === route &&
!hasMiddleware
) {
// If we have a match with the current route due to rewrite,
// we can copy the existing information to the rewritten one.
// Then, we return the information along with the matched route.
return { ...existingInfo, route }
}
}
}
if (isAPIRoute(route)) {
handleHardNavigation({ url: as, router: this })
return new Promise<never>(() => {})
}
const routeInfo =
cachedRouteInfo ||
(await this.fetchComponent(route).then<CompletePrivateRouteInfo>(
(res) => ({
Component: res.page,
styleSheets: res.styleSheets,
__N_SSG: res.mod.__N_SSG,
__N_SSP: res.mod.__N_SSP,
})
))
if (process.env.NODE_ENV !== 'production') {
const { isValidElementType } =
require('next/dist/compiled/react-is') as typeof import('next/dist/compiled/react-is')
if (!isValidElementType(routeInfo.Component)) {
throw new Error(
`The default export is not a React Component in page: "${pathname}"`
)
}
}
const wasBailedPrefetch = data?.response?.headers.get('x-middleware-skip')
const shouldFetchData = routeInfo.__N_SSG || routeInfo.__N_SSP
// For non-SSG prefetches that bailed before sending data
// we clear the cache to fetch full response
if (wasBailedPrefetch && data?.dataHref) {
delete this.sdc[data.dataHref]
}
const { props, cacheKey } = await this._getData(async () => {
if (shouldFetchData) {
if (data?.json && !wasBailedPrefetch) {
return { cacheKey: data.cacheKey, props: data.json }
}
const dataHref = data?.dataHref
? data.dataHref
: this.pageLoader.getDataHref({
href: formatWithValidation({ pathname, query }),
asPath: resolvedAs,
locale,
})
const fetched = await fetchNextData({
dataHref,
isServerRender: this.isSsr,
parseJSON: true,
inflightCache: wasBailedPrefetch ? {} : this.sdc,
persistCache: !isPreview,
isPrefetch: false,
unstable_skipClientCache,
})
return {
cacheKey: fetched.cacheKey,
props: fetched.json || {},
}
}
return {
headers: {},
props: await this.getInitialProps(
routeInfo.Component,
// we provide AppTree later so this needs to be `any`
{
pathname,
query,
asPath: as,
locale,
locales: this.locales,
defaultLocale: this.defaultLocale,
} as any
),
}
})
// Only bust the data cache for SSP routes although
// middleware can skip cache per request with
// x-middleware-cache: no-cache as well
if (routeInfo.__N_SSP && fetchNextDataParams.dataHref && cacheKey) {
delete this.sdc[cacheKey]
}
// we kick off a HEAD request in the background
// when a non-prefetch request is made to signal revalidation
if (
!this.isPreview &&
routeInfo.__N_SSG &&
process.env.NODE_ENV !== 'development' &&
!isQueryUpdating
) {
fetchNextData(
Object.assign({}, fetchNextDataParams, {
isBackground: true,
persistCache: false,
inflightCache: this.sbc,
})
).catch(() => {})
}
props.pageProps = Object.assign({}, props.pageProps)
routeInfo.props = props
routeInfo.route = route
routeInfo.query = query
routeInfo.resolvedAs = resolvedAs
this.components[route] = routeInfo
return routeInfo
} catch (err) {
return this.handleRouteInfoError(
getProperError(err),
pathname,
query,
as,
routeProps
)
}
}
private set(
state: typeof this.state,
data: PrivateRouteInfo,
resetScroll: { x: number; y: number } | null
): Promise<void> {
this.state = state
return this.sub(
data,
this.components['/_app'].Component as AppComponent,
resetScroll
)
}
/**
* Callback to execute before replacing router state
* @param cb callback to be executed
*/
beforePopState(cb: BeforePopStateCallback) {
this._bps = cb
}
onlyAHashChange(as: string): boolean {
if (!this.asPath) return false
const [oldUrlNoHash, oldHash] = this.asPath.split('#', 2)
const [newUrlNoHash, newHash] = as.split('#', 2)
// Makes sure we scroll to the provided hash if the url/hash are the same
if (newHash && oldUrlNoHash === newUrlNoHash && oldHash === newHash) {
return true
}
// If the urls are change, there's more than a hash change
if (oldUrlNoHash !== newUrlNoHash) {
return false
}
// If the hash has changed, then it's a hash only change.
// This check is necessary to handle both the enter and
// leave hash === '' cases. The identity case falls through
// and is treated as a next reload.
return oldHash !== newHash
}
scrollToHash(as: string): void {
const [, hash = ''] = as.split('#', 2)
disableSmoothScrollDuringRouteTransition(
() => {
// Scroll to top if the hash is just `#` with no value or `#top`
// To mirror browsers
if (hash === '' || hash === 'top') {
window.scrollTo(0, 0)
return
}
// Decode hash to make non-latin anchor works.
const rawHash = decodeURIComponent(hash)
// First we check if the element by id is found
const idEl = document.getElementById(rawHash)
if (idEl) {
idEl.scrollIntoView()
return
}
// If there's no element with the id, we check the `name` property
// To mirror browsers
const nameEl = document.getElementsByName(rawHash)[0]
if (nameEl) {
nameEl.scrollIntoView()
}
},
{
onlyHashChange: this.onlyAHashChange(as),
}
)
}
urlIsNew(asPath: string): boolean {
return this.asPath !== asPath
}
/**
* Prefetch page code, you may wait for the data during page rendering.
* This feature only works in production!
* @param url the href of prefetched page
* @param asPath the as path of the prefetched page
*/
async prefetch(
url: string,
asPath: string = url,
options: PrefetchOptions = {}
): Promise<void> {
// Prefetch is not supported in development mode because it would trigger on-demand-entries
if (process.env.NODE_ENV !== 'production') {
return
}
if (typeof window !== 'undefined' && isBot(window.navigator.userAgent)) {
// No prefetches for bots that render the link since they are typically navigating
// links via the equivalent of a hard navigation and hence never utilize these
// prefetches.
return
}
let parsed = parseRelativeUrl(url)
const urlPathname = parsed.pathname
let { pathname, query } = parsed
const originalPathname = pathname
if (process.env.__NEXT_I18N_SUPPORT) {
if (options.locale === false) {
pathname = normalizeLocalePath!(pathname, this.locales).pathname
parsed.pathname = pathname
url = formatWithValidation(parsed)
let parsedAs = parseRelativeUrl(asPath)
const localePathResult = normalizeLocalePath!(
parsedAs.pathname,
this.locales
)
parsedAs.pathname = localePathResult.pathname
options.locale = localePathResult.detectedLocale || this.defaultLocale
asPath = formatWithValidation(parsedAs)
}
}
const pages = await this.pageLoader.getPageList()
let resolvedAs = asPath
const locale =
typeof options.locale !== 'undefined'
? options.locale || undefined
: this.locale
const isMiddlewareMatch = await matchesMiddleware({
asPath: asPath,
locale: locale,
router: this,
})
if (process.env.__NEXT_HAS_REWRITES && asPath.startsWith('/')) {
let rewrites: any
;({ __rewrites: rewrites } = await getClientBuildManifest())
const rewritesResult = resolveRewrites(
addBasePath(addLocale(asPath, this.locale), true),
pages,
rewrites,
parsed.query,
(p: string) => resolveDynamicRoute(p, pages),
this.locales
)
if (rewritesResult.externalDest) {
return
}
if (!isMiddlewareMatch) {
resolvedAs = removeLocale(
removeBasePath(rewritesResult.asPath),
this.locale
)
}
if (rewritesResult.matchedPage && rewritesResult.resolvedHref) {
// if this directly matches a page we need to update the href to
// allow the correct page chunk to be loaded
pathname = rewritesResult.resolvedHref
parsed.pathname = pathname
if (!isMiddlewareMatch) {
url = formatWithValidation(parsed)
}
}
}
parsed.pathname = resolveDynamicRoute(parsed.pathname, pages)
if (isDynamicRoute(parsed.pathname)) {
pathname = parsed.pathname
parsed.pathname = pathname
Object.assign(
query,
getRouteMatcher(getRouteRegex(parsed.pathname))(
parsePath(asPath).pathname
) || {}
)
if (!isMiddlewareMatch) {
url = formatWithValidation(parsed)
}
}
const data =
process.env.__NEXT_MIDDLEWARE_PREFETCH === 'strict'
? null
: await withMiddlewareEffects({
fetchData: () =>
fetchNextData({
dataHref: this.pageLoader.getDataHref({
href: formatWithValidation({
pathname: originalPathname,
query,
}),
skipInterpolation: true,
asPath: resolvedAs,
locale,
}),
hasMiddleware: true,
isServerRender: false,
parseJSON: true,
inflightCache: this.sdc,
persistCache: !this.isPreview,
isPrefetch: true,
}),
asPath: asPath,
locale: locale,
router: this,
})
/**
* If there was a rewrite we apply the effects of the rewrite on the
* current parameters for the prefetch.
*/
if (data?.effect.type === 'rewrite') {
parsed.pathname = data.effect.resolvedHref
pathname = data.effect.resolvedHref
query = { ...query, ...data.effect.parsedAs.query }
resolvedAs = data.effect.parsedAs.pathname
url = formatWithValidation(parsed)
}
/**
* If there is a redirect to an external destination then we don't have
* to prefetch content as it will be unused.
*/
if (data?.effect.type === 'redirect-external') {
return
}
const route = removeTrailingSlash(pathname)
if (await this._bfl(asPath, resolvedAs, options.locale, true)) {
this.components[urlPathname] = { __appRouter: true } as any
}
await Promise.all([
this.pageLoader._isSsg(route).then((isSsg) => {
return isSsg
? fetchNextData({
dataHref: data?.json
? data?.dataHref
: this.pageLoader.getDataHref({
href: url,
asPath: resolvedAs,
locale: locale,
}),
isServerRender: false,
parseJSON: true,
inflightCache: this.sdc,
persistCache: !this.isPreview,
isPrefetch: true,
unstable_skipClientCache:
options.unstable_skipClientCache ||
(options.priority &&
!!process.env.__NEXT_OPTIMISTIC_CLIENT_CACHE),
})
.then(() => false)
.catch(() => false)
: false
}),
this.pageLoader[options.priority ? 'loadPage' : 'prefetch'](route),
])
}
async fetchComponent(route: string) {
const handleCancelled = getCancelledHandler({ route, router: this })
try {
const componentResult = await this.pageLoader.loadPage(route)
handleCancelled()
return componentResult
} catch (err) {
handleCancelled()
throw err
}
}
_getData<T>(fn: () => Promise<T>): Promise<T> {
let cancelled = false
const cancel = () => {
cancelled = true
}
this.clc = cancel
return fn().then((data) => {
if (cancel === this.clc) {
this.clc = null
}
if (cancelled) {
const err: any = new Error('Loading initial props cancelled')
err.cancelled = true
throw err
}
return data
})
}
getInitialProps(
Component: ComponentType,
ctx: NextPageContext
): Promise<Record<string, any>> {
const { Component: App } = this.components['/_app']
const AppTree = this._wrapApp(App as AppComponent)
ctx.AppTree = AppTree
return loadGetInitialProps<AppContextType<Router>>(App, {
AppTree,
Component,
router: this,
ctx,
})
}
get route(): string {
return this.state.route
}
get pathname(): string {
return this.state.pathname
}
get query(): ParsedUrlQuery {
return this.state.query
}
get asPath(): string {
return this.state.asPath
}
get locale(): string | undefined {
return this.state.locale
}
get isFallback(): boolean {
return this.state.isFallback
}
get isPreview(): boolean {
return this.state.isPreview
}
}
|