You've already forked joplin
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:
@ -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;
|
Reference in New Issue
Block a user