fluentd-ui/app/javascript/packs/settings.js
Kenji Okimoto eddc9d0e67
Fix vue/order-in-components automatically
Signed-off-by: Kenji Okimoto <okimoto@clear-code.com>
2018-07-18 13:03:42 +09:00

128 lines
2.9 KiB
JavaScript

/* global _ */
"use strict";
import "lodash/lodash";
$(document).ready(() => {
const SettingSection = {
template: "#vue-setting-section",
props: ["id", "content", "type", "name", "arg"],
data: function() {
return {
mode: "default",
processing: false
};
},
created: function() {
this.initialState();
},
computed: {
endpoint: function() {
return "/api/settings/" + this.id;
}
},
methods: {
onCancel: function(_event) {
this.initialState();
},
onEdit: function(_event) {
this.mode = "edit";
},
onDelete: function(_event) {
if (!confirm("really?")) {
return;
}
this.destroy();
},
onSubmit: function(_event) {
const token = document.getElementsByName("csrf-token")[0].getAttribute("content");
this.processing = true;
this.content = $(`#${this.id} textarea.form-control`)[0].dataset.content;
$.ajax({
url: this.endpoint,
method: "POST",
data: {
_method: "PATCH",
id: this.id,
content: this.content
},
headers: {
"X-CSRF-Token": token
}
}).then((data)=> {
_.each(data, function(v,k){
this[k] = v;
});
this.initialState();
}).always(()=> {
this.processing = false;
});
},
initialState: function(){
this.processing = false;
this.mode = "default";
},
destroy: function(){
const token = document.getElementsByName("csrf-token")[0].getAttribute("content");
$.ajax({
url: this.endpoint,
method: "POST",
data: {
_method: "DELETE",
id: this.id
},
headers: {
"X-CSRF-Token": token
}
}).then(()=> {
this.$parent.update();
});
}
}
};
new Vue({
el: "#vue-setting",
components: {
"setting-section": SettingSection
},
data: function(){
return {
loaded: false,
loading: false,
sections: {
sources: [],
matches: []
}
};
},
mounted: function() {
this.$nextTick(() => {
this.update();
});
},
methods: {
update: function() {
this.loading = true;
$.getJSON("/api/settings", (data)=> {
var sources = [];
var matches = [];
data.forEach((v)=> {
if(v.name === "source"){
sources.push(v);
}else{
matches.push(v);
}
});
this.sections.sources = sources;
this.sections.matches = matches;
this.loaded = true;
setTimeout(()=> {
this.loading = false;
}, 500);
});
}
}
});
});