mirror of
https://github.com/ankitects/anki.git
synced 2025-11-06 12:47:11 -05:00
This PR adds the "hide all but one" occlusion mode. An example use case is a note containing a collection of pairs of selection, where each selection is the prompt for the other in its pair. For example, given a table like | small | big | |-------+-----| | a | A | | b | B | | c | C | in each card, five letters are occluded, and one is shown. The user is prompted to state the occluded symbol that is adjacent to the shown symbol.
27 lines
1.2 KiB
TypeScript
27 lines
1.2 KiB
TypeScript
// Copyright: Ankitects Pty Ltd and contributors
|
|
// License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
|
|
import { writable } from "svelte/store";
|
|
|
|
export enum OcclusionMode {
|
|
HideOne = 0,
|
|
HideAll = 1,
|
|
HideAllButOne = 2,
|
|
}
|
|
|
|
// it stores note's data for generate.ts, when function generate() is called it will be used to generate the note
|
|
export const notesDataStore = writable({ id: "", title: "", divValue: "", textareaValue: "" }[0]);
|
|
// it stores the tags for the note in note editor
|
|
export const tagsWritable = writable([""]);
|
|
// it stores the visibility of mask editor
|
|
export const ioMaskEditorVisible = writable(true);
|
|
// it stores the occlusion mode (hide one, hide all, or hide all reveal one)
|
|
export const occlusionMode = writable(OcclusionMode.HideAll);
|
|
// ioImageLoadedStore is used to store the image loaded event
|
|
export const ioImageLoadedStore = writable(false);
|
|
// store opacity state of objects in canvas
|
|
export const opacityStateStore = writable(false);
|
|
// store state of text editing
|
|
export const textEditingState = writable(false);
|
|
// Stores if the canvas shapes data needs to be saved
|
|
export const saveNeededStore = writable(false);
|