Refactor and add generators for keystatic and package

The changes include refactoring the create-reader in cms keystatic and changing @keystatic/next version. Additionally, code generators for keystatic and package have been added, and corresponding templates have been organized into their respective directories.
This commit is contained in:
giancarlo
2024-05-07 18:52:30 +07:00
parent 7c447c8848
commit bd79563dcd
14 changed files with 185 additions and 92 deletions

View File

@@ -39,7 +39,9 @@ const storage = z.union([local, cloud, github]).parse({
pathPrefix: process.env.KEYSTATIC_PATH_PREFIX,
});
const keyStaticConfig = createKeyStaticConfig();
const keyStaticConfig = createKeyStaticConfig(
process.env.NEXT_PUBLIC_KEYSTATIC_CONTENT_PATH ?? 'content',
);
export default keyStaticConfig;
@@ -75,14 +77,14 @@ export type PostEntryProps = Entry<
(typeof keyStaticConfig)['collections']['posts']
>;
function createKeyStaticConfig() {
function createKeyStaticConfig(path: string) {
return config({
storage,
collections: {
posts: collection({
label: 'Posts',
slugField: 'title',
path: `posts/*`,
path: `${path}/posts/*`,
format: { contentField: 'content' },
schema: {
title: fields.slug({ name: { label: 'Title' } }),
@@ -107,7 +109,7 @@ function createKeyStaticConfig() {
documentation: collection({
label: 'Documentation',
slugField: 'title',
path: `documentation/**`,
path: `${path}/documentation/**`,
format: { contentField: 'content' },
schema: {
title: fields.slug({ name: { label: 'Title' } }),