mirror of
https://github.com/Luzifer/twitch-bot.git
synced 2024-11-08 08:10:08 +00:00
Hook botauth against events
in order to update frontend info when backend changes Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
562e90a6cf
commit
8ec3e66f42
2 changed files with 28 additions and 2 deletions
|
@ -86,7 +86,7 @@ module.exports = {
|
|||
'keyword-spacing': ['error'],
|
||||
'linebreak-style': ['error', 'unix'],
|
||||
'lines-between-class-members': ['error'],
|
||||
'multiline-comment-style': ['warn'],
|
||||
'multiline-comment-style': ['off'],
|
||||
'newline-per-chained-call': ['error'],
|
||||
'no-alert': ['error'],
|
||||
'no-console': ['off'],
|
||||
|
|
|
@ -60,6 +60,7 @@
|
|||
|
||||
|
||||
<script lang="ts">
|
||||
import BusEventTypes from '../helpers/busevents'
|
||||
import { defineComponent } from 'vue'
|
||||
|
||||
export default defineComponent({
|
||||
|
@ -72,6 +73,10 @@ export default defineComponent({
|
|||
},
|
||||
|
||||
methods: {
|
||||
/**
|
||||
* Copies auth-url for the bot into clipboard and gives user feedback
|
||||
* by colorizing copy-button for a short moment
|
||||
*/
|
||||
copyAuthURL(): void {
|
||||
navigator.clipboard.writeText(this.authURLs.update_bot_token)
|
||||
.then(() => {
|
||||
|
@ -81,6 +86,9 @@ export default defineComponent({
|
|||
})
|
||||
},
|
||||
|
||||
/**
|
||||
* Fetches auth-URLs from the backend
|
||||
*/
|
||||
fetchAuthURLs(): Promise<void> | undefined {
|
||||
return this.$root?.fetchJSON('config-editor/auth-urls')
|
||||
.then((data: any) => {
|
||||
|
@ -88,6 +96,12 @@ export default defineComponent({
|
|||
})
|
||||
},
|
||||
|
||||
/**
|
||||
* Fetches the bot profile (including display-name and profile
|
||||
* image) and stores it locally
|
||||
*
|
||||
* @param user Login-name of the user to fetch the profile for
|
||||
*/
|
||||
fetchBotProfile(user: string): Promise<void> | undefined {
|
||||
return this.$root?.fetchJSON(`config-editor/user?user=${user}`)
|
||||
.then((data: any) => {
|
||||
|
@ -95,18 +109,30 @@ export default defineComponent({
|
|||
})
|
||||
},
|
||||
|
||||
/**
|
||||
* Fetches the general config object from the backend including the
|
||||
* authorized bot-name
|
||||
*/
|
||||
fetchGeneralConfig(): Promise<void> | undefined {
|
||||
return this.$root?.fetchJSON('config-editor/general')
|
||||
.then((data: any) => {
|
||||
this.generalConfig = data
|
||||
})
|
||||
.then(() => this.fetchBotProfile(this.generalConfig.bot_name))
|
||||
},
|
||||
},
|
||||
|
||||
mounted() {
|
||||
// Reload config after it changed
|
||||
this.bus.on(BusEventTypes.ConfigReload, () => this.fetchGeneralConfig())
|
||||
|
||||
// Socket-reconnect could mean we need new auth-urls as the state
|
||||
// may have changed due to bot-restart
|
||||
this.bus.on(BusEventTypes.NotifySocketConnected, () => this.fetchAuthURLs())
|
||||
|
||||
// Do initial fetches
|
||||
this.fetchAuthURLs()
|
||||
this.fetchGeneralConfig()
|
||||
?.then(() => this.fetchBotProfile(this.generalConfig.bot_name))
|
||||
},
|
||||
|
||||
name: 'TwitchBotEditorBotAuth',
|
||||
|
|
Loading…
Reference in a new issue