feat: appretices tab draft 2

This commit is contained in:
pskfyi 2022-01-10 02:14:44 -08:00 committed by pskfyi
commit 875418a84f
2 changed files with 52 additions and 28 deletions

View file

@ -0,0 +1,46 @@
<template>
<progress-button
:label="label"
:description="description"
:max="process.nextWorkerCost"
:value="$store.state.currency"
:current="current"
:next="next"
@click="levelUp"
/>
</template>
<script>
export default {
props: {
process: { type: Object, required: true },
},
computed: {
label() {
return this.process.workerLevel > 0
? `L${this.process.workerLevel} ${this.process.worker}`
: `Hire ${this.process.worker}`
},
description() {
return this.process.workerLevel > 0
? `Multiplies spare time gained from ${this.process.instrument}s.`
: `Use your spare time to hire an apprentice ${this.process.worker} who can help you with ${this.process.instrument}s.`
},
current() {
return this.process.workerLevel > 0
? `${1 + this.process.workerLevel}x`
: null
},
next() {
return this.process.workerLevel > 0
? `${2 + this.process.workerLevel}x`
: null
},
},
methods: {
levelUp() {
this.$store.commit('levelUpApprentice', this.process)
},
},
}
</script>