blob: 8e0b4149291373d4a77105f4be21d2a3c48948c8 (
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
<script lang="ts">
import { defineComponent } from 'vue';
import { NorthstarState } from '../utils/NorthstarState';
import { ReleaseCanal } from '../utils/ReleaseCanal';
export default defineComponent({
name: 'PlayButton',
computed: {
playButtonLabel(): string {
if (this.$store.state.northstar_is_running) {
return "Game is running";
}
switch(this.$store.state.northstar_state) {
case NorthstarState.GAME_NOT_FOUND:
return "Titanfall2 not found";
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 "";
}
},
northstarIsRunning(): boolean {
return this.$store.state.northstar_is_running;
},
options(): {key: string, value: string}[] {
return Object.keys(ReleaseCanal).map(function (v) {
return {
key: v,
value: Object.keys(ReleaseCanal)[Object.values(ReleaseCanal).indexOf(v)]
}
});
}
},
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>
button {
text-transform: uppercase;
border-radius: 2px;
padding: 30px;
font-size: 15px;
}
.fc_launch__button:focus {
background-color: var(--el-color-primary);
border-color: var(--el-color-primary);
}
</style>
|