From 4ceee995200e89eb94e6c0e0f7761fd73eee8db7 Mon Sep 17 00:00:00 2001 From: "Mr. Stallion" Date: Sat, 21 Nov 2020 14:41:08 -0600 Subject: [PATCH] Better search rankings --- CHANGELOG.md | 3 + chat/CharacterSearch.vue | 24 ++- chat/ConversationView.vue | 16 +- chat/UserView.vue | 20 +- chat/ads/ConversationAdSettings.vue | 5 + chat/preview/CharacterPreview.vue | 97 +++++++++- chat/preview/assets/browser.processor.raw.js | 12 +- chat/preview/image-dom-mutator.ts | 1 + chat/preview/test-urls.txt | 2 + learn/cache-manager.ts | 8 +- learn/matcher-types.ts | 10 +- learn/matcher.ts | 183 +++++++++++++++++-- learn/profile-cache.ts | 34 ++-- 13 files changed, 350 insertions(+), 65 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9dc518c..7142f67 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,9 @@ ## Canary * Use `Ctrl+Tab`, `Ctrl+Shift+Tab`, `Ctrl+PgDown`, and `Ctrl+PgUp` to switch between character tabs +* Better search rankings +* Really good matches get 'unicorn' tag +* Fixed IMGBB, Shadbase previews ## 1.4.1 diff --git a/chat/CharacterSearch.vue b/chat/CharacterSearch.vue index 09492ac..414795f 100644 --- a/chat/CharacterSearch.vue +++ b/chat/CharacterSearch.vue @@ -91,24 +91,34 @@ const xc = core.cache.profileCache.getSync(x.name); const yc = core.cache.profileCache.getSync(y.name); - if (xc && !yc) { + if(xc && !yc) { return -1; } - if (!xc && yc) { + if(!xc && yc) { return 1; } - if (xc && yc) { - if (xc.matchScore > yc.matchScore) + if(xc && yc) { + if(xc.match.matchScore > yc.match.matchScore) return -1; - if (xc.matchScore < yc.matchScore) + if(xc.match.matchScore < yc.match.matchScore) return 1; + + if(xc.match.searchScore > yc.match.searchScore) + return -1; + + if(xc.match.searchScore < yc.match.searchScore) + return 1; } - if(x.name < y.name) return -1; - if(x.name > y.name) return 1; + if(x.name < y.name) + return -1; + + if(x.name > y.name) + return 1; + return 0; } diff --git a/chat/ConversationView.vue b/chat/ConversationView.vue index 5a4b3e2..4849094 100644 --- a/chat/ConversationView.vue +++ b/chat/ConversationView.vue @@ -777,11 +777,23 @@ 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; + line-height: 100%; + padding-top: 2px; + padding-bottom: 2px; + + &.unicorn { + background-color: #00adad; + border: solid 1px #1d9a9a; + box-shadow: 0 0 5px 0 rgba(255, 255, 255, 0.5); + + &::before { + content: '๐Ÿฆ„'; + padding-right:3px + } + } &.match { background-color: var(--scoreMatchBg); diff --git a/chat/UserView.vue b/chat/UserView.vue index 54e2c8e..714ace7 100644 --- a/chat/UserView.vue +++ b/chat/UserView.vue @@ -6,7 +6,7 @@ import { Component, Hook, Prop, Watch } from '@f-list/vue-ts'; import Vue from 'vue'; import {Channel, Character} from '../fchat'; -import { Score, Scoring } from '../learn/matcher'; +import { Matcher, Score, Scoring } from '../learn/matcher'; import core from './core'; import { EventBus } from './preview/event-bus'; @@ -37,7 +37,7 @@ export interface StatusClasses { rankIcon: string | null; statusClass: string | null; matchClass: string | null; - matchScore: number | null; + matchScore: number | string | null; userClass: string; isBookmark: boolean; } @@ -71,8 +71,13 @@ export function getStatusClasses( const cache = core.cache.profileCache.getSync(character.name); if (cache) { - matchClass = `match-found ${Score.getClasses(cache.matchScore)}`; - matchScore = cache.matchScore; + if ((cache.match.searchScore > Matcher.UNICORN_LEVEL) && (cache.match.matchScore === Scoring.MATCH)) { + matchClass = 'match-found unicorn'; + matchScore = 'unicorn'; + } else { + matchClass = `match-found ${Score.getClasses(cache.match.matchScore)}`; + matchScore = cache.match.matchScore; + } } else { /* tslint:disable-next-line no-floating-promises */ core.cache.addProfile(character.name); @@ -126,7 +131,7 @@ export default class UserView extends Vue { rankIcon: string | null = null; statusClass: string | null = null; matchClass: string | null = null; - matchScore: number | null = null; + matchScore: number | string | null = null; // tslint:disable-next-line no-any scoreWatcher: ((event: any) => void) | null = null; @@ -197,8 +202,11 @@ export default class UserView extends Vue { } - getMatchScoreTitle(score: number | null): string { + getMatchScoreTitle(score: number | string | null): string { switch (score) { + case 'unicorn': + return 'Unicorn'; + case Scoring.MATCH: return 'Great'; diff --git a/chat/ads/ConversationAdSettings.vue b/chat/ads/ConversationAdSettings.vue index a558ed8..8f21790 100644 --- a/chat/ads/ConversationAdSettings.vue +++ b/chat/ads/ConversationAdSettings.vue @@ -1,6 +1,11 @@