Skip to content
Snippets Groups Projects
Commit 59e98023 authored by Angelina Filippova's avatar Angelina Filippova
Browse files

Wrap values with type map

parent 2448ccee
No related branches found
No related tags found
No related merge requests found
......@@ -3,7 +3,7 @@ const nonAtomsObjects = ['match_actor', ':match_actor']
const objects = ['digest', 'pleroma_fe', 'masto_fe', 'poll_limits', 'styling']
const objectParents = ['mascots']
const groupWithoutKey = settings => settings.noKey ? settings.noKey[1] : false
const groupWithoutKey = settings => settings._value ? settings._value[1] : false
// REFACTOR
export const parseTuples = (tuples, key) => {
......@@ -83,6 +83,12 @@ const wrapValues = settings => {
return { 'tuple': [setting, wrapValues(value)] }
} else if (type === 'atom') {
return { 'tuple': [setting, `:${value}`] }
} else if (type === 'map') {
const objectValue = Object.keys(value).reduce((acc, key) => {
acc[key] = value[key][1]
return acc
}, {})
return { 'tuple': [setting, objectValue] }
} else if (setting === ':ip') {
const ip = value.split('.').map(s => parseInt(s, 10))
return { 'tuple': [setting, { 'tuple': ip }] }
......
......@@ -85,7 +85,7 @@ const settings = {
UpdateSettings({ commit }, { group, key, input, value, type }) {
key
? commit('UPDATE_SETTINGS', { group, key, input, value, type })
: commit('UPDATE_SETTINGS', { group, key: input, input: 'noKey', value, type })
: commit('UPDATE_SETTINGS', { group, key: input, input: '_value', value, type })
},
UpdateState({ commit }, { group, key, input, value }) {
key
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment