Next.js website for Rocky Mountain Vending company featuring: - Product catalog with Stripe integration - Service areas and parts pages - Admin dashboard with Clerk authentication - SEO optimized pages with JSON-LD structured data Co-authored-by: Cursor <cursoragent@cursor.com>
281 lines
No EOL
14 KiB
Text
281 lines
No EOL
14 KiB
Text
"use strict";
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
Object.defineProperty(exports, "serverActionReducer", {
|
|
enumerable: true,
|
|
get: function() {
|
|
return serverActionReducer;
|
|
}
|
|
});
|
|
const _appcallserver = require("../../../app-call-server");
|
|
const _appfindsourcemapurl = require("../../../app-find-source-map-url");
|
|
const _approuterheaders = require("../../app-router-headers");
|
|
const _unrecognizedactionerror = require("../../unrecognized-action-error");
|
|
const _client = require("react-server-dom-webpack/client");
|
|
const _assignlocation = require("../../../assign-location");
|
|
const _createhreffromurl = require("../create-href-from-url");
|
|
const _navigatereducer = require("./navigate-reducer");
|
|
const _applyrouterstatepatchtotree = require("../apply-router-state-patch-to-tree");
|
|
const _isnavigatingtonewrootlayout = require("../is-navigating-to-new-root-layout");
|
|
const _handlemutable = require("../handle-mutable");
|
|
const _filllazyitemstillleafwithhead = require("../fill-lazy-items-till-leaf-with-head");
|
|
const _approuter = require("../../app-router");
|
|
const _hasinterceptionrouteincurrenttree = require("./has-interception-route-in-current-tree");
|
|
const _handlesegmentmismatch = require("../handle-segment-mismatch");
|
|
const _refetchinactiveparallelsegments = require("../refetch-inactive-parallel-segments");
|
|
const _flightdatahelpers = require("../../../flight-data-helpers");
|
|
const _redirect = require("../../redirect");
|
|
const _redirecterror = require("../../redirect-error");
|
|
const _removebasepath = require("../../../remove-base-path");
|
|
const _hasbasepath = require("../../../has-base-path");
|
|
const _serverreferenceinfo = require("../../../../shared/lib/server-reference-info");
|
|
const _segmentcache = require("../../segment-cache");
|
|
const createFromFetch = _client.createFromFetch;
|
|
let createDebugChannel;
|
|
if (process.env.NODE_ENV !== 'production' && process.env.__NEXT_REACT_DEBUG_CHANNEL) {
|
|
createDebugChannel = require('../../../dev/debug-channel').createDebugChannel;
|
|
}
|
|
async function fetchServerAction(state, nextUrl, { actionId, actionArgs }) {
|
|
const temporaryReferences = (0, _client.createTemporaryReferenceSet)();
|
|
const info = (0, _serverreferenceinfo.extractInfoFromServerReferenceId)(actionId);
|
|
// TODO: Currently, we're only omitting unused args for the experimental "use
|
|
// cache" functions. Once the server reference info byte feature is stable, we
|
|
// should apply this to server actions as well.
|
|
const usedArgs = info.type === 'use-cache' ? (0, _serverreferenceinfo.omitUnusedArgs)(actionArgs, info) : actionArgs;
|
|
const body = await (0, _client.encodeReply)(usedArgs, {
|
|
temporaryReferences
|
|
});
|
|
const headers = {
|
|
Accept: _approuterheaders.RSC_CONTENT_TYPE_HEADER,
|
|
[_approuterheaders.ACTION_HEADER]: actionId,
|
|
[_approuterheaders.NEXT_ROUTER_STATE_TREE_HEADER]: (0, _flightdatahelpers.prepareFlightRouterStateForRequest)(state.tree)
|
|
};
|
|
if (process.env.NEXT_DEPLOYMENT_ID) {
|
|
headers['x-deployment-id'] = process.env.NEXT_DEPLOYMENT_ID;
|
|
}
|
|
if (nextUrl) {
|
|
headers[_approuterheaders.NEXT_URL] = nextUrl;
|
|
}
|
|
if (process.env.NODE_ENV !== 'production') {
|
|
if (self.__next_r) {
|
|
headers[_approuterheaders.NEXT_HTML_REQUEST_ID_HEADER] = self.__next_r;
|
|
}
|
|
// Create a new request ID for the server action request. The server uses
|
|
// this to tag debug information sent via WebSocket to the client, which
|
|
// then routes those chunks to the debug channel associated with this ID.
|
|
headers[_approuterheaders.NEXT_REQUEST_ID_HEADER] = crypto.getRandomValues(new Uint32Array(1))[0].toString(16);
|
|
}
|
|
const res = await fetch(state.canonicalUrl, {
|
|
method: 'POST',
|
|
headers,
|
|
body
|
|
});
|
|
// Handle server actions that the server didn't recognize.
|
|
const unrecognizedActionHeader = res.headers.get(_approuterheaders.NEXT_ACTION_NOT_FOUND_HEADER);
|
|
if (unrecognizedActionHeader === '1') {
|
|
throw Object.defineProperty(new _unrecognizedactionerror.UnrecognizedActionError(`Server Action "${actionId}" was not found on the server. \nRead more: https://nextjs.org/docs/messages/failed-to-find-server-action`), "__NEXT_ERROR_CODE", {
|
|
value: "E715",
|
|
enumerable: false,
|
|
configurable: true
|
|
});
|
|
}
|
|
const redirectHeader = res.headers.get('x-action-redirect');
|
|
const [location, _redirectType] = redirectHeader?.split(';') || [];
|
|
let redirectType;
|
|
switch(_redirectType){
|
|
case 'push':
|
|
redirectType = _redirecterror.RedirectType.push;
|
|
break;
|
|
case 'replace':
|
|
redirectType = _redirecterror.RedirectType.replace;
|
|
break;
|
|
default:
|
|
redirectType = undefined;
|
|
}
|
|
const isPrerender = !!res.headers.get(_approuterheaders.NEXT_IS_PRERENDER_HEADER);
|
|
let revalidatedParts;
|
|
try {
|
|
const revalidatedHeader = JSON.parse(res.headers.get('x-action-revalidated') || '[[],0,0]');
|
|
revalidatedParts = {
|
|
paths: revalidatedHeader[0] || [],
|
|
tag: !!revalidatedHeader[1],
|
|
cookie: revalidatedHeader[2]
|
|
};
|
|
} catch (e) {
|
|
revalidatedParts = NO_REVALIDATED_PARTS;
|
|
}
|
|
const redirectLocation = location ? (0, _assignlocation.assignLocation)(location, new URL(state.canonicalUrl, window.location.href)) : undefined;
|
|
const contentType = res.headers.get('content-type');
|
|
const isRscResponse = !!(contentType && contentType.startsWith(_approuterheaders.RSC_CONTENT_TYPE_HEADER));
|
|
// Handle invalid server action responses.
|
|
// A valid response must have `content-type: text/x-component`, unless it's an external redirect.
|
|
// (external redirects have an 'x-action-redirect' header, but the body is an empty 'text/plain')
|
|
if (!isRscResponse && !redirectLocation) {
|
|
// The server can respond with a text/plain error message, but we'll fallback to something generic
|
|
// if there isn't one.
|
|
const message = res.status >= 400 && contentType === 'text/plain' ? await res.text() : 'An unexpected response was received from the server.';
|
|
throw Object.defineProperty(new Error(message), "__NEXT_ERROR_CODE", {
|
|
value: "E394",
|
|
enumerable: false,
|
|
configurable: true
|
|
});
|
|
}
|
|
let actionResult;
|
|
let actionFlightData;
|
|
if (isRscResponse) {
|
|
const response = await createFromFetch(Promise.resolve(res), {
|
|
callServer: _appcallserver.callServer,
|
|
findSourceMapURL: _appfindsourcemapurl.findSourceMapURL,
|
|
temporaryReferences,
|
|
debugChannel: createDebugChannel && createDebugChannel(headers)
|
|
});
|
|
// An internal redirect can send an RSC response, but does not have a useful `actionResult`.
|
|
actionResult = redirectLocation ? undefined : response.a;
|
|
actionFlightData = (0, _flightdatahelpers.normalizeFlightData)(response.f);
|
|
} else {
|
|
// An external redirect doesn't contain RSC data.
|
|
actionResult = undefined;
|
|
actionFlightData = undefined;
|
|
}
|
|
return {
|
|
actionResult,
|
|
actionFlightData,
|
|
redirectLocation,
|
|
redirectType,
|
|
revalidatedParts,
|
|
isPrerender
|
|
};
|
|
}
|
|
const NO_REVALIDATED_PARTS = {
|
|
paths: [],
|
|
tag: false,
|
|
cookie: false
|
|
};
|
|
function serverActionReducer(state, action) {
|
|
const { resolve, reject } = action;
|
|
const mutable = {};
|
|
let currentTree = state.tree;
|
|
mutable.preserveCustomHistoryState = false;
|
|
// only pass along the `nextUrl` param (used for interception routes) if the current route was intercepted.
|
|
// If the route has been intercepted, the action should be as well.
|
|
// Otherwise the server action might be intercepted with the wrong action id
|
|
// (ie, one that corresponds with the intercepted route)
|
|
const nextUrl = // We always send the last next-url, not the current when
|
|
// performing a dynamic request. This is because we update
|
|
// the next-url after a navigation, but we want the same
|
|
// interception route to be matched that used the last
|
|
// next-url.
|
|
(state.previousNextUrl || state.nextUrl) && (0, _hasinterceptionrouteincurrenttree.hasInterceptionRouteInCurrentTree)(state.tree) ? state.previousNextUrl || state.nextUrl : null;
|
|
const navigatedAt = Date.now();
|
|
return fetchServerAction(state, nextUrl, action).then(async ({ actionResult, actionFlightData: flightData, redirectLocation, redirectType, revalidatedParts })=>{
|
|
let redirectHref;
|
|
// honor the redirect type instead of defaulting to push in case of server actions.
|
|
if (redirectLocation) {
|
|
if (redirectType === _redirecterror.RedirectType.replace) {
|
|
state.pushRef.pendingPush = false;
|
|
mutable.pendingPush = false;
|
|
} else {
|
|
state.pushRef.pendingPush = true;
|
|
mutable.pendingPush = true;
|
|
}
|
|
redirectHref = (0, _createhreffromurl.createHrefFromUrl)(redirectLocation, false);
|
|
mutable.canonicalUrl = redirectHref;
|
|
}
|
|
if (!flightData) {
|
|
resolve(actionResult);
|
|
// If there is a redirect but no flight data we need to do a mpaNavigation.
|
|
if (redirectLocation) {
|
|
return (0, _navigatereducer.handleExternalUrl)(state, mutable, redirectLocation.href, state.pushRef.pendingPush);
|
|
}
|
|
return state;
|
|
}
|
|
if (typeof flightData === 'string') {
|
|
// Handle case when navigating to page in `pages` from `app`
|
|
resolve(actionResult);
|
|
return (0, _navigatereducer.handleExternalUrl)(state, mutable, flightData, state.pushRef.pendingPush);
|
|
}
|
|
const actionRevalidated = revalidatedParts.paths.length > 0 || revalidatedParts.tag || revalidatedParts.cookie;
|
|
// Store whether this action triggered any revalidation
|
|
// The action queue will use this information to potentially
|
|
// trigger a refresh action if the action was discarded
|
|
// (ie, due to a navigation, before the action completed)
|
|
if (actionRevalidated) {
|
|
action.didRevalidate = true;
|
|
}
|
|
for (const normalizedFlightData of flightData){
|
|
const { tree: treePatch, seedData: cacheNodeSeedData, head, isRootRender } = normalizedFlightData;
|
|
if (!isRootRender) {
|
|
// TODO-APP: handle this case better
|
|
console.log('SERVER ACTION APPLY FAILED');
|
|
resolve(actionResult);
|
|
return state;
|
|
}
|
|
// Given the path can only have two items the items are only the router state and rsc for the root.
|
|
const newTree = (0, _applyrouterstatepatchtotree.applyRouterStatePatchToTree)(// TODO-APP: remove ''
|
|
[
|
|
''
|
|
], currentTree, treePatch, redirectHref ? redirectHref : state.canonicalUrl);
|
|
if (newTree === null) {
|
|
resolve(actionResult);
|
|
return (0, _handlesegmentmismatch.handleSegmentMismatch)(state, action, treePatch);
|
|
}
|
|
if ((0, _isnavigatingtonewrootlayout.isNavigatingToNewRootLayout)(currentTree, newTree)) {
|
|
resolve(actionResult);
|
|
return (0, _navigatereducer.handleExternalUrl)(state, mutable, redirectHref || state.canonicalUrl, state.pushRef.pendingPush);
|
|
}
|
|
// The server sent back RSC data for the server action, so we need to apply it to the cache.
|
|
if (cacheNodeSeedData !== null) {
|
|
const rsc = cacheNodeSeedData[0];
|
|
const cache = (0, _approuter.createEmptyCacheNode)();
|
|
cache.rsc = rsc;
|
|
cache.prefetchRsc = null;
|
|
cache.loading = cacheNodeSeedData[2];
|
|
(0, _filllazyitemstillleafwithhead.fillLazyItemsTillLeafWithHead)(navigatedAt, cache, // Existing cache is not passed in as server actions have to invalidate the entire cache.
|
|
undefined, treePatch, cacheNodeSeedData, head);
|
|
mutable.cache = cache;
|
|
(0, _segmentcache.revalidateEntireCache)(state.nextUrl, newTree);
|
|
if (actionRevalidated) {
|
|
await (0, _refetchinactiveparallelsegments.refreshInactiveParallelSegments)({
|
|
navigatedAt,
|
|
state,
|
|
updatedTree: newTree,
|
|
updatedCache: cache,
|
|
includeNextUrl: Boolean(nextUrl),
|
|
canonicalUrl: mutable.canonicalUrl || state.canonicalUrl
|
|
});
|
|
}
|
|
}
|
|
mutable.patchedTree = newTree;
|
|
currentTree = newTree;
|
|
}
|
|
if (redirectLocation && redirectHref) {
|
|
// If the action triggered a redirect, the action promise will be rejected with
|
|
// a redirect so that it's handled by RedirectBoundary as we won't have a valid
|
|
// action result to resolve the promise with. This will effectively reset the state of
|
|
// the component that called the action as the error boundary will remount the tree.
|
|
// The status code doesn't matter here as the action handler will have already sent
|
|
// a response with the correct status code.
|
|
reject((0, _redirect.getRedirectError)((0, _hasbasepath.hasBasePath)(redirectHref) ? (0, _removebasepath.removeBasePath)(redirectHref) : redirectHref, redirectType || _redirecterror.RedirectType.push));
|
|
// TODO: Investigate why this is needed with Activity.
|
|
if (process.env.__NEXT_CACHE_COMPONENTS) {
|
|
return state;
|
|
}
|
|
} else {
|
|
resolve(actionResult);
|
|
}
|
|
return (0, _handlemutable.handleMutable)(state, mutable);
|
|
}, (e)=>{
|
|
// When the server action is rejected we don't update the state and instead call the reject handler of the promise.
|
|
reject(e);
|
|
return state;
|
|
});
|
|
}
|
|
|
|
if ((typeof exports.default === 'function' || (typeof exports.default === 'object' && exports.default !== null)) && typeof exports.default.__esModule === 'undefined') {
|
|
Object.defineProperty(exports.default, '__esModule', { value: true });
|
|
Object.assign(exports.default, exports);
|
|
module.exports = exports.default;
|
|
}
|
|
|
|
//# sourceMappingURL=server-action-reducer.js.map |