3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-05-11 04:45:02 +00:00

dashboard: auth fixes, guild listing, config editing

This commit is contained in:
Dragory 2019-06-23 03:40:53 +03:00
parent 1dae3019c4
commit 7bda2b1763
14 changed files with 200 additions and 42 deletions

View file

@ -6,10 +6,10 @@
<h1>Guilds</h1>
<table v-for="guild in guilds">
<tr>
<td>{{ guild.id }}</td>
<td>{{ guild.guild_id }}</td>
<td>{{ guild.name }}</td>
<td>
<a v-bind:href="'/dashboard/guilds/' + guild.id + '/config'">Config</a>
<a v-bind:href="'/dashboard/guilds/' + guild.guild_id + '/config'">Config</a>
</td>
</tr>
</table>
@ -17,19 +17,19 @@
</template>
<script>
import {mapGetters, mapState} from "vuex";
import {LoadStatus} from "../store/types";
import {mapState} from "vuex";
export default {
mounted() {
this.$store.dispatch("guilds/loadAvailableGuilds");
async mounted() {
await this.$store.dispatch("guilds/loadAvailableGuilds");
this.loading = false;
},
data() {
return { loading: true };
},
computed: {
loading() {
return this.$state.guilds.availableGuildsLoadStatus !== LoadStatus.Done;
},
...mapState({
guilds: 'guilds/available',
...mapState('guilds', {
guilds: 'available',
}),
},
};

View file

@ -0,0 +1,74 @@
<template>
<div v-if="loading">
Loading...
</div>
<div v-else>
<h1>Config for {{ guild.name }}</h1>
<codemirror v-model="editableConfig" :options="cmConfig"></codemirror>
<button v-on:click="save" :disabled="saving">Save</button>
<span v-if="saving">Saving...</span>
<span v-else-if="saved">Saved!</span>
</div>
</template>
<script>
import {mapState} from "vuex";
import { codemirror } from "vue-codemirror";
import "codemirror/lib/codemirror.css";
import "codemirror/theme/oceanic-next.css";
import "codemirror/mode/yaml/yaml.js";
export default {
components: {
codemirror,
},
async mounted() {
await this.$store.dispatch("guilds/loadAvailableGuilds");
if (this.guild == null) {
this.$router.push('/dashboard/guilds');
return;
}
await this.$store.dispatch("guilds/loadConfig", this.$route.params.guildId);
this.editableConfig = this.config || "";
this.loading = false;
},
data() {
return {
loading: true,
saving: false,
saved: false,
editableConfig: null,
cmConfig: {
indentWithTabs: false,
indentUnit: 2,
lineNumbers: true,
mode: "text/x-yaml",
theme: "oceanic-next",
},
};
},
computed: {
...mapState('guilds', {
guild() {
return this.$store.state.guilds.available.find(g => g.guild_id === this.$route.params.guildId);
},
config() {
return this.$store.state.guilds.configs[this.$route.params.guildId];
},
}),
},
methods: {
async save() {
this.saving = true;
await this.$store.dispatch("guilds/saveConfig", {
guildId: this.$route.params.guildId,
config: this.editableConfig,
});
this.saving = false;
this.saved = true;
setTimeout(() => this.saved = false, 2500);
},
},
};
</script>