mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-12 23:35:58 +00:00
71 lines
1.5 KiB
Vue
71 lines
1.5 KiB
Vue
<template>
|
|
<span class="counter-icon">
|
|
<base-icon :name="icon" />
|
|
<span v-if="count > 0" :class="counterClass">{{ cappedCount }}</span>
|
|
</span>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: {
|
|
icon: { type: String, required: true },
|
|
count: { type: Number, required: true },
|
|
danger: { type: Boolean, default: false },
|
|
soft: { type: Boolean, default: false },
|
|
},
|
|
computed: {
|
|
cappedCount() {
|
|
return this.count <= 99 ? this.count : '99+'
|
|
},
|
|
counterClass() {
|
|
let counterClass = 'count'
|
|
if (this.soft) counterClass += ' --soft'
|
|
else if (this.danger) counterClass += ' --danger'
|
|
if (this.count === 0) counterClass += ' --inactive'
|
|
|
|
return counterClass
|
|
},
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.counter-icon {
|
|
position: relative;
|
|
|
|
> .count {
|
|
position: absolute;
|
|
top: -$space-xx-small;
|
|
right: 0;
|
|
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: $size-icon-base;
|
|
min-width: $size-icon-base;
|
|
padding: 3px; // magic number to center count
|
|
border-radius: 50%;
|
|
transform: translateX(50%);
|
|
|
|
color: $color-neutral-100;
|
|
background-color: $color-primary;
|
|
font-size: 10px; // magic number to center count
|
|
line-height: 1;
|
|
text-align: center;
|
|
|
|
&.--danger {
|
|
background-color: $color-danger;
|
|
}
|
|
|
|
&.--inactive {
|
|
background-color: $color-neutral-60;
|
|
}
|
|
|
|
&.--soft {
|
|
background-color: $color-neutral-90;
|
|
color: $text-color-soft;
|
|
}
|
|
}
|
|
}
|
|
</style>
|