blob: 0cb75c94b446bd61754d03f315c942e24c6b3a18 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
<script lang="ts">
import { NorthstarState } from '../utils/NorthstarState';
export default {
name: 'PlayButton',
data() {},
computed: {
playButtonLabel(): string {
if (this.$store.state.northstar_is_running) {
return "Game is running";
}
switch(this.$store.state.northstar_state) {
case NorthstarState.INSTALL:
return "Install";
case NorthstarState.INSTALLING:
return "Installing..."
case NorthstarState.MUST_UPDATE:
return "Update";
case NorthstarState.UPDATING:
return "Updating...";
case NorthstarState.READY_TO_PLAY:
return "Launch game";
default:
return "";
}
}
},
methods: {
launchGame() {
this.$store.commit('launchGame');
}
}
};
</script>
<template>
<el-button :disabled="northstarIsRunning" type="primary" size="large" @click="launchGame" class="fc_launch__button">
{{ playButtonLabel }}
</el-button>
</template>
<style scoped>
.fc_launch__button:focus {
background-color: var(--el-color-primary);
border-color: var(--el-color-primary);
}
</style>
|