{"version":3,"file":"useStudentEvents-VcwBJM0X.js","sources":["../../../app/javascript/composables/useStudentEvents.js"],"sourcesContent":["import vueI18n from \"@/plugins/i18n\"\nimport stringHelpers from \"@/helpers/string_helpers\"\n\nconst useStudentEvents = function() {\n\n return {\n\n }\n}\n\nconst eventColors = {\n mouse_leave: \"blue\",\n mouse_enter: \"red\",\n loose_focus: \"green\",\n get_focus: \"purple\",\n fullscreen_enter: \"orange\",\n fullscreen_leave: \"pink\",\n offline: \"black\",\n online: \"grey\",\n enter_exam: \"brown\",\n leave_exam: \"cyan\",\n enter_exercise: \"magenta\",\n leave_exercise: \"yellow\",\n browser_extension_interaction: \"red\",\n}\n\nconst eventPairColors = {\n fullscreen_loss: \"red\",\n mouse_leave: \"deep-orange\",\n idle: \"indigo\",\n focus_loss: \"deep-purple\",\n window_hidden: \"deep-purple\",\n offline: \"amber\",\n online: \"yellow\",\n exam_sessions: \"light-green\",\n text_selection: \"green\",\n copy: \"pink\",\n paste: \"cyan\",\n cut: \"brown\",\n page_load: \"grey\",\n bulk_insert: \"purple\",\n fast_insert: \"lime\",\n resize_browser: \"orange\",\n enter_exercise: \"lightblue\",\n exam_left: \"blue\",\n dev_tool_open: \"teal\",\n enter_exam: \"blue\",\n console_log: \"teal\",\n answers_last_update: \"blue\",\n screen_share_loss: \"brown\",\n device_sleep: \"brown\",\n browser_extension_interaction: \"purple\",\n}\n\nconst eventIcons = {\n fullscreen_loss: \"mdi-fullscreen-exit\",\n mouse_leave: \"mdi-cursor-default-outline\",\n idle: \"mdi-sleep\",\n focus_loss: \"mdi-application-export\",\n window_hidden: \"mdi-tab-unselected\",\n offline: \"mdi-wifi-off\",\n online: \"mdi-wifi\",\n exam_sessions: \"mdi-ray-start-end\",\n text_selection: \"mdi-cursor-text\",\n copy: \"mdi-content-copy\",\n paste: \"mdi-content-paste\",\n cut: \"mdi-content-cut\",\n page_load: \"mdi-web\",\n bulk_insert: \"mdi-robot-outline\",\n fast_insert: \"mdi-keyboard-off-outline\",\n resize_browser: \"mdi-resize\",\n enter_exercise: \"mdi-book-open-page-variant\",\n exam_left: \"mdi-exit-run\",\n dev_tool_open: \"mdi-console\",\n enter_exam: \"mdi-ray-start-arrow\",\n console_log: \"mdi-console-line\",\n answers_last_update: \"mdi-text-box-edit-outline\",\n screen_share_loss: \"mdi-television-off\",\n device_sleep: \"mdi-power-sleep\",\n browser_extension_interaction: \"mdi-puzzle-outline\",\n}\n\nconst eventKinds = {\n fullscreen_loss: {\n icon: \"mdi-fullscreen-exit\",\n color: \"red\",\n type: \"eventPair\",\n debugOnly: false,\n visible: (quiz) => quiz?.require_fullscreen === true,\n reportCard: true,\n },\n focus_loss: {\n icon: \"mdi-application-export\",\n color: \"deep-purple\",\n type: \"eventPair\",\n debugOnly: false,\n visible: true,\n reportCard: true,\n },\n window_hidden: {\n icon: \"mdi-tab-unselected\",\n color: \"deep-purple\",\n type: \"eventPair\",\n debugOnly: false,\n visible: true,\n reportCard: true,\n },\n mouse_leave: {\n icon: \"mdi-cursor-default-outline\",\n color: \"deep-orange\",\n type: \"eventPair\",\n debugOnly: false,\n visible: true,\n reportCard: true,\n },\n device_sleep: {\n icon: \"mdi-power-sleep\",\n color: \"brown\",\n type: \"eventPair\",\n debugOnly: false,\n visible: (quiz) => quiz?.require_fullscreen === true,\n reportCard: false,\n },\n screen_share_loss: {\n icon: \"mdi-television-off\",\n color: \"brown\",\n type: \"eventPair\",\n debugOnly: false,\n visible: (quiz) => quiz?.screen_recording === true,\n reportCard: false,\n },\n idle: {\n icon: \"mdi-sleep\",\n color: \"indigo\",\n type: \"eventPair\",\n debugOnly: true,\n visible: true,\n reportCard: true,\n },\n offline: {\n icon: \"mdi-wifi-off\",\n color: \"amber\",\n type: \"eventPair\",\n debugOnly: false,\n visible: true,\n reportCard: true,\n },\n exam_sessions: {\n icon: \"mdi-ray-start-end\",\n color: \"light-green\",\n type: \"eventPair\",\n debugOnly: true,\n visible: true,\n reportCard: true,\n },\n exam_left: {\n icon: \"mdi-exit-run\",\n color: \"blue\",\n type: \"eventPair\",\n debugOnly: true,\n visible: true,\n reportCard: true,\n },\n // Event types below\n answers_last_update: {\n icon: \"mdi-text-box-edit-outline\",\n color: \"blue\",\n type: \"event\",\n debugOnly: false,\n visible: true,\n reportCard: false,\n },\n text_selection: {\n icon: \"mdi-cursor-text\",\n color: \"green\",\n type: \"event\",\n debugOnly: true,\n visible: true,\n reportCard: false,\n },\n copy: {\n icon: \"mdi-content-copy\",\n color: \"pink\",\n type: \"event\",\n debugOnly: false,\n visible: true,\n reportCard: false,\n },\n cut: {\n icon: \"mdi-content-cut\",\n color: \"brown\",\n type: \"event\",\n debugOnly: false,\n visible: true,\n reportCard: false,\n },\n paste: {\n icon: \"mdi-content-paste\",\n color: \"cyan\",\n type: \"event\",\n debugOnly: false,\n visible: true,\n reportCard: false,\n },\n bulk_insert: {\n icon: \"mdi-robot-outline\",\n color: \"purple\",\n type: \"event\",\n debugOnly: false,\n visible: true,\n reportCard: false,\n },\n fast_insert: {\n icon: \"mdi-keyboard-off-outline\",\n color: \"lime\",\n type: \"event\",\n debugOnly: false,\n visible: true,\n reportCard: false,\n },\n resize_browser: {\n icon: \"mdi-resize\",\n color: \"orange\",\n type: \"event\",\n debugOnly: false,\n visible: true,\n reportCard: false,\n },\n enter_exam: {\n icon: \"mdi-ray-start-arrow\",\n color: \"blue\",\n type: \"event\",\n debugOnly: false,\n visible: true,\n reportCard: false,\n },\n page_load: {\n icon: \"mdi-web\",\n color: \"grey\",\n type: \"event\",\n debugOnly: true,\n visible: true,\n reportCard: false,\n },\n dev_tool_open: {\n icon: \"mdi-console\",\n color: \"teal\",\n type: \"event\",\n debugOnly: true,\n visible: true,\n reportCard: false,\n },\n console_log: {\n icon: \"mdi-console-line\",\n color: \"teal\",\n type: \"event\",\n debugOnly: true,\n visible: true,\n reportCard: false,\n },\n browser_extension_interaction: {\n icon: \"mdi-puzzle-outline\",\n color: \"purple\",\n type: \"event\",\n debugOnly: true,\n visible: true,\n reportCard: false,\n },\n}\n\nconst eventKindsFor = (quiz) => {\n return Object.fromEntries(\n Object.entries(eventKinds)\n .filter(([, config]) => {\n return typeof config.visible === \"function\" ? config.visible(quiz) : config.visible\n })\n )\n}\n\nconst eventName = (kind, count = 1) => {\n const key = stringHelpers.toCamelCase(kind)\n return vueI18n.tc(`live.studentEvents.kind.${key}.label`, count)\n}\n\nconst eventDescription = (kind) => {\n const key = stringHelpers.toCamelCase(kind)\n return vueI18n.t(`live.studentEvents.kind.${key}.description`)\n}\n\nexport {\n useStudentEvents,\n eventColors,\n eventPairColors,\n eventIcons,\n eventKinds,\n eventKindsFor,\n eventName,\n eventDescription,\n}\n"],"names":["eventPairColors","eventIcons","eventKinds","quiz","eventKindsFor","config","eventName","kind","count","key","stringHelpers","vueI18n","eventDescription"],"mappings":"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"}