dev01 1 year ago
parent
commit
0babe3bc92

+ 0 - 97
src/views/report/components/reference/AIContentDraw.vue

@@ -1,97 +0,0 @@
-<!-- AI生成内容展示的抽屉组件 -->
-
-<script setup lang="ts">
-import { message } from 'ant-design-vue';
-import { ref } from 'vue';
-import { useClipboard } from "@/libs/clipboard.lib";
-
-const props = defineProps({
-  content: {
-    type: String,
-    required: true
-  }
-})
-
-const clipboard = useClipboard()
-
-// 组件可见状态
-const visible = ref<boolean>(false);
-
-const emits = defineEmits<{
-  (e: "insert", text: string): void;
-  (e: "close"): void;
-}>();
-
-function getSelectedText() {
-  if (window.getSelection) {
-    const range = window.getSelection()
-    return range?.toString()
-  } else {
-    message.warning("暂不支持此版本浏览器选择复制")
-  }
-  return null
-}
-
-/**
- * 清理文本当中的em标签
- * @param {string} text 文本
- * @returns {string} 清理后的文本
- */
-function purnText(text: string): string {
-  if (!text) {
-    return text
-  }
-  const re = new RegExp("</?em>", "gi");
-  return text.replace(re, '')
-}
-
-function onCopy() {
-  const selectedText = getSelectedText()
-  const text = purnText(selectedText || '')
-  const msg = selectedText && "复制所选内容成功" || "复制内容成功"
-  clipboard.copy(text).then(() => {
-    message.success(msg)
-  })
-}
-
-function onInsertion() {
-  const text = purnText(getSelectedText() || props.content)
-  emits("insert", text)
-}
-
-const onClose = () => {
-  visible.value = false;
-  emits("close")
-};
-
-const show = () => {
-  visible.value = true;
-};
-
-defineExpose({
-  show
-});
-</script>
-
-<template>
-  <a-drawer
-    :width="'60%'"
-    title="检索参考文献"
-    placement="right"
-    :visible="visible"
-    @close="onClose"
-    class="reference-drawer"
-  >
-    <h1>AI生成的参考内容</h1>
-    <p>{{ content }}</p>
-    <div class="btn-group">
-      <a-radio-group>
-        <a-radio-button value="default" @mousedown="onCopy">复制</a-radio-button>
-        <a-radio-button value="small" @mousedown="onInsertion">插入</a-radio-button>
-      </a-radio-group>
-    </div>
-  </a-drawer>
-</template>
-
-<style scoped lang="scss">
-</style>

+ 0 - 207
src/views/report/components/reference/ReferenceDraw.vue

