mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-29 15:12:58 +03:00
f1beff3c03
refs https://github.com/TryGhost/Ghost/issues/9724 - add `src` param to the `image` card for use in the slash menu - typing `/image http://example.com/image.jpeg` then pressing <kbd>Enter</kbd> will create an image card with the src pre-set
100 lines
2.8 KiB
JavaScript
100 lines
2.8 KiB
JavaScript
import createComponentCard from '../utils/create-component-card';
|
|
|
|
// TODO: move koenigOptions directly into cards now that card components register
|
|
// themselves so that they are available on card.component
|
|
export default [
|
|
createComponentCard('card-markdown'), // backwards-compat with markdown editor
|
|
createComponentCard('code', {deleteIfEmpty: 'payload.code'}),
|
|
createComponentCard('embed', {hasEditMode: false, deleteIfEmpty: 'payload.html'}),
|
|
createComponentCard('hr', {hasEditMode: false, selectAfterInsert: false}),
|
|
createComponentCard('html', {deleteIfEmpty: 'payload.html'}),
|
|
createComponentCard('image', {hasEditMode: false}),
|
|
createComponentCard('markdown', {deleteIfEmpty: 'payload.markdown'})
|
|
];
|
|
|
|
export const CARD_MENU = [
|
|
{
|
|
title: 'Basic',
|
|
items: [{
|
|
label: 'Image',
|
|
icon: 'koenig/image',
|
|
matches: ['image', 'img'],
|
|
type: 'card',
|
|
replaceArg: 'image',
|
|
params: ['src']
|
|
},
|
|
{
|
|
label: 'Markdown',
|
|
icon: 'koenig/markdown',
|
|
matches: ['markdown', 'md'],
|
|
type: 'card',
|
|
replaceArg: 'markdown'
|
|
},
|
|
{
|
|
label: 'HTML',
|
|
icon: 'koenig/html',
|
|
matches: ['html'],
|
|
type: 'card',
|
|
replaceArg: 'html'
|
|
},
|
|
{
|
|
label: 'Divider',
|
|
icon: 'koenig/divider',
|
|
matches: ['divider', 'horizontal-rule', 'hr'],
|
|
type: 'card',
|
|
replaceArg: 'hr'
|
|
}]
|
|
},
|
|
{
|
|
title: 'Embed',
|
|
items: [{
|
|
label: 'YouTube',
|
|
icon: 'koenig/youtube',
|
|
matches: ['youtube'],
|
|
type: 'card',
|
|
replaceArg: 'embed',
|
|
params: ['url']
|
|
},
|
|
{
|
|
label: 'Twitter',
|
|
icon: 'koenig/twitter',
|
|
matches: ['twitter'],
|
|
type: 'card',
|
|
replaceArg: 'embed',
|
|
params: ['url']
|
|
},
|
|
{
|
|
label: 'Facebook',
|
|
icon: 'koenig/facebook',
|
|
matches: ['facebook'],
|
|
type: 'card',
|
|
replaceArg: 'embed',
|
|
params: ['url']
|
|
},
|
|
{
|
|
label: 'SoundCloud',
|
|
icon: 'koenig/soundcloud',
|
|
matches: ['soundcloud'],
|
|
type: 'card',
|
|
replaceArg: 'embed',
|
|
params: ['url']
|
|
},
|
|
{
|
|
label: 'CodePen',
|
|
icon: 'koenig/codepen',
|
|
matches: ['codepen'],
|
|
type: 'card',
|
|
replaceArg: 'embed',
|
|
params: ['url']
|
|
},
|
|
{
|
|
label: 'Other...',
|
|
icon: 'koenig/code-block',
|
|
matches: ['embed'],
|
|
type: 'card',
|
|
replaceArg: 'embed',
|
|
params: ['url']
|
|
}]
|
|
}
|
|
];
|