Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 | 117x 117x 117x | import { DateTime } from 'luxon';
import { Plugin } from '../../model/plugin';
import { Mod } from '../../model/tag';
export const oEmbedPlugin: Plugin = {
tag: '+plugin/oembed',
name: $localize`📡️ oEmbed`,
config: {
version: 1,
default: true,
generated: $localize`Generated by jasper-ui ${DateTime.now().toISO()}`,
settings: $localize`oembed`,
submit: $localize`📡️ oembed`,
genId: true,
internal: true,
icons: [{ label: $localize`📡️`, order: 3 }],
description: $localize`Register an oEmbed API.`,
hasDefaults: true,
defaultsConfirm: $localize`Warning!
This will load in the default set of oEmbed settings, overwriting any changes you have made.
Any additional oEmbed settings you have added will not be deleted.`,
form: [{
key: 'provider_name',
type: 'string',
}, {
key: 'provider_url',
type: 'url',
}, {
key: 'endpoints',
type: 'list',
props: {
label: $localize`Endpoints:`,
addText: $localize`+ Add another endpoint`,
},
fieldArray: {
fieldGroup: [{
key: 'url',
type: 'url',
}, {
key: 'discovery',
type: 'boolean',
props: {
label: $localize`Discovery:`
}
}, {
key: 'schemes',
type: 'urls',
props: {
label: $localize`Schemes:`,
addText: $localize`+ Add another scheme`
},
fieldArray: {
props: {
label: $localize`🔗️*`,
}
},
}, {
key: 'formats',
type: 'list',
props: {
label: $localize`Formats:`,
addText: $localize`+ Add another format`
},
fieldArray: {
type: 'string',
}
}]
}
}]
},
schema: {
optionalProperties: {
provider_name: { type: 'string' },
provider_url: { type: 'string' },
endpoints: { elements: {
optionalProperties: {
url: { type: 'string' },
discovery: { type: 'boolean' },
schemes: { elements: { type: 'string' } },
formats: { elements: { type: 'string' } },
},
},
},
},
}
};
export const oembedMod: Mod = {
plugin: [
oEmbedPlugin,
]
};
|