Skip to content

Commit

Permalink
updating constants to reflect all edu resource types
Browse files Browse the repository at this point in the history
  • Loading branch information
stephiescastle committed Aug 29, 2024
1 parent 5d6b828 commit 80eb984
Showing 1 changed file with 38 additions and 2 deletions.
40 changes: 38 additions & 2 deletions packages/vue/src/constants.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
import type { DictionaryInterface, PillDictionaryInterface } from './interfaces'

export const eduMetadataDictionary: PillDictionaryInterface = {
EDUEventPage: {
variant: 'primary',
icons: 'primary',
type: 'event'
},
EDUCollectionsDetailPage: {
label: 'Collection',
variant: 'primary-inverted',
Expand All @@ -25,10 +30,41 @@ export const eduMetadataDictionary: PillDictionaryInterface = {
icons: 'primary',
type: 'resource'
},
EDUEventPage: {
EDUStudentProjectPage: {
label: 'Student Project',
variant: 'secondary',
icons: 'secondary',
type: 'resource'
},
EDUImageDetailPage: {
label: 'Image',
variant: 'primary',
icons: 'primary',
type: 'event'
type: 'resource'
},
EDUInfographicDetailPage: {
label: 'Infographic',
variant: 'primary',
icons: 'primary',
type: 'resource'
},
EDUDocumentDetailPage: {
label: 'Document',
variant: 'primary',
icons: 'primary',
type: 'resource'
},
EDUVideoDetailPage: {
label: 'Video',
variant: 'primary',
icons: 'primary',
type: 'resource'
},
EDUGalleryDetailPage: {
label: 'Gallery',
variant: 'secondary',
icons: 'secondary',
type: 'resource'
}
}

Expand Down

0 comments on commit 80eb984

Please sign in to comment.