@@ -1,207 +0,0 @@
-<!-- 参考文献抽屉组件 -->
-
-<script setup lang="ts">
-import { ref, reactive, type Ref } from "vue";
-import ReferenceSearchBox from "./ReferenceSearchBox.vue";
-import ReferenceSearchResultItem from "./ReferenceSearchResultItem.vue";
-import type { ChapterSearchDocResponse, ChapterSearchRequest } from "@/types/search.types"
-import * as chapterSearchService from "@/services/chapterSearch.service"
-import * as paperSectionService from "@/services/paperSection.service"
-import { CompLog } from "@/libs/log.lib";
-import SpinComponent from "@/components/SpinComponent.vue";
-
-const props = defineProps({
-  reportName: {
-    type: String,
-    required: true,
-  },
-  reportKeywords: {
-    type: String,
-    required: true,
-  },
-  chapterKeywords: {
-    type: Array<String>,
-    required: true,
-  }
-});
-
-const emits = defineEmits<{
-  (e: "insert", text: string): void;
-  (e: "close"): void;
-  (e: "recordUse", sectionId: number): void;
-}>();
-
-// 组件可见状态
-const visible = ref<boolean>(false);
-// 章节搜索结果总数量
-const total = ref(0)
-// 章节搜索结果
-const referenceSearchResult: Ref<ChapterSearchDocResponse[]> = ref([]);
-// 文献章节段落内容是否使用ref
-const paperSectionUsage = ref<Record<number, boolean>>({})
-// 章节搜索状态
-const loading = ref(false)
-// 翻页
-const pagination = reactive({
-  page: 1,
-  size: 10,
-})
-// 重新检索的查询词
-const queryKeywords = ref<string[]>([])
-// 在结果中检索的查询
-const queryWithInKeywords = ref<string[]>([])
-
-function getFrom(page?: number) {
-  return (Math.max(1, page || 1) - 1) * pagination.size
-}
-
-function getDefaultKeywords(): string[] {
-  return props.chapterKeywords as string[]
-}
-
-function getSearchRequest(): ChapterSearchRequest {
-  const request: ChapterSearchRequest = {
-    reportName: props.reportName || '',
-    reportKeywords: props.reportKeywords || '',
-    chapterKeywords: getDefaultKeywords(),
-    queryKeywords: queryKeywords.value,
-    queryWithInKeywords: queryWithInKeywords.value,
-    from: getFrom(pagination.page)
-  }
-  return request
-}
-
-function querySectionUsage(sectionIds: number[]) {
-  paperSectionService.query(sectionIds).then((usages) => {
-    paperSectionUsage.value = usages
-  })
-}
-
-function search(request: ChapterSearchRequest) {
-  loading.value = true
-  referenceSearchResult.value = []
-  chapterSearchService.search(request).then((resp) => {
-    loading.value = false
-    total.value = resp.total
-    referenceSearchResult.value = resp.items
-
-    querySectionUsage(resp.items.map(item => item.id))
-  }).catch((err) => {
-    CompLog.logErr("ReferenceDraw")(err)
-    loading.value = false
-  })
-}
-
-function onPageChange(page: number) {
-  pagination.page = page
-  search(getSearchRequest())
-}
-
-function onReferenceSearchBoxSearch(queryKeywordsIn: string[]) {
-  pagination.page = 1
-  queryKeywords.value = queryKeywordsIn
-  queryWithInKeywords.value = []
-  search(getSearchRequest())
-}
-
-function onReferenceSearchWithInSearch(queryWithInKeywordsIn: string[]) {
-  pagination.page = 1
-  queryWithInKeywords.value = queryWithInKeywordsIn
-  search(getSearchRequest())
-}
-
-function onSectionRecordUse(sectionId: number) {
-  paperSectionService.record(sectionId).then(() => {
-    paperSectionUsage.value[`${sectionId}`] = true
-  })
-}
-
-function onSectionRecordCancel(sectionId: number) {
-  paperSectionService.cancel(sectionId).then(() => {
-    paperSectionUsage.value[`${sectionId}`] = false
-  })
-}
-
-function serialNumber(index: number) {
-  index += 1;
-  return (pagination.page - 1) * pagination.size + index;
-}
-
-const onClose = () => {
-  visible.value = false;
-  emits("close")
-};
-
-const show = () => {
-  visible.value = true;
-  const keywords = props.chapterKeywords
-  if (keywords && keywords.length > 0) {
-    search(getSearchRequest())
-  }
-};
-
-defineExpose({
-  show
-});
-</script>
-
-<template>
-  <a-drawer
-    :width="'60%'"
-    title="检索参考文献"
-    placement="right"
-    :visible="visible"
-    @close="onClose"
-    class="reference-drawer"
-  >
-    <template #extra>
-      <span>项目名称:{{ reportName }}</span>
-      <a-divider type="vertical" />
-      <span>关键词:{{ reportKeywords }}</span>
-      <a-divider type="vertical" />
-      <span>章节关键词:{{ chapterKeywords.join(", ") }}</span>
-    </template>
-    <ReferenceSearchBox @search="onReferenceSearchBoxSearch" @search-with-in="onReferenceSearchWithInSearch" />
-    <a-divider orientation="left">
-      <span class="total">章节数量:共 {{ total }} 条</span>
-    </a-divider>
-    <SpinComponent :spinning="loading">
-      <div v-for="(item, index) in referenceSearchResult" :key="index">
-        <ReferenceSearchResultItem
-          :data="item"
-          :used="paperSectionUsage[item.id] || false"
-          :serialNumber="serialNumber(index)"
-          @insert="emits('insert', $event)"
-          @record-use="onSectionRecordUse"
-          @record-cancel="onSectionRecordCancel"
-        />
-        <a-divider class="result-item-divider" v-if="index < referenceSearchResult.length - 1" />
-      </div>
-      <div class="pigination-wrap">
-        <a-pagination
-          :current="pagination.page"
-          :pageSize="pagination.size"
-          :total="total"
-          :show-size-changer="false"
-          size="small"
-          @change="onPageChange"
-        />
-      </div>
-    </SpinComponent>
-  </a-drawer>
-</template>
-
-<style scoped lang="scss">
-.result-item-divider {
-  margin: 1.2em 0;
-}
-
-.total {
-  font-size: 0.8em;
-}
-
-.pigination-wrap {
-  text-align: right;
-  margin-top: 1em;
-}
-</style>

+ 0 - 36
src/views/report/components/reference/ReferenceSearchBox.vue

@@ -1,36 +0,0 @@
-<script setup lang="ts">
-import { ref } from "vue";
-
-const keyword = ref('');
-
-const emits = defineEmits<{
-  (e: "search", keyword: string[]): void;
-  (e: "searchWithIn", keyword: string[]): void;
-}>();
-
-function getKeywords(keyword: string) {
-  return keyword.split(' ').filter((item) => item.trim() != "")
-}
-
-function onSearch() {
-  emits("search", getKeywords(keyword.value));
-}
-
-function onSearchWithIn() {
-  emits("searchWithIn", getKeywords(keyword.value));
-}
-</script>
-
-<template>
-  <a-row type="flex" :gutter="8">
-    <a-col flex="1">
-      <a-input v-model:value="keyword" placeholder="请输入查询词进行检索,使用空格区分多个查询词" />
-    </a-col>
-    <a-col>
-      <a-space>
-        <a-button type="primary" @click="onSearch">重新检索</a-button>
-        <a-button @click="onSearchWithIn">在结果中检索</a-button>
-      </a-space>
-    </a-col>
-  </a-row>
-</template>

