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