{{l('status.' + conversation.character.status)}}
@@ -140,7 +144,8 @@
-
+
+
@@ -163,13 +168,14 @@
import MessageView from './message_view';
import ReportDialog from './ReportDialog.vue';
import {isCommand} from './slash_commands';
- import UserView from './user_view';
+ import UserView from './UserView.vue';
+ import UserChannelList from './UserChannelList.vue';
@Component({
components: {
user: UserView, 'bbcode-editor': Editor, 'manage-channel': ManageChannel, settings: ConversationSettings,
logs: Logs, 'message-view': MessageView, bbcode: BBCodeView, 'command-help': CommandHelp,
- 'ad-view': AdView
+ 'ad-view': AdView, 'channel-list': UserChannelList
}
})
export default class ConversationView extends Vue {
@@ -411,6 +417,10 @@
(
this.$refs['adViewer']).show();
}
+ showChannels(): void {
+ (this.$refs['channelList']).show();
+ }
+
isAutopostingAds(): boolean {
return this.conversation.adManager.isActive();
@@ -635,6 +645,43 @@
}
}
+
+ .user-view {
+ .match-found {
+ margin-left: 3px;
+ padding-left: 2px;
+ padding-right: 2px;
+ border-radius: 3px;
+ color: rgba(255, 255, 255, 0.8);
+ font-size: 75%;
+ padding-top: 0;
+ padding-bottom: 0;
+ text-align: center;
+ display: inline-block;
+ text-transform: uppercase;
+
+ &.match {
+ background-color: rgb(0, 142, 0);
+ border: solid 1px rgb(0, 113, 0);
+ }
+
+ &.weak-match {
+ background-color: rgb(0, 80, 0);
+ border: 1px solid rgb(0, 64, 0);
+ }
+
+ &.weak-mismatch {
+ background-color: rgb(152, 134, 0);
+ border: 1px solid rgb(142, 126, 0);
+ }
+
+ &.mismatch {
+ background-color: rgb(171, 0, 0);
+ border: 1px solid rgb(128, 0, 0);
+ }
+ }
+ }
+
.message {
&.message-event {
font-size: 85%;
diff --git a/chat/PmPartnerAdder.vue b/chat/PmPartnerAdder.vue
new file mode 100644
index 0000000..c6aacc7
--- /dev/null
+++ b/chat/PmPartnerAdder.vue
@@ -0,0 +1,40 @@
+
+
+
+
+
+
+
+
+
diff --git a/chat/RecentConversations.vue b/chat/RecentConversations.vue
index f6f2bb3..be98bc3 100644
--- a/chat/RecentConversations.vue
+++ b/chat/RecentConversations.vue
@@ -24,7 +24,7 @@
import core from './core';
import {Character, Conversation} from './interfaces';
import l from './localize';
- import UserView from './user_view';
+ import UserView from './UserView.vue';
@Component({
components: {'user-view': UserView, 'channel-view': ChannelView, modal: Modal, tabs: Tabs}
diff --git a/chat/StatusSwitcher.vue b/chat/StatusSwitcher.vue
index 9bed284..d36d53e 100644
--- a/chat/StatusSwitcher.vue
+++ b/chat/StatusSwitcher.vue
@@ -30,7 +30,7 @@
import core from './core';
import {Character, userStatuses} from './interfaces';
import l from './localize';
- import {getStatusIcon} from './user_view';
+ import {getStatusIcon} from './UserView.vue';
@Component({
components: {modal: Modal, editor: Editor, dropdown: Dropdown}
diff --git a/chat/UserChannelList.vue b/chat/UserChannelList.vue
new file mode 100644
index 0000000..d0c2ea6
--- /dev/null
+++ b/chat/UserChannelList.vue
@@ -0,0 +1,76 @@
+
+
+
+ Channels for {{character.name}}
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/chat/UserList.vue b/chat/UserList.vue
index f52b652..9ecd8cd 100644
--- a/chat/UserList.vue
+++ b/chat/UserList.vue
@@ -36,7 +36,7 @@
import {Channel, Character, Conversation} from './interfaces';
import l from './localize';
import Sidebar from './Sidebar.vue';
- import UserView from './user_view';
+ import UserView from './UserView.vue';
@Component({
components: {user: UserView, sidebar: Sidebar, tabs: Tabs}
diff --git a/chat/UserMenu.vue b/chat/UserMenu.vue
index 8d2bd5d..8cd7d09 100644
--- a/chat/UserMenu.vue
+++ b/chat/UserMenu.vue
@@ -21,6 +21,9 @@
{{l('user.memo')}}
{{l('user.' + (character.isBookmarked ? 'unbookmark' : 'bookmark'))}}
+
+ Show ad log
+
{{l('user.' + (isHidden ? 'unhide' : 'hide'))}}
@@ -36,6 +39,7 @@
{{getByteLength(memo)}} / 1000
+
@@ -43,6 +47,7 @@
import {Component, Prop} from '@f-list/vue-ts';
import Vue from 'vue';
import Modal from '../components/Modal.vue';
+ import AdView from './AdView.vue';
import {BBCodeView} from './bbcode';
import {characterImage, errorToString, getByteLength, profileLink} from './common';
import core from './core';
@@ -51,7 +56,7 @@
import ReportDialog from './ReportDialog.vue';
@Component({
- components: {bbcode: BBCodeView, modal: Modal}
+ components: {bbcode: BBCodeView, modal: Modal, 'ad-view': AdView}
})
export default class UserMenu extends Vue {
@Prop({required: true})
@@ -120,6 +125,30 @@
.catch((e: object) => alert(errorToString(e)));
}
+
+ showAdLogs(): void {
+ if (!this.hasAdLogs()) {
+ return;
+ }
+
+ (