+ :maxlength="isChannel(conversation) || isPrivate(conversation) ? conversation.maxMessageLength : undefined"
+ :characterName="ownName"
+ >
+
- {{l('chat.typing.' + conversation.typingStatus, conversation.name)}}
+ {{l('chat.typing.' + conversation.typingStatus, '').trim()}}
@@ -203,13 +206,22 @@
import CharacterChannelList from './character/CharacterChannelList.vue';
import * as _ from 'lodash';
import Dropdown from '../components/Dropdown.vue';
-
+ import { EventBus } from './preview/event-bus';
@Component({
components: {
- user: UserView, 'bbcode-editor': Editor, 'manage-channel': ManageChannel, settings: ConversationSettings,
- logs: Logs, 'message-view': MessageView, bbcode: BBCodeView(core.bbCodeParser), 'command-help': CommandHelp,
- 'ad-view': CharacterAdView, 'channel-list': CharacterChannelList, dropdown: Dropdown, adSettings: ConversationAdSettings
+ user: UserView,
+ 'bbcode-editor': Editor,
+ 'manage-channel': ManageChannel,
+ settings: ConversationSettings,
+ logs: Logs,
+ 'message-view': MessageView,
+ bbcode: BBCodeView(core.bbCodeParser),
+ 'command-help': CommandHelp,
+ 'ad-view': CharacterAdView,
+ 'channel-list': CharacterChannelList,
+ dropdown: Dropdown,
+ adSettings: ConversationAdSettings
}
})
export default class ConversationView extends Vue {
@@ -246,15 +258,20 @@
isPrivate = Conversation.isPrivate;
showNonMatchingAds = true;
+ ownName?: string;
@Hook('beforeMount')
async onBeforeMount(): Promise {
+ this.updateOwnName();
+
this.showNonMatchingAds = !await core.settingsStore.get('hideNonMatchingAds');
}
@Hook('mounted')
mounted(): void {
+ this.updateOwnName();
+
this.extraButtons = [{
title: 'Help\n\nClick this button for a quick overview of slash commands.',
tag: '?',
@@ -295,8 +312,13 @@
this.$watch(() => this.conversation.adManager.isActive(), () => (this.refreshAutoPostingTimer()));
this.refreshAutoPostingTimer();
+
+ this.configUpdateHook = () => this.updateOwnName();
+ EventBus.$on('configuration-update', this.configUpdateHook);
}
+ protected configUpdateHook: any;
+
@Hook('destroyed')
destroyed(): void {
window.removeEventListener('resize', this.resizeHandler);
@@ -305,6 +327,8 @@
clearInterval(this.searchTimer);
clearInterval(this.autoPostingUpdater);
clearInterval(this.adCountdown);
+
+ EventBus.$off('configuration-update', this.configUpdateHook);
}
hideSearch(): void {
@@ -312,6 +336,10 @@
this.searchInput = '';
}
+ updateOwnName(): void {
+ this.ownName = core.state.settings.risingShowPortraitNearInput ? core.characters.ownCharacter?.name : undefined;
+ }
+
get conversation(): Conversation {
return core.conversations.selectedConversation;
}
@@ -328,6 +356,8 @@
@Watch('conversation')
conversationChanged(): void {
+ this.updateOwnName();
+
if(!anyDialogsShown) (this.$refs['textBox']).focus();
this.$nextTick(() => setTimeout(() => this.messageView.scrollTop = this.messageView.scrollHeight));
this.scrolledDown = true;
diff --git a/chat/SettingsView.vue b/chat/SettingsView.vue
index cc4650e..eb147e5 100644
--- a/chat/SettingsView.vue
+++ b/chat/SettingsView.vue
@@ -199,6 +199,12 @@
+
+
+
+ Show character portrait by text input
+
+