mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2025-06-15 18:40:40 +00:00
Better auto initialization method for forms and resource displays
This commit is contained in:
@ -1,10 +1,5 @@
|
||||
Forms.CreateContributionForm = class CreateContributionForm extends Forms.BaseForm {
|
||||
static autoInit() {
|
||||
let createContributionFormElements = document.querySelectorAll('.create-contribution-form');
|
||||
for (let createContributionFormElement of createContributionFormElements) {
|
||||
new Forms.CreateContributionForm(createContributionFormElement);
|
||||
}
|
||||
}
|
||||
static htmlClass = 'create-contribution-form';
|
||||
|
||||
constructor(formElement) {
|
||||
super(formElement);
|
||||
|
@ -1,10 +1,5 @@
|
||||
Forms.CreateCorpusFileForm = class CreateCorpusFileForm extends Forms.BaseForm {
|
||||
static autoInit() {
|
||||
let createCorpusFileFormElements = document.querySelectorAll('.create-corpus-file-form');
|
||||
for (let createCorpusFileFormElement of createCorpusFileFormElements) {
|
||||
new Forms.CreateCorpusFileForm(createCorpusFileFormElement);
|
||||
}
|
||||
}
|
||||
static htmlClass = 'create-corpus-file-form';
|
||||
|
||||
constructor(formElement) {
|
||||
super(formElement);
|
||||
|
@ -1,10 +1,5 @@
|
||||
Forms.CreateJobForm = class CreateJobForm extends Forms.BaseForm {
|
||||
static autoInit() {
|
||||
let createJobFormElements = document.querySelectorAll('.create-job-form');
|
||||
for (let createJobFormElement of createJobFormElements) {
|
||||
new Forms.CreateJobForm(createJobFormElement);
|
||||
}
|
||||
}
|
||||
static htmlClass = 'create-job-form';
|
||||
|
||||
constructor(formElement) {
|
||||
super(formElement);
|
||||
|
@ -3,15 +3,22 @@ var Forms = {};
|
||||
Forms.autoInit = () => {
|
||||
for (let propertyName in Forms) {
|
||||
let property = Forms[propertyName];
|
||||
// Call the autoInit method of all properties that are subclasses of Forms.BaseForm
|
||||
// Call autoInit of all properties that are subclasses of Forms.BaseForm.
|
||||
// This does not include Forms.BaseForm itself.
|
||||
if (property.prototype instanceof Forms.BaseForm) {
|
||||
property.autoInit();
|
||||
// Check if the static htmlClass property is defined.
|
||||
if (property.htmlClass === undefined) {return;}
|
||||
// Gather all HTML elements that have the `this.htmlClass` class
|
||||
// and do not have the no-autoinit class.
|
||||
let formElements = document.querySelectorAll(`.${property.htmlClass}:not(.no-autoinit)`);
|
||||
// Create an instance of this class for each form element.
|
||||
for (let formElement of formElements) {new property(formElement);}
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
Forms.BaseForm = class BaseForm {
|
||||
static autoInit() {throw 'Not implemented';}
|
||||
static htmlClass;
|
||||
|
||||
constructor(formElement) {
|
||||
this.formElement = formElement;
|
||||
|
Reference in New Issue
Block a user