2016-11-13 15:42:56 +00:00
|
|
|
<template>
|
2018-08-28 10:42:44 +00:00
|
|
|
<div v-if="loggedIn">
|
|
|
|
<template v-if="visibility !== 'private' && visibility !== 'direct'">
|
2019-07-05 07:17:44 +00:00
|
|
|
<i
|
|
|
|
:class="classes"
|
|
|
|
class="button-icon retweet-button icon-retweet rt-active"
|
|
|
|
:title="$t('tool_tip.repeat')"
|
|
|
|
@click.prevent="retweet()"
|
|
|
|
/>
|
2019-09-29 19:33:15 +00:00
|
|
|
<span v-if="!mergedConfig.hidePostStats && status.repeat_num > 0">{{ status.repeat_num }}</span>
|
2018-08-28 10:42:44 +00:00
|
|
|
</template>
|
|
|
|
<template v-else>
|
2019-07-05 07:17:44 +00:00
|
|
|
<i
|
|
|
|
:class="classes"
|
|
|
|
class="button-icon icon-lock"
|
|
|
|
:title="$t('timeline.no_retweet_hint')"
|
|
|
|
/>
|
2018-08-28 10:42:44 +00:00
|
|
|
</template>
|
2018-02-01 22:45:29 +00:00
|
|
|
</div>
|
2018-08-09 16:45:52 +00:00
|
|
|
<div v-else-if="!loggedIn">
|
2019-07-05 07:17:44 +00:00
|
|
|
<i
|
|
|
|
:class="classes"
|
|
|
|
class="button-icon icon-retweet"
|
|
|
|
: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';
|
|
|
|
.rt-active {
|
2018-04-07 16:30:27 +00:00
|
|
|
cursor: pointer;
|
|
|
|
animation-duration: 0.6s;
|
|
|
|
&:hover {
|
2018-04-01 02:28:20 +00:00
|
|
|
color: $fallback--cGreen;
|
|
|
|
color: var(--cGreen, $fallback--cGreen);
|
2018-04-07 16:30:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
.icon-retweet.retweeted {
|
|
|
|
color: $fallback--cGreen;
|
|
|
|
color: var(--cGreen, $fallback--cGreen);
|
2018-04-01 02:28:20 +00:00
|
|
|
}
|
2016-11-13 15:42:56 +00:00
|
|
|
</style>
|