mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-12 23:35:58 +00:00
* shout comments * fix notifications * Remove whitespace for empty category sections * Overhaul post actions * Adjust spacing * Allow fine-grained size control for icons and circle buttons via css variables; adjust comments layout * Adjust spacing * Add test for ActionButton (WIP) * Rename import * Remove text and add count bubble * Use filled icons to indicate active states * Adjust sizes and orientation * Remove unused properties, add test * Fix ObserveButton test * Fix ShoutButton test * fix tests * Adapt styles * Adjust style for larger numbers * Remove unused icon * Fix test structure * Remove unused class names --------- Co-authored-by: Maximilian Harz <maxharz@gmail.com>
62 lines
1.3 KiB
Vue
62 lines
1.3 KiB
Vue
<template>
|
|
<div class="action-button">
|
|
<base-button
|
|
:loading="loading"
|
|
:disabled="disabled"
|
|
:icon="icon"
|
|
:aria-label="text"
|
|
:filled="filled"
|
|
circle
|
|
@click="click"
|
|
/>
|
|
<div class="count">{{ count }}</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: {
|
|
count: { type: Number, required: true },
|
|
text: { type: String, required: true },
|
|
icon: { type: String, required: true },
|
|
filled: { type: Boolean, default: false },
|
|
disabled: { type: Boolean },
|
|
loading: { type: Boolean },
|
|
},
|
|
methods: {
|
|
click() {
|
|
this.$emit('click')
|
|
},
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.action-button {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
gap: $space-xx-small;
|
|
position: relative;
|
|
--icon-size: calc(var(--circle-button-width, #{$size-button-base}) / 2);
|
|
}
|
|
.count {
|
|
user-select: none;
|
|
color: $color-primary-dark;
|
|
background-color: $color-secondary-inverse;
|
|
border: 1px solid $color-primary-dark;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
position: absolute;
|
|
top: -12px;
|
|
left: calc(100% - 16px);
|
|
--diameter: calc(var(--circle-button-width, #{$size-button-base}) * 0.7);
|
|
min-width: var(--diameter);
|
|
height: var(--diameter);
|
|
border-radius: 12px;
|
|
font-size: 12px;
|
|
padding-inline: 2px;
|
|
}
|
|
</style>
|