123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296 |
- <template>
- <CommonMarkBody
- :hasMarkResultToRender="true"
- :makeTrack="makeTrack"
- @error="$emit('error')"
- />
- <div class="cursor">
- <div class="cursor-border">
- <span class="text">{{
- store.currentSpecialTag || store.currentScore
- }}</span>
- </div>
- </div>
- <!-- <MarkBody /> -->
- </template>
- <script setup lang="ts">
- import { onMounted, onUnmounted, watch } from "vue";
- import { store } from "@/store/store";
- import { SliceImage, SpecialTag, Track } from "@/types";
- // @ts-ignore
- import CustomCursor from "custom-cursor.js";
- import CommonMarkBody from "./CommonMarkBody.vue";
- // import { message } from "ant-design-vue";
- // 开启本组件,测试后台在整卷的还原效果
- // import MarkBody from "@/features/student/studentInspect/MarkBody.vue";
- defineEmits(["error", "allZeroSubmit"]);
- const makeScoreTrack = (
- event: MouseEvent,
- item: SliceImage,
- maxSliceWidth: number,
- theFinalHeight: number
- ) => {
- // console.log(item);
- if (!store.currentQuestion || typeof store.currentScore === "undefined")
- return;
- const target = event.target as HTMLImageElement;
- const track = {} as Track;
- track.mainNumber = store.currentQuestion?.mainNumber;
- track.subNumber = store.currentQuestion?.subNumber;
- track.score = store.currentScore;
- track.offsetIndex = item.indexInSliceUrls;
- track.offsetX = Math.round(
- event.offsetX * (target.naturalWidth / target.width) + item.dx
- );
- track.offsetY = Math.round(
- event.offsetY * (target.naturalHeight / target.height) + item.dy
- );
- track.positionX = (track.offsetX - item.dx) / maxSliceWidth;
- track.positionY =
- (track.offsetY - item.dy + item.accumTopHeight) / theFinalHeight;
- // const isIllegalRange = (testNum: number, min: number, max: number) => {
- // return testNum < min || testNum > max;
- // };
- // // 检测有问题,此处没有给原图的宽高,如果有的话,要稍微修改下数据类型
- // // 但其实下面也做了一个基本检测
- // if (
- // isIllegalRange(track.offsetX, 0, target.naturalWidth) ||
- // isIllegalRange(track.offsetY, 0, target.naturalHeight) ||
- // isIllegalRange(track.positionX, 0, 1) ||
- // isIllegalRange(track.positionY, 0, 1)
- // ) {
- // console.error(
- // "错误的track",
- // track,
- // target.naturalWidth,
- // target.naturalHeight
- // );
- // void message.error("系统错误,请联系管理员!");
- // }
- if (track.offsetX > item.effectiveWidth + item.dx) {
- console.log("不在有效宽度内,轨迹不生效");
- return;
- }
- if (
- item.trackList.some((t) => {
- return (
- Math.pow(Math.abs(t.offsetX - track.offsetX), 2) +
- Math.pow(Math.abs(t.offsetY - track.offsetY), 2) <
- 500
- );
- })
- ) {
- console.log("两个轨迹相距过近");
- return;
- }
- // 是否保留当前的轨迹分
- const questionScore =
- store.currentTask &&
- store.currentQuestion &&
- store.currentTask.markResult.scoreList[store.currentQuestion.__index];
- const ifKeepScore =
- Math.round(
- store.currentQuestion.maxScore * 100 -
- (questionScore || 0) * 100 -
- store.currentScore * 2 * 100
- ) / 100;
- if (ifKeepScore < 0 && store.currentScore > 0) {
- store.currentScore = undefined;
- }
- const markResult = store.currentTaskEnsured.markResult;
- const maxNumber =
- markResult.trackList.length === 0
- ? 0
- : Math.max(...markResult.trackList.map((t) => t.number));
- track.number = maxNumber + 1;
- // console.log(
- // maxNumber,
- // track.number,
- // markResult.trackList.map((t) => t.number),
- // Math.max(...markResult.trackList.map((t) => t.number))
- // );
- markResult.trackList = [...markResult.trackList, track];
- const { __index, mainNumber, subNumber } = store.currentQuestion;
- markResult.scoreList[__index] =
- markResult.trackList
- .filter((t) => t.mainNumber === mainNumber && t.subNumber === subNumber)
- .map((t) => t.score)
- .reduce((acc, v) => (acc += Math.round(v * 100)), 0) / 100;
- item.trackList.push(track);
- };
- const makeSpecialTagTrack = (
- event: MouseEvent,
- item: SliceImage,
- maxSliceWidth: number,
- theFinalHeight: number
- ) => {
- // console.log(item);
- if (!store.currentTask || typeof store.currentSpecialTag === "undefined")
- return;
- const target = event.target as HTMLImageElement;
- const track = {} as SpecialTag;
- track.tagName = store.currentSpecialTag;
- track.offsetIndex = item.indexInSliceUrls;
- track.offsetX = Math.round(
- event.offsetX * (target.naturalWidth / target.width) + item.dx
- );
- track.offsetY = Math.round(
- event.offsetY * (target.naturalHeight / target.height) + item.dy
- );
- track.positionX = (track.offsetX - item.dx) / maxSliceWidth;
- track.positionY =
- (track.offsetY - item.dy + item.accumTopHeight) / theFinalHeight;
- // const isIllegalRange = (testNum: number, min: number, max: number) => {
- // return testNum < min || testNum > max;
- // };
- // if (
- // isIllegalRange(track.offsetX, 0, target.naturalWidth) ||
- // isIllegalRange(track.offsetY, 0, target.naturalHeight) ||
- // isIllegalRange(track.positionX, 0, 1) ||
- // isIllegalRange(track.positionY, 0, 1)
- // ) {
- // console.error("错误的track", track);
- // void message.error("系统错误,请联系管理员!");
- // }
- // if (track.offsetX > item.effectiveWidth + item.dx) {
- // console.log("不在有效宽度内,轨迹不生效");
- // return;
- // }
- if (
- item.tagList.some((t) => {
- return (
- Math.pow(Math.abs(t.offsetX - track.offsetX), 2) +
- Math.pow(Math.abs(t.offsetY - track.offsetY), 2) <
- 500
- );
- })
- ) {
- console.log("两个轨迹相距过近");
- return;
- }
- store.currentTaskEnsured.markResult.specialTagList.push(track);
- item.tagList.push(track);
- };
- const makeTrack = (
- event: MouseEvent,
- item: SliceImage,
- maxSliceWidth: number,
- theFinalHeight: number
- ) => {
- if (store.setting.uiSetting["specialTag.modal"] && store.currentSpecialTag) {
- makeSpecialTagTrack(event, item, maxSliceWidth, theFinalHeight);
- } else {
- makeScoreTrack(event, item, maxSliceWidth, theFinalHeight);
- }
- };
- watch(
- () => store.setting.mode,
- () => {
- const shouldHide = store.setting.mode === "COMMON";
- if (shouldHide) {
- // console.log("hide cursor", theCursor);
- // eslint-disable-next-line @typescript-eslint/no-unsafe-call
- theCursor && theCursor.destroy();
- } else {
- if (document.querySelector(".cursor")) {
- // console.log("show cursor", theCursor);
- // theCursor && theCursor.enable();
- // eslint-disable-next-line @typescript-eslint/no-unsafe-call
- theCursor = new CustomCursor(".cursor", {
- focusElements: [
- {
- selector: ".mark-body-container",
- focusClass: "cursor--focused-view",
- },
- ],
- }).initialize();
- }
- }
- }
- );
- let theCursor = null as any;
- onMounted(() => {
- if (store.isTrackMode) {
- // eslint-disable-next-line @typescript-eslint/no-unsafe-call
- theCursor = new CustomCursor(".cursor", {
- focusElements: [
- {
- selector: ".mark-body-container",
- focusClass: "cursor--focused-view",
- },
- ],
- }).initialize();
- }
- });
- onUnmounted(() => {
- // eslint-disable-next-line @typescript-eslint/no-unsafe-call
- theCursor && theCursor.destroy();
- });
- </script>
- <style scoped>
- .cursor {
- color: #ff5050;
- display: none;
- pointer-events: none;
- user-select: none;
- top: 0;
- left: 0;
- position: fixed;
- will-change: transform;
- z-index: 1000;
- }
- .cursor-border {
- position: absolute;
- box-sizing: border-box;
- align-items: center;
- border: 1px solid #ff5050;
- border-radius: 50%;
- display: flex;
- justify-content: center;
- height: 0px;
- width: 0px;
- left: 0;
- top: 0;
- transform: translate(-50%, -50%);
- transition: all 360ms cubic-bezier(0.23, 1, 0.32, 1);
- }
- .cursor.cursor--initialized {
- display: block;
- }
- .cursor .text {
- font-size: 2rem;
- opacity: 0;
- transition: opacity 80ms cubic-bezier(0.23, 1, 0.32, 1);
- }
- .cursor.cursor--off-screen {
- opacity: 0;
- }
- .cursor.cursor--focused .cursor-border,
- .cursor.cursor--focused-view .cursor-border {
- width: 90px;
- height: 90px;
- }
- .cursor.cursor--focused-view .text {
- opacity: 1;
- transition: opacity 360ms cubic-bezier(0.23, 1, 0.32, 1);
- }
- </style>
|