File size: 7,592 Bytes
755dd12 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 |
<template>
<div id="search" class="size-full">
<div class="fixed inset-x-0 top-0 z-50 w-full border-0 border-b border-solid border-zinc-100 bg-white py-2 dark:border-zinc-700 dark:bg-black">
<div class="flex w-full items-center justify-center">
<div class="flex w-full flex-row flex-nowrap items-center gap-4 lg:max-w-2xl lg:p-0 xl:max-w-4xl">
<div class="grow pl-2">
<SearchInputBar v-model="query" :autofocus="false" :loading="loading" @search="onSearch" />
</div>
<div class="shrink-0 grow-0 pr-2">
<t-tooltip :content="t('back')">
<t-button shape="circle" theme="default" @click="onBackHome">
<template #icon>
<RiArrowGoBackLine size="14px" />
</template>
</t-button>
</t-tooltip>
</div>
</div>
</div>
</div>
<div class="inset-0 flex items-center justify-center">
<div class="size-full lg:max-w-2xl xl:max-w-4xl">
<div class="mt-20">
<div v-if="!loading" class="flex flex-wrap justify-between gap-2 px-4 py-2 lg:px-0">
<SearchMode @change="onSearchModeChanged" />
<SearCategory @change="onSearchCategoryChanged" />
</div>
<div class="p-4 lg:p-0">
<div class="mt-0">
<div class="flex flex-nowrap items-center gap-2 py-4 text-black dark:text-gray-200">
<RiChat3Line />
<span class="text-lg font-bold ">{{ t('answer') }}</span>
</div>
<ChatAnswer
:query="query"
:answer="result?.answer"
:contexts="result?.contexts"
:loading="loading"
@reload="onReload"
/>
<div class="mt-4 flex">
<RelatedQuery :related="result?.related" @select="onSelectQuery" />
</div>
</div>
<div v-if="appStore.engine === 'SEARXNG'" class="mt-4">
<ChatMedia :loading="loading" :sources="result?.images" />
</div>
<div class="mt-4">
<div class="flex flex-nowrap items-center gap-2 py-4 text-black dark:text-gray-200">
<RiBook2Line />
<span class="text-lg font-bold ">{{ t('sources') }}</span>
</div>
<ChatSources :loading="loading" :sources="result?.contexts" />
</div>
<div class="my-4">
<div class="flex flex-nowrap items-center gap-2 py-4 text-black dark:text-gray-200">
<RiChat1Fill />
<span class="text-lg font-bold ">{{ t('chat') }}</span>
</div>
<ContinueChat :contexts="result?.contexts" :clear="loading" :query="query" :answer="result?.answer ?? ''" :ask="ask" @message="onAnswering" />
</div>
<div class="pb-20 pt-10">
<PageFooter />
</div>
</div>
</div>
<div class="fixed inset-x-0 bottom-0 z-50 w-full bg-gradient-to-t from-white to-transparent py-4 dark:from-black">
<div class="flex w-full items-center justify-center">
<div class="w-full drop-shadow-2xl lg:max-w-2xl xl:max-w-4xl">
<ChatInput :loading="loading" @ask="onChat" />
</div>
</div>
</div>
</div>
</div>
</div>
</template>
<script setup lang="ts">
import router from '../router';
import { search } from '../api';
import { useI18n } from 'vue-i18n';
import { useAppStore } from '../store';
import ContinueChat from './components/chat.vue';
import ChatInput from './components/input.vue';
import { computed, onMounted, onUnmounted, ref } from 'vue';
import { MessagePlugin } from 'tdesign-vue-next';
import { PageFooter, ChatAnswer, ChatMedia, RelatedQuery, ChatSources, SearchInputBar, SearchMode, SearCategory } from '../components';
import { RiChat3Line, RiBook2Line, RiChat1Fill, RiArrowGoBackLine } from '@remixicon/vue';
import { IQueryResult, TSearCategory, TSearchMode } from '../interface';
const appStore = useAppStore();
const { t } = useI18n();
const keyword = computed(() => router.currentRoute.value.query.q ?? '');
const query = ref<string>('');
const ask = ref<string>('');
const loading = ref(false);
let abortCtrl: AbortController | null = null;
const result = ref<IQueryResult>({
related: '',
answer: '',
contexts: [],
images: []
});
const onBackHome = () => {
router.push({ name: 'Home' });
};
const onSearchModeChanged = (mode: TSearchMode) => {
console.log('search mode', mode);
querySearch(query.value, false);
};
const onSearchCategoryChanged = (category: TSearCategory) => {
console.log('search category', category);
querySearch(query.value, false);
};
const onSelectQuery = (val: string) => {
query.value = val;
querySearch(val);
scrollToTop();
};
const onSearch = (val: string) => {
query.value = val;
router.currentRoute.value.query.q ??= val;
querySearch(val);
};
const onChat = (val: string) => {
ask.value = val.trim();
scrollToBottom();
};
const onAnswering = () => {
scrollToBottom();
};
const onReload = () => {
querySearch(query.value, true);
};
onMounted(() => {
if (!keyword.value) {
router.push({ name: 'Home' });
return;
}
query.value = keyword.value as string;
querySearch(query.value);
});
onUnmounted(() => {
abortCtrl?.abort();
});
async function querySearch(val: string | null, reload?: boolean) {
if (!val) return;
clear();
replaceQueryParam('q', val);
if (abortCtrl) {
abortCtrl.abort();
abortCtrl = null;
}
const language = appStore.language === 'en' ? 'all' : 'zh';
const ctrl = new AbortController();
abortCtrl = ctrl;
try {
loading.value = true;
const { model, engine, mode, category, enableLocal, localModel, localProvider } = appStore;
const modelName = enableLocal ? localModel : model?.split(':')[1];
await search(val, {
model: modelName,
provider: localProvider,
engine,
mode,
language,
categories: [category],
locally: enableLocal,
reload,
ctrl,
onMessage: (data: any) => {
if (data?.context) {
result.value.contexts?.push(data.context);
}
if (data?.image) {
result.value.images?.push(data.image);
}
if (data?.answer) {
result.value.answer += data.answer;
}
if (data?.related) {
result.value.related += data.related;
}
},
onClose: () => {
console.log('closed');
abortCtrl = null;
loading.value = false;
},
onError: (err) => {
console.error('error', err);
MessagePlugin.error(`${t('message.queryError')}: ${err.message}`);
loading.value = false;
}
});
} catch(err) {
ctrl.abort();
abortCtrl = null;
console.log(err);
loading.value = false;
MessagePlugin.error(t('message.queryError'));
}
}
function clear () {
result.value = {
related: '',
answer: '',
contexts: [],
images: []
};
ask.value = '';
}
function scrollToBottom() {
document.body.scrollTop = document.body.scrollHeight;
}
function scrollToTop() {
document.body.scrollTop = 0;
}
function replaceQueryParam(name: string, val: string) {
const url = new URL(location.href);
url.searchParams.set(name, val);
history.replaceState({}, '', url.toString());
}
</script>
<script lang="ts">
export default {
name: 'SearchPage'
};
</script>
|