Portrait next to text input
This commit is contained in:
parent
29c71538d7
commit
f8c36187a4
|
@ -1,6 +1,7 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
## 1.19.3
|
## 1.19.3
|
||||||
|
* Added option to have character portrait displayed next to text input
|
||||||
* Fixed asexual orientation ID
|
* Fixed asexual orientation ID
|
||||||
* Replaced the action star icon to differentiate with the mod badges
|
* Replaced the action star icon to differentiate with the mod badges
|
||||||
|
|
||||||
|
|
|
@ -8,6 +8,10 @@
|
||||||
<div class="bbcode-toolbar btn-toolbar" role="toolbar" :style="showToolbar ? {display: 'flex'} : undefined" @mousedown.stop.prevent
|
<div class="bbcode-toolbar btn-toolbar" role="toolbar" :style="showToolbar ? {display: 'flex'} : undefined" @mousedown.stop.prevent
|
||||||
v-if="hasToolbar" style="flex:1 51%">
|
v-if="hasToolbar" style="flex:1 51%">
|
||||||
<div class="btn-group" style="flex-wrap:wrap">
|
<div class="btn-group" style="flex-wrap:wrap">
|
||||||
|
<div v-if="!!characterName" class="character-btn">
|
||||||
|
<icon :character="characterName"></icon>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class="btn btn-light btn-sm" v-for="button in buttons" :title="button.title" @click.prevent.stop="apply(button)">
|
<div class="btn btn-light btn-sm" v-for="button in buttons" :title="button.title" @click.prevent.stop="apply(button)">
|
||||||
<i :class="(button.class ? button.class : 'fa ') + button.icon"></i>
|
<i :class="(button.class ? button.class : 'fa ') + button.icon"></i>
|
||||||
</div>
|
</div>
|
||||||
|
@ -43,8 +47,13 @@
|
||||||
import {BBCodeElement, CoreBBCodeParser, urlRegex} from './core';
|
import {BBCodeElement, CoreBBCodeParser, urlRegex} from './core';
|
||||||
import {defaultButtons, EditorButton, EditorSelection} from './editor';
|
import {defaultButtons, EditorButton, EditorSelection} from './editor';
|
||||||
import {BBCodeParser} from './parser';
|
import {BBCodeParser} from './parser';
|
||||||
|
import {default as IconView} from './IconView.vue';
|
||||||
|
|
||||||
@Component
|
@Component({
|
||||||
|
components: {
|
||||||
|
'icon': IconView
|
||||||
|
}
|
||||||
|
})
|
||||||
export default class Editor extends Vue {
|
export default class Editor extends Vue {
|
||||||
@Prop
|
@Prop
|
||||||
readonly extras?: EditorButton[];
|
readonly extras?: EditorButton[];
|
||||||
|
@ -70,6 +79,9 @@
|
||||||
@Prop({default: false, type: Boolean})
|
@Prop({default: false, type: Boolean})
|
||||||
readonly invalid!: boolean;
|
readonly invalid!: boolean;
|
||||||
|
|
||||||
|
@Prop({default: null})
|
||||||
|
readonly characterName: string | null = null;
|
||||||
|
|
||||||
preview = false;
|
preview = false;
|
||||||
previewWarnings: ReadonlyArray<string> = [];
|
previewWarnings: ReadonlyArray<string> = [];
|
||||||
previewResult = '';
|
previewResult = '';
|
||||||
|
@ -311,3 +323,20 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
<style lang="scss">
|
||||||
|
.bbcode-editor .bbcode-toolbar .character-btn {
|
||||||
|
width: 30px;
|
||||||
|
height: 30px;
|
||||||
|
overflow: hidden;
|
||||||
|
|
||||||
|
a {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
|
||||||
|
img {
|
||||||
|
width: inherit;
|
||||||
|
height: inherit;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
|
@ -135,9 +135,12 @@
|
||||||
<bbcode-editor v-model="conversation.enteredText" @keydown="onKeyDown" :extras="extraButtons" @input="keepScroll"
|
<bbcode-editor v-model="conversation.enteredText" @keydown="onKeyDown" :extras="extraButtons" @input="keepScroll"
|
||||||
:classes="'form-control chat-text-box' + (isChannel(conversation) && conversation.isSendingAds ? ' ads-text-box' : '')"
|
:classes="'form-control chat-text-box' + (isChannel(conversation) && conversation.isSendingAds ? ' ads-text-box' : '')"
|
||||||
:hasToolbar="settings.bbCodeBar" ref="textBox" style="position:relative;margin-top:5px"
|
:hasToolbar="settings.bbCodeBar" ref="textBox" style="position:relative;margin-top:5px"
|
||||||
:maxlength="isChannel(conversation) || isPrivate(conversation) ? conversation.maxMessageLength : undefined">
|
:maxlength="isChannel(conversation) || isPrivate(conversation) ? conversation.maxMessageLength : undefined"
|
||||||
|
:characterName="ownName"
|
||||||
|
>
|
||||||
|
|
||||||
<span v-if="isPrivate(conversation) && conversation.typingStatus !== 'clear'" class="chat-info-text">
|
<span v-if="isPrivate(conversation) && conversation.typingStatus !== 'clear'" class="chat-info-text">
|
||||||
{{l('chat.typing.' + conversation.typingStatus, conversation.name)}}
|
<user :character="conversation.character" :match="false" :bookmark="false"></user> {{l('chat.typing.' + conversation.typingStatus, '').trim()}}
|
||||||
</span>
|
</span>
|
||||||
<div v-show="conversation.infoText" class="chat-info-text">
|
<div v-show="conversation.infoText" class="chat-info-text">
|
||||||
<span class="fa fa-times" style="cursor:pointer" @click.stop="conversation.infoText = ''"></span>
|
<span class="fa fa-times" style="cursor:pointer" @click.stop="conversation.infoText = ''"></span>
|
||||||
|
@ -203,13 +206,22 @@
|
||||||
import CharacterChannelList from './character/CharacterChannelList.vue';
|
import CharacterChannelList from './character/CharacterChannelList.vue';
|
||||||
import * as _ from 'lodash';
|
import * as _ from 'lodash';
|
||||||
import Dropdown from '../components/Dropdown.vue';
|
import Dropdown from '../components/Dropdown.vue';
|
||||||
|
import { EventBus } from './preview/event-bus';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
components: {
|
components: {
|
||||||
user: UserView, 'bbcode-editor': Editor, 'manage-channel': ManageChannel, settings: ConversationSettings,
|
user: UserView,
|
||||||
logs: Logs, 'message-view': MessageView, bbcode: BBCodeView(core.bbCodeParser), 'command-help': CommandHelp,
|
'bbcode-editor': Editor,
|
||||||
'ad-view': CharacterAdView, 'channel-list': CharacterChannelList, dropdown: Dropdown, adSettings: ConversationAdSettings
|
'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 {
|
export default class ConversationView extends Vue {
|
||||||
|
@ -246,15 +258,20 @@
|
||||||
isPrivate = Conversation.isPrivate;
|
isPrivate = Conversation.isPrivate;
|
||||||
showNonMatchingAds = true;
|
showNonMatchingAds = true;
|
||||||
|
|
||||||
|
ownName?: string;
|
||||||
|
|
||||||
@Hook('beforeMount')
|
@Hook('beforeMount')
|
||||||
async onBeforeMount(): Promise<void> {
|
async onBeforeMount(): Promise<void> {
|
||||||
|
this.updateOwnName();
|
||||||
|
|
||||||
this.showNonMatchingAds = !await core.settingsStore.get('hideNonMatchingAds');
|
this.showNonMatchingAds = !await core.settingsStore.get('hideNonMatchingAds');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@Hook('mounted')
|
@Hook('mounted')
|
||||||
mounted(): void {
|
mounted(): void {
|
||||||
|
this.updateOwnName();
|
||||||
|
|
||||||
this.extraButtons = [{
|
this.extraButtons = [{
|
||||||
title: 'Help\n\nClick this button for a quick overview of slash commands.',
|
title: 'Help\n\nClick this button for a quick overview of slash commands.',
|
||||||
tag: '?',
|
tag: '?',
|
||||||
|
@ -295,8 +312,13 @@
|
||||||
|
|
||||||
this.$watch(() => this.conversation.adManager.isActive(), () => (this.refreshAutoPostingTimer()));
|
this.$watch(() => this.conversation.adManager.isActive(), () => (this.refreshAutoPostingTimer()));
|
||||||
this.refreshAutoPostingTimer();
|
this.refreshAutoPostingTimer();
|
||||||
|
|
||||||
|
this.configUpdateHook = () => this.updateOwnName();
|
||||||
|
EventBus.$on('configuration-update', this.configUpdateHook);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
protected configUpdateHook: any;
|
||||||
|
|
||||||
@Hook('destroyed')
|
@Hook('destroyed')
|
||||||
destroyed(): void {
|
destroyed(): void {
|
||||||
window.removeEventListener('resize', this.resizeHandler);
|
window.removeEventListener('resize', this.resizeHandler);
|
||||||
|
@ -305,6 +327,8 @@
|
||||||
clearInterval(this.searchTimer);
|
clearInterval(this.searchTimer);
|
||||||
clearInterval(this.autoPostingUpdater);
|
clearInterval(this.autoPostingUpdater);
|
||||||
clearInterval(this.adCountdown);
|
clearInterval(this.adCountdown);
|
||||||
|
|
||||||
|
EventBus.$off('configuration-update', this.configUpdateHook);
|
||||||
}
|
}
|
||||||
|
|
||||||
hideSearch(): void {
|
hideSearch(): void {
|
||||||
|
@ -312,6 +336,10 @@
|
||||||
this.searchInput = '';
|
this.searchInput = '';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
updateOwnName(): void {
|
||||||
|
this.ownName = core.state.settings.risingShowPortraitNearInput ? core.characters.ownCharacter?.name : undefined;
|
||||||
|
}
|
||||||
|
|
||||||
get conversation(): Conversation {
|
get conversation(): Conversation {
|
||||||
return core.conversations.selectedConversation;
|
return core.conversations.selectedConversation;
|
||||||
}
|
}
|
||||||
|
@ -328,6 +356,8 @@
|
||||||
|
|
||||||
@Watch('conversation')
|
@Watch('conversation')
|
||||||
conversationChanged(): void {
|
conversationChanged(): void {
|
||||||
|
this.updateOwnName();
|
||||||
|
|
||||||
if(!anyDialogsShown) (<Editor>this.$refs['textBox']).focus();
|
if(!anyDialogsShown) (<Editor>this.$refs['textBox']).focus();
|
||||||
this.$nextTick(() => setTimeout(() => this.messageView.scrollTop = this.messageView.scrollHeight));
|
this.$nextTick(() => setTimeout(() => this.messageView.scrollTop = this.messageView.scrollHeight));
|
||||||
this.scrolledDown = true;
|
this.scrolledDown = true;
|
||||||
|
|
|
@ -199,6 +199,12 @@
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div class="form-group">
|
||||||
|
<label class="control-label" for="risingShowPortraitNearInput">
|
||||||
|
<input type="checkbox" id="risingShowPortraitNearInput" v-model="risingShowPortraitNearInput"/>
|
||||||
|
Show character portrait by text input
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div v-show="selectedTab === '3'">
|
<div v-show="selectedTab === '3'">
|
||||||
|
@ -325,6 +331,7 @@
|
||||||
import { smartFilterTypes as smartFilterTypesOrigin } from '../learn/filter/types';
|
import { smartFilterTypes as smartFilterTypesOrigin } from '../learn/filter/types';
|
||||||
import _ from 'lodash';
|
import _ from 'lodash';
|
||||||
import { matchesSmartFilters } from '../learn/filter/smart-filter';
|
import { matchesSmartFilters } from '../learn/filter/smart-filter';
|
||||||
|
import { EventBus } from './preview/event-bus';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
components: {modal: Modal, tabs: Tabs}
|
components: {modal: Modal, tabs: Tabs}
|
||||||
|
@ -367,6 +374,8 @@
|
||||||
risingShowUnreadOfflineCount!: boolean;
|
risingShowUnreadOfflineCount!: boolean;
|
||||||
risingColorblindMode!: boolean;
|
risingColorblindMode!: boolean;
|
||||||
|
|
||||||
|
risingShowPortraitNearInput!: boolean;
|
||||||
|
|
||||||
risingFilter!: SmartFilterSettings = {} as any;
|
risingFilter!: SmartFilterSettings = {} as any;
|
||||||
|
|
||||||
smartFilterTypes = smartFilterTypesOrigin;
|
smartFilterTypes = smartFilterTypesOrigin;
|
||||||
|
@ -408,6 +417,8 @@
|
||||||
this.risingShowUnreadOfflineCount = settings.risingShowUnreadOfflineCount;
|
this.risingShowUnreadOfflineCount = settings.risingShowUnreadOfflineCount;
|
||||||
|
|
||||||
this.risingColorblindMode = settings.risingColorblindMode;
|
this.risingColorblindMode = settings.risingColorblindMode;
|
||||||
|
this.risingShowPortraitNearInput = settings.risingShowPortraitNearInput;
|
||||||
|
|
||||||
this.risingFilter = settings.risingFilter;
|
this.risingFilter = settings.risingFilter;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -468,6 +479,7 @@
|
||||||
risingComparisonInUserMenu: this.risingComparisonInUserMenu,
|
risingComparisonInUserMenu: this.risingComparisonInUserMenu,
|
||||||
risingComparisonInSearch: this.risingComparisonInSearch,
|
risingComparisonInSearch: this.risingComparisonInSearch,
|
||||||
risingShowUnreadOfflineCount: this.risingShowUnreadOfflineCount,
|
risingShowUnreadOfflineCount: this.risingShowUnreadOfflineCount,
|
||||||
|
risingShowPortraitNearInput: this.risingShowPortraitNearInput,
|
||||||
|
|
||||||
risingColorblindMode: this.risingColorblindMode,
|
risingColorblindMode: this.risingColorblindMode,
|
||||||
risingFilter: {
|
risingFilter: {
|
||||||
|
@ -486,6 +498,8 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
if(this.notifications) await core.notifications.requestPermission();
|
if(this.notifications) await core.notifications.requestPermission();
|
||||||
|
|
||||||
|
EventBus.$emit('configuration-update', core.state.settings);
|
||||||
}
|
}
|
||||||
|
|
||||||
rebuildFilters() {
|
rebuildFilters() {
|
||||||
|
|
|
@ -54,6 +54,7 @@ export class Settings implements ISettings {
|
||||||
|
|
||||||
risingShowUnreadOfflineCount = true;
|
risingShowUnreadOfflineCount = true;
|
||||||
risingColorblindMode = false;
|
risingColorblindMode = false;
|
||||||
|
risingShowPortraitNearInput = true;
|
||||||
|
|
||||||
risingFilter = {
|
risingFilter = {
|
||||||
hideAds: true,
|
hideAds: true,
|
||||||
|
|
|
@ -226,6 +226,7 @@ export namespace Settings {
|
||||||
|
|
||||||
readonly risingShowUnreadOfflineCount: boolean;
|
readonly risingShowUnreadOfflineCount: boolean;
|
||||||
readonly risingColorblindMode: boolean;
|
readonly risingColorblindMode: boolean;
|
||||||
|
readonly risingShowPortraitNearInput: boolean;
|
||||||
|
|
||||||
readonly risingFilter: SmartFilterSettings;
|
readonly risingFilter: SmartFilterSettings;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue