2016-10-31 02:12:35 +11:00
|
|
|
<template>
|
2018-02-02 09:45:29 +11:00
|
|
|
<div v-if="loggedIn">
|
2018-04-01 04:14:36 +10:00
|
|
|
<i :class='classes' class='favorite-button fav-active' @click.prevent='favorite()'/>
|
2018-02-02 09:45:29 +11:00
|
|
|
<span v-if='status.fave_num > 0'>{{status.fave_num}}</span>
|
|
|
|
</div>
|
|
|
|
<div v-else>
|
2018-04-01 04:14:36 +10:00
|
|
|
<i :class='classes' class='favorite-button'/>
|
2016-10-31 02:12:35 +11:00
|
|
|
<span v-if='status.fave_num > 0'>{{status.fave_num}}</span>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script src="./favorite_button.js" ></script>
|
|
|
|
|
2016-11-14 03:52:20 +11:00
|
|
|
<style lang='scss'>
|
2018-02-02 09:45:29 +11:00
|
|
|
.fav-active {
|
2016-11-14 03:52:20 +11:00
|
|
|
cursor: pointer;
|
2017-03-09 15:45:40 +11:00
|
|
|
animation-duration: 0.6s;
|
2016-11-14 03:52:20 +11:00
|
|
|
&:hover {
|
2017-01-16 01:44:56 +11:00
|
|
|
color: orange;
|
2018-04-01 04:14:36 +10:00
|
|
|
color: var(--cOrange);
|
2016-11-14 03:52:20 +11:00
|
|
|
}
|
|
|
|
}
|
2017-11-25 08:55:46 +11:00
|
|
|
.favorite-button.icon-star {
|
2017-01-16 01:44:56 +11:00
|
|
|
color: orange;
|
2018-04-01 04:14:36 +10:00
|
|
|
color: var(--cOrange);
|
2016-11-14 03:52:20 +11:00
|
|
|
}
|
2017-03-09 15:45:40 +11:00
|
|
|
|
2016-10-31 02:12:35 +11:00
|
|
|
</style>
|