shorten many invocations of Ajax.Request in inline form methods
This commit is contained in:
parent
ee0b66b6bd
commit
39c0fe3697
|
@ -291,17 +291,13 @@ class Pref_Prefs extends Handler_Protected {
|
||||||
<?= \Controls\hidden_tag("op", "pref-prefs") ?>
|
<?= \Controls\hidden_tag("op", "pref-prefs") ?>
|
||||||
<?= \Controls\hidden_tag("method", "changeemail") ?>
|
<?= \Controls\hidden_tag("method", "changeemail") ?>
|
||||||
|
|
||||||
<script type='dojo/method' event='onSubmit' args='evt'>
|
<script type="dojo/method" event="onSubmit" args="evt">
|
||||||
evt.preventDefault();
|
evt.preventDefault();
|
||||||
if (this.validate()) {
|
if (this.validate()) {
|
||||||
Notify.progress('Saving data...', true);
|
Notify.progress('Saving data...', true);
|
||||||
|
xhrPost("backend.php", this.getValues(), (transport) => {
|
||||||
new Ajax.Request('backend.php', {
|
|
||||||
parameters: dojo.objectToQuery(this.getValues()),
|
|
||||||
onComplete: function(transport) {
|
|
||||||
Notify.info(transport.responseText);
|
Notify.info(transport.responseText);
|
||||||
}
|
})
|
||||||
});
|
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
@ -350,14 +346,12 @@ class Pref_Prefs extends Handler_Protected {
|
||||||
<?= \Controls\hidden_tag("op", "pref-prefs") ?>
|
<?= \Controls\hidden_tag("op", "pref-prefs") ?>
|
||||||
<?= \Controls\hidden_tag("method", "changepassword") ?>
|
<?= \Controls\hidden_tag("method", "changepassword") ?>
|
||||||
|
|
||||||
<script type='dojo/method' event='onSubmit' args='evt'>
|
<!-- TODO: return JSON the backend call -->
|
||||||
|
<script type="dojo/method" event="onSubmit" args="evt">
|
||||||
evt.preventDefault();
|
evt.preventDefault();
|
||||||
if (this.validate()) {
|
if (this.validate()) {
|
||||||
Notify.progress('Changing password...', true);
|
Notify.progress('Saving data...', true);
|
||||||
|
xhrPost("backend.php", this.getValues(), (transport) => {
|
||||||
new Ajax.Request('backend.php', {
|
|
||||||
parameters: dojo.objectToQuery(this.getValues()),
|
|
||||||
onComplete: function(transport) {
|
|
||||||
Notify.close();
|
Notify.close();
|
||||||
if (transport.responseText.indexOf('ERROR: ') == 0) {
|
if (transport.responseText.indexOf('ERROR: ') == 0) {
|
||||||
|
|
||||||
|
@ -373,9 +367,7 @@ class Pref_Prefs extends Handler_Protected {
|
||||||
}
|
}
|
||||||
|
|
||||||
new Effect.Appear('pwd_change_infobox');
|
new Effect.Appear('pwd_change_infobox');
|
||||||
}
|
})
|
||||||
});
|
|
||||||
this.reset();
|
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
@ -459,23 +451,20 @@ class Pref_Prefs extends Handler_Protected {
|
||||||
<?= \Controls\hidden_tag("op", "pref-prefs") ?>
|
<?= \Controls\hidden_tag("op", "pref-prefs") ?>
|
||||||
<?= \Controls\hidden_tag("method", "otpdisable") ?>
|
<?= \Controls\hidden_tag("method", "otpdisable") ?>
|
||||||
|
|
||||||
<script type='dojo/method' event='onSubmit' args='evt'>
|
<!-- TODO: return JSON from the backend call -->
|
||||||
|
<script type="dojo/method" event="onSubmit" args="evt">
|
||||||
evt.preventDefault();
|
evt.preventDefault();
|
||||||
if (this.validate()) {
|
if (this.validate()) {
|
||||||
Notify.progress('Disabling OTP', true);
|
Notify.progress('Saving data...', true);
|
||||||
|
xhrPost("backend.php", this.getValues(), (transport) => {
|
||||||
new Ajax.Request('backend.php', {
|
|
||||||
parameters: dojo.objectToQuery(this.getValues()),
|
|
||||||
onComplete: function(transport) {
|
|
||||||
Notify.close();
|
Notify.close();
|
||||||
|
|
||||||
if (transport.responseText.indexOf('ERROR: ') == 0) {
|
if (transport.responseText.indexOf('ERROR: ') == 0) {
|
||||||
Notify.error(transport.responseText.replace('ERROR: ', ''));
|
Notify.error(transport.responseText.replace('ERROR: ', ''));
|
||||||
} else {
|
} else {
|
||||||
window.location.reload();
|
window.location.reload();
|
||||||
}
|
}
|
||||||
}
|
})
|
||||||
});
|
|
||||||
this.reset();
|
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
@ -521,22 +510,20 @@ class Pref_Prefs extends Handler_Protected {
|
||||||
<input dojoType='dijit.form.ValidationTextBox' disabled='disabled' value="<?= $otp_secret ?>" size='32'>
|
<input dojoType='dijit.form.ValidationTextBox' disabled='disabled' value="<?= $otp_secret ?>" size='32'>
|
||||||
</fieldset>
|
</fieldset>
|
||||||
|
|
||||||
<script type='dojo/method' event='onSubmit' args='evt'>
|
<!-- TODO: return JSON from the backend call -->
|
||||||
|
<script type="dojo/method" event="onSubmit" args="evt">
|
||||||
evt.preventDefault();
|
evt.preventDefault();
|
||||||
if (this.validate()) {
|
if (this.validate()) {
|
||||||
Notify.progress('Saving data...', true);
|
Notify.progress('Saving data...', true);
|
||||||
|
xhrPost("backend.php", this.getValues(), (transport) => {
|
||||||
new Ajax.Request('backend.php', {
|
|
||||||
parameters: dojo.objectToQuery(this.getValues()),
|
|
||||||
onComplete: function(transport) {
|
|
||||||
Notify.close();
|
Notify.close();
|
||||||
|
|
||||||
if (transport.responseText.indexOf('ERROR:') == 0) {
|
if (transport.responseText.indexOf('ERROR:') == 0) {
|
||||||
Notify.error(transport.responseText.replace('ERROR:', ''));
|
Notify.error(transport.responseText.replace('ERROR:', ''));
|
||||||
} else {
|
} else {
|
||||||
window.location.reload();
|
window.location.reload();
|
||||||
}
|
}
|
||||||
}
|
})
|
||||||
});
|
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
@ -806,26 +793,23 @@ class Pref_Prefs extends Handler_Protected {
|
||||||
<form dojoType='dijit.form.Form' id='changeSettingsForm'>
|
<form dojoType='dijit.form.Form' id='changeSettingsForm'>
|
||||||
<?= \Controls\hidden_tag("op", "pref-prefs") ?>
|
<?= \Controls\hidden_tag("op", "pref-prefs") ?>
|
||||||
<?= \Controls\hidden_tag("method", "saveconfig") ?>
|
<?= \Controls\hidden_tag("method", "saveconfig") ?>
|
||||||
<script type='dojo/method' event='onSubmit' args='evt, quit'>
|
|
||||||
|
<script type="dojo/method" event="onSubmit" args="evt, quit">
|
||||||
if (evt) evt.preventDefault();
|
if (evt) evt.preventDefault();
|
||||||
if (this.validate()) {
|
if (this.validate()) {
|
||||||
console.log(dojo.objectToQuery(this.getValues()));
|
xhrPost("backend.php", this.getValues(), (transport) => {
|
||||||
|
|
||||||
new Ajax.Request('backend.php', {
|
|
||||||
parameters: dojo.objectToQuery(this.getValues()),
|
|
||||||
onComplete: function(transport) {
|
|
||||||
var msg = transport.responseText;
|
|
||||||
if (quit) {
|
if (quit) {
|
||||||
document.location.href = 'index.php';
|
document.location.href = 'index.php';
|
||||||
} else {
|
} else {
|
||||||
|
const msg = transport.responseText;
|
||||||
|
|
||||||
if (msg == 'PREFS_NEED_RELOAD') {
|
if (msg == 'PREFS_NEED_RELOAD') {
|
||||||
window.location.reload();
|
window.location.reload();
|
||||||
} else {
|
} else {
|
||||||
Notify.info(msg);
|
Notify.info(msg);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
})
|
||||||
});
|
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
@ -958,17 +942,12 @@ class Pref_Prefs extends Handler_Protected {
|
||||||
<script type="dojo/method" event="onSubmit" args="evt">
|
<script type="dojo/method" event="onSubmit" args="evt">
|
||||||
evt.preventDefault();
|
evt.preventDefault();
|
||||||
if (this.validate()) {
|
if (this.validate()) {
|
||||||
Notify.progress('Saving data...', true);
|
xhrPost("backend.php", this.getValues(), (transport) => {
|
||||||
|
|
||||||
new Ajax.Request('backend.php', {
|
|
||||||
parameters: dojo.objectToQuery(this.getValues()),
|
|
||||||
onComplete: function(transport) {
|
|
||||||
Notify.close();
|
Notify.close();
|
||||||
if (confirm(__('Selected plugins have been enabled. Reload?'))) {
|
if (confirm(__('Selected plugins have been enabled. Reload?'))) {
|
||||||
window.location.reload();
|
window.location.reload();
|
||||||
}
|
}
|
||||||
}
|
})
|
||||||
});
|
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
|
@ -69,17 +69,13 @@ class Af_Readability extends Plugin {
|
||||||
|
|
||||||
<?= \Controls\pluginhandler_tags($this, "save") ?>
|
<?= \Controls\pluginhandler_tags($this, "save") ?>
|
||||||
|
|
||||||
<script type='dojo/method' event='onSubmit' args='evt'>
|
<script type="dojo/method" event="onSubmit" args="evt">
|
||||||
evt.preventDefault();
|
evt.preventDefault();
|
||||||
if (this.validate()) {
|
if (this.validate()) {
|
||||||
console.log(dojo.objectToQuery(this.getValues()));
|
Notify.progress('Saving data...', true);
|
||||||
new Ajax.Request('backend.php', {
|
xhrPost("backend.php", this.getValues(), (transport) => {
|
||||||
parameters: dojo.objectToQuery(this.getValues()),
|
|
||||||
onComplete: function(transport) {
|
|
||||||
Notify.info(transport.responseText);
|
Notify.info(transport.responseText);
|
||||||
}
|
})
|
||||||
});
|
|
||||||
//this.reset();
|
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
|
@ -43,16 +43,13 @@ class Af_RedditImgur extends Plugin {
|
||||||
|
|
||||||
<?= \Controls\pluginhandler_tags($this, "save") ?>
|
<?= \Controls\pluginhandler_tags($this, "save") ?>
|
||||||
|
|
||||||
<script type='dojo/method' event='onSubmit' args='evt'>
|
<script type="dojo/method" event="onSubmit" args="evt">
|
||||||
evt.preventDefault();
|
evt.preventDefault();
|
||||||
if (this.validate()) {
|
if (this.validate()) {
|
||||||
console.log(dojo.objectToQuery(this.getValues()));
|
Notify.progress('Saving data...', true);
|
||||||
new Ajax.Request('backend.php', {
|
xhrPost("backend.php", this.getValues(), (transport) => {
|
||||||
parameters: dojo.objectToQuery(this.getValues()),
|
|
||||||
onComplete: function(transport) {
|
|
||||||
Notify.info(transport.responseText);
|
Notify.info(transport.responseText);
|
||||||
}
|
})
|
||||||
});
|
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
|
@ -50,13 +50,10 @@ class Mail extends Plugin {
|
||||||
<script type="dojo/method" event="onSubmit" args="evt">
|
<script type="dojo/method" event="onSubmit" args="evt">
|
||||||
evt.preventDefault();
|
evt.preventDefault();
|
||||||
if (this.validate()) {
|
if (this.validate()) {
|
||||||
console.log(dojo.objectToQuery(this.getValues()));
|
Notify.progress('Saving data...', true);
|
||||||
new Ajax.Request('backend.php', {
|
xhrPost("backend.php", this.getValues(), (transport) => {
|
||||||
parameters: dojo.objectToQuery(this.getValues()),
|
|
||||||
onComplete: function(transport) {
|
|
||||||
Notify.info(transport.responseText);
|
Notify.info(transport.responseText);
|
||||||
}
|
})
|
||||||
});
|
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
@ -70,7 +67,6 @@ class Mail extends Plugin {
|
||||||
<?= \Controls\submit_tag(__("Save")) ?>
|
<?= \Controls\submit_tag(__("Save")) ?>
|
||||||
|
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<?php
|
<?php
|
||||||
}
|
}
|
||||||
|
|
|
@ -55,12 +55,10 @@ class NSFW extends Plugin {
|
||||||
<script type="dojo/method" event="onSubmit" args="evt">
|
<script type="dojo/method" event="onSubmit" args="evt">
|
||||||
evt.preventDefault();
|
evt.preventDefault();
|
||||||
if (this.validate()) {
|
if (this.validate()) {
|
||||||
new Ajax.Request('backend.php', {
|
Notify.progress('Saving data...', true);
|
||||||
parameters: dojo.objectToQuery(this.getValues()),
|
xhrPost("backend.php", this.getValues(), (transport) => {
|
||||||
onComplete: function(transport) {
|
|
||||||
Notify.info(transport.responseText);
|
Notify.info(transport.responseText);
|
||||||
}
|
})
|
||||||
});
|
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue