Skip to content
This repository has been archived by the owner on May 31, 2021. It is now read-only.

Commit

Permalink
Implement talent options selection
Browse files Browse the repository at this point in the history
Closes #17 and closes #18
  • Loading branch information
thislooksfun committed Oct 18, 2019
1 parent 3025007 commit eaa6612
Showing 1 changed file with 76 additions and 4 deletions.
80 changes: 76 additions & 4 deletions src/components/newCharacterWizard/TalentRanks.vue
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,53 @@
<td>{{ talent.step }}</td>
<td>{{ talent.actionDice }}</td>
</tr>

<tr>
<td colspan="7">
<center><b>Talent Options</b></center>
</td>
</tr>

<tr>
<td>
<select v-model="talentOptionName">
<option disabled value>Please select one</option>
<option
v-for="t in availableTalentOptions"
:key="t.name"
:value="t.name"
>{{ t.name }}</option
>
</select>
</td>
<td>{{ talentOption.action }}</td>
<td>{{ talentOption.strain }}</td>
<td>{{ talentOption.attr }}</td>
<td>
<base-button
v-for="r in [0, 1, 2, 3]"
:key="r"
size="sm"
:type="talentOption.rank == r ? 'primary' : 'secondary'"
:disabled="
talentOptionName == '' ||
r > remainingPoints + talentOption.rank
"
@click="setTalentOptionRank(r)"
>{{ r }}</base-button
>
</td>
<td>{{ talentOption.step }}</td>
<td>{{ talentOption.actionDice }}</td>
</tr>
</tbody>
</table>

<!-- TODO: Implement talent options -->
</div>
</template>

<script>
import decorate from "@/charDecorator";
import talents from "Talents";
export default {
props: {
Expand All @@ -59,6 +97,9 @@ export default {
setTalentRank(talent, rank) {
this.$store.dispatch("ccSetTalentRank", { talent, rank });
},
setTalentOptionRank(rank) {
this.talentOptionRank = rank;
},
},
computed: {
dChar() {
Expand All @@ -67,16 +108,47 @@ export default {
talents() {
return this.dChar.talents;
},
availableTalentOptions() {
return this.dChar.discipline.talentOptions.novice
.map(name => talents[name])
.reduce((o, t) => ({ ...o, [t.name]: t }), {});
},
talentOptionRank: {
get() {
return this.talentOption.rank || 0;
},
set(rank) {
this.$store.dispatch("ccSetTalentOption", {
slot: 0,
name: this.talentOptionName,
rank,
});
},
},
talentOptionName: {
get() {
return this.talentOption.name || "";
},
set(name) {
this.$store.dispatch("ccSetTalentOption", { slot: 0, name, rank: 0 });
},
},
talentOption() {
return this.dChar.talentOptions[0] || {};
},
remainingPoints() {
return (
8 -
// TODO: Factor in talent options... somehow
Object.values(this.dChar.talents)
.map(t => t.rank)
.reduce((t, v) => t + v, 0)
.reduce((t, v) => t + v, 0) -
this.talentOptionRank
);
},
},
mounted() {
this.$emit("completed", true);
},
};
</script>

Expand Down

0 comments on commit eaa6612

Please sign in to comment.