| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536 |
- <!-- eslint-disable vue/no-v-html -->
- <template>
- <div class="matching-preview" :style="getAreaStyle()">
- <SerialNumberPosition v-if="isEnable(data.property.sn_display_mode)" :property="data.property" />
- <div class="main">
- <ul ref="list" class="option-list">
- <li v-for="(item, i) in data.option_list" :key="i" class="list-item">
- <div
- v-for="({ content, mark, multilingual, paragraph_list }, j) in item"
- :key="mark"
- :class="['item-wrapper', `item-${mark}`, computedAnswerClass(mark)]"
- :style="{ cursor: disabled ? 'default' : 'pointer' }"
- @mousedown="mousedown($event, i, j, mark)"
- @mouseup="mouseup($event, i, j, mark)"
- @click="handleClickConnection($event, i, j, mark)"
- >
- <PinyinText
- v-if="isEnable(data.property.view_pinyin)"
- class="content"
- :paragraph-list="paragraph_list"
- :pinyin-position="data.property.pinyin_position"
- :is-preview="true"
- />
- <span v-else class="content rich-text" v-html="sanitizeHTML(content)"></span>
- <div v-if="showLang" class="lang">
- {{ multilingual.find((item) => item.type === getLang())?.translation }}
- </div>
- </div>
- </li>
- </ul>
- <div v-if="isShowRightAnswer" class="right-answer">
- <div class="title">正确答案</div>
- <ul ref="answerList" class="option-list">
- <li v-for="(item, i) in data.option_list" :key="i" class="list-item">
- <div v-for="{ content, mark } in item" :key="mark" :class="['item-wrapper', `answer-item-${mark}`]">
- <span class="content rich-text" v-html="sanitizeHTML(content)"></span>
- </div>
- </li>
- </ul>
- </div>
- </div>
- </div>
- </template>
- <script>
- import { getMatchingData, svgNS } from '@/views/book/courseware/data/matching';
- import PreviewMixin from '../common/PreviewMixin';
- export default {
- name: 'MatchingPreview',
- mixins: [PreviewMixin],
- data() {
- return {
- data: getMatchingData(),
- answerList: [], // 答案列表
- curConnectionPoint: { i: -1, j: -1, mark: '' }, // 当前连线点
- // 拖拽相关
- drag: false,
- mouseEvent: {
- clientX: 0,
- clientY: 0,
- },
- };
- },
- watch: {
- 'data.option_list': {
- handler(val) {
- this.clearLine();
- if (!val) return;
- let list = val.map((item) => {
- return item.map(({ mark }) => {
- return { mark, preMark: [], nextMark: [] };
- });
- });
- this.$set(this, 'answerList', list);
- },
- immediate: true,
- },
- answerList: {
- handler(list) {
- let arr = [];
- list.forEach((item) => {
- item.forEach(({ mark, preMark, nextMark }, j) => {
- if (preMark.length === 0 && nextMark.length === 0) return;
- if (nextMark.length > 0 && j === 0) {
- nextMark.forEach((m) => {
- arr.push([{ mark }, { mark: m }]);
- });
- }
- });
- });
- this.answer.answer_list = arr;
- },
- deep: true,
- },
- isJudgingRightWrong(cur) {
- if (cur) {
- this.$nextTick(() => {
- this.clearLine();
- this.circulateAnswerList();
- });
- } else {
- // this.clearLine();
- }
- },
- isShowRightAnswer(cur) {
- if (cur) {
- this.$nextTick(() => {
- this.circulateAnswerList(true);
- });
- }
- },
- },
- created() {
- document.addEventListener('click', this.handleEventConnection);
- document.addEventListener('mousemove', this.documentMousemouse);
- document.addEventListener('mouseup', this.documentMouseup);
- },
- beforeDestroy() {
- document.removeEventListener('click', this.handleEventConnection);
- document.removeEventListener('mousemove', this.documentMousemouse);
- document.removeEventListener('mouseup', this.documentMouseup);
- },
- methods: {
- /* 用 mouse 事件模拟拖拽 开始*/
- documentMousemouse(e) {
- if (!this.drag) return;
- // 使用 svg 绘制跟随鼠标移动的连接线
- let svg = document.querySelector('.move-connection');
- let list = this.$refs.list.getBoundingClientRect(); // 列表的位置
- let { clientX, clientY } = e;
- let isLeft = clientX < this.mouseEvent.clientX; // 鼠标是否向左移动
- // 计算 svg 的宽度,宽度不能超过列表的宽度
- let width = Math.min(list.width, isLeft ? list.width - clientX + list.left - 1 : clientX - list.left - 1);
- if (svg) {
- svg.setAttribute(
- 'style',
- `position: absolute; ${isLeft ? 'right: 0;' : 'left: 0;'} width: ${width}px; height: 100%;`,
- );
- } else {
- svg = document.createElementNS(svgNS, 'svg');
- svg.classList.add('move-connection');
- svg.setAttribute('style', `position: absolute; width: ${width}px; height: 100%;`);
- let path = document.createElementNS(svgNS, 'path');
- this.setPathAttr(path);
- svg.appendChild(path);
- this.$refs.list.appendChild(svg);
- }
- let top = this.mouseEvent.clientY - list.top;
- let left = isLeft
- ? this.mouseEvent.clientX - list.left - Math.abs(width - list.width)
- : this.mouseEvent.clientX - list.left;
- let mouseX = isLeft ? clientX - list.left - Math.abs(width - list.width) : clientX - list.left;
- let mouseY = clientY - list.top;
- let path = svg.querySelector('path');
- path.setAttribute('d', `M ${left} ${top} L ${mouseX} ${mouseY}`);
- },
- documentMouseup() {
- if (!this.drag) return;
- this.drag = false;
- document.querySelector('.move-connection')?.remove();
- document.body.style.userSelect = 'auto'; // 允许选中文本
- this.mousePointer = { i: -1, j: -1, mark: '' };
- this.mouseEvent = { clientX: 0, clientY: 0 };
- },
- /**
- * 鼠标按下事件,设置当前连线点
- * @param {PointerEvent} e 事件对象
- * @param {number} i 选项列表索引
- * @param {number} j 选项索引
- * @param {string} mark 选项标识
- */
- mousedown(e, i, j, mark) {
- if (this.disabled) return;
- this.drag = true;
- document.body.style.userSelect = 'none'; // 禁止选中文本
- this.mouseEvent = { clientX: e.clientX, clientY: e.clientY };
- this.mousePointer = { i, j, mark };
- },
- /**
- * 鼠标抬起事件,如果是一个合适的连接点,则创建连接线
- * @param {PointerEvent} e 事件对象
- * @param {Number} i 选项列表索引
- * @param {Number} j 选项索引
- * @param {String} mark 选项标识
- */
- mouseup(e, i, j, mark) {
- if (this.disabled || !this.drag) return;
- let { i: curI, j: curJ, mark: curMark } = this.mousePointer;
- if (curI === -1 && curJ === -1) return;
- if (Math.abs(curJ - j) > 1 || mark === curMark) return;
- this.changeConnectionList(mark, j, true);
- this.createLine(mark, true);
- },
- /* 用 mouse 事件模拟拖拽 结束 */
- // 重置当前连线点
- resetCurConnectionPoint() {
- this.curConnectionPoint = { i: -1, j: -1, mark: '' };
- },
- /**
- * 当点击的不是连线点时,清除所有连线点的选中状态
- * @param {PointerEvent} e
- */
- handleEventConnection(e) {
- let currentNode = e.target;
- while (currentNode !== null) {
- if (currentNode.classList && currentNode.classList.contains('item-wrapper')) {
- break;
- }
- currentNode = currentNode.parentNode;
- }
- if (currentNode) return;
- Array.from(document.getElementsByClassName('item-wrapper')).forEach((item) => {
- item.classList.remove('focus');
- });
- this.resetCurConnectionPoint();
- },
- /**
- * 处理点击连线
- * @param {PointerEvent} e 事件对象
- * @param {Number} i 选项列表索引
- * @param {Number} j 选项索引
- * @param {String} mark 选项标识
- */
- handleClickConnection(e, i, j, mark) {
- if (this.disabled) return;
- let { i: curI, j: curJ, mark: curMark } = this.curConnectionPoint;
- // 获取 item-wrapper 元素
- let currentNode = e.target;
- while (currentNode !== null) {
- if (currentNode.classList && currentNode.classList.contains('item-wrapper')) {
- break;
- }
- currentNode = currentNode.parentNode;
- }
- // 如果当前连线点不存在或就是当前连线点,则设置当前连线点
- if ((curI === -1 && curJ === -1) || mark === curMark) {
- this.curConnectionPoint = { i, j, mark };
- currentNode.classList.add('focus');
- return;
- }
- // 如果当前连线点存在,清除所有连线点的选中状态
- Array.from(this.$refs.list.getElementsByClassName('item-wrapper')).forEach((item) => {
- item.classList.remove('focus');
- });
- // 如果当前连线点与上一个连线点不在相邻的位置,则设置点击的连接点为当前连线点
- if (Math.abs(curJ - j) > 1 || mark === curMark || (curJ === j && curI !== i)) {
- this.curConnectionPoint = { i, j, mark };
- currentNode.classList.add('focus');
- return;
- }
- this.changeConnectionList(mark, j);
- // 如果当前连线点与上一个连线点在相邻的位置,则创建连接线
- this.createLine(mark);
- },
- // 循环答案列表
- circulateAnswerList(isShowRightAnswer = false) {
- let answer_list = isShowRightAnswer ? this.data.answer.answer_list : this.answer.answer_list;
- answer_list.forEach((item) => {
- item.forEach((_m, j) => {
- let mark = isShowRightAnswer ? _m.mark : _m;
- if (mark.length <= 0 || j >= item.length - 1) return;
- let cur = { i: -1, j: -1 }; // 当前连线点
- this.answerList.findIndex((item, i) => {
- return item.some((li, j) => {
- if (li.mark === mark) {
- cur = { i, j };
- return true;
- }
- });
- });
- this.curConnectionPoint = { i: cur.i, j: cur.j, mark };
- const nextMark = isShowRightAnswer ? item[j + 1].mark : item[j + 1].mark;
- this.createLine(nextMark, false, isShowRightAnswer);
- });
- });
- },
- /**
- * 创建连接线
- * @param {String} mark 选项标识
- * @param {Boolean} isDrag 是否是拖拽
- * @param {Boolean} isShowRightAnswer 是否是显示正确答案
- */
- createLine(mark, isDrag = false, isShowRightAnswer = false) {
- const { offsetWidth, offsetLeft, offsetTop, offsetHeight } = document.getElementsByClassName(
- `${isShowRightAnswer ? 'answer-' : ''}item-${mark}`,
- )[0];
- const { curOffsetWidth, curOffsetLeft, curOffsetTop, curOffsetHeight, curMark } = this.computedCurConnectionPoint(
- isDrag,
- isShowRightAnswer,
- );
- let top = Math.min(offsetTop + offsetHeight / 2, curOffsetTop + curOffsetHeight / 2);
- // 判断是否是同一行
- const isSameRow = Math.abs(offsetTop + offsetHeight / 2 - (curOffsetTop + curOffsetHeight / 2)) <= 2;
- let left = Math.min(offsetLeft + offsetWidth, curOffsetLeft + curOffsetWidth);
- let width = Math.abs(
- offsetLeft > curOffsetLeft
- ? curOffsetLeft - offsetLeft + offsetWidth
- : offsetLeft - curOffsetLeft + curOffsetWidth,
- );
- let height = 0;
- if (!isSameRow) {
- height =
- curOffsetTop > offsetTop
- ? Math.abs(offsetTop + offsetHeight / 2 - (curOffsetTop + curOffsetHeight / 2))
- : Math.abs(offsetTop - curOffsetTop + offsetHeight / 2 - curOffsetHeight / 2);
- }
- let size = offsetLeft > curOffsetLeft ? offsetTop > curOffsetTop : offsetTop < curOffsetTop; // 判断是左上还是右下
- // 创建一个空的SVG元素
- let svg = document.createElementNS(svgNS, 'svg');
- svg.setAttribute(
- 'style',
- `position:absolute; width: 62px; height: ${Math.max(8, height)}px; top: ${top}px; left: ${left}px;`,
- );
- svg.classList.add('connection-line', `svg-${mark}-${curMark}`); // 添加类名
- // 向SVG元素添加 path 元素
- let path = document.createElementNS(svgNS, 'path');
- path.setAttribute('d', `M ${size ? 0 : width} 0 L ${size ? width : 0} ${height}`); // 设置路径数据
- this.setPathAttr(path);
- svg.appendChild(path);
- this.$refs[isShowRightAnswer ? 'answerList' : 'list'].appendChild(svg); // 将SVG元素插入到文档中
- // 清除当前连线点
- this.resetCurConnectionPoint();
- },
- // 设置 path 公用属性
- setPathAttr(path) {
- path.setAttribute('stroke-width', '2'); // 设置线条宽度
- path.setAttribute('stroke-linecap', 'round'); // 设置线段的两端样式
- const assistColor = this.data?.unified_attrib?.topic_color || '#306eff';
- path.setAttribute('stroke', assistColor); // 设置填充颜色
- path.setAttribute('transform', `translate(2, 2)`); // 设置偏移量
- },
- /**
- * 计算当前连线点的位置
- * @param {Boolean} isDrag 是否是拖拽
- * @param {Boolean} isShowRightAnswer 是否是显示正确答案
- */
- computedCurConnectionPoint(isDrag = false, isShowRightAnswer = false) {
- let { mark } = isDrag ? this.mousePointer : this.curConnectionPoint;
- let type = Object.prototype.toString.call(mark);
- if (type === '[object String]') {
- type = 'string';
- } else if (type === '[object Object]') {
- type = 'object';
- }
- if (type === 'object') {
- mark = mark.mark;
- }
- const dom = document.getElementsByClassName(`${isShowRightAnswer ? 'answer-' : ''}item-${mark}`)[0];
- return {
- curOffsetWidth: dom.offsetWidth,
- curOffsetLeft: dom.offsetLeft,
- curOffsetTop: dom.offsetTop,
- curOffsetHeight: dom.offsetHeight,
- curMark: mark,
- };
- },
- // 清除所有连接线
- clearLine() {
- document.querySelectorAll('svg.connection-line').forEach((item) => {
- item.remove();
- });
- },
- /**
- * 修改连接列表
- * @param {String} mark 选项标识
- * @param {Number} j 当前选项索引
- * @param {Boolean} isDrag 是否是拖拽
- */
- changeConnectionList(mark, j, isDrag = false) {
- const { mark: curMark, j: curJ } = isDrag ? this.mousePointer : this.curConnectionPoint;
- this.changeAnswerList(curMark, mark, curJ < j);
- this.changeAnswerList(mark, curMark, curJ > j);
- },
- /**
- * 改变答案列表
- * @param {String} curMark 当前选项标识
- * @param {String} mark 选项标识
- */
- changeAnswerList(curMark, mark, isPre) {
- this.answerList.find((item) =>
- item.find((li) => {
- if (li.mark === curMark) {
- if (isPre && !li.preMark.includes(mark)) {
- li.nextMark.push(mark);
- } else if (!isPre && !li.nextMark.includes(mark)) {
- li.preMark.push(mark);
- }
- return true;
- }
- }),
- );
- },
- /**
- * 根据 mark 查找 nextMark 或 preMark
- * @param {Array} list 答案列表
- * @param {String} mark 标记
- * @param {'pre'|'next'} type 类型
- * @returns {String} 返回 nextMark 或 preMark
- */
- findMark(list, mark, type) {
- let fMark = '';
- list.find((item) => {
- return item.find((li) => {
- if (mark === li.mark) {
- fMark = type === 'pre' ? li.preMark : li.nextMark;
- return true;
- }
- });
- });
- return fMark;
- },
- /**
- * 计算答题对错选项class
- * @param {string} mark 选项标识
- */
- computedAnswerClass(mark) {
- if (!this.isJudgingRightWrong) return '';
- let answer = this.data.answer.answer_list.filter((item) => {
- return item.some((li) => li.mark === mark);
- });
- let userAnswer = this.answer.answer_list.filter((item) => {
- return item.some((li) => li.mark === mark);
- });
- if (answer.length === 0 && userAnswer.length === 0) return '';
- if (answer.length === 0 || userAnswer.length === 0) return 'wrong';
- let isRight = true;
- userAnswer.forEach((item) => {
- let len = item.length;
- let index = item.findIndex((li) => li.mark === mark);
- // 根据 mark 查找答案列表中对应的选项
- let answerList = answer.filter((item) => {
- return item.findIndex((li) => li.mark === mark) === index;
- });
- // 循环答案列表和用户答案,判断是否完全相等
- for (let i = 0; i < answerList.length; i++) {
- let isAllRight = true;
- for (let j = 0; j < len; j++) {
- if (j === index) continue;
- let isEqual = item[j].mark === answerList[i][j].mark;
- if (!isEqual) {
- isAllRight = false;
- break;
- }
- }
- isRight = isAllRight;
- if (isRight) break;
- }
- });
- return isRight ? 'right' : 'wrong';
- },
- },
- };
- </script>
- <style lang="scss" scoped>
- @use '@/styles/mixin.scss' as *;
- .matching-preview {
- @include preview-base;
- overflow: auto;
- .option-list {
- position: relative;
- display: flex;
- flex-direction: column;
- row-gap: 16px;
- .list-item {
- display: flex;
- column-gap: 8px;
- align-items: center;
- .item-wrapper {
- position: relative;
- display: flex;
- flex: 1;
- flex-wrap: wrap;
- column-gap: 24px;
- align-items: center;
- min-height: 48px;
- padding: 12px 24px;
- background-color: $content-color;
- border-radius: 40px;
- &:not(:last-child) {
- margin-right: 52px;
- }
- &.focus {
- background-color: #dcdbdd;
- }
- &.right {
- background-color: $right-bc-color;
- }
- &.wrong {
- box-shadow: 0 0 0 1px $error-color;
- }
- .content {
- flex: 1;
- }
- .lang {
- width: 100%;
- }
- }
- }
- }
- .right-answer {
- .title {
- margin: 24px 0;
- }
- }
- }
- </style>
|