+ 0 - 154
src/views/report/components/reference/ReferenceSearchResultItem.vue

@@ -1,154 +0,0 @@
-<script setup lang="ts">
-import { useClipboard } from "@/libs/clipboard.lib";
-import type { ChapterSearchDocResponse } from "@/types/search.types";
-import { message } from "ant-design-vue";
-import { ExclamationCircleFilled } from "@ant-design/icons-vue";
-import type { PropType } from "vue";
-
-const props = defineProps({
-  data: {
-    type: Object as PropType<ChapterSearchDocResponse>,
-    required: true
-  },
-  used: {
-    type: Boolean,
-    required: false,
-  },
-  serialNumber: {
-    type: Number,
-    required: true,
-  }
-});
-
-const emits = defineEmits<{
-  (e: "insert", text: string): void;
-  (e: "recordUse", sectionId: number): void;
-  (e: "recordCancel", sectionid: number): void;
-}>();
-
-const clipboard = useClipboard()
-
-function getSelectedText() {
-  if (window.getSelection) {
-    const range = window.getSelection()
-    return range?.toString()
-  } else {
-    message.warning("暂不支持此版本浏览器选择复制")
-  }
-  return null
-}
-
-/**
- * 清理文本当中的em标签
- * @param {string} text 文本
- * @returns {string} 清理后的文本
- */
-function purnText(text: string): string {
-  if (!text) {
-    return text
-  }
-  const re = new RegExp("</?em>", "gi");
-  return text.replace(re, '')
-}
-
-function onRecordUse() {
-  emits("recordUse", props.data.id)
-}
-
-function onRecordCancel() {
-  emits("recordCancel", props.data.id)
-}
-
-function onCopy() {
-  const selectedText = getSelectedText()
-  const text = purnText(selectedText || props.data.content)
-  const msg = selectedText && "复制所选内容成功" || "复制内容成功"
-  clipboard.copy(text).then(() => {
-    message.success(msg)
-  })
-}
-
-function onInsertion() {
-  const text = purnText(getSelectedText() || props.data.content)
-  emits("insert", text)
-}
-
-function section(content: string, number: number) {
-  let tag: string = "</span><br/>";
-  let section: string = "<span style='padding-left: 2em;'>";
-
-  let result: string = ""
-  let sentenceArr: string[] | null = content.match(/。/g);
-  if (sentenceArr && sentenceArr.length > number) {
-     let length = sentenceArr.length;
-     for (let i = 0; i < length; i++) {
-        if (i > 0 && i % number == 0) {
-          result += (section + tag);
-          section= "<span style='padding-left: 2em;'>";
-        }
-        let index = content.indexOf("。");
-        section += content.slice(0, index+1);
-        content = content.slice(index+1);
-     }   
-     return result;
-  }
-  return content;
-}
-</script>
-
-<template>
-  <h3>
-    <span>{{ serialNumber }}. </span>
-    <a v-if="data.docId" :href="'/detail/' + data.docId" target="_blank">{{ data.title }}</a>
-    <span v-else>{{ data.title }}</span>
-  </h3>
-  <div class="meta">
-    <a-space style="row-gap: 0px;column-gap: 8px;">
-      <span v-if="data.journalName">期刊名称:{{ data.journalName }}</span> <br />
-      <span v-if="data.year">时间:{{ data.year }}</span>
-      <span v-for="(item, index) in data.unitScholars" :key="index">
-        {{ item.scholarName }} {{ item.unitName }}
-      </span>
-    </a-space>
-  </div>
-  <h4 class="section-title" v-html="data.section"></h4>
-  <div class="content-wrap" :class="{'used': used}">
-    <exclamation-circle-filled v-if="used" />
-    <span class="content" v-html="section(data.content, 3)"></span>
-  </div>
-  <div class="btn-group">
-    <a-radio-group>
-      <a-radio-button value="large" @click="onRecordUse" v-if="!used">标记使用</a-radio-button>
-      <a-radio-button value="large" @click="onRecordCancel" v-if="used">取消标记</a-radio-button>
-      <a-radio-button value="default" @mousedown="onCopy">复制</a-radio-button>
-      <a-radio-button value="small" @mousedown="onInsertion">插入</a-radio-button>
-    </a-radio-group>
-  </div>
-</template>
-
-<style scoped lang="scss">
-.meta .ant-space {
-  flex-wrap: wrap;
-  font-size: 12px;
-}
-.section-title {
-  margin: 4px 0 4px 0;
-  :deep em {
-    color: red;
-    font-style: normal;
-  }
-}
-.content-wrap {
-  &.used {
-    color: #bebebe;
-  }
-
-  :deep .content em {
-    color: red;
-    font-style: normal;
-  }
-}
-.btn-group {
-  margin-top: 0.8em;
-}
-</style>