Minor fixes

This commit is contained in:
Mr. Stallion 2020-06-18 15:17:00 -05:00
parent bd08c72c9e
commit 50d64df7d8
8 changed files with 56 additions and 24 deletions

View File

@ -245,6 +245,13 @@
isPrivate = Conversation.isPrivate; isPrivate = Conversation.isPrivate;
showNonMatchingAds = true; showNonMatchingAds = true;
@Hook('beforeMount')
async onBeforeMount(): Promise<void> {
this.showNonMatchingAds = !await core.settingsStore.get('hideNonMatchingAds');
}
@Hook('mounted') @Hook('mounted')
mounted(): void { mounted(): void {
this.extraButtons = [{ this.extraButtons = [{
@ -432,8 +439,10 @@
} }
toggleNonMatchingAds(): void { async toggleNonMatchingAds(): Promise<void> {
this.showNonMatchingAds = !this.showNonMatchingAds; this.showNonMatchingAds = !this.showNonMatchingAds;
await core.settingsStore.set('hideNonMatchingAds', !this.showNonMatchingAds);
} }

View File

@ -68,7 +68,6 @@ export default class CharacterChannelList extends CustomDialog {
jumpToChannel(channel: ChannelConversation): void { jumpToChannel(channel: ChannelConversation): void {
channel.show(); channel.show();
} }
} }
</script> </script>

View File

@ -171,6 +171,8 @@ export namespace Settings {
hiddenUsers: string[] hiddenUsers: string[]
statusHistory: string[] statusHistory: string[]
searchHistory: (ExtendedSearchData | SearchData)[] searchHistory: (ExtendedSearchData | SearchData)[]
hideNonMatchingAds: boolean
hideProfileComparisonSummary: boolean
}; };
export interface Store { export interface Store {

View File

@ -36,7 +36,7 @@
<div class="card-body"> <div class="card-body">
<div class="tab-content"> <div class="tab-content">
<div role="tabpanel" v-show="tab === '0'" id="overview"> <div role="tabpanel" v-show="tab === '0'" id="overview">
<match-report :characterMatch="characterMatch" :minimized="character.is_self" v-if="shouldShowMatch()"></match-report> <match-report :characterMatch="characterMatch" v-if="shouldShowMatch()"></match-report>
<div style="margin-bottom:10px"> <div style="margin-bottom:10px">
<bbcode :text="character.character.description"></bbcode> <bbcode :text="character.character.description"></bbcode>

View File

@ -20,13 +20,11 @@
</template> </template>
<script lang="ts"> <script lang="ts">
import {Component, Prop} from '@f-list/vue-ts'; import { Component, Prop, Watch } from '@f-list/vue-ts';
import Vue from 'vue'; import Vue from 'vue';
import {DisplayKink} from './interfaces'; import { DisplayKink } from './interfaces';
@Component({ @Component({ name: 'kink' })
name: 'kink'
})
export default class KinkView extends Vue { export default class KinkView extends Vue {
@Prop({required: true}) @Prop({required: true})
readonly kink!: DisplayKink; readonly kink!: DisplayKink;
@ -40,8 +38,18 @@
expandedCustom = false; expandedCustom = false;
listClosed = true; listClosed = true;
initialListClosedState = true;
showTooltip = false; showTooltip = false;
@Watch('expandedCustom')
onExpandedCustomChange(): void {
if (this.expandedCustom) {
this.initialListClosedState = this.listClosed;
this.listClosed = false;
} else {
this.listClosed = this.initialListClosedState;
}
}
toggleExpandedCustoms(): void { toggleExpandedCustoms(): void {
this.expandedCustom = !this.expandedCustom; this.expandedCustom = !this.expandedCustom;
@ -50,7 +58,9 @@
toggleSubkinks(): void { toggleSubkinks(): void {
if(!this.kink.hasSubkinks) if(!this.kink.hasSubkinks)
return; return;
this.listClosed = !this.listClosed; this.listClosed = !this.listClosed;
this.initialListClosedState = this.listClosed;
} }
get kinkClasses(): {[key: string]: boolean} { get kinkClasses(): {[key: string]: boolean} {
@ -76,4 +86,4 @@
return this.kink.isCustom ? this.kink.id : undefined; return this.kink.isCustom ? this.kink.id : undefined;
} }
} }
</script> </script>

View File

@ -147,8 +147,8 @@
) as CharacterKink[]; ) as CharacterKink[];
} }
async compareKinks(overridingCharacter?: Character): Promise<void> { async compareKinks(overridingCharacter?: Character, forced: boolean = false): Promise<void> {
if(this.comparing) { if ((this.comparing) && (!forced)) {
this.comparison = {}; this.comparison = {};
this.comparing = false; this.comparing = false;
this.loading = false; this.loading = false;
@ -194,7 +194,7 @@
return; return;
if (core.state.settings.risingAutoCompareKinks) { if (core.state.settings.risingAutoCompareKinks) {
await this.compareKinks(core.characters.ownProfile); await this.compareKinks(core.characters.ownProfile, true);
} }
} }
@ -203,7 +203,9 @@
if ((this.character) && (this.character.is_self)) if ((this.character) && (this.character.is_self))
return; return;
await this.compareKinks(core.characters.ownProfile); if (core.state.settings.risingAutoCompareKinks) {
await this.compareKinks(core.characters.ownProfile, true);
}
} }
get kinkGroups(): KinkGroup[] { get kinkGroups(): KinkGroup[] {

View File

@ -31,11 +31,12 @@
</template> </template>
<script lang="ts"> <script lang="ts">
import { Component, Prop, Watch } from '@f-list/vue-ts'; import { Component, Hook, Prop } from '@f-list/vue-ts';
import * as _ from 'lodash'; import * as _ from 'lodash';
import Vue from 'vue'; import Vue from 'vue';
import * as Utils from '../utils'; import * as Utils from '../utils';
import { MatchReport, MatchResult, Score, Scoring } from '../../learn/matcher'; import { MatchReport, MatchResult, Score, Scoring } from '../../learn/matcher';
import core from '../../chat/core';
export interface CssClassMap { export interface CssClassMap {
[key: string]: boolean; [key: string]: boolean;
@ -47,18 +48,25 @@
@Prop({required: true}) @Prop({required: true})
readonly characterMatch!: MatchReport; readonly characterMatch!: MatchReport;
@Prop({required: true}) // @Prop({required: true})
readonly minimized = false; // readonly minimized = false;
readonly avatarUrl = Utils.avatarURL; readonly avatarUrl = Utils.avatarURL;
isMinimized = false; isMinimized = false;
@Watch('minimized')
onMinimizedChange(): void { @Hook('beforeMount')
this.isMinimized = this.minimized; async beforeMount(): Promise<void> {
this.isMinimized = !!await core.settingsStore.get('hideProfileComparisonSummary');
} }
// @Watch('minimized')
// onMinimizedChange(): void {
// this.isMinimized = this.minimized;
// }
getScoreClass(score: Score): CssClassMap { getScoreClass(score: Score): CssClassMap {
const classes: CssClassMap = {}; const classes: CssClassMap = {};
@ -83,8 +91,10 @@
return _.map(result.scores, (s: Score) => (s)); return _.map(result.scores, (s: Score) => (s));
} }
toggleMinimize(): void { async toggleMinimize(): Promise<void> {
this.isMinimized = !this.isMinimized; this.isMinimized = !this.isMinimized;
await core.settingsStore.set('hideProfileComparisonSummary', this.isMinimized);
} }
} }
</script> </script>

View File

@ -43,10 +43,10 @@
<infotag-item v-for="id in quickInfoIds" v-if="character.character.infotags[id]" :infotag="getInfotag(id)" <infotag-item v-for="id in quickInfoIds" v-if="character.character.infotags[id]" :infotag="getInfotag(id)"
:data="character.character.infotags[id]" :key="id" :characterMatch="characterMatch"></infotag-item> :data="character.character.infotags[id]" :key="id" :characterMatch="characterMatch"></infotag-item>
<div class="contact-block"> <!-- <div class="contact-block">-->
<contact-method v-for="method in contactMethods" :infotag="method" :key="method.id" <!-- <contact-method v-for="method in contactMethods" :infotag="method" :key="method.id"-->
:data="character.character.infotags[method.id]"></contact-method> <!-- :data="character.character.infotags[method.id]"></contact-method>-->
</div> <!-- </div>-->
<div class="quick-info"> <div class="quick-info">
<span class="quick-info-label">Created</span> <span class="quick-info-label">Created</span>