feat(blog): add file-based blog with dynamic slugs, MDX content and layout shell
- Introduced blog routing using Next.js App Router - Implemented dynamic [slug] pages for blog posts - Added MDX-based content loading via lib/posts - Integrated shared TopBar layout with navigation - Established clear content, lib and component separation
This commit is contained in:
82
apps/public-web/node_modules/next/dist/client/request/search-params.browser.dev.js
generated
vendored
Normal file
82
apps/public-web/node_modules/next/dist/client/request/search-params.browser.dev.js
generated
vendored
Normal file
@@ -0,0 +1,82 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
Object.defineProperty(exports, "createRenderSearchParamsFromClient", {
|
||||
enumerable: true,
|
||||
get: function() {
|
||||
return createRenderSearchParamsFromClient;
|
||||
}
|
||||
});
|
||||
const _reflect = require("../../server/web/spec-extension/adapters/reflect");
|
||||
const _reflectutils = require("../../shared/lib/utils/reflect-utils");
|
||||
const CachedSearchParams = new WeakMap();
|
||||
function makeUntrackedSearchParamsWithDevWarnings(underlyingSearchParams) {
|
||||
const cachedSearchParams = CachedSearchParams.get(underlyingSearchParams);
|
||||
if (cachedSearchParams) {
|
||||
return cachedSearchParams;
|
||||
}
|
||||
const proxiedProperties = new Set();
|
||||
const promise = Promise.resolve(underlyingSearchParams);
|
||||
Object.keys(underlyingSearchParams).forEach((prop)=>{
|
||||
if (_reflectutils.wellKnownProperties.has(prop)) {
|
||||
// These properties cannot be shadowed because they need to be the
|
||||
// true underlying value for Promises to work correctly at runtime
|
||||
} else {
|
||||
proxiedProperties.add(prop);
|
||||
}
|
||||
});
|
||||
const proxiedPromise = new Proxy(promise, {
|
||||
get (target, prop, receiver) {
|
||||
if (typeof prop === 'string') {
|
||||
if (!_reflectutils.wellKnownProperties.has(prop) && (proxiedProperties.has(prop) || // We are accessing a property that doesn't exist on the promise nor
|
||||
// the underlying searchParams.
|
||||
Reflect.has(target, prop) === false)) {
|
||||
const expression = (0, _reflectutils.describeStringPropertyAccess)('searchParams', prop);
|
||||
warnForSyncAccess(expression);
|
||||
}
|
||||
}
|
||||
return _reflect.ReflectAdapter.get(target, prop, receiver);
|
||||
},
|
||||
set (target, prop, value, receiver) {
|
||||
if (typeof prop === 'string') {
|
||||
proxiedProperties.delete(prop);
|
||||
}
|
||||
return Reflect.set(target, prop, value, receiver);
|
||||
},
|
||||
has (target, prop) {
|
||||
if (typeof prop === 'string') {
|
||||
if (!_reflectutils.wellKnownProperties.has(prop) && (proxiedProperties.has(prop) || // We are accessing a property that doesn't exist on the promise nor
|
||||
// the underlying searchParams.
|
||||
Reflect.has(target, prop) === false)) {
|
||||
const expression = (0, _reflectutils.describeHasCheckingStringProperty)('searchParams', prop);
|
||||
warnForSyncAccess(expression);
|
||||
}
|
||||
}
|
||||
return Reflect.has(target, prop);
|
||||
},
|
||||
ownKeys (target) {
|
||||
warnForSyncSpread();
|
||||
return Reflect.ownKeys(target);
|
||||
}
|
||||
});
|
||||
CachedSearchParams.set(underlyingSearchParams, proxiedPromise);
|
||||
return proxiedPromise;
|
||||
}
|
||||
function warnForSyncAccess(expression) {
|
||||
console.error(`A searchParam property was accessed directly with ${expression}. ` + `\`searchParams\` is a Promise and must be unwrapped with \`React.use()\` before accessing its properties. ` + `Learn more: https://nextjs.org/docs/messages/sync-dynamic-apis`);
|
||||
}
|
||||
function warnForSyncSpread() {
|
||||
console.error(`The keys of \`searchParams\` were accessed directly. ` + `\`searchParams\` is a Promise and must be unwrapped with \`React.use()\` before accessing its properties. ` + `Learn more: https://nextjs.org/docs/messages/sync-dynamic-apis`);
|
||||
}
|
||||
function createRenderSearchParamsFromClient(underlyingSearchParams) {
|
||||
return makeUntrackedSearchParamsWithDevWarnings(underlyingSearchParams);
|
||||
}
|
||||
|
||||
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=search-params.browser.dev.js.map
|
||||
Reference in New Issue
Block a user