import Component from "@ember/component"; import I18n from "I18n"; import { isEmpty } from "@ember/utils"; import { on } from "discourse-common/utils/decorators"; import { set } from "@ember/object"; export default Component.extend({ classNameBindings: [":value-list", ":secret-value-list"], inputDelimiter: null, collection: null, values: null, validationMessage: null, @on("didReceiveAttrs") _setupCollection() { const values = this.values; this.set( "collection", this._splitValues(values, this.inputDelimiter || "\n") ); }, actions: { changeKey(index, event) { const newValue = event.target.value; if (this._checkInvalidInput(newValue)) { return; } this._replaceValue(index, newValue, "key"); }, changeSecret(index, event) { const newValue = event.target.value; if (this._checkInvalidInput(newValue)) { return; } this._replaceValue(index, newValue, "secret"); }, addValue() { if (this._checkInvalidInput([this.newKey, this.newSecret])) { return; } this._addValue(this.newKey, this.newSecret); this.setProperties({ newKey: "", newSecret: "" }); }, removeValue(value) { this._removeValue(value); }, }, _checkInvalidInput(inputs) { this.set("validationMessage", null); for (let input of inputs) { if (isEmpty(input) || input.includes("|")) { this.set( "validationMessage", I18n.t("admin.site_settings.secret_list.invalid_input") ); return true; } } }, _addValue(value, secret) { this.collection.addObject({ key: value, secret }); this._saveValues(); }, _removeValue(value) { const collection = this.collection; collection.removeObject(value); this._saveValues(); }, _replaceValue(index, newValue, keyName) { let item = this.collection[index]; set(item, keyName, newValue); this._saveValues(); }, _saveValues() { this.set( "values", this.collection .map(function (elem) { return `${elem.key}|${elem.secret}`; }) .join("\n") ); }, _splitValues(values, delimiter) { if (values && values.length) { const keys = ["key", "secret"]; let res = []; values.split(delimiter).forEach(function (str) { let object = {}; str.split("|").forEach(function (a, i) { object[keys[i]] = a; }); res.push(object); }); return res; } else { return []; } }, });