Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-10 04:12:53 +01:00
d26744cf56
- support custom field types - move client schema to seperate helper - handle schema defaults properly
95 Zeilen
2,8 KiB
JavaScript
95 Zeilen
2,8 KiB
JavaScript
import { default as discourseComputed, observes } from 'discourse-common/utils/decorators';
|
|
import { equal, or } from "@ember/object/computed";
|
|
import { selectKitContent } from '../lib/wizard';
|
|
import { default as wizardSchema, setSchemaDefaults } from '../lib/wizard-schema';
|
|
import Component from "@ember/component";
|
|
|
|
export default Component.extend({
|
|
classNames: 'wizard-custom-field',
|
|
isDropdown: equal('field.type', 'dropdown'),
|
|
isUpload: equal('field.type', 'upload'),
|
|
isCategory: equal('field.type', 'category'),
|
|
isGroup: equal('field.type', 'group'),
|
|
isTag: equal('field.type', 'tag'),
|
|
isText: equal('field.type', 'text'),
|
|
isTextarea: equal('field.type', 'textarea'),
|
|
isUrl: equal('field.type', 'url'),
|
|
showPrefill: or('isCategory', 'isTag', 'isGroup', 'isDropdown'),
|
|
showContent: or('isCategory', 'isTag', 'isGroup', 'isDropdown'),
|
|
showLimit: or('isCategory', 'isTag'),
|
|
showMinLength: or('isText', 'isTextarea', 'isUrl', 'isComposer'),
|
|
categoryPropertyTypes: selectKitContent(['id', 'slug']),
|
|
|
|
// setTypeDefaults only set defaults if the field type of a specific field
|
|
// changes, and not when switching between fields. Switching between fields also
|
|
// changes the field.type property in this component
|
|
|
|
@observes('field.id', 'field.type')
|
|
setTypeDefaults(ctx, changed) {
|
|
if (this.field.id === this.bufferedFieldId) {
|
|
setSchemaDefaults(this.field, 'field');
|
|
}
|
|
if (changed === 'field.type') {
|
|
this.set('bufferedFieldId', this.field.id);
|
|
}
|
|
},
|
|
|
|
setupTypeOutput(fieldType, options) {
|
|
const selectionType = {
|
|
category: 'category',
|
|
tag: 'tag',
|
|
group: 'group'
|
|
}[fieldType];
|
|
|
|
if (selectionType) {
|
|
options[`${selectionType}Selection`] = 'output';
|
|
options.outputDefaultSelection = selectionType;
|
|
}
|
|
|
|
return options;
|
|
},
|
|
|
|
@discourseComputed('field.type')
|
|
contentOptions(fieldType) {
|
|
let options = {
|
|
wizardFieldSelection: true,
|
|
textSelection: 'key,value',
|
|
userFieldSelection: 'key,value',
|
|
context: 'field'
|
|
}
|
|
|
|
options = this.setupTypeOutput(fieldType, options);
|
|
|
|
if (this.isDropdown) {
|
|
options.wizardFieldSelection = 'key,value';
|
|
options.inputTypes = 'association';
|
|
options.pairConnector = 'association';
|
|
options.keyPlaceholder = 'admin.wizard.key';
|
|
options.valuePlaceholder = 'admin.wizard.value';
|
|
}
|
|
|
|
return options;
|
|
},
|
|
|
|
@discourseComputed('field.type')
|
|
prefillOptions(fieldType) {
|
|
let options = {
|
|
wizardFieldSelection: true,
|
|
textSelection: true,
|
|
userFieldSelection: 'key,value',
|
|
context: 'field'
|
|
}
|
|
|
|
return this.setupTypeOutput(fieldType, options);
|
|
},
|
|
|
|
actions: {
|
|
imageUploadDone(upload) {
|
|
this.set("field.image", upload.url);
|
|
},
|
|
|
|
imageUploadDeleted() {
|
|
this.set("field.image", null);
|
|
}
|
|
}
|
|
});
|