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 @@
@@ -185,8 +182,8 @@
}
onMessagesScroll(): void {
- const messageView = this.$refs['messages'];
- if(messageView.scrollTop < 50) this.conversation.loadMore();
+ const messageView = this.$refs['messages'];
+ if(messageView !== undefined && messageView.scrollTop < 50) this.conversation.loadMore();
}
@Watch('conversation.errorText')
diff --git a/chat/UserMenu.vue b/chat/UserMenu.vue
index d56f970..cf0afe5 100644
--- a/chat/UserMenu.vue
+++ b/chat/UserMenu.vue
@@ -69,7 +69,7 @@
character: Character | null = null;
position = {left: '', top: ''};
characterImage: string | null = null;
- touchTimer: number;
+ touchTimer: number | undefined;
channel: Channel | null = null;
memo = '';
memoId: number;
@@ -145,8 +145,7 @@
}
handleEvent(e: MouseEvent | TouchEvent): void {
- if(e.type === 'touchend') return clearTimeout(this.touchTimer);
- const touch = e instanceof TouchEvent ? e.touches[0] : e;
+ const touch = e instanceof TouchEvent ? e.changedTouches[0] : e;
let node = touch.target;
while(node !== document.body) {
if(node.character !== undefined || node.parentNode === null) break;
@@ -158,13 +157,20 @@
}
switch(e.type) {
case 'click':
- this.character = node.character;
- if(core.state.settings.clickOpensMessage) this.openConversation(true);
- else window.open(this.profileLink);
- this.showContextMenu = false;
+ this.onClick(node.character);
break;
case 'touchstart':
- this.touchTimer = window.setTimeout(() => this.openMenu(touch, node.character!, node.channel), 500);
+ this.touchTimer = window.setTimeout(() => {
+ this.openMenu(touch, node.character!, node.channel);
+ this.touchTimer = undefined;
+ }, 500);
+ break;
+ case 'touchend':
+ if(this.touchTimer !== undefined) {
+ clearTimeout(this.touchTimer);
+ this.touchTimer = undefined;
+ this.onClick(node.character);
+ }
break;
case 'contextmenu':
this.openMenu(touch, node.character, node.channel);
@@ -172,6 +178,13 @@
e.preventDefault();
}
+ private onClick(character: Character): void {
+ this.character = character;
+ if(core.state.settings.clickOpensMessage) this.openConversation(true);
+ else window.open(this.profileLink);
+ this.showContextMenu = false;
+ }
+
private openMenu(touch: MouseEvent | Touch, character: Character, channel: Channel | undefined): void {
this.channel = channel !== undefined ? channel : null;
this.character = character;
diff --git a/chat/common.ts b/chat/common.ts
index ae0b7e9..ecd5d4a 100644
--- a/chat/common.ts
+++ b/chat/common.ts
@@ -73,7 +73,7 @@ export function errorToString(e: any): string {
//tslint:enable
export async function requestNotificationsPermission(): Promise {
- if(