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>
91 lines
No EOL
3.4 KiB
Text
91 lines
No EOL
3.4 KiB
Text
"use strict";
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
0 && (module.exports = {
|
|
getRedirectError: null,
|
|
getRedirectStatusCodeFromError: null,
|
|
getRedirectTypeFromError: null,
|
|
getURLFromRedirectError: null,
|
|
permanentRedirect: null,
|
|
redirect: null
|
|
});
|
|
function _export(target, all) {
|
|
for(var name in all)Object.defineProperty(target, name, {
|
|
enumerable: true,
|
|
get: all[name]
|
|
});
|
|
}
|
|
_export(exports, {
|
|
getRedirectError: function() {
|
|
return getRedirectError;
|
|
},
|
|
getRedirectStatusCodeFromError: function() {
|
|
return getRedirectStatusCodeFromError;
|
|
},
|
|
getRedirectTypeFromError: function() {
|
|
return getRedirectTypeFromError;
|
|
},
|
|
getURLFromRedirectError: function() {
|
|
return getURLFromRedirectError;
|
|
},
|
|
permanentRedirect: function() {
|
|
return permanentRedirect;
|
|
},
|
|
redirect: function() {
|
|
return redirect;
|
|
}
|
|
});
|
|
const _redirectstatuscode = require("./redirect-status-code");
|
|
const _redirecterror = require("./redirect-error");
|
|
const actionAsyncStorage = typeof window === 'undefined' ? require('../../server/app-render/action-async-storage.external').actionAsyncStorage : undefined;
|
|
function getRedirectError(url, type, statusCode = _redirectstatuscode.RedirectStatusCode.TemporaryRedirect) {
|
|
const error = Object.defineProperty(new Error(_redirecterror.REDIRECT_ERROR_CODE), "__NEXT_ERROR_CODE", {
|
|
value: "E394",
|
|
enumerable: false,
|
|
configurable: true
|
|
});
|
|
error.digest = `${_redirecterror.REDIRECT_ERROR_CODE};${type};${url};${statusCode};`;
|
|
return error;
|
|
}
|
|
function redirect(/** The URL to redirect to */ url, type) {
|
|
type ??= actionAsyncStorage?.getStore()?.isAction ? _redirecterror.RedirectType.push : _redirecterror.RedirectType.replace;
|
|
throw getRedirectError(url, type, _redirectstatuscode.RedirectStatusCode.TemporaryRedirect);
|
|
}
|
|
function permanentRedirect(/** The URL to redirect to */ url, type = _redirecterror.RedirectType.replace) {
|
|
throw getRedirectError(url, type, _redirectstatuscode.RedirectStatusCode.PermanentRedirect);
|
|
}
|
|
function getURLFromRedirectError(error) {
|
|
if (!(0, _redirecterror.isRedirectError)(error)) return null;
|
|
// Slices off the beginning of the digest that contains the code and the
|
|
// separating ';'.
|
|
return error.digest.split(';').slice(2, -2).join(';');
|
|
}
|
|
function getRedirectTypeFromError(error) {
|
|
if (!(0, _redirecterror.isRedirectError)(error)) {
|
|
throw Object.defineProperty(new Error('Not a redirect error'), "__NEXT_ERROR_CODE", {
|
|
value: "E260",
|
|
enumerable: false,
|
|
configurable: true
|
|
});
|
|
}
|
|
return error.digest.split(';', 2)[1];
|
|
}
|
|
function getRedirectStatusCodeFromError(error) {
|
|
if (!(0, _redirecterror.isRedirectError)(error)) {
|
|
throw Object.defineProperty(new Error('Not a redirect error'), "__NEXT_ERROR_CODE", {
|
|
value: "E260",
|
|
enumerable: false,
|
|
configurable: true
|
|
});
|
|
}
|
|
return Number(error.digest.split(';').at(-2));
|
|
}
|
|
|
|
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=redirect.js.map |