forked from AkkomaGang/akkoma-fe
configurable mentions placement
This commit is contained in:
parent
3abd357694
commit
9ea370033a
9 changed files with 75 additions and 53 deletions
|
@ -13,11 +13,6 @@ const MentionLink = {
|
||||||
required: true,
|
required: true,
|
||||||
type: String
|
type: String
|
||||||
},
|
},
|
||||||
origattrs: {
|
|
||||||
required: false,
|
|
||||||
type: Object,
|
|
||||||
default: {}
|
|
||||||
},
|
|
||||||
firstMention: {
|
firstMention: {
|
||||||
required: false,
|
required: false,
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
|
@ -56,6 +51,12 @@ const MentionLink = {
|
||||||
highlightClass () {
|
highlightClass () {
|
||||||
if (this.highlight) return highlightClass(this.user)
|
if (this.highlight) return highlightClass(this.user)
|
||||||
},
|
},
|
||||||
|
oldPlace () {
|
||||||
|
return this.mergedConfig.mentionsOldPlace
|
||||||
|
},
|
||||||
|
oldStyle () {
|
||||||
|
return this.mergedConfig.mentionsOldStyle
|
||||||
|
},
|
||||||
style () {
|
style () {
|
||||||
if (this.highlight) {
|
if (this.highlight) {
|
||||||
const {
|
const {
|
||||||
|
@ -72,7 +73,8 @@ const MentionLink = {
|
||||||
{
|
{
|
||||||
'-you': this.isYou,
|
'-you': this.isYou,
|
||||||
'-highlighted': this.highlight,
|
'-highlighted': this.highlight,
|
||||||
'-firstMention': this.firstMention
|
'-firstMention': this.firstMention,
|
||||||
|
'-oldStyle': this.oldStyle
|
||||||
},
|
},
|
||||||
this.highlightType
|
this.highlightType
|
||||||
]
|
]
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
white-space: normal;
|
white-space: normal;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
color: var(--link);
|
color: var(--link);
|
||||||
|
margin-right: 0.25em;
|
||||||
|
|
||||||
& .new,
|
& .new,
|
||||||
& .original {
|
& .original {
|
||||||
|
@ -33,23 +34,25 @@
|
||||||
& .short,
|
& .short,
|
||||||
& .full {
|
& .full {
|
||||||
&::before {
|
&::before {
|
||||||
color: var(--faint);
|
|
||||||
content: '@';
|
content: '@';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.new {
|
.new {
|
||||||
&.-firstMention {
|
&.-you {
|
||||||
display: none;
|
& .shortName,
|
||||||
|
& .full {
|
||||||
|
font-weight: 600;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&,
|
&:not(.-oldStyle) {
|
||||||
&.-highlighted {
|
|
||||||
.short {
|
.short {
|
||||||
line-height: 1.5;
|
line-height: 1.5;
|
||||||
font-size: inherit;
|
font-size: inherit;
|
||||||
|
|
||||||
&::before {
|
&::before {
|
||||||
|
color: var(--faint);
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
height: 50%;
|
height: 50%;
|
||||||
line-height: 1;
|
line-height: 1;
|
||||||
|
@ -111,12 +114,9 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.new {
|
&:not(.-oldPlace) {
|
||||||
&.-you {
|
.new.-firstMention {
|
||||||
& .shortName,
|
display: none;
|
||||||
& .full {
|
|
||||||
font-weight: 600;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,8 @@
|
||||||
<template>
|
<template>
|
||||||
<span class="MentionLink">
|
<span
|
||||||
|
class="MentionLink"
|
||||||
|
:class="{ '-oldPlace': oldPlace }"
|
||||||
|
>
|
||||||
<!-- eslint-disable vue/no-v-html -->
|
<!-- eslint-disable vue/no-v-html -->
|
||||||
<a
|
<a
|
||||||
v-if="!user"
|
v-if="!user"
|
||||||
|
@ -15,8 +18,8 @@
|
||||||
:class="classnames"
|
:class="classnames"
|
||||||
>
|
>
|
||||||
<button
|
<button
|
||||||
class="short button-default"
|
class="short"
|
||||||
:class="{ '-sublime': !highlight }"
|
:class="[{ '-sublime': !highlight }, oldStyle ? 'button-unstyled' : 'button-default']"
|
||||||
@click.prevent="onClick"
|
@click.prevent="onClick"
|
||||||
>
|
>
|
||||||
<!-- eslint-disable vue/no-v-html -->
|
<!-- eslint-disable vue/no-v-html -->
|
||||||
|
|
|
@ -38,7 +38,6 @@ export default Vue.component('RichContent', {
|
||||||
url={attrs.href}
|
url={attrs.href}
|
||||||
content={flattenDeep(children).join('')}
|
content={flattenDeep(children).join('')}
|
||||||
firstMention={!encounteredText}
|
firstMention={!encounteredText}
|
||||||
origattrs={attrs}
|
|
||||||
/>
|
/>
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -36,6 +36,16 @@
|
||||||
{{ $t('settings.collapse_subject') }}
|
{{ $t('settings.collapse_subject') }}
|
||||||
</BooleanSetting>
|
</BooleanSetting>
|
||||||
</li>
|
</li>
|
||||||
|
<li>
|
||||||
|
<BooleanSetting path="mentionsOldPlace">
|
||||||
|
{{ $t('settings.mentions_old_place') }}
|
||||||
|
</BooleanSetting>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<BooleanSetting path="mentionsOldStyle">
|
||||||
|
{{ $t('settings.mentions_old_style') }}
|
||||||
|
</BooleanSetting>
|
||||||
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<BooleanSetting path="streaming">
|
<BooleanSetting path="streaming">
|
||||||
{{ $t('settings.streaming') }}
|
{{ $t('settings.streaming') }}
|
||||||
|
|
|
@ -105,6 +105,9 @@ const Status = {
|
||||||
muteWords () {
|
muteWords () {
|
||||||
return this.mergedConfig.muteWords
|
return this.mergedConfig.muteWords
|
||||||
},
|
},
|
||||||
|
mentionsOldPlace () {
|
||||||
|
return this.mergedConfig.mentionsOldPlace
|
||||||
|
},
|
||||||
showReasonMutedThread () {
|
showReasonMutedThread () {
|
||||||
return (
|
return (
|
||||||
this.status.thread_muted ||
|
this.status.thread_muted ||
|
||||||
|
@ -137,7 +140,7 @@ const Status = {
|
||||||
return this.generateUserProfileLink(this.status.user.id, this.status.user.screen_name)
|
return this.generateUserProfileLink(this.status.user.id, this.status.user.screen_name)
|
||||||
},
|
},
|
||||||
replyProfileLink () {
|
replyProfileLink () {
|
||||||
return this.$store.getters.findUser(this.status.in_reply_to_screen_name).statusnet_profile_url
|
return this.$store.getters.findUser(this.status.in_reply_to_user_id).statusnet_profile_url
|
||||||
},
|
},
|
||||||
retweet () { return !!this.statusoid.retweeted_status },
|
retweet () { return !!this.statusoid.retweeted_status },
|
||||||
retweeterUser () { return this.statusoid.user },
|
retweeterUser () { return this.statusoid.user },
|
||||||
|
@ -163,7 +166,8 @@ const Status = {
|
||||||
},
|
},
|
||||||
mentions () {
|
mentions () {
|
||||||
return this.statusoid.attentions.filter(attn => {
|
return this.statusoid.attentions.filter(attn => {
|
||||||
return attn.screen_name !== this.replyToName
|
return attn.screen_name !== this.replyToName &&
|
||||||
|
attn.screen_name !== this.statusoid.user.screen_name
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
hasMentions () {
|
hasMentions () {
|
||||||
|
|
|
@ -221,36 +221,6 @@
|
||||||
</button>
|
</button>
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div v-if="hasMentions" class="heading-mentions-row">
|
|
||||||
<div
|
|
||||||
class="mentions"
|
|
||||||
>
|
|
||||||
<span
|
|
||||||
class="button-unstyled reply-to"
|
|
||||||
:aria-label="$t('tool_tip.reply')"
|
|
||||||
@click.prevent="gotoOriginal(status.in_reply_to_status_id)"
|
|
||||||
>
|
|
||||||
<FAIcon
|
|
||||||
class="fa-scale-110 fa-old-padding"
|
|
||||||
icon="at"
|
|
||||||
/>
|
|
||||||
<span
|
|
||||||
class="faint-link reply-to-text"
|
|
||||||
>
|
|
||||||
{{ $t('status.mentions') }}
|
|
||||||
</span>
|
|
||||||
</span>
|
|
||||||
<MentionLink
|
|
||||||
v-for="mention in mentions"
|
|
||||||
class="mention-link"
|
|
||||||
:key="mention.statusnet_profile_url"
|
|
||||||
:content="mention.statusnet_profile_url"
|
|
||||||
:url="mention.statusnet_profile_url"
|
|
||||||
:first-mention="false"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="heading-reply-row">
|
<div class="heading-reply-row">
|
||||||
<div
|
<div
|
||||||
v-if="isReply"
|
v-if="isReply"
|
||||||
|
@ -320,6 +290,36 @@
|
||||||
</StatusPopover>
|
</StatusPopover>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div v-if="hasMentions && !mentionsOldPlace" class="heading-mentions-row">
|
||||||
|
<div
|
||||||
|
class="mentions"
|
||||||
|
>
|
||||||
|
<span
|
||||||
|
class="button-unstyled reply-to"
|
||||||
|
:aria-label="$t('tool_tip.reply')"
|
||||||
|
@click.prevent="gotoOriginal(status.in_reply_to_status_id)"
|
||||||
|
>
|
||||||
|
<FAIcon
|
||||||
|
class="fa-scale-110 fa-old-padding"
|
||||||
|
icon="at"
|
||||||
|
/>
|
||||||
|
<span
|
||||||
|
class="faint-link reply-to-text"
|
||||||
|
>
|
||||||
|
{{ $t('status.mentions') }}
|
||||||
|
</span>
|
||||||
|
</span>
|
||||||
|
<MentionLink
|
||||||
|
v-for="mention in mentions"
|
||||||
|
class="mention-link"
|
||||||
|
:key="mention.statusnet_profile_url"
|
||||||
|
:content="mention.statusnet_profile_url"
|
||||||
|
:url="mention.statusnet_profile_url"
|
||||||
|
:first-mention="false"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<StatusContent
|
<StatusContent
|
||||||
|
|
|
@ -259,6 +259,8 @@
|
||||||
"security": "Security",
|
"security": "Security",
|
||||||
"setting_changed": "Setting is different from default",
|
"setting_changed": "Setting is different from default",
|
||||||
"enter_current_password_to_confirm": "Enter your current password to confirm your identity",
|
"enter_current_password_to_confirm": "Enter your current password to confirm your identity",
|
||||||
|
"mentions_old_style": "Old style mentions",
|
||||||
|
"mentions_old_place": "Leave mentions inside post",
|
||||||
"mfa": {
|
"mfa": {
|
||||||
"otp": "OTP",
|
"otp": "OTP",
|
||||||
"setup_otp": "Setup OTP",
|
"setup_otp": "Setup OTP",
|
||||||
|
|
|
@ -54,6 +54,8 @@ export const defaultState = {
|
||||||
interfaceLanguage: browserLocale,
|
interfaceLanguage: browserLocale,
|
||||||
hideScopeNotice: false,
|
hideScopeNotice: false,
|
||||||
useStreamingApi: false,
|
useStreamingApi: false,
|
||||||
|
mentionsOldPlace: false,
|
||||||
|
mentionsOldStyle: false,
|
||||||
sidebarRight: undefined, // instance default
|
sidebarRight: undefined, // instance default
|
||||||
scopeCopy: undefined, // instance default
|
scopeCopy: undefined, // instance default
|
||||||
subjectLineBehavior: undefined, // instance default
|
subjectLineBehavior: undefined, // instance default
|
||||||
|
|
Loading…
Reference in a new issue