decap-cms-core
Version:
Decap CMS core application, see decap-cms package for the main distribution.
62 lines • 1.91 kB
JavaScript
import { jsx as _jsx } from "@emotion/react/jsx-runtime";
export const IDENTIFIER_FIELDS = ['title', 'path'];
export const SORTABLE_FIELDS = ['title', 'date', 'author', 'description'];
export const INFERABLE_FIELDS = {
title: {
type: 'string',
secondaryTypes: [],
synonyms: ['title', 'name', 'label', 'headline', 'header'],
defaultPreview: value => _jsx("h1", {
children: value
}),
// eslint-disable-line react/display-name
fallbackToFirstField: true,
showError: true
},
shortTitle: {
type: 'string',
secondaryTypes: [],
synonyms: ['short_title', 'shortTitle', 'short'],
defaultPreview: value => _jsx("h2", {
children: value
}),
// eslint-disable-line react/display-name
fallbackToFirstField: false,
showError: false
},
author: {
type: 'string',
secondaryTypes: [],
synonyms: ['author', 'name', 'by', 'byline', 'owner'],
defaultPreview: value => _jsx("strong", {
children: value
}),
// eslint-disable-line react/display-name
fallbackToFirstField: false,
showError: false
},
date: {
type: 'datetime',
secondaryTypes: ['date'],
synonyms: ['date', 'publishDate', 'publish_date'],
defaultPreview: value => value,
fallbackToFirstField: false,
showError: false
},
description: {
type: 'string',
secondaryTypes: ['text', 'markdown'],
synonyms: ['shortDescription', 'short_description', 'shortdescription', 'description', 'intro', 'introduction', 'brief', 'content', 'biography', 'bio', 'summary'],
defaultPreview: value => value,
fallbackToFirstField: false,
showError: false
},
image: {
type: 'image',
secondaryTypes: [],
synonyms: ['image', 'thumbnail', 'thumb', 'picture', 'avatar', 'photo', 'cover', 'hero', 'logo'],
defaultPreview: value => value,
fallbackToFirstField: false,
showError: false
}
};