mirror of https://github.com/rancher/dashboard.git
57 lines
1.0 KiB
Vue
57 lines
1.0 KiB
Vue
<script>
|
|
export default {
|
|
props: {
|
|
resource: {
|
|
type: String,
|
|
required: true,
|
|
}
|
|
},
|
|
|
|
computed: {
|
|
isFavorite() {
|
|
return this.$store.getters['type-map/isFavorite'](this.resource);
|
|
}
|
|
},
|
|
|
|
methods: {
|
|
toggle() {
|
|
if ( this.isFavorite ) {
|
|
this.$store.dispatch('type-map/removeFavorite', this.resource);
|
|
} else {
|
|
this.$store.dispatch('type-map/addFavorite', this.resource);
|
|
}
|
|
}
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<i
|
|
:tabindex="0"
|
|
:aria-checked="!!isFavorite"
|
|
class="favorite icon"
|
|
:class="{'icon-star-open': !isFavorite, 'icon-star': isFavorite}"
|
|
aria-role="button"
|
|
@click.stop.prevent="toggle"
|
|
@keydown.enter.prevent="toggle"
|
|
@keydown.space.prevent="toggle"
|
|
/>
|
|
</template>
|
|
|
|
<style lang="scss" scoped>
|
|
.favorite {
|
|
position: relative;
|
|
cursor: pointer;
|
|
font-size: 20px;
|
|
transform: ease-in-out-all 1s;
|
|
|
|
&.icon-star-open {
|
|
color: var(--muted);
|
|
}
|
|
|
|
&.icon-star-closed {
|
|
color: var(--body-text);
|
|
}
|
|
}
|
|
</style>
|