/* eslint-disable jsx-a11y/no-static-element-interactions */ /* eslint-disable jsx-a11y/click-events-have-key-events */ /* eslint-disable react/jsx-props-no-spreading */ import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; import { action, computed, makeObservable, observable } from 'mobx'; import { observer } from 'mobx-react'; import * as React from 'react'; import { StopEvent, returnFalse, returnOne, returnTrue, returnZero } from '../../../ClientUtils'; import { emptyFunction } from '../../../Utils'; import { Doc, Opt } from '../../../fields/Doc'; import { DocCast, NumCast, ScriptCast, StrCast } from '../../../fields/Types'; import { DocumentType } from '../../documents/DocumentTypes'; import { DragManager } from '../../util/DragManager'; import { ContextMenu } from '../ContextMenu'; import { ContextMenuProps } from '../ContextMenuItem'; import { StyleProp } from '../StyleProp'; import { DocumentView } from '../nodes/DocumentView'; import { FieldViewProps } from '../nodes/FieldView'; import { FormattedTextBox } from '../nodes/formattedText/FormattedTextBox'; import './CollectionCarouselView.scss'; import { CollectionSubView } from './CollectionSubView'; import { Tooltip } from '@mui/material'; enum cardMode { // PRACTICE = 'practice', STAR = 'star', // QUIZ = 'quiz', ALL = 'all', } enum practiceMode { PRACTICE = 'practice', QUIZ = 'quiz', NORMAL = 'normal', } enum practiceVal { MISSED = 'missed', CORRECT = 'correct', } @observer export class CollectionCarouselView extends CollectionSubView() { private _dropDisposer?: DragManager.DragDropDisposer; @observable private _practiceMessage: string | undefined; @observable private _filterMessage: string | undefined; get practiceField() { return this.fieldKey + "_practice"; } // prettier-ignore get sideField() { return "_" + this.fieldKey + "_usePath"; } // prettier-ignore get starField() { return this.fieldKey + "_star"; } // prettier-ignore constructor(props: any) { super(props); makeObservable(this); this.layoutDoc.filterOp = cardMode.ALL; this.layoutDoc.practiceMode = practiceMode.NORMAL; this.layoutDoc._carousel_index = 0; } componentWillUnmount() { this._dropDisposer?.(); } protected createDashEventsTarget = (ele: HTMLDivElement | null) => { this._dropDisposer?.(); if (ele) { this._dropDisposer = DragManager.MakeDropTarget(ele, this.onInternalDrop.bind(this), this.layoutDoc); } }; @computed get carouselItems() { return this.childLayoutPairs.filter(pair => pair.layout.type !== DocumentType.LINK); } @computed get marginX() { return NumCast(this.layoutDoc.caption_xMargin, 50); } @action setPracticeMessage = (mes: string | undefined) => { this._practiceMessage = mes; }; @action setFilterMessage = (mes: string | undefined) => { this._filterMessage = mes; }; move = (dir: number) => { const moveToCardWithField = (match: (doc: Doc) => boolean): boolean => { let startInd = (NumCast(this.layoutDoc._carousel_index) + dir) % this.carouselItems.length; while (!match(this.carouselItems?.[startInd].layout) && (startInd + this.carouselItems.length) % this.carouselItems.length !== this.layoutDoc._carousel_index) { startInd = (startInd + dir + this.carouselItems.length) % this.carouselItems.length; } if (match(this.carouselItems?.[startInd].layout)) { this.layoutDoc._carousel_index = startInd; return true; } return match(this.carouselItems?.[NumCast(this.layoutDoc._carousel_index)].layout); }; if (this.layoutDoc.practiceMode === practiceMode.PRACTICE && this.layoutDoc.filterOp !== cardMode.STAR) { if (!moveToCardWithField((doc: Doc) => doc[this.practiceField] !== practiceVal.CORRECT)) { //this.layoutDoc.filterOp = undefined; // if all of the cards are correct, show all cards and exit practice mode this._practiceMessage = 'Finished! Return to All - BUTTONS??.'; this.carouselItems.forEach(item => { // reset all the practice values item.layout[this.practiceField] = undefined; }); // this.layoutDoc._carousel_index = -1; } } else if (this.layoutDoc.practiceMode !== practiceMode.PRACTICE && this.layoutDoc.filterOp === cardMode.STAR) { if (!moveToCardWithField((doc: Doc) => !!doc[this.starField])) { //this.layoutDoc.filterOp = undefined; // if there aren't any starred, show all cards this._filterMessage = 'No starred items. Unselect this view to see all flashcards and star them.'; } } else if (this.layoutDoc.practiceMode === practiceMode.PRACTICE && this.layoutDoc.filterOp === cardMode.STAR) { if (!moveToCardWithField((doc: Doc) => doc[this.practiceField] !== practiceVal.CORRECT && doc[this.starField] === true)) { this._practiceMessage = 'New message.'; } } else { moveToCardWithField(returnTrue); } // if (this.layoutDoc.practiceMode === practiceMode.PRACTICE && this.layoutDoc.filterOp === cardMode.STAR) { // if (!moveToCardWithField((doc: Doc) => doc[this.practiceField] !== practiceVal.CORRECT) && !moveToCardWithField((doc: Doc) => doc[this.starField] === true)) { // this._practiceMessage = 'New message.'; // } else moveToCardWithField(returnTrue); // return; // } // switch (StrCast(this.layoutDoc.practiceMode)) { // // case practiceMode.QUIZ: // go to a flashcard that is starred, skip the ones that aren't // // if (!moveToCardWithField((doc: Doc) => !!doc[this.starField])) { // // // this.layoutDoc._carousel_index // // //this.layoutDoc.filterOp = undefined; // if there aren't any starred, show all cards // // this._message = 'No starred items. Unselect this view to see all flashcards and star them.' // // } // // break; // case practiceMode.PRACTICE: // go to a new index that is missed, skip the ones that are correct // if (!moveToCardWithField((doc: Doc) => doc[this.practiceField] !== practiceVal.CORRECT)) { // //this.layoutDoc.filterOp = undefined; // if all of the cards are correct, show all cards and exit practice mode // this._practiceMessage = 'Finished! Return to All - BUTTONS??.' // this.carouselItems.forEach(item => { // reset all the practice values // item.layout[this.practiceField] = undefined; // }); // // this.layoutDoc._carousel_index = -1; // } // break; // default: moveToCardWithField(returnTrue); // } // prettier-ignore // switch (StrCast(this.layoutDoc.filterOp)) { // case cardMode.STAR: // go to a flashcard that is starred, skip the ones that aren't // if (!moveToCardWithField((doc: Doc) => !!doc[this.starField])) { // //this.layoutDoc.filterOp = undefined; // if there aren't any starred, show all cards // this._filterMessage = 'No starred items. Unselect this view to see all flashcards and star them.'; // } // break; // default: // break; // // if (this.layoutDoc.practiceMode === practiceMode.PRACTICE) moveToCardWithField(returnTrue); // } }; /** * Goes to the next Doc in the stack subject to the currently selected filter option. */ advance = (e: React.MouseEvent) => { e.stopPropagation(); this.move(1); }; /** * Goes to the previous Doc in the stack subject to the currently selected filter option. */ goback = (e: React.MouseEvent) => { e.stopPropagation(); this.move(-1); }; /* * Stars the document when the star button is pressed. */ star = (e: React.MouseEvent) => { e.stopPropagation(); const curDoc = this.carouselItems[NumCast(this.layoutDoc._carousel_index)]; curDoc.layout[this.starField] = curDoc.layout[this.starField] ? undefined : true; // if (!curDoc.layout[this.starField]) this.move(1); // this.layoutDoc._carousel_index = undefined; }; /* * Sets a flashcard to either missed or correct depending on if they got the question right in practice mode. */ setPracticeVal = (e: React.MouseEvent, val: string) => { e.stopPropagation(); const curDoc = this.carouselItems?.[NumCast(this.layoutDoc._carousel_index)]; curDoc.layout[this.practiceField] = val; this.advance(e); }; captionStyleProvider = (doc: Doc | undefined, captionProps: Opt, property: string): any => { // first look for properties on the document in the carousel, then fallback to properties on the container const childValue = doc?.['caption_' + property] ? this._props.styleProvider?.(doc, captionProps, property) : undefined; return childValue ?? this._props.styleProvider?.(this.layoutDoc, captionProps, property); }; panelHeight = () => this._props.PanelHeight() - (StrCast(this.layoutDoc._layout_showCaption) ? 50 : 0); onContentDoubleClick = () => ScriptCast(this.layoutDoc.onChildDoubleClick); onContentClick = () => ScriptCast(this.layoutDoc.onChildClick); captionWidth = () => this._props.PanelWidth() - 2 * this.marginX; setPracticeMode = (mode: practiceMode) => { this.layoutDoc.practiceMode = mode; this.carouselItems?.map(doc => (doc.layout[this.practiceField] = undefined)); switch (mode) { case practiceMode.QUIZ: this.carouselItems?.map(doc => (doc.layout[this.sideField] = undefined)); break; case practiceMode.NORMAL: this.setPracticeMessage(undefined); break; default: break; } }; setFilterMode = (mode: cardMode) => { this.layoutDoc.filterOp = mode; switch (mode) { case cardMode.STAR: this.move(1); break; default: this.setFilterMessage(undefined); } // if (mode === practiceMode.QUIZ) { // this.carouselItems?.map(doc => (doc.layout[this.sideField] = undefined)); // this.layoutDoc.practiceMode = mode; // } // if (mode === practiceMode.PRACTICE) this.layoutDoc.practiceMode = mode; // if (mode === practiceMode.NORMAL) { // this.layoutDoc.practiceMode = mode; // if (this.layoutDoc.filterOp === cardMode.STAR) this.setMessage('No starred items. Unselect this filter to star cards.'); // } // this.carouselItems?.map(doc => (doc.layout[this.practiceField] = undefined)); }; // specificMenu = (): void => { // const cm = ContextMenu.Instance; // const revealOptions = cm.findByDescription('Filter Flashcards'); // const revealItems: ContextMenuProps[] = revealOptions && 'subitems' in revealOptions ? revealOptions.subitems : []; // revealItems.push({description: 'All', event: () => {this.setFilterMode(cardMode.ALL);}, icon: 'layer-group',}); // prettier-ignore // revealItems.push({description: 'Star', event: () => {this.setFilterMode(cardMode.STAR);}, icon: 'star',}); // prettier-ignore // revealItems.push({description: 'Practice Mode', event: () => {this.setFilterMode(cardMode.PRACTICE);}, icon: 'check',}); // prettier-ignore // cm.addItem({description: 'Quiz Cards', event: () => {this.setFilterMode(cardMode.QUIZ);}, icon: 'pencil',}); // prettier-ignore // !revealOptions && cm.addItem({ description: 'Filter Flashcards', addDivider: false, noexpand: true, subitems: revealItems, icon: 'layer-group' }); // //cm.addItem({description: 'Quiz Cards', event: () => {this.layoutDoc.filterOp = cardMode.QUIZ; this.clearContent()}); // }; @computed get content() { const index = NumCast(this.layoutDoc._carousel_index); const curDoc = this.carouselItems?.[index]; const captionProps = { ...this._props, NativeScaling: returnOne, PanelWidth: this.captionWidth, fieldKey: 'caption', setHeight: undefined, setContentView: undefined }; const carouselShowsCaptions = StrCast(this.layoutDoc._layout_showCaption); return !(curDoc?.layout instanceof Doc) ? null : ( <>
{!carouselShowsCaptions ? null : (
)} ); } @computed get buttons() { if (!this.carouselItems?.[NumCast(this.layoutDoc._carousel_index)]) return null; return ( <>
{this.layoutDoc.practiceMode === practiceMode.PRACTICE ? (
this.setPracticeVal(e, practiceVal.MISSED)}>
this.setPracticeVal(e, practiceVal.CORRECT)}>
) : null} ); } togglePracticeMode = (mode: practiceMode) => { if (mode === this.layoutDoc.practiceMode) this.setPracticeMode(practiceMode.NORMAL); else this.setPracticeMode(mode); }; toggleFilterMode = () => { this.layoutDoc.filterOp === cardMode.STAR ? this.setFilterMode(cardMode.ALL) : this.setFilterMode(cardMode.STAR)}; //prettier-ignore setColor = (mode: practiceMode | cardMode, which: string) => { return which === mode ? 'white' : 'light gray'}; //prettier-ignore @computed get menu() { return (
this.togglePracticeMode(practiceMode.QUIZ)}>
this.togglePracticeMode(practiceMode.PRACTICE)}>
this.toggleFilterMode()}>
); } render() { return (
{!this._practiceMessage && !this._filterMessage ? ( this.content ) : (

{this._filterMessage} {'\n'} {this._practiceMessage}

)} {/* {(this.carouselItems?.filter(doc => doc.layout[this.practiceField] !== practiceVal.CORRECT)).length == 0 ? null : this.content} */} {!this.carouselItems?.[NumCast(this.layoutDoc._carousel_index)] && this.layoutDoc.practiceMode === practiceMode.PRACTICE ?

Add flashcards

: null}

Recently missed!

{this.menu} {this.Document._chromeHidden || (!this._filterMessage && !this._practiceMessage) ? this.buttons : null}
); } }