teacher-tools/app/src/apps/classroom_compliance/GuideView.vue

156 lines
6.8 KiB
Vue
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<script setup lang="ts">
import { EMOJI_ABSENT, EMOJI_BEHAVIOR_GOOD, EMOJI_BEHAVIOR_MEDIOCRE, EMOJI_BEHAVIOR_POOR, EMOJI_PHONE_COMPLIANT, EMOJI_PHONE_NONCOMPLIANT, EMOJI_PRESENT, type Entry } from '@/api/classroom_compliance';
import EntryTableCell from './entries_table/EntryTableCell.vue';
import { ref, type Ref } from 'vue';
const sampleEntry: Ref<Entry | null> = ref({
id: 1,
date: '2025-01-01',
createdAt: new Date().getTime(),
absent: false,
phoneCompliant: true,
behaviorRating: 3,
comment: ''
})
</script>
<template>
<div class="align-left centered-content">
<h2>Guide</h2>
<p>
This page provides a quick guide to using the <em>Classroom Compliance</em>
application.
</p>
<hr />
<h3>Classes</h3>
<p>
In <em>Classroom Compliance</em>, all your students' data is linked to a
particular class. You'll start by clicking <strong>Add Class</strong> for
each class you teach. It doesn't really matter if your school uses a block
schedule or daily period schedule; each class just needs a number and
school year to identify it.
</p>
<p>
You can view all your classes with the <RouterLink class="link link-color" to="/classroom-compliance">View My
Classes
</RouterLink>
link at the top of this page. Click on any of the classes you see listed,
and you'll go to that class' page.
</p>
<h4 id="the-class-page">The Class Page</h4>
<p>
This is the main page you'll be working with in <em>Classroom Compliance</em>.
Here, you'll find actions to add / remove / edit the list of students in
the class, add notes to the class, and most importantly, record students'
attendance, behavior, and phone compliance.
</p>
<p>
The following actions are available here:
</p>
<ul>
<li><strong>Add Student</strong> - Add a student to the class.</li>
<li><strong>Import Students</strong> - Import a list of students in bulk. This is useful when you've just created
a class, and you want to copy and paste a list of student names from a spreadsheet.</li>
<li><strong>Clear Assigned Desks</strong> - Resets every student's assigned desk. Useful if you've just removed
assigned seats or are reshuffling everyone.</li>
<li><strong>Delete this Class</strong> - Pretty self-explanatory. This will permanently delete this class. This
CANNOT be undone, so be careful to only delete the class when you're sure you won't need it anymore.</li>
</ul>
<h5>Notes</h5>
<p>
Sometimes, you might want to write a note to remind yourself of something for a class. Write a note in the text
box, then click <strong>Add Note</strong> to add the note.
</p>
<hr />
<h3>Entries</h3>
<p>
The main point of <em>Classroom Compliance</em> is to make it easy to keep track of each student's behavior,
attendance, and phone usage. On each class' page, you'll find a large table with a row for each student, and a
column for each day of the week. This is the <strong>Entries Table</strong>.
</p>
<p>
Simply click the "+" icon to add an entry for a student, or click on the day's "+" icon to add an entry for each
student that day. Then, just click the emoji to edit the entry. A sample entry is included below for you to play
around with.
</p>
<table>
<tbody>
<tr>
<EntryTableCell date-str="2025-01-01" :last-save-state-timestamp="0" v-model="sampleEntry"
style="min-width: 150px" />
</tr>
</tbody>
</table>
<ul>
<li>Attendance: {{ EMOJI_PRESENT }} for present, and {{ EMOJI_ABSENT }} for absent.</li>
<li>Phone Compliance: {{ EMOJI_PHONE_COMPLIANT }} for compliant, and {{ EMOJI_PHONE_NONCOMPLIANT }} for
non-compliant.</li>
<li>Behavior: {{ EMOJI_BEHAVIOR_GOOD }} for good behavior, {{ EMOJI_BEHAVIOR_MEDIOCRE }} for mediocre, and {{
EMOJI_BEHAVIOR_POOR }} for poor.</li>
<li>If you'd like to add a comment, click 💬 and enter your comment in the popup.</li>
<li>Click the 🗑 to remove the entry.</li>
<li><em>Note that if a student is absent, you can't add any phone or behavior information.</em></li>
</ul>
<p>
When editing, changed entries are highlighted, and you need to click <strong>Save</strong> or <strong>Discard
Edits</strong> to save or discard your changes, respectively.
</p>
<h4>Table Views</h4>
<p>
Above the Entries Table, there's a selection of <em>views</em> to choose from. By default, <strong>Full
View</strong> is selected.
</p>
<ul>
<li><strong>Full View</strong> - Shows a full week's entries for all students, including their scores.</li>
<li><strong>Grading View</strong> - Only show students and their scores. Useful when transferring grades to
another system.</li>
<li><strong>Whiteboard View</strong> - Only shows student names and their assigned desks. Useful for showing to
your class so they know their assigned seats.</li>
<li><strong>Today View</strong> - Same as the Full View, but only shows today, which can be useful when entering
data for a class.</li>
</ul>
<h4>Scores</h4>
<p>
Scores are calculated using a <em>score expression</em>. This is just a mathematical formula with a few variables
you can use. More information on what variables are available is show directly below the score expression editor.
</p>
<p>
Also, you can choose the period of time over which to calculate scores. The following timeframes are currently
available:
</p>
<ul>
<li>Weekly - Scores are calculated from Monday to Friday of each week.</li>
</ul>
<hr />
<h3>Adding / Editing Students</h3>
<p>
As mentioned briefly in <a class="link link-color" href="#the-class-page">The Class Page</a>, you can add students
one-by-one, or in bulk.
</p>
<p>
When adding a student individually, or editing an existing student, here's what you need to know:
</p>
<ul>
<li>Each student in a class needs a <strong>unique</strong> name. Unless you have twins with the same first name,
this shouldn't be an issue.</li>
<li>If a student has an assigned desk number, you can set it. Set the desk number to 0 if there's no assigned
seating for the student.</li>
<li>To preserve a record of students who have since been removed from a class, you can check the
<strong>Removed</strong> checkbox to indicate that the student is no longer in the class. Their old data will
still show up, but you can't add any new entries for them.
</li>
<li>
The <strong>Move to another class</strong> button will, as its name implies, move the student to another one of
your classes.
</li>
</ul>
</div>
</template>