From 9ce4e383014dd5bcd90f01e218dcd974c29af82e Mon Sep 17 00:00:00 2001 From: Lightling Date: Thu, 17 Oct 2024 17:11:57 -0400 Subject: [PATCH] add tags to schema --- .../content-types/media-entry-tag/schema.json | 30 ++++++++++++++++ .../controllers/media-entry-tag.ts | 7 ++++ .../media-entry-tag/routes/media-entry-tag.ts | 7 ++++ .../services/media-entry-tag.ts | 7 ++++ .../content-types/media-list/schema.json | 6 ---- .../default/entry-tag-collection.json | 18 ---------- .../cms/src/components/default/entry-tag.json | 15 -------- projects/cms/types/generated/components.d.ts | 35 ++---------------- .../cms/types/generated/contentTypes.d.ts | 36 ++++++++++++++++++- 9 files changed, 89 insertions(+), 72 deletions(-) create mode 100644 projects/cms/src/api/media-entry-tag/content-types/media-entry-tag/schema.json create mode 100644 projects/cms/src/api/media-entry-tag/controllers/media-entry-tag.ts create mode 100644 projects/cms/src/api/media-entry-tag/routes/media-entry-tag.ts create mode 100644 projects/cms/src/api/media-entry-tag/services/media-entry-tag.ts delete mode 100644 projects/cms/src/components/default/entry-tag-collection.json delete mode 100644 projects/cms/src/components/default/entry-tag.json diff --git a/projects/cms/src/api/media-entry-tag/content-types/media-entry-tag/schema.json b/projects/cms/src/api/media-entry-tag/content-types/media-entry-tag/schema.json new file mode 100644 index 0000000..7a62349 --- /dev/null +++ b/projects/cms/src/api/media-entry-tag/content-types/media-entry-tag/schema.json @@ -0,0 +1,30 @@ +{ + "kind": "collectionType", + "collectionName": "media_entry_tags", + "info": { + "singularName": "media-entry-tag", + "pluralName": "media-entry-tags", + "displayName": "Media Entry Tag", + "description": "" + }, + "options": { + "draftAndPublish": true + }, + "pluginOptions": {}, + "attributes": { + "tagId": { + "type": "string", + "required": true, + "unique": true + }, + "displayName": { + "type": "string" + }, + "category": { + "type": "string" + }, + "description": { + "type": "text" + } + } +} diff --git a/projects/cms/src/api/media-entry-tag/controllers/media-entry-tag.ts b/projects/cms/src/api/media-entry-tag/controllers/media-entry-tag.ts new file mode 100644 index 0000000..64b9f6e --- /dev/null +++ b/projects/cms/src/api/media-entry-tag/controllers/media-entry-tag.ts @@ -0,0 +1,7 @@ +/** + * media-entry-tag controller + */ + +import { factories } from '@strapi/strapi' + +export default factories.createCoreController('api::media-entry-tag.media-entry-tag'); diff --git a/projects/cms/src/api/media-entry-tag/routes/media-entry-tag.ts b/projects/cms/src/api/media-entry-tag/routes/media-entry-tag.ts new file mode 100644 index 0000000..c89a9c5 --- /dev/null +++ b/projects/cms/src/api/media-entry-tag/routes/media-entry-tag.ts @@ -0,0 +1,7 @@ +/** + * media-entry-tag router + */ + +import { factories } from '@strapi/strapi'; + +export default factories.createCoreRouter('api::media-entry-tag.media-entry-tag'); diff --git a/projects/cms/src/api/media-entry-tag/services/media-entry-tag.ts b/projects/cms/src/api/media-entry-tag/services/media-entry-tag.ts new file mode 100644 index 0000000..400e361 --- /dev/null +++ b/projects/cms/src/api/media-entry-tag/services/media-entry-tag.ts @@ -0,0 +1,7 @@ +/** + * media-entry-tag service + */ + +import { factories } from '@strapi/strapi'; + +export default factories.createCoreService('api::media-entry-tag.media-entry-tag'); diff --git a/projects/cms/src/api/media-list/content-types/media-list/schema.json b/projects/cms/src/api/media-list/content-types/media-list/schema.json index 44e4a67..14014fc 100644 --- a/projects/cms/src/api/media-list/content-types/media-list/schema.json +++ b/projects/cms/src/api/media-list/content-types/media-list/schema.json @@ -12,12 +12,6 @@ }, "pluginOptions": {}, "attributes": { - "tags": { - "displayName": "EntryTagCollection", - "type": "component", - "repeatable": true, - "component": "default.entry-tag-collection" - }, "entries": { "type": "relation", "relation": "manyToMany", diff --git a/projects/cms/src/components/default/entry-tag-collection.json b/projects/cms/src/components/default/entry-tag-collection.json deleted file mode 100644 index 8e0ccda..0000000 --- a/projects/cms/src/components/default/entry-tag-collection.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "collectionName": "components_default_entry_tag_collections", - "info": { - "displayName": "EntryTagCollection" - }, - "options": {}, - "attributes": { - "key": { - "type": "string" - }, - "value": { - "displayName": "EntryTag", - "type": "component", - "repeatable": false, - "component": "default.entry-tag" - } - } -} diff --git a/projects/cms/src/components/default/entry-tag.json b/projects/cms/src/components/default/entry-tag.json deleted file mode 100644 index 3b4bf50..0000000 --- a/projects/cms/src/components/default/entry-tag.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "collectionName": "components_default_entry_tags", - "info": { - "displayName": "EntryTag" - }, - "options": {}, - "attributes": { - "category": { - "type": "string" - }, - "displayName": { - "type": "string" - } - } -} diff --git a/projects/cms/types/generated/components.d.ts b/projects/cms/types/generated/components.d.ts index f4d7fcb..41aa563 100644 --- a/projects/cms/types/generated/components.d.ts +++ b/projects/cms/types/generated/components.d.ts @@ -1,32 +1,3 @@ -import type { Struct, Schema } from '@strapi/strapi'; - -export interface DefaultEntryTag extends Struct.ComponentSchema { - collectionName: 'components_default_entry_tags'; - info: { - displayName: 'EntryTag'; - }; - attributes: { - category: Schema.Attribute.String; - displayName: Schema.Attribute.String; - }; -} - -export interface DefaultEntryTagCollection extends Struct.ComponentSchema { - collectionName: 'components_default_entry_tag_collections'; - info: { - displayName: 'EntryTagCollection'; - }; - attributes: { - key: Schema.Attribute.String; - value: Schema.Attribute.Component<'default.entry-tag', false>; - }; -} - -declare module '@strapi/strapi' { - export module Public { - export interface ComponentSchemas { - 'default.entry-tag': DefaultEntryTag; - 'default.entry-tag-collection': DefaultEntryTagCollection; - } - } -} +/* + * The app doesn't have any components yet. + */ diff --git a/projects/cms/types/generated/contentTypes.d.ts b/projects/cms/types/generated/contentTypes.d.ts index 0ba3737..5efb4fc 100644 --- a/projects/cms/types/generated/contentTypes.d.ts +++ b/projects/cms/types/generated/contentTypes.d.ts @@ -528,6 +528,40 @@ export interface ApiMediaEntryMediaEntry extends Struct.CollectionTypeSchema { }; } +export interface ApiMediaEntryTagMediaEntryTag + extends Struct.CollectionTypeSchema { + collectionName: 'media_entry_tags'; + info: { + singularName: 'media-entry-tag'; + pluralName: 'media-entry-tags'; + displayName: 'Media Entry Tag'; + description: ''; + }; + options: { + draftAndPublish: true; + }; + attributes: { + tagId: Schema.Attribute.String & + Schema.Attribute.Required & + Schema.Attribute.Unique; + displayName: Schema.Attribute.String; + category: Schema.Attribute.String; + description: Schema.Attribute.Text; + createdAt: Schema.Attribute.DateTime; + updatedAt: Schema.Attribute.DateTime; + publishedAt: Schema.Attribute.DateTime; + createdBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> & + Schema.Attribute.Private; + updatedBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> & + Schema.Attribute.Private; + locale: Schema.Attribute.String; + localizations: Schema.Attribute.Relation< + 'oneToMany', + 'api::media-entry-tag.media-entry-tag' + >; + }; +} + export interface ApiMediaListMediaList extends Struct.CollectionTypeSchema { collectionName: 'media_lists'; info: { @@ -540,7 +574,6 @@ export interface ApiMediaListMediaList extends Struct.CollectionTypeSchema { draftAndPublish: true; }; attributes: { - tags: Schema.Attribute.Component<'default.entry-tag-collection', true>; entries: Schema.Attribute.Relation< 'manyToMany', 'api::media-entry.media-entry' @@ -938,6 +971,7 @@ declare module '@strapi/strapi' { 'plugin::users-permissions.role': PluginUsersPermissionsRole; 'plugin::users-permissions.user': PluginUsersPermissionsUser; 'api::media-entry.media-entry': ApiMediaEntryMediaEntry; + 'api::media-entry-tag.media-entry-tag': ApiMediaEntryTagMediaEntryTag; 'api::media-list.media-list': ApiMediaListMediaList; 'admin::permission': AdminPermission; 'admin::user': AdminUser;