removed unnecessary api requests
This commit is contained in:
parent
2b79a52275
commit
a699fd1926
6 changed files with 319 additions and 314 deletions
|
@ -4,9 +4,6 @@ import DataUitls from "./utils/DataUtils";
|
||||||
import * as DataEvent from "./events/DataEvent";
|
import * as DataEvent from "./events/DataEvent";
|
||||||
import DashManager from "./controllers/DashManager";
|
import DashManager from "./controllers/DashManager";
|
||||||
import Notfications from "./ui/Notifications";
|
import Notfications from "./ui/Notifications";
|
||||||
|
|
||||||
const api = new FipamoApi();
|
|
||||||
const admin = new FipamoAdminAPI();
|
|
||||||
const data = new DataUitls();
|
const data = new DataUitls();
|
||||||
const notify = new Notfications();
|
const notify = new Notfications();
|
||||||
|
|
||||||
|
@ -26,7 +23,6 @@ export default class Base {
|
||||||
document.getElementById("dash-form") ||
|
document.getElementById("dash-form") ||
|
||||||
document.getElementById("dash-init")
|
document.getElementById("dash-init")
|
||||||
) {
|
) {
|
||||||
console.log("GET THAT ID, boss");
|
|
||||||
var options = document.getElementsByClassName("init-option");
|
var options = document.getElementsByClassName("init-option");
|
||||||
for (let index = 0; index < options.length; index++) {
|
for (let index = 0; index < options.length; index++) {
|
||||||
options[index].addEventListener("click", (e) => this.handleOptions(e));
|
options[index].addEventListener("click", (e) => this.handleOptions(e));
|
||||||
|
@ -55,6 +51,7 @@ export default class Base {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
let authForm = data.formDataToJSON(document.getElementById("login"));
|
let authForm = data.formDataToJSON(document.getElementById("login"));
|
||||||
notify.alert("Looking, hold up", null);
|
notify.alert("Looking, hold up", null);
|
||||||
|
let api = new FipamoApi();
|
||||||
api
|
api
|
||||||
.login(authForm)
|
.login(authForm)
|
||||||
.then((response) => {
|
.then((response) => {
|
||||||
|
@ -93,10 +90,11 @@ export default class Base {
|
||||||
notify.alert(err, false);
|
notify.alert(err, false);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
/**
|
|
||||||
handleRestore(e) {
|
handleRestore(e) {
|
||||||
e.stopPropagation();
|
e.stopPropagation();
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
|
let admin = new FipamoAdminAPI();
|
||||||
var form = document.getElementById("init-restore");
|
var form = document.getElementById("init-restore");
|
||||||
admin
|
admin
|
||||||
.handleInitRestore(form)
|
.handleInitRestore(form)
|
||||||
|
@ -114,7 +112,6 @@ export default class Base {
|
||||||
notify.alert(err, false);
|
notify.alert(err, false);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
**/
|
|
||||||
handleOptions(e) {
|
handleOptions(e) {
|
||||||
e.stopPropagation();
|
e.stopPropagation();
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
|
|
|
@ -1,25 +1,26 @@
|
||||||
import FipamoAdminAPI from '../../libraries/FipamoAdminAPI';
|
import FipamoAdminAPI from "../../libraries/FipamoAdminAPI";
|
||||||
import Notficaton from '../ui/Notifications';
|
import Notficaton from "../ui/Notifications";
|
||||||
const admin = new FipamoAdminAPI();
|
|
||||||
const notify = new Notficaton();
|
const notify = new Notficaton();
|
||||||
export default class Mailer {
|
export default class Mailer {
|
||||||
//--------------------------
|
//--------------------------
|
||||||
// constructor
|
// constructor
|
||||||
//--------------------------
|
//--------------------------
|
||||||
constructor() {}
|
constructor() {
|
||||||
|
this.admin = new FipamoAdminAPI();
|
||||||
|
}
|
||||||
//--------------------------
|
//--------------------------
|
||||||
// methods
|
// methods
|
||||||
//--------------------------
|
//--------------------------
|
||||||
sendMail() {
|
sendMail() {
|
||||||
let mailData = {
|
let mailData = {
|
||||||
content: 'This is a test email'
|
content: "This is a test email",
|
||||||
};
|
};
|
||||||
admin
|
this.admin
|
||||||
.sendMail(mailData)
|
.sendMail(mailData)
|
||||||
.then(result => {
|
.then((result) => {
|
||||||
notify.alert(result.message, true);
|
notify.alert(result.message, true);
|
||||||
})
|
})
|
||||||
.catch(err => {
|
.catch((err) => {
|
||||||
notify.alert(err.message, false);
|
notify.alert(err.message, false);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,26 +1,28 @@
|
||||||
import FipamoAdminAPI from '../../libraries/FipamoAdminAPI';
|
import FipamoAdminAPI from "../../libraries/FipamoAdminAPI";
|
||||||
import NavActions from '../actions/NavActions';
|
import NavActions from "../actions/NavActions";
|
||||||
import * as DataEvent from '../events/DataEvent';
|
import * as DataEvent from "../events/DataEvent";
|
||||||
import Notifications from '../ui/Notifications';
|
import Notifications from "../ui/Notifications";
|
||||||
import Sortable from 'sortablejs';
|
import Sortable from "sortablejs";
|
||||||
const notify = new Notifications();
|
const notify = new Notifications();
|
||||||
const admin = new FipamoAdminAPI();
|
|
||||||
export default class NavIndex {
|
export default class NavIndex {
|
||||||
//--------------------------
|
//--------------------------
|
||||||
// constructor
|
// constructor
|
||||||
//--------------------------
|
//--------------------------
|
||||||
constructor() {
|
constructor() {
|
||||||
|
this.admin = new FipamoAdminAPI();
|
||||||
this.start();
|
this.start();
|
||||||
}
|
}
|
||||||
//--------------------------
|
//--------------------------
|
||||||
// methods
|
// methods
|
||||||
//--------------------------
|
//--------------------------
|
||||||
start() {
|
start() {
|
||||||
Sortable.create(document.getElementById('nav-pages'), {
|
let self = this;
|
||||||
|
Sortable.create(document.getElementById("nav-pages"), {
|
||||||
onUpdate: () => {
|
onUpdate: () => {
|
||||||
new NavActions().syncMenu().then(data => {
|
new NavActions().syncMenu().then((data) => {
|
||||||
notify.alert('Updating Menu', null);
|
notify.alert("Updating Menu", null);
|
||||||
admin.syncNav(data).then(r => {
|
self.admin.syncNav(data).then((r) => {
|
||||||
if (r.type == DataEvent.MENU_UPDATED) {
|
if (r.type == DataEvent.MENU_UPDATED) {
|
||||||
notify.alert(r.message, true);
|
notify.alert(r.message, true);
|
||||||
} else {
|
} else {
|
||||||
|
@ -28,26 +30,27 @@ export default class NavIndex {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
}
|
},
|
||||||
});
|
});
|
||||||
var nav = document.querySelectorAll('.nav-btn');
|
var nav = document.querySelectorAll(".nav-btn");
|
||||||
for (var i = 0, length = nav.length; i < length; i++) {
|
for (var i = 0, length = nav.length; i < length; i++) {
|
||||||
nav[i].addEventListener('click', e => this.handleNavButton(e), false);
|
nav[i].addEventListener("click", (e) => this.handleNavButton(e), false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
//--------------------------
|
//--------------------------
|
||||||
// event handlers
|
// event handlers
|
||||||
//--------------------------
|
//--------------------------
|
||||||
handleNavButton(e) {
|
handleNavButton(e) {
|
||||||
let id = '';
|
let id = "";
|
||||||
|
let self = this;
|
||||||
switch (e.target.id) {
|
switch (e.target.id) {
|
||||||
case 'remove-item':
|
case "remove-item":
|
||||||
id = e.target.getAttribute('data-id');
|
id = e.target.getAttribute("data-id");
|
||||||
new NavActions().removeItem(id);
|
new NavActions().removeItem(id);
|
||||||
new NavActions().syncMenu().then(data => {
|
new NavActions().syncMenu().then((data) => {
|
||||||
data.remove = e.target.getAttribute('data-uuid');
|
data.remove = e.target.getAttribute("data-uuid");
|
||||||
notify.alert('Editing Menu', null);
|
notify.alert("Editing Menu", null);
|
||||||
admin.syncNav(data).then(r => {
|
self.admin.syncNav(data).then((r) => {
|
||||||
if (r.type == DataEvent.MENU_UPDATED) {
|
if (r.type == DataEvent.MENU_UPDATED) {
|
||||||
notify.alert(r.message, true);
|
notify.alert(r.message, true);
|
||||||
} else {
|
} else {
|
||||||
|
@ -56,8 +59,9 @@ export default class NavIndex {
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
break;
|
break;
|
||||||
case 'edit-item':
|
case "edit-item":
|
||||||
window.location = '/@/dashboard/page/edit/' + e.target.getAttribute('data-id');
|
window.location =
|
||||||
|
"/@/dashboard/page/edit/" + e.target.getAttribute("data-id");
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,7 +10,6 @@ import * as EditorEvent from "../events/EditorEvent";
|
||||||
//import TinyDatePicker from 'tiny-date-picker';
|
//import TinyDatePicker from 'tiny-date-picker';
|
||||||
import TextEditor from "../ui/TextEditor";
|
import TextEditor from "../ui/TextEditor";
|
||||||
import Notfications from "../ui/Notifications";
|
import Notfications from "../ui/Notifications";
|
||||||
const admin = new FipamoAdminAPI();
|
|
||||||
const notify = new Notfications();
|
const notify = new Notfications();
|
||||||
export default class PostEditor {
|
export default class PostEditor {
|
||||||
//--------------------------
|
//--------------------------
|
||||||
|
@ -18,6 +17,7 @@ export default class PostEditor {
|
||||||
//--------------------------
|
//--------------------------
|
||||||
constructor() {
|
constructor() {
|
||||||
let self = this;
|
let self = this;
|
||||||
|
this.admin = new FipamoAdminAPI();
|
||||||
this.urlPieces = document.URL.split("/");
|
this.urlPieces = document.URL.split("/");
|
||||||
this.post = [];
|
this.post = [];
|
||||||
this.postID = null;
|
this.postID = null;
|
||||||
|
@ -136,6 +136,7 @@ export default class PostEditor {
|
||||||
: currentOption.setAttribute("data-active", "false");
|
: currentOption.setAttribute("data-active", "false");
|
||||||
}
|
}
|
||||||
handleEditorOptions(e) {
|
handleEditorOptions(e) {
|
||||||
|
let self = this;
|
||||||
switch (e) {
|
switch (e) {
|
||||||
case EditorEvent.EDITOR_SAVE:
|
case EditorEvent.EDITOR_SAVE:
|
||||||
case EditorEvent.EDITOR_UPDATE:
|
case EditorEvent.EDITOR_UPDATE:
|
||||||
|
@ -149,7 +150,7 @@ export default class PostEditor {
|
||||||
)
|
)
|
||||||
.then((page) => {
|
.then((page) => {
|
||||||
notify.alert("Writing down changes", null);
|
notify.alert("Writing down changes", null);
|
||||||
admin
|
self.admin
|
||||||
.pageActions(task, page)
|
.pageActions(task, page)
|
||||||
.then((r) => {
|
.then((r) => {
|
||||||
if (
|
if (
|
||||||
|
@ -178,7 +179,7 @@ export default class PostEditor {
|
||||||
}
|
}
|
||||||
if (confirm("AYE! You know you're deleting this post, right?")) {
|
if (confirm("AYE! You know you're deleting this post, right?")) {
|
||||||
let id = { id: this.postUUID };
|
let id = { id: this.postUUID };
|
||||||
admin
|
this.admin
|
||||||
.pageActions(TASK_PAGE_DELETE, id)
|
.pageActions(TASK_PAGE_DELETE, id)
|
||||||
.then(() => {
|
.then(() => {
|
||||||
window.location = "/dashboard/pages";
|
window.location = "/dashboard/pages";
|
||||||
|
@ -240,7 +241,7 @@ export default class PostEditor {
|
||||||
handleImageUpload(type, files) {
|
handleImageUpload(type, files) {
|
||||||
let self = this;
|
let self = this;
|
||||||
notify.alert("Uploading Image", null);
|
notify.alert("Uploading Image", null);
|
||||||
admin
|
this.admin
|
||||||
.imageUpload(type, files)
|
.imageUpload(type, files)
|
||||||
.then((r) => {
|
.then((r) => {
|
||||||
if (r.type == DataEvent.POST_IMAGE_ADDED)
|
if (r.type == DataEvent.POST_IMAGE_ADDED)
|
||||||
|
|
|
@ -1,17 +1,16 @@
|
||||||
import SettingsActions from '../actions/SettingsActions';
|
import SettingsActions from "../actions/SettingsActions";
|
||||||
import FipamoAdminAPI from '../../libraries/FipamoAdminAPI';
|
import FipamoAdminAPI from "../../libraries/FipamoAdminAPI";
|
||||||
import * as DataEvent from '../../../src/com/events/DataEvent';
|
import * as DataEvent from "../../../src/com/events/DataEvent";
|
||||||
import Mailer from '../actions/Mailer';
|
import Mailer from "../actions/Mailer";
|
||||||
import Notifications from '../ui/Notifications';
|
import Notifications from "../ui/Notifications";
|
||||||
const admin = new FipamoAdminAPI();
|
|
||||||
const notify = new Notifications();
|
const notify = new Notifications();
|
||||||
const mailer = new Mailer();
|
|
||||||
export default class SettingsIndex {
|
export default class SettingsIndex {
|
||||||
//--------------------------
|
//--------------------------
|
||||||
// constructor
|
// constructor
|
||||||
//--------------------------
|
//--------------------------
|
||||||
constructor() {
|
constructor() {
|
||||||
this.start();
|
this.start();
|
||||||
|
this.admin = new FipamoAdminAPI();
|
||||||
}
|
}
|
||||||
//--------------------------
|
//--------------------------
|
||||||
// methods
|
// methods
|
||||||
|
@ -19,12 +18,12 @@ export default class SettingsIndex {
|
||||||
start() {
|
start() {
|
||||||
let self = this;
|
let self = this;
|
||||||
//handle save button
|
//handle save button
|
||||||
document.getElementById('save-toggle').addEventListener('click', () =>
|
document.getElementById("save-toggle").addEventListener("click", () =>
|
||||||
new SettingsActions()
|
new SettingsActions()
|
||||||
.getInfo()
|
.getInfo()
|
||||||
.then(data => {
|
.then((data) => {
|
||||||
notify.alert('Saving Settings', null);
|
notify.alert("Saving Settings", null);
|
||||||
admin.syncSettings(data).then(r => {
|
self.admin.syncSettings(data).then((r) => {
|
||||||
if (r.type == DataEvent.SETTINGS_UPDATED) {
|
if (r.type == DataEvent.SETTINGS_UPDATED) {
|
||||||
notify.alert(r.message, true);
|
notify.alert(r.message, true);
|
||||||
} else {
|
} else {
|
||||||
|
@ -37,32 +36,32 @@ export default class SettingsIndex {
|
||||||
})
|
})
|
||||||
);
|
);
|
||||||
//handle set up image uploads
|
//handle set up image uploads
|
||||||
document.getElementById('avatar').addEventListener('click', () => {
|
document.getElementById("avatar").addEventListener("click", () => {
|
||||||
document.getElementById('avatar-upload').click();
|
document.getElementById("avatar-upload").click();
|
||||||
});
|
});
|
||||||
document.getElementById('background').addEventListener('click', () => {
|
document.getElementById("background").addEventListener("click", () => {
|
||||||
document.getElementById('background-upload').click();
|
document.getElementById("background-upload").click();
|
||||||
});
|
});
|
||||||
document.getElementById('restore-backup').addEventListener('click', () => {
|
document.getElementById("restore-backup").addEventListener("click", () => {
|
||||||
document.getElementById('backup-upload').click();
|
document.getElementById("backup-upload").click();
|
||||||
});
|
});
|
||||||
document.getElementById('avatar-upload').addEventListener(
|
document.getElementById("avatar-upload").addEventListener(
|
||||||
'change',
|
"change",
|
||||||
e => {
|
(e) => {
|
||||||
self.handleImageUpload(e.target.id, e.target.files);
|
self.handleImageUpload(e.target.id, e.target.files);
|
||||||
},
|
},
|
||||||
false
|
false
|
||||||
);
|
);
|
||||||
document.getElementById('background-upload').addEventListener(
|
document.getElementById("background-upload").addEventListener(
|
||||||
'change',
|
"change",
|
||||||
e => {
|
(e) => {
|
||||||
self.handleImageUpload(e.target.id, e.target.files);
|
self.handleImageUpload(e.target.id, e.target.files);
|
||||||
},
|
},
|
||||||
false
|
false
|
||||||
);
|
);
|
||||||
document.getElementById('backup-upload').addEventListener(
|
document.getElementById("backup-upload").addEventListener(
|
||||||
'change',
|
"change",
|
||||||
e => {
|
(e) => {
|
||||||
self.handleBackup(e);
|
self.handleBackup(e);
|
||||||
},
|
},
|
||||||
false
|
false
|
||||||
|
@ -72,30 +71,32 @@ export default class SettingsIndex {
|
||||||
//.getElementById('privacy-toggle')
|
//.getElementById('privacy-toggle')
|
||||||
//.addEventListener('click', e => this.togglePrivacy(e));
|
//.addEventListener('click', e => this.togglePrivacy(e));
|
||||||
document
|
document
|
||||||
.getElementById('render-toggle')
|
.getElementById("render-toggle")
|
||||||
.addEventListener('click', e => this.toggleRender(e));
|
.addEventListener("click", (e) => this.toggleRender(e));
|
||||||
document.getElementById('send-mail').addEventListener('click', e => this.handleMailer(e));
|
|
||||||
document
|
document
|
||||||
.getElementById('publish-pages')
|
.getElementById("send-mail")
|
||||||
.addEventListener('click', e => this.handlePublished(e));
|
.addEventListener("click", (e) => this.handleMailer(e));
|
||||||
|
document
|
||||||
|
.getElementById("publish-pages")
|
||||||
|
.addEventListener("click", (e) => this.handlePublished(e));
|
||||||
//handle theme toggle
|
//handle theme toggle
|
||||||
let themeBtns = document.querySelectorAll('.theme-select');
|
let themeBtns = document.querySelectorAll(".theme-select");
|
||||||
for (var i = 0, length = themeBtns.length; i < length; i++) {
|
for (var i = 0, length = themeBtns.length; i < length; i++) {
|
||||||
themeBtns[i].addEventListener('click', e => this.handleThemes(e));
|
themeBtns[i].addEventListener("click", (e) => this.handleThemes(e));
|
||||||
}
|
}
|
||||||
//handle mail options
|
//handle mail options
|
||||||
let mailBtn = document.querySelectorAll('.mail-option');
|
let mailBtn = document.querySelectorAll(".mail-option");
|
||||||
for (i = 0, length = mailBtn.length; i < length; i++) {
|
for (i = 0, length = mailBtn.length; i < length; i++) {
|
||||||
mailBtn[i].addEventListener('click', e => this.handleMailOptions(e));
|
mailBtn[i].addEventListener("click", (e) => this.handleMailOptions(e));
|
||||||
}
|
}
|
||||||
//handle backup
|
//handle backup
|
||||||
document
|
document
|
||||||
.getElementById('create-backup')
|
.getElementById("create-backup")
|
||||||
.addEventListener('click', e => this.handleBackup(e));
|
.addEventListener("click", (e) => this.handleBackup(e));
|
||||||
|
|
||||||
document
|
document
|
||||||
.getElementById('reindex-pages')
|
.getElementById("reindex-pages")
|
||||||
.addEventListener('click', e => this.handleReindex(e));
|
.addEventListener("click", (e) => this.handleReindex(e));
|
||||||
}
|
}
|
||||||
//--------------------------
|
//--------------------------
|
||||||
// event handlers
|
// event handlers
|
||||||
|
@ -103,73 +104,74 @@ export default class SettingsIndex {
|
||||||
togglePrivacy(e) {
|
togglePrivacy(e) {
|
||||||
e.stopPropagation();
|
e.stopPropagation();
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
if (e.target.getAttribute('data-private') == 'false') {
|
if (e.target.getAttribute("data-private") == "false") {
|
||||||
e.target.setAttribute('data-private', 'true');
|
e.target.setAttribute("data-private", "true");
|
||||||
e.target.innerHTML = 'SITE IS PUBLIC';
|
e.target.innerHTML = "SITE IS PUBLIC";
|
||||||
} else {
|
} else {
|
||||||
e.target.setAttribute('data-private', 'false');
|
e.target.setAttribute("data-private", "false");
|
||||||
e.target.innerHTML = 'SITE IS PRIVATE';
|
e.target.innerHTML = "SITE IS PRIVATE";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
toggleRender(e) {
|
toggleRender(e) {
|
||||||
e.stopPropagation();
|
e.stopPropagation();
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
if (e.target.getAttribute('data-render') == 'false') {
|
if (e.target.getAttribute("data-render") == "false") {
|
||||||
e.target.setAttribute('data-render', 'true');
|
e.target.setAttribute("data-render", "true");
|
||||||
//e.target.innerHTML = 'RENDER PAGES ON SAVE';
|
//e.target.innerHTML = 'RENDER PAGES ON SAVE';
|
||||||
} else {
|
} else {
|
||||||
e.target.setAttribute('data-render', 'false');
|
e.target.setAttribute("data-render", "false");
|
||||||
//e.target.innerHTML = "DON'T RENDER PAGES ON SAVE";
|
//e.target.innerHTML = "DON'T RENDER PAGES ON SAVE";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
handleMailer() {
|
handleMailer() {
|
||||||
|
let mailer = new Mailer();
|
||||||
mailer.sendMail();
|
mailer.sendMail();
|
||||||
}
|
}
|
||||||
handleThemes(e) {
|
handleThemes(e) {
|
||||||
e.stopPropagation();
|
e.stopPropagation();
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
let themes = document.querySelectorAll('.theme-select');
|
let themes = document.querySelectorAll(".theme-select");
|
||||||
for (var i = 0, length = themes.length; i < length; i++) {
|
for (var i = 0, length = themes.length; i < length; i++) {
|
||||||
e.target.id == themes[i].id
|
e.target.id == themes[i].id
|
||||||
? themes[i].setAttribute('data-enabled', 'true')
|
? themes[i].setAttribute("data-enabled", "true")
|
||||||
: themes[i].setAttribute('data-enabled', 'false');
|
: themes[i].setAttribute("data-enabled", "false");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
handleMailOptions(e) {
|
handleMailOptions(e) {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
e.stopPropagation();
|
e.stopPropagation();
|
||||||
let smtp = document.getElementById('mail-smtp');
|
let smtp = document.getElementById("mail-smtp");
|
||||||
let mailgun = document.getElementById('mail-mg');
|
let mailgun = document.getElementById("mail-mg");
|
||||||
let mail = document.querySelectorAll('.mail-option');
|
let mail = document.querySelectorAll(".mail-option");
|
||||||
for (var i = 0, length = mail.length; i < length; i++) {
|
for (var i = 0, length = mail.length; i < length; i++) {
|
||||||
if (e.target.id == mail[i].id) {
|
if (e.target.id == mail[i].id) {
|
||||||
mail[i].setAttribute('data-enabled', 'true');
|
mail[i].setAttribute("data-enabled", "true");
|
||||||
if (e.target.id == 'option-smtp') {
|
if (e.target.id == "option-smtp") {
|
||||||
smtp.setAttribute('data-enabled', 'true');
|
smtp.setAttribute("data-enabled", "true");
|
||||||
mailgun.setAttribute('data-enabled', 'false');
|
mailgun.setAttribute("data-enabled", "false");
|
||||||
} else if (e.target.id == 'option-none') {
|
} else if (e.target.id == "option-none") {
|
||||||
smtp.setAttribute('data-enabled', 'false');
|
smtp.setAttribute("data-enabled", "false");
|
||||||
mailgun.setAttribute('data-enabled', 'false');
|
mailgun.setAttribute("data-enabled", "false");
|
||||||
} else {
|
} else {
|
||||||
smtp.setAttribute('data-enabled', 'false');
|
smtp.setAttribute("data-enabled", "false");
|
||||||
mailgun.setAttribute('data-enabled', 'true');
|
mailgun.setAttribute("data-enabled", "true");
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
mail[i].setAttribute('data-enabled', 'false');
|
mail[i].setAttribute("data-enabled", "false");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
handleImageUpload(type, files) {
|
handleImageUpload(type, files) {
|
||||||
notify.alert('Uploading Image... ', null);
|
notify.alert("Uploading Image... ", null);
|
||||||
admin
|
this.admin
|
||||||
.imageUpload(type, files)
|
.imageUpload(type, files)
|
||||||
.then(r => {
|
.then((r) => {
|
||||||
if (r.type == DataEvent.AVATAR_UPLOADED) {
|
if (r.type == DataEvent.AVATAR_UPLOADED) {
|
||||||
notify.alert(r.message, true);
|
notify.alert(r.message, true);
|
||||||
document.getElementById('avatar').src = r.url;
|
document.getElementById("avatar").src = r.url;
|
||||||
} else {
|
} else {
|
||||||
notify.alert(r.message, true);
|
notify.alert(r.message, true);
|
||||||
document.getElementById('background').src = r.url;
|
document.getElementById("background").src = r.url;
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
.catch(() => {
|
.catch(() => {
|
||||||
|
@ -179,27 +181,27 @@ export default class SettingsIndex {
|
||||||
handlePublished(e) {
|
handlePublished(e) {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
e.stopPropagation();
|
e.stopPropagation();
|
||||||
let task = { task: 'publish all pages' };
|
let task = { task: "publish all pages" };
|
||||||
notify.alert('Publishing site...', null);
|
notify.alert("Publishing site...", null);
|
||||||
admin
|
this.admin
|
||||||
.publishSite(task)
|
.publishSite(task)
|
||||||
.then(r => {
|
.then((r) => {
|
||||||
notify.alert(r.message, true);
|
notify.alert(r.message, true);
|
||||||
})
|
})
|
||||||
.catch(err => {
|
.catch((err) => {
|
||||||
notify.alert(err, false);
|
notify.alert(err, false);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
handleBackup(e) {
|
handleBackup(e) {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
e.stopPropagation();
|
e.stopPropagation();
|
||||||
notify.alert('Creating backup', null);
|
notify.alert("Creating backup", null);
|
||||||
admin
|
this.admin
|
||||||
.handleBackup(e.target.id, e.target.files)
|
.handleBackup(e.target.id, e.target.files)
|
||||||
.then(r => {
|
.then((r) => {
|
||||||
notify.alert(r.message, true);
|
notify.alert(r.message, true);
|
||||||
})
|
})
|
||||||
.catch(err => {
|
.catch((err) => {
|
||||||
notify.alert(err, false);
|
notify.alert(err, false);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -207,14 +209,14 @@ export default class SettingsIndex {
|
||||||
handleReindex(e) {
|
handleReindex(e) {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
e.stopPropagation();
|
e.stopPropagation();
|
||||||
let task = { task: 'cleanup pages indexes' };
|
let task = { task: "cleanup pages indexes" };
|
||||||
notify.alert('Cleaning up page indexes', null);
|
notify.alert("Cleaning up page indexes", null);
|
||||||
admin
|
this.admin
|
||||||
.handleReindex(task)
|
.handleReindex(task)
|
||||||
.then(r => {
|
.then((r) => {
|
||||||
notify.alert(r.message, true);
|
notify.alert(r.message, true);
|
||||||
})
|
})
|
||||||
.catch(err => {
|
.catch((err) => {
|
||||||
notify.alert(err, false);
|
notify.alert(err, false);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,7 +10,7 @@ export const API_LOGIN = "/api/v1/login";
|
||||||
export const API_GET_PAGES = "/api/v1/page/published";
|
export const API_GET_PAGES = "/api/v1/page/published";
|
||||||
export const API_GET_PAGE = "/api/v1/page/single";
|
export const API_GET_PAGE = "/api/v1/page/single";
|
||||||
import * as DataEvent from "../com/events/DataEvent";
|
import * as DataEvent from "../com/events/DataEvent";
|
||||||
export default class APIUtils {
|
export default class FipamoAPI {
|
||||||
//--------------------------
|
//--------------------------
|
||||||
// constructor
|
// constructor
|
||||||
//--------------------------
|
//--------------------------
|
||||||
|
|
Loading…
Reference in a new issue