2016-10-31 02:12:35 +11:00
|
|
|
<template>
|
2018-02-02 09:45:29 +11:00
|
|
|
<div v-if="loggedIn">
|
2019-07-05 17:17:44 +10:00
|
|
|
<i
|
|
|
|
:class="classes"
|
|
|
|
class="button-icon favorite-button fav-active"
|
|
|
|
:title="$t('tool_tip.favorite')"
|
|
|
|
@click.prevent="favorite()"
|
|
|
|
/>
|
2019-09-30 05:33:15 +10:00
|
|
|
<span v-if="!mergedConfig.hidePostStats && status.fave_num > 0">{{ status.fave_num }}</span>
|
2018-02-02 09:45:29 +11:00
|
|
|
</div>
|
|
|
|
<div v-else>
|
2019-07-05 17:17:44 +10:00
|
|
|
<i
|
|
|
|
:class="classes"
|
|
|
|
class="button-icon favorite-button"
|
|
|
|
:title="$t('tool_tip.favorite')"
|
|
|
|
/>
|
2019-09-30 05:33:15 +10:00
|
|
|
<span v-if="!mergedConfig.hidePostStats && status.fave_num > 0">{{ status.fave_num }}</span>
|
2016-10-31 02:12:35 +11:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script src="./favorite_button.js" ></script>
|
|
|
|
|
2018-04-01 12:28:20 +10:00
|
|
|
<style lang="scss">
|
|
|
|
@import '../../_variables.scss';
|
|
|
|
|
|
|
|
.fav-active {
|
2018-04-08 02:30:27 +10:00
|
|
|
cursor: pointer;
|
|
|
|
animation-duration: 0.6s;
|
2018-04-01 12:28:20 +10:00
|
|
|
|
2018-04-08 02:30:27 +10:00
|
|
|
&:hover {
|
2018-04-01 12:28:20 +10:00
|
|
|
color: $fallback--cOrange;
|
|
|
|
color: var(--cOrange, $fallback--cOrange);
|
2018-04-08 02:30:27 +10:00
|
|
|
}
|
2018-04-01 12:28:20 +10:00
|
|
|
}
|
2017-03-09 15:45:40 +11:00
|
|
|
|
2018-04-08 02:30:27 +10:00
|
|
|
.favorite-button.icon-star {
|
|
|
|
color: $fallback--cOrange;
|
|
|
|
color: var(--cOrange, $fallback--cOrange);
|
|
|
|
}
|
2016-10-31 02:12:35 +11:00
|
|
|
</style>
|