Files
Mickael Kerjean 90a2ae2b8e feature (config): make config look nicer
before this, our config.json didn't look user friendly with a massive:
{
    "general": {
        "name": null,
        "port": null,
        "host": "demo.filestash.app",
        "secret_key": "__REDACTED__",
        "force_ssl": null,
        "editor": null,
        "fork_button": null,
        "logout": null,
        "display_hidden": null,
        "refresh_after_upload": null,
        "upload_button": null,
        "upload_pool_size": null,
        "filepage_default_view": null,
        "filepage_default_sort": null,
        "cookie_timeout": null,
        "custom_css": null,
        "auto_connect": null,
        "enable_image": null,
        "remember_me": null
    },
    "features": {
        "api": {
            "enable": null,
            "api_key": "foobar ",
            "enabled": null
        },
        "share": {
            "enable": null,
            "default_access": null,
            "redirect": null
        },
     .....
}

which now translates to a much nicer:
{
    "general": {
         "host": "demo.filestash.app",
         "secret_key": "__REDACTED__"
    },
    "features": {
        "api": {
            "api_key": "foobar "
        },
    ...
}
2022-11-21 08:08:24 +11:00

127 lines
4.0 KiB
JavaScript

export const FormObjToJSON = function(o, fn, i = 0) {
if (i === 0 && o !== null) delete o["constants"];
const obj = Object.assign({}, o);
Object.keys(obj).map((key) => {
const t = obj[key];
if ("label" in t && "type" in t && "default" in t && "value" in t) {
if (typeof fn === "function") {
fn(obj, key);
} else {
obj[key] = obj[key].value;
}
} else {
obj[key] = FormObjToJSON(obj[key], fn, i+1);
}
});
return obj;
};
export function createFormBackend(backend_available, backend_data) {
if (!backend_available) return {};
else if (!backend_data) return {};
else if (!backend_available[backend_data.type]) return {};
let template = JSON.parse(JSON.stringify(backend_available[backend_data.type]));
for (const key in backend_data) {
if (key in template) {
template[key].value = backend_data[key];
template[key].enabled = true;
} else {
// create a form object if data isn't available in the template
const obj = {};
obj[key] = {
label: key,
type: "text",
value: null,
default: backend_data[key],
};
template = Object.assign(obj, template);
}
if (key === "label") {
template[key].placeholder = "Name as shown on the login screen.";
template[key].value = backend_data[key];
template[key].enabled = true;
} else if (key === "type") {
template[key].enabled = true;
} else if (key === "advanced") {
template[key].enabled = true;
}
}
const obj = {};
obj[backend_data.type] = template;
return obj;
}
/*
* return a new list of autocompletion candidates considering the current input
*/
export function autocomplete(values, list) {
if (values.length === 0) return list;
let candidates_input = [];
let candidates_output = [];
for (let i=0; i<list.length; i++) {
const last_value = values[values.length - 1];
if (list[i].indexOf(last_value) === 0) {
const tmp = JSON.parse(JSON.stringify(values));
tmp[values.length - 1] = list[i];
if (list[i] === last_value) {
candidates_input = [tmp];
} else {
candidates_input.push(tmp);
}
continue;
}
if (values.indexOf(list[i]) === -1) {
candidates_output.push(list[i]);
}
}
if (candidates_input.length === 0) {
candidates_input = [values];
}
candidates_output = [""].concat(candidates_output);
if (candidates_input.length > 1) {
return candidates_input.map((candidate) => {
return candidate.join(", ");
});
}
return candidates_output.map((candidate, idx) => {
return candidates_input[0]
.concat(candidate)
.join(", ")
.replace(/\,\s?$/, "");
});
}
export function JSONStringify(data) {
return JSON.stringify(data, (key, value) => {
if (value === null) return;
else if (value === undefined) return;
else if (value === "") return;
else if (Array.isArray(value)) return value;
else if (typeof(value) === "string") return value;
else if (typeof(value) === "number") return value;
else if (typeof(value) === "boolean") return value;
else if (typeof(value) === "object") {
const tmp = Object.values(value);
if (tmp.length === 0) return;
if (tmp.filter((n) => {
if(JSON.stringify(n) === "{}") return false;
else if(n === null) return false;
return true;
}).length === 0) return;
return value;
}
const msg = `[BUG] unknown stringify value (helpers/form.js): ${value}`;
console.error(msg);
throw new Error(msg);
});
}