Make emoji reactions clickable when not logged in

このコミットが含まれているのは:
tusooa 2023-05-22 22:09:04 -04:00
コミット 8a1074336c
この署名に対応する既知のキーがデータベースに存在しません
GPGキーID: 42AEC43D48433C51
2個のファイルの変更11行の追加12行の削除

ファイルの表示

@ -45,6 +45,9 @@ const EmojiReactions = {
},
loggedIn () {
return !!this.$store.state.users.currentUser
},
remoteInteractionLink () {
return this.$store.getters.remoteInteractionLink({ statusId: this.status.id })
}
},
methods: {

ファイルの表示

@ -5,9 +5,12 @@
:key="reaction.url || reaction.name"
class="emoji-reaction-container btn-group"
>
<button
<component
:is="loggedIn ? 'button' : 'a'"
v-bind="!loggedIn ? { href: remoteInteractionLink } : {}"
role="button"
class="emoji-reaction btn button-default"
:class="{ '-picked-reaction': reactedWith(reaction.name), 'not-clickable': !loggedIn }"
:class="{ '-picked-reaction': reactedWith(reaction.name) }"
@click="emojiOnClick(reaction.name, $event)"
>
<span
@ -45,7 +48,7 @@
icon="minus"
/>
</FALayers>
</button>
</component>
<UserListPopover
:users="accountsForEmoji[reaction.name]"
class="emoji-reaction-popover"
@ -112,6 +115,8 @@
align-items: center;
justify-content: center;
box-sizing: border-box;
border-top-right-radius: 0;
border-bottom-right-radius: 0;
.reaction-emoji {
width: var(--emoji-size);
@ -138,15 +143,6 @@
outline: none;
}
&.not-clickable {
cursor: default;
&:hover {
box-shadow: $fallback--buttonShadow;
box-shadow: var(--buttonShadow);
}
}
&.-picked-reaction {
border: 1px solid var(--accent, $fallback--link);
margin-left: -1px; // offset the border, can't use inset shadows either