feat(components): Improve event and player card UI
- Add conditional rendering for event list to show a message when no events - Update player team card to show edit button conditionally - Style crown icon for team leader - Adjust role icon styles for better alignmentmaster
parent
67ef999017
commit
77aff078da
|
@ -8,17 +8,15 @@ const props = defineProps<{
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<h2>Upcoming Events</h2>
|
<div class="events-list" v-if="props.events?.length > 0">
|
||||||
<div class="events-list">
|
|
||||||
<EventCard v-for="event in props.events" :key="event.id" :event="event" />
|
<EventCard v-for="event in props.events" :key="event.id" :event="event" />
|
||||||
</div>
|
</div>
|
||||||
|
<div class="events-list" v-else>
|
||||||
|
<em class="subtext">No upcoming events.</em>
|
||||||
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
h2 {
|
|
||||||
margin-bottom: 1rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.events-list {
|
.events-list {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
|
|
|
@ -134,7 +134,14 @@ const rightIndicator = computed(() => {
|
||||||
<h3>
|
<h3>
|
||||||
{{ player.username }}
|
{{ player.username }}
|
||||||
</h3>
|
</h3>
|
||||||
<svg-icon v-if="player.isTeamLeader" type="mdi" :path="mdiCrown" />
|
<svg-icon
|
||||||
|
v-if="player.isTeamLeader"
|
||||||
|
:class="[
|
||||||
|
isUnavailable ? '' : 'crown',
|
||||||
|
]"
|
||||||
|
type="mdi"
|
||||||
|
:path="mdiCrown"
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
</td>
|
</td>
|
||||||
<td :colspan="isEditing ? 2 : 1">
|
<td :colspan="isEditing ? 2 : 1">
|
||||||
|
@ -164,6 +171,11 @@ const rightIndicator = computed(() => {
|
||||||
<span v-else class="aside">
|
<span v-else class="aside">
|
||||||
No roles
|
No roles
|
||||||
</span>
|
</span>
|
||||||
|
<div class="edit-group">
|
||||||
|
<button v-if="!isEditing" @click="isEditing = true">
|
||||||
|
<i class="bi bi-pencil-fill edit-icon" />
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</td>
|
</td>
|
||||||
<td v-if="!isEditing">
|
<td v-if="!isEditing">
|
||||||
|
@ -184,9 +196,6 @@ const rightIndicator = computed(() => {
|
||||||
<i class="bi bi-check-lg" />
|
<i class="bi bi-check-lg" />
|
||||||
</button>
|
</button>
|
||||||
</template>
|
</template>
|
||||||
<button v-else @click="isEditing = true">
|
|
||||||
<i class="bi bi-pencil-fill edit-icon" />
|
|
||||||
</button>
|
|
||||||
</div>
|
</div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
@ -209,6 +218,10 @@ const rightIndicator = computed(() => {
|
||||||
font-size: 12pt;
|
font-size: 12pt;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.player-card .crown {
|
||||||
|
color: var(--yellow);
|
||||||
|
}
|
||||||
|
|
||||||
.status-indicators {
|
.status-indicators {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
|
@ -249,13 +262,14 @@ const rightIndicator = computed(() => {
|
||||||
align-items: center;
|
align-items: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.role-icons i {
|
.role-icons > .role-icon i {
|
||||||
font-size: 24px;
|
font-size: 24px;
|
||||||
line-height: 1;
|
line-height: 1;
|
||||||
color: var(--overlay-0);
|
color: var(--overlay-0);
|
||||||
|
vertical-align: middle;
|
||||||
}
|
}
|
||||||
|
|
||||||
.role-icons i.main {
|
.role-icons > .role-icon i.main {
|
||||||
color: var(--text);
|
color: var(--text);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue