1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-07-13 00:10:37 +02:00

Chore: Refactor mobile plugin logic into locations more consistent with other parts of the app (#10636)

This commit is contained in:
Henry Heino
2024-06-25 05:59:59 -07:00
committed by GitHub
parent 801d36c41f
commit c7116b135f
34 changed files with 155 additions and 91 deletions

View File

@ -0,0 +1,25 @@
const getFormData = () => {
const forms = document.querySelectorAll('form');
if (forms.length === 0) return null;
const serializeForm = (form: HTMLFormElement) => {
const formData = new FormData(form);
// eslint-disable-next-line @typescript-eslint/no-explicit-any -- Old code before rule was applied
const serializedData: Record<string, any> = {};
for (const key of formData.keys()) {
serializedData[key] = formData.get(key);
}
return serializedData;
};
const result = Object.create(null);
let untitledFormId = 0;
for (const form of forms) {
const formId = form.getAttribute('name') || `form-${untitledFormId++}`;
result[formId] = serializeForm(form);
}
return result;
};
export default getFormData;