Showing pertinent Fabled during setup (#201)

Showing Fabled which impact setup
This commit is contained in:
MRegnard 2024-12-04 21:12:07 +01:00 committed by GitHub
parent c74626db6d
commit d35b4b59c2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 30 additions and 2 deletions

View file

@ -1,12 +1,15 @@
# Release Notes # Release Notes
## Upcoming version ## Upcoming version
- Adding some special votes - Adding some special votes
- Automatic Djinn and Bootlegger - Automatic Djinn and Bootlegger
- Updating night order - Updating night order
- Updating jinxes - Updating jinxes
- Showing pertinent Fabled during setup
### Version 3.20.1 ### Version 3.20.1
- Inconsistancies in french translations for "Power" & "Character" - Inconsistancies in french translations for "Power" & "Character"
### Version 3.20.0 ### Version 3.20.0

View file

@ -34,7 +34,17 @@
</div> </div>
</li> </li>
</ul> </ul>
<div class="warning" v-if="hasSelectedSetupRoles"> <ul class="tokens">
<li
v-for="role in fabledWithSetup"
:class="['fabled', 'selected']"
:key="role.id"
>
<Token :role="role" />
<font-awesome-icon icon="exclamation-triangle" />
</li>
</ul>
<div class="warning" v-if="hasSelectedSetupRoles || fabledWithSetup.length">
<font-awesome-icon icon="exclamation-triangle" /> <font-awesome-icon icon="exclamation-triangle" />
<span>{{ locale.modal.roles.warning }}</span> <span>{{ locale.modal.roles.warning }}</span>
</div> </div>
@ -97,8 +107,18 @@ export default {
roles.some((role) => role.selected && role.setup), roles.some((role) => role.selected && role.setup),
); );
}, },
fabledWithSetup: function () {
const { fabled } = this.$store.state.players;
let res = [];
for (let i = 0; i < fabled.length; i++) {
if (fabled[i].setup) {
res.push(fabled[i]);
}
}
return res;
},
...mapState(["roles", "modals", "locale"]), ...mapState(["roles", "modals", "locale"]),
...mapState("players", ["players"]), ...mapState("players", ["players", "fabled"]),
...mapGetters({ nonTravelers: "players/nonTravelers" }), ...mapGetters({ nonTravelers: "players/nonTravelers" }),
}, },
methods: { methods: {
@ -214,6 +234,11 @@ ul.tokens {
0 0 10px $traveler, 0 0 10px $traveler,
0 0 10px $traveler; 0 0 10px $traveler;
} }
&.fabled {
box-shadow:
0 0 10px $fabled,
0 0 10px $fabled;
}
&:hover { &:hover {
transform: scale(1.2); transform: scale(1.2);
z-index: 10; z-index: 10;