pleroma-fe/src/components/retweet_button/retweet_button.vue

54 lines
1.2 KiB
Vue
Raw Normal View History

<template>
<div>
<button
v-if="visibility !== 'private' && visibility !== 'direct' && loggedIn"
class="button-unstyled -padded RetweetButton -interactive"
:class="status.repeated && '-repeated'"
>
2020-10-20 23:31:16 +02:00
<FAIcon
class="fa-scale-110 fa-old-padding"
2020-10-20 23:31:16 +02:00
icon="retweet"
:spin="animated"
:title="$t('tool_tip.repeat')"
@click.prevent="retweet()"
/>
</button>
<FAIcon
v-else-if="loggedIn"
:class="classes"
class="RetweetButton fa-scale-110 fa-old-padding"
icon="lock"
:title="$t('timeline.no_retweet_hint')"
/>
<FAIcon
v-else
2019-07-05 09:17:44 +02:00
:class="classes"
class="RetweetButton fa-scale-110 fa-old-padding"
icon="retweet"
2019-07-05 09:17:44 +02:00
:title="$t('tool_tip.repeat')"
/>
<span v-if="!mergedConfig.hidePostStats && status.repeat_num > 0">{{ status.repeat_num }}</span>
</div>
</template>
<script src="./retweet_button.js" ></script>
<style lang="scss">
@import '../../_variables.scss';
.RetweetButton {
&.-interactive {
.svg-inline--fa {
animation-duration: 0.6s;
}
&:hover .svg-inline--fa,
&.-repeated .svg-inline--fa {
color: $fallback--cGreen;
color: var(--cGreen, $fallback--cGreen);
}
}
2018-04-07 18:30:27 +02:00
}
</style>