next
Version:
The React Framework
74 lines (72 loc) • 2.89 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
0 && (module.exports = {
headers: null,
cookies: null,
draftMode: null
});
function _export(target, all) {
for(var name in all)Object.defineProperty(target, name, {
enumerable: true,
get: all[name]
});
}
_export(exports, {
headers: function() {
return headers;
},
cookies: function() {
return cookies;
},
draftMode: function() {
return draftMode;
}
});
const _requestcookies = require("../../server/web/spec-extension/adapters/request-cookies");
const _headers = require("../../server/web/spec-extension/adapters/headers");
const _cookies = require("../../server/web/spec-extension/cookies");
const _requestasyncstorage = require("./request-async-storage");
const _actionasyncstorage = require("./action-async-storage");
const _staticgenerationbailout = require("./static-generation-bailout");
const _draftmode = require("./draft-mode");
function headers() {
if ((0, _staticgenerationbailout.staticGenerationBailout)("headers")) {
return _headers.HeadersAdapter.seal(new Headers({}));
}
const requestStore = _requestasyncstorage.requestAsyncStorage.getStore();
if (!requestStore) {
throw new Error("Invariant: Method expects to have requestAsyncStorage, none available");
}
return requestStore.headers;
}
function cookies() {
if ((0, _staticgenerationbailout.staticGenerationBailout)("cookies")) {
return _requestcookies.RequestCookiesAdapter.seal(new _cookies.RequestCookies(new Headers({})));
}
const requestStore = _requestasyncstorage.requestAsyncStorage.getStore();
if (!requestStore) {
throw new Error("Invariant: Method expects to have requestAsyncStorage, none available");
}
const asyncActionStore = _actionasyncstorage.actionAsyncStorage.getStore();
if (asyncActionStore && (asyncActionStore.isAction || asyncActionStore.isAppRoute)) {
// We can't conditionally return different types here based on the context.
// To avoid confusion, we always return the readonly type here.
return requestStore.mutableCookies;
}
return requestStore.cookies;
}
function draftMode() {
const requestStore = _requestasyncstorage.requestAsyncStorage.getStore();
if (!requestStore) {
throw new Error("Invariant: Method expects to have requestAsyncStorage, none available");
}
return new _draftmode.DraftMode(requestStore.draftMode);
}
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=headers.js.map