0
0
Fork 1
Spiegel von https://github.com/paviliondev/discourse-custom-wizard.git synchronisiert 2024-09-20 07:41:11 +02:00
discourse-custom-wizard/assets/javascripts/discourse/lib/wizard-mapper.js.es6

155 Zeilen
3,3 KiB
Text

2020-04-02 07:21:57 +02:00
import EmberObject from "@ember/object";
2020-04-01 12:58:30 +02:00
// Inputs
const selectableInputTypes = [
'conditional',
'assignment'
]
function defaultInputType(options = {}) {
if (!options.hasOutput) return 'pair';
if (!options.inputTypes) return selectableInputTypes[0];
return options.inputTypes.split(',')[0];
}
function mapInputTypes(types) {
return types.map(function(type) {
return {
id: type,
name: I18n.t(`admin.wizard.input.${type}.name`)
};
});
}
function inputTypesContent(options = {}) {
return options.inputTypes ?
mapInputTypes(options.inputTypes.split(',')) :
mapInputTypes(selectableInputTypes);
}
// Connectors
const connectors = {
output: [
'then',
'set',
],
pair: [
'equal',
'greater',
'less',
'greater_or_equal',
'less_or_equal'
]
}
function defaultConnector(connectorType, inputType, opts = {}) {
if (opts[`${connectorType}Connector`]) return opts[`${connectorType}Connector`];
2020-04-02 07:21:57 +02:00
if (inputType === 'assignment' && connectorType === 'output') return 'set';
if (inputType === 'conditional' && connectorType === 'output') return 'then';
if (inputType === 'conditional' && connectorType === 'pair') return 'equal';
if (inputType === 'pair') return 'equal';
2020-04-01 12:58:30 +02:00
}
function connectorContent(connectorType, inputType, opts) {
2020-04-02 07:21:57 +02:00
let connector = opts[`${connectorType}Connector`];
if (!connector && connectorType === 'output') {
connector = defaultConnector(connectorType, inputType, opts);
}
2020-04-01 12:58:30 +02:00
2020-04-02 07:21:57 +02:00
let content = connector ? [connector] : connectors[connectorType];
return content.map(function(item) {
return {
id: item,
name: I18n.t(`admin.wizard.connector.${item}`)
};
2020-04-01 12:58:30 +02:00
});
}
// Selectors
const selectionTypes = [
'text',
'wizard',
2020-04-02 10:21:03 +02:00
'userField',
2020-04-01 12:58:30 +02:00
'group',
'category',
2020-04-02 10:21:03 +02:00
'tag',
'user'
2020-04-01 12:58:30 +02:00
]
function defaultSelectionType(inputType, options = {}) {
if (options[`${inputType}DefaultSelection`]) {
return options[`${inputType}DefaultSelection`];
}
let type = selectionTypes[0];
for (let t of selectionTypes) {
let inputTypes = options[`${t}Selection`];
if (inputTypes === true ||
((typeof inputTypes === 'string') &&
inputTypes.split(',').indexOf(inputType) > -1)) {
2020-04-02 07:21:57 +02:00
2020-04-01 12:58:30 +02:00
type = t;
break;
}
}
return type;
}
// items
function newPair(inputType, options = {}) {
let params = {
index: options.index,
pairCount: options.pairCount,
key: '',
key_type: defaultSelectionType('key', options),
value: '',
value_type: defaultSelectionType('value', options),
connector: defaultConnector('pair', inputType, options)
}
2020-04-02 07:21:57 +02:00
return EmberObject.create(params);
2020-04-01 12:58:30 +02:00
}
function newInput(options = {}) {
const inputType = defaultInputType(options);
let params = {
type: inputType,
pairs: Ember.A(
[
newPair(
inputType,
Object.assign({},
options,
{ index: 0, pairCount: 1 }
)
)
]
)
}
if (options.hasOutput) {
params['output_type'] = defaultSelectionType('output', options);
params['connector'] = defaultConnector('output', inputType, options);
}
2020-04-02 07:21:57 +02:00
return EmberObject.create(params);
2020-04-01 12:58:30 +02:00
}
export {
defaultInputType,
defaultSelectionType,
connectorContent,
inputTypesContent,
newInput,
newPair,
}