Cleanup
This commit is contained in:
parent
f1fbe92dde
commit
b602f81940
|
@ -5,10 +5,12 @@
|
||||||
<div class="form-col radio-col">
|
<div class="form-col radio-col">
|
||||||
<input type="radio" :id="'search_history_' + index" :name="'search_history_' + index" v-model="selectedSearch" v-bind:value="index" />
|
<input type="radio" :id="'search_history_' + index" :name="'search_history_' + index" v-model="selectedSearch" v-bind:value="index" />
|
||||||
</div>
|
</div>
|
||||||
<div class="form-col content-col">
|
<div class="form-col content-col" @click="select(index)" @dblclick="submit">
|
||||||
<label class="custom-control-label" :for="'search_history_' + index" @dblclick="submit">
|
<span class="before-content"><i class="fas" :class="{ 'fa-check-circle': (index === selectedSearch) }" /></span>
|
||||||
|
<label class="custom-control-label" :for="'search_history_' + index">
|
||||||
{{describeSearch(search)}}
|
{{describeSearch(search)}}
|
||||||
</label>
|
</label>
|
||||||
|
<span class="content-action" @click="removeSearchHistoryEntry(index)"><i class="fas fa-times-circle" /></span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
|
@ -85,6 +87,18 @@
|
||||||
', '
|
', '
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
async removeSearchHistoryEntry(index: number): Promise<void> {
|
||||||
|
this.history.splice(index, 1);
|
||||||
|
|
||||||
|
await core.settingsStore.set('searchHistory', this.history);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
select(index: number): void {
|
||||||
|
this.selectedSearch = index;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
@ -100,9 +114,28 @@
|
||||||
|
|
||||||
.content-col {
|
.content-col {
|
||||||
min-width: 100%;
|
min-width: 100%;
|
||||||
|
display: flex;
|
||||||
|
|
||||||
label {
|
label {
|
||||||
min-width: 100%;
|
flex: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.before-content {
|
||||||
|
width: 1.3rem;
|
||||||
|
margin-bottom: auto;
|
||||||
|
margin-top: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content-action {
|
||||||
|
float: right;
|
||||||
|
opacity: 0.2;
|
||||||
|
margin-bottom: auto;
|
||||||
|
margin-top: auto;
|
||||||
|
margin-left: 1rem;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
opacity: 0.8;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<template>
|
<template>
|
||||||
<modal action="Open Conversation" ref="dialog" @submit="submit" style="width:98%" dialogClass="ads-dialog" buttonText="Open">
|
<modal action="Open Conversation" ref="dialog" @submit="submit" style="width:98%" dialogClass="ads-dialog" buttonText="Open">
|
||||||
<div>
|
<div>
|
||||||
<input type="text" id="name" v-model="name" placeholder="Name" />
|
<input type="text" id="name" v-model="name" placeholder="Name" ref="name" />
|
||||||
<div class="error" v-if="error">{{error}}</div>
|
<div class="error" v-if="error">{{error}}</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -10,7 +10,7 @@
|
||||||
|
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { Component } from '@f-list/vue-ts';
|
import { Component, Hook } from '@f-list/vue-ts';
|
||||||
import CustomDialog from '../components/custom_dialog';
|
import CustomDialog from '../components/custom_dialog';
|
||||||
import Modal from '../components/Modal.vue';
|
import Modal from '../components/Modal.vue';
|
||||||
import core from './core';
|
import core from './core';
|
||||||
|
@ -22,9 +22,17 @@ export default class PmPartnerAdder extends CustomDialog {
|
||||||
name = '';
|
name = '';
|
||||||
error: string | null = null;
|
error: string | null = null;
|
||||||
|
|
||||||
|
|
||||||
|
@Hook('activated')
|
||||||
|
async onMounted(): Promise<void> {
|
||||||
|
(this.$refs.name as HTMLInputElement).focus();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
submit(): void {
|
submit(): void {
|
||||||
const c = core.characters.get(this.name);
|
const c = core.characters.get(this.name);
|
||||||
|
|
||||||
|
|
||||||
if (c) {
|
if (c) {
|
||||||
const conversation = core.conversations.getPrivate(c);
|
const conversation = core.conversations.getPrivate(c);
|
||||||
|
|
||||||
|
|
|
@ -5,10 +5,12 @@
|
||||||
<div class="form-col radio-col">
|
<div class="form-col radio-col">
|
||||||
<input type="radio" :id="'history_status_' + index" :name="'history_status_' + index" v-model="selectedStatus" v-bind:value="index" />
|
<input type="radio" :id="'history_status_' + index" :name="'history_status_' + index" v-model="selectedStatus" v-bind:value="index" />
|
||||||
</div>
|
</div>
|
||||||
<div class="form-col content-col">
|
<div class="form-col content-col" @click="select(index)" @dblclick="submit">
|
||||||
<label class="custom-control-label" :for="'history_status_' + index" @dblclick="submit">
|
<span class="before-content"><i class="fas" :class="{ 'fa-check-circle': (index === selectedStatus) }" /></span>
|
||||||
|
<label class="custom-control-label" :for="'history_status_' + index">
|
||||||
<bbcode :text="historicStatus"></bbcode>
|
<bbcode :text="historicStatus"></bbcode>
|
||||||
</label>
|
</label>
|
||||||
|
<span class="content-action" @click="removeStatusHistoryEntry(index)"><i class="fas fa-times-circle" /></span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
|
@ -70,6 +72,20 @@
|
||||||
this.callback(this.history[this.selectedStatus]);
|
this.callback(this.history[this.selectedStatus]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
async removeStatusHistoryEntry(index: number): Promise<void> {
|
||||||
|
if(confirm('Are you sure you want to remove this status message?')) {
|
||||||
|
this.history.splice(index, 1);
|
||||||
|
|
||||||
|
await core.settingsStore.set('statusHistory', this.history);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
select(index: number): void {
|
||||||
|
this.selectedStatus = index;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
@ -85,9 +101,28 @@
|
||||||
|
|
||||||
.content-col {
|
.content-col {
|
||||||
min-width: 100%;
|
min-width: 100%;
|
||||||
|
display: flex;
|
||||||
|
|
||||||
label {
|
label {
|
||||||
min-width: 100%;
|
flex: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.before-content {
|
||||||
|
width: 1.3rem;
|
||||||
|
margin-bottom: auto;
|
||||||
|
margin-top: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content-action {
|
||||||
|
float: right;
|
||||||
|
opacity: 0.2;
|
||||||
|
margin-bottom: auto;
|
||||||
|
margin-top: auto;
|
||||||
|
margin-left: 1rem;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
opacity: 0.8;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -97,7 +97,6 @@ This repository contains a heavily customized version of the mainline F-Chat 3.0
|
||||||
* Bug? Usually submissive vs usually submissive shows up as 'maybe'
|
* Bug? Usually submissive vs usually submissive shows up as 'maybe'
|
||||||
* Bug? YOU have 'loves humans'; THEY have 'no furry characters, just humans' -- THEIR ad shows green, not red -- your side of comparison is fully green, they just have 'no furry pairings' in red
|
* Bug? YOU have 'loves humans'; THEY have 'no furry characters, just humans' -- THEIR ad shows green, not red -- your side of comparison is fully green, they just have 'no furry pairings' in red
|
||||||
* Bug? [color] acts weird
|
* Bug? [color] acts weird
|
||||||
* Add new chat is case sensitive
|
|
||||||
|
|
||||||
|
|
||||||
# F-List Exported
|
# F-List Exported
|
||||||
|
|
Loading…
Reference in New Issue