diff --git a/chat/CharacterSearch.vue b/chat/CharacterSearch.vue index 8adc553..d5ee622 100644 --- a/chat/CharacterSearch.vue +++ b/chat/CharacterSearch.vue @@ -12,10 +12,15 @@
{{l('characterSearch.kinkNotice')}}
-
-
{{l('characterSearch.results')}}
-
- +
+

{{l('characterSearch.results')}}

+
+ +
@@ -27,6 +32,8 @@ import CustomDialog from '../components/custom_dialog'; import FilterableSelect from '../components/FilterableSelect.vue'; import Modal from '../components/Modal.vue'; + import {BBCodeView} from './bbcode'; + import {characterImage} from './common'; import core from './core'; import {Character, Connection} from './interfaces'; import l from './localize'; @@ -41,8 +48,16 @@ type Kink = {id: number, name: string, description: string}; + function sort(x: Character, y: Character): number { + if(x.status === 'looking' && y.status !== 'looking') return -1; + if(x.status !== 'looking' && y.status === 'looking') return 1; + if(x.name < y.name) return -1; + if(x.name > y.name) return 1; + return 0; + } + @Component({ - components: {modal: Modal, user: UserView, 'filterable-select': FilterableSelect} + components: {modal: Modal, user: UserView, 'filterable-select': FilterableSelect, bbcode: BBCodeView} }) export default class CharacterSearch extends CustomDialog { //tslint:disable:no-null-keyword @@ -50,6 +65,7 @@ kinksFilter = ''; error = ''; results: Character[] | null = null; + characterImage = characterImage; options: { kinks: Kink[] genders: string[] @@ -82,7 +98,6 @@ roles: options.listitems.filter((x) => x.name === 'subdom').map((x) => x.value), positions: options.listitems.filter((x) => x.name === 'position').map((x) => x.value) }; - this.$nextTick(() => (this.$children[0]).fixDropdowns()); } mounted(): void { @@ -98,7 +113,8 @@ this.error = l('characterSearch.error.tooManyResults'); } }); - core.connection.onMessage('FKS', (data) => this.results = data.characters.map((x: string) => core.characters.get(x))); + core.connection.onMessage('FKS', (data) => this.results = data.characters.map((x: string) => core.characters.get(x)).sort(sort)); + (this.$children[0]).fixDropdowns(); } filterKink(filter: RegExp, kink: Kink): boolean { @@ -107,6 +123,10 @@ return filter.test(kink.name); } + get showAvatars(): boolean { + return core.state.settings.showAvatars; + } + submit(): void { if(this.results !== null) { this.results = null; @@ -122,8 +142,25 @@ } - \ No newline at end of file diff --git a/chat/Chat.vue b/chat/Chat.vue index 9e6a244..2d97f7a 100644 --- a/chat/Chat.vue +++ b/chat/Chat.vue @@ -84,7 +84,12 @@ connect(): void { this.connecting = true; - core.connection.connect(this.selectedCharacter); + try { + core.connection.connect(this.selectedCharacter); + } catch(e) { + if(e.request !== undefined) this.error = l('login.connectError'); //catch axios network errors + else throw e; + } } } \ No newline at end of file diff --git a/chat/ChatView.vue b/chat/ChatView.vue index 447fce0..3eb063e 100644 --- a/chat/ChatView.vue +++ b/chat/ChatView.vue @@ -169,6 +169,12 @@ core.connection.send('STA', {status: 'idle', statusmsg: ownCharacter.statusText}); }, core.state.settings.idleTimer * 60000); }; + core.connection.onEvent('closed', () => { + if(idleTimer !== undefined) { + window.clearTimeout(idleTimer); + idleTimer = undefined; + } + }); } logOut(): void { diff --git a/chat/ConversationView.vue b/chat/ConversationView.vue index bd92934..1a762b8 100644 --- a/chat/ConversationView.vue +++ b/chat/ConversationView.vue @@ -42,7 +42,7 @@
-
@@ -53,21 +53,18 @@
-