From 19022d59205cf23543cfbabc409344eadbfd89d8 Mon Sep 17 00:00:00 2001 From: Jonathan Lim-Breitbart Date: Fri, 27 Oct 2023 11:26:14 -0700 Subject: [PATCH] Update Help styles, remove unused css - Use routerLink and fragment for anchor links - Make GettingStarted component extend FaqComponent to reduce duplication --- src/app/help/faq/faq.component.scss | 15 - src/app/help/faq/faq.component.ts | 4 - .../getting-started.component.html | 16 +- .../getting-started.component.spec.ts | 20 +- .../getting-started.component.ts | 9 + .../student-faq/student-faq.component.html | 36 +- .../faq/student-faq/student-faq.component.ts | 3 +- .../teacher-faq/teacher-faq.component.html | 93 ++-- .../faq/teacher-faq/teacher-faq.component.ts | 3 +- .../getting-started.component.scss | 8 - .../getting-started.component.ts | 28 -- src/app/help/help-routing.module.ts | 2 +- src/app/help/help.module.ts | 5 +- src/messages.xlf | 408 +++++++++--------- 14 files changed, 300 insertions(+), 350 deletions(-) delete mode 100644 src/app/help/faq/faq.component.scss rename src/app/help/{ => faq}/getting-started/getting-started.component.html (89%) rename src/app/help/{ => faq}/getting-started/getting-started.component.spec.ts (70%) create mode 100644 src/app/help/faq/getting-started/getting-started.component.ts delete mode 100644 src/app/help/getting-started/getting-started.component.scss delete mode 100644 src/app/help/getting-started/getting-started.component.ts diff --git a/src/app/help/faq/faq.component.scss b/src/app/help/faq/faq.component.scss deleted file mode 100644 index 9bafc1114ed..00000000000 --- a/src/app/help/faq/faq.component.scss +++ /dev/null @@ -1,15 +0,0 @@ -.title-icon { - margin-right: 8px; -} - -.link { - cursor: pointer; -} - -.indented-text { - margin-left: 24px; -} - -.warning { - color: red; -} diff --git a/src/app/help/faq/faq.component.ts b/src/app/help/faq/faq.component.ts index 19a0e9d5ca6..2a22fa0fa4e 100644 --- a/src/app/help/faq/faq.component.ts +++ b/src/app/help/faq/faq.component.ts @@ -20,8 +20,4 @@ export abstract class FaqComponent implements OnInit { ngAfterViewInit(): void { document.getElementsByTagName('app-help')[0]?.scrollIntoView(); } - - protected scrollTo(id: string): void { - document.getElementById(id).scrollIntoView(); - } } diff --git a/src/app/help/getting-started/getting-started.component.html b/src/app/help/faq/getting-started/getting-started.component.html similarity index 89% rename from src/app/help/getting-started/getting-started.component.html rename to src/app/help/faq/getting-started/getting-started.component.html index 17ecdff5176..02a5eec5979 100644 --- a/src/app/help/getting-started/getting-started.component.html +++ b/src/app/help/faq/getting-started/getting-started.component.html @@ -1,17 +1,17 @@
-

- infoGetting Started +

+ infoGetting Started

-
+

Creating an Account

-

+

All users must create their own account. Teachers must create a teacher account and students must create a student account. Users can create an account by going to the WISE Home Page and clicking on the Register link at the upper right of the screen.

-

Here are instructions on how to create a teacher account.

+

Here are instructions on how to create a teacher account.

  1. Go to the WISE Home Page.
  2. @@ -27,13 +27,13 @@

    Creating an Account

    There may be a number added at the end of your username if someone has the same name as you.
-
+

Using a WISE Unit

-

+

To use a WISE unit with your class, you must first choose a unit to use and then set up a "Run" of that unit.

-

Here are instructions on how to set up a Run.

+

Here are instructions on how to set up a Run.

  1. Sign in to WISE with your teacher account.
  2. Click the "Unit Library" tab.
  3. diff --git a/src/app/help/getting-started/getting-started.component.spec.ts b/src/app/help/faq/getting-started/getting-started.component.spec.ts similarity index 70% rename from src/app/help/getting-started/getting-started.component.spec.ts rename to src/app/help/faq/getting-started/getting-started.component.spec.ts index dc0f0e7e974..a1d74d99b39 100644 --- a/src/app/help/getting-started/getting-started.component.spec.ts +++ b/src/app/help/faq/getting-started/getting-started.component.spec.ts @@ -2,8 +2,8 @@ import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing'; import { GettingStartedComponent } from './getting-started.component'; import { NO_ERRORS_SCHEMA } from '@angular/core'; -import { ConfigService } from '../../services/config.service'; -import { Config } from '../../domain/config'; +import { ConfigService } from '../../../services/config.service'; +import { Config } from '../../../domain/config'; import { Observable } from 'rxjs'; export class MockConfigService { @@ -24,13 +24,15 @@ describe('GettingStartedComponent', () => { let component: GettingStartedComponent; let fixture: ComponentFixture; - beforeEach(waitForAsync(() => { - TestBed.configureTestingModule({ - declarations: [GettingStartedComponent], - providers: [{ provide: ConfigService, useClass: MockConfigService }], - schemas: [NO_ERRORS_SCHEMA] - }).compileComponents(); - })); + beforeEach( + waitForAsync(() => { + TestBed.configureTestingModule({ + declarations: [GettingStartedComponent], + providers: [{ provide: ConfigService, useClass: MockConfigService }], + schemas: [NO_ERRORS_SCHEMA] + }).compileComponents(); + }) + ); beforeEach(() => { fixture = TestBed.createComponent(GettingStartedComponent); diff --git a/src/app/help/faq/getting-started/getting-started.component.ts b/src/app/help/faq/getting-started/getting-started.component.ts new file mode 100644 index 00000000000..7c9dff486aa --- /dev/null +++ b/src/app/help/faq/getting-started/getting-started.component.ts @@ -0,0 +1,9 @@ +import { Component, OnInit } from '@angular/core'; +import { ConfigService } from '../../../services/config.service'; +import { FaqComponent } from '../faq.component'; + +@Component({ + selector: 'app-getting-started', + templateUrl: './getting-started.component.html' +}) +export class GettingStartedComponent extends FaqComponent {} diff --git a/src/app/help/faq/student-faq/student-faq.component.html b/src/app/help/faq/student-faq/student-faq.component.html index cec1cb8efe5..a267f8fe598 100644 --- a/src/app/help/faq/student-faq/student-faq.component.html +++ b/src/app/help/faq/student-faq/student-faq.component.html @@ -1,17 +1,19 @@ -
    -

    - faceStudent Frequently Asked Questions +
    +

    + faceStudent Frequently Asked Questions

    -
    -

    Table of Contents

    -

    - General Questions -

    -

    - Technical Questions -

    -
    -

    General Questions

    + +

    Table of Contents

    + + +

    General Questions

    How do I create an account?

    1. Go to the Register page.
    2. @@ -49,14 +51,14 @@

      How do I start working on a project?

    3. Choose your period.
    4. Click "Add".
    5. The run will be added to your list of runs.
    6. -
    7. Click "Launch" to open the project.
    8. +
    9. Click "Launch" to open the project.

    I chose the wrong period, how can I change it?

    • Only your teacher can change your period. Please ask them for assistance.
    -
    -

    Technical Questions

    + +

    Technical Questions

    The WISE web site won't load on my web browser. What do I do?

    • @@ -76,7 +78,7 @@

      What if I have trouble logging in?

    Can I use WISE in another language?

    - Yes! +

    Yes!

    1. Sign into WISE with your student account.
    2. diff --git a/src/app/help/faq/student-faq/student-faq.component.ts b/src/app/help/faq/student-faq/student-faq.component.ts index fbc9b66f6e9..de943d33c5c 100644 --- a/src/app/help/faq/student-faq/student-faq.component.ts +++ b/src/app/help/faq/student-faq/student-faq.component.ts @@ -3,7 +3,6 @@ import { FaqComponent } from '../faq.component'; @Component({ selector: 'app-student-faq', - templateUrl: './student-faq.component.html', - styleUrls: ['../faq.component.scss'] + templateUrl: './student-faq.component.html' }) export class StudentFaqComponent extends FaqComponent {} diff --git a/src/app/help/faq/teacher-faq/teacher-faq.component.html b/src/app/help/faq/teacher-faq/teacher-faq.component.html index a7f99a7f86a..eaa8fabcf63 100644 --- a/src/app/help/faq/teacher-faq/teacher-faq.component.html +++ b/src/app/help/faq/teacher-faq/teacher-faq.component.html @@ -1,34 +1,31 @@
      -

      - schoolTeacher Frequently Asked Questions +

      + schoolTeacher Frequently Asked Questions

      -
      +

      Table of Contents

      -

      - General Questions -

      -

      - Student Management -

      -

      - Project Management -

      -

      - Assessment of Student Work -

      -

      - Real Time Classroom Monitor -

      -

      - Technical Questions -

      -
      -

      General Questions

      + + +

      General Questions

      How do I create an account?

      1. Go to the Register page.
      2. @@ -53,7 +50,7 @@

        How do I use a unit with my class?

        Choose the number of students per team. Choosing 1-3 will allow students to work together in a team. -
      3. +
      4. Choose the start date. Students will not be able to use the project until this date.
      5. Click "Create Run".
      6. @@ -63,10 +60,10 @@

        How do I use a unit with my class?

        Students will need to use this access code to work on the run you created.
      -
      -

      Student Management

      + +

      Student Management

      Should I register my students for WISE or have them do it themselves?

      -

      +

      WISE makes student registration simple and intuitive -- direct your students to the register page by having them go to the WISE home page and clicking the "Register" link at the upper right. They should be able to register in 10 minutes or less. However, you can also opt to @@ -128,14 +125,14 @@

      How do I change a student team after they've started a project run?

    3. - Warning 1: + Warning 1: If you move Student A into an established team, student A loses all of their current work and inherits the current work of the established team.
    4. - Warning 2: + Warning 2: If you move Student A into a newly created (blank) team, student A will lose all of their work.How do I change the period for a student?

  4. Choose a different period.
  5. Click "Save Changes".
  6. - Warning: + Warning: If you move a student to a different period, they will lose all of their work.
-

+

I do not remember my teacher access code that students need to create their account for my new students.

@@ -172,8 +169,8 @@

  • Find the run in your Teacher Home Page.
  • The Access Code will be displayed below the run title.
  • -
    -

    Project Management

    + +

    Project Management

    When should I set up my project run?

    -
    -

    Assessment of Student Work

    + +

    Assessment of Student Work

    How do I review and grade student work?

    -

    How do I find time to grade all of the student work?

    +

    How do I find time to grade all of the student work?

    -
    -

    Real Time Classroom Monitor

    + +

    Real Time Classroom Monitor

    What is the Real Time Classroom Monitor?

    Does the Real Time Classroom Monitor work on a tablet like the iPad?

    Can I use the Real Time Classroom Monitor to pause student screens?

    -
    -

    Technical Questions

    + +

    Technical Questions

    The WISE web site won't load on my web browser. What do I do?

    Can I use WISE in another language?

    - Yes! +

    Yes!

    1. Sign into WISE with your teacher account.
    2. diff --git a/src/app/help/faq/teacher-faq/teacher-faq.component.ts b/src/app/help/faq/teacher-faq/teacher-faq.component.ts index 12b00f45190..19ecd9b9ced 100644 --- a/src/app/help/faq/teacher-faq/teacher-faq.component.ts +++ b/src/app/help/faq/teacher-faq/teacher-faq.component.ts @@ -3,7 +3,6 @@ import { FaqComponent } from '../faq.component'; @Component({ selector: 'app-teacher-faq', - templateUrl: './teacher-faq.component.html', - styleUrls: ['../faq.component.scss'] + templateUrl: './teacher-faq.component.html' }) export class TeacherFaqComponent extends FaqComponent {} diff --git a/src/app/help/getting-started/getting-started.component.scss b/src/app/help/getting-started/getting-started.component.scss deleted file mode 100644 index 6e01b342645..00000000000 --- a/src/app/help/getting-started/getting-started.component.scss +++ /dev/null @@ -1,8 +0,0 @@ - -.title-icon { - margin-right: 8px; -} - -.indented-text { - margin-left: 24px; -} diff --git a/src/app/help/getting-started/getting-started.component.ts b/src/app/help/getting-started/getting-started.component.ts deleted file mode 100644 index c2af5ccd982..00000000000 --- a/src/app/help/getting-started/getting-started.component.ts +++ /dev/null @@ -1,28 +0,0 @@ -import { Component, OnInit } from '@angular/core'; -import { ConfigService } from '../../services/config.service'; - -@Component({ - selector: 'app-getting-started', - templateUrl: './getting-started.component.html', - styleUrls: ['./getting-started.component.scss'] -}) -export class GettingStartedComponent implements OnInit { - contextPath: string; - - constructor(private configService: ConfigService) { - this.configService.getConfig().subscribe((config) => { - if (config != null) { - this.contextPath = config.contextPath; - } - }); - } - - ngOnInit() {} - - ngAfterViewInit() { - const appHelpElements = document.getElementsByTagName('app-help'); - if (appHelpElements.length > 0) { - appHelpElements[0].scrollIntoView(); - } - } -} diff --git a/src/app/help/help-routing.module.ts b/src/app/help/help-routing.module.ts index 392f13559e7..7ddfc43d57b 100644 --- a/src/app/help/help-routing.module.ts +++ b/src/app/help/help-routing.module.ts @@ -2,7 +2,7 @@ import { NgModule } from '@angular/core'; import { RouterModule, Routes } from '@angular/router'; import { HelpComponent } from './help.component'; import { HelpHomeComponent } from './help-home/help-home.component'; -import { GettingStartedComponent } from './getting-started/getting-started.component'; +import { GettingStartedComponent } from './faq/getting-started/getting-started.component'; import { TeacherFaqComponent } from './faq/teacher-faq/teacher-faq.component'; import { StudentFaqComponent } from './faq/student-faq/student-faq.component'; diff --git a/src/app/help/help.module.ts b/src/app/help/help.module.ts index ac463754dab..6c70bf443ce 100644 --- a/src/app/help/help.module.ts +++ b/src/app/help/help.module.ts @@ -3,13 +3,14 @@ import { CommonModule } from '@angular/common'; import { HelpComponent } from './help.component'; import { HelpRoutingModule } from './help-routing.module'; import { SharedModule } from '../modules/shared/shared.module'; -import { GettingStartedComponent } from './getting-started/getting-started.component'; +import { GettingStartedComponent } from './faq/getting-started/getting-started.component'; import { TeacherFaqComponent } from './faq/teacher-faq/teacher-faq.component'; import { StudentFaqComponent } from './faq/student-faq/student-faq.component'; import { HelpHomeComponent } from './help-home/help-home.component'; +import { MatDividerModule } from '@angular/material/divider'; @NgModule({ - imports: [CommonModule, HelpRoutingModule, SharedModule], + imports: [CommonModule, HelpRoutingModule, MatDividerModule, SharedModule], declarations: [ HelpComponent, GettingStartedComponent, diff --git a/src/messages.xlf b/src/messages.xlf index 941296a69b4..1e01343e8c4 100644 --- a/src/messages.xlf +++ b/src/messages.xlf @@ -3381,7 +3381,7 @@ Click "Cancel" to keep the invalid JSON open so you can fix it. src/app/help/faq/teacher-faq/teacher-faq.component.html - 7 + 6 src/app/privacy/privacy.component.html @@ -3392,11 +3392,11 @@ Click "Cancel" to keep the invalid JSON open so you can fix it.General Questions src/app/help/faq/student-faq/student-faq.component.html - 8 + 9 src/app/help/faq/student-faq/student-faq.component.html - 14 + 16 src/app/help/faq/teacher-faq/teacher-faq.component.html @@ -3404,66 +3404,66 @@ Click "Cancel" to keep the invalid JSON open so you can fix it. src/app/help/faq/teacher-faq/teacher-faq.component.html - 31 + 28 Technical Questions src/app/help/faq/student-faq/student-faq.component.html - 11 + 12 src/app/help/faq/student-faq/student-faq.component.html - 59 + 61 src/app/help/faq/teacher-faq/teacher-faq.component.html - 28 + 24 src/app/help/faq/teacher-faq/teacher-faq.component.html - 331 + 328 How do I create an account? src/app/help/faq/student-faq/student-faq.component.html - 15 + 17 src/app/help/faq/teacher-faq/teacher-faq.component.html - 32 + 29 Go to the Register page. src/app/help/faq/student-faq/student-faq.component.html - 17 + 19 src/app/help/faq/teacher-faq/teacher-faq.component.html - 34 + 31 Click on Student. src/app/help/faq/student-faq/student-faq.component.html - 18 + 20 Choose to sign up with your email or with your Google Account. src/app/help/faq/student-faq/student-faq.component.html - 19 + 21 src/app/help/faq/teacher-faq/teacher-faq.component.html - 36 + 33 src/app/help/getting-started/getting-started.component.html @@ -3474,11 +3474,11 @@ Click "Cancel" to keep the invalid JSON open so you can fix it.Fill out the form and submit it. src/app/help/faq/student-faq/student-faq.component.html - 20 + 22 src/app/help/faq/teacher-faq/teacher-faq.component.html - 37 + 34 src/app/help/getting-started/getting-started.component.html @@ -3489,11 +3489,11 @@ Click "Cancel" to keep the invalid JSON open so you can fix it. If you created an account using your email, you will be given a username that you will need to remember. Your username will be your first name and your last name with no space inbetween. There may be a number added at the end of your username if someone has the same name as you. src/app/help/faq/student-faq/student-faq.component.html - 21,25 + 23,27 src/app/help/faq/teacher-faq/teacher-faq.component.html - 38,42 + 35,39 src/app/help/getting-started/getting-started.component.html @@ -3504,116 +3504,116 @@ Click "Cancel" to keep the invalid JSON open so you can fix it.I forgot my username, how can I find it? src/app/help/faq/student-faq/student-faq.component.html - 27 + 29 Go to the forgot username page and follow the instructions to retrieve your username. src/app/help/faq/student-faq/student-faq.component.html - 29,31 + 31,33 I forgot my password, how can I change it? src/app/help/faq/student-faq/student-faq.component.html - 33 + 35 Go to the forgot password page and follow the instructions to reset your password. src/app/help/faq/student-faq/student-faq.component.html - 35 + 37 How do I start working on a project? src/app/help/faq/student-faq/student-faq.component.html - 37 + 39 In order to start working on a project you must obtain an Access Code from your teacher. Once you have an Access Code, follow the directions below. src/app/help/faq/student-faq/student-faq.component.html - 38,41 + 40,43 Log into WISE with your student account. src/app/help/faq/student-faq/student-faq.component.html - 43 + 45 Click on the "Add Unit" button at the top right of the Student Home Page. src/app/help/faq/student-faq/student-faq.component.html - 44,47 + 46,49 Enter the Access Code from your teacher. src/app/help/faq/student-faq/student-faq.component.html - 48 + 50 Choose your period. src/app/help/faq/student-faq/student-faq.component.html - 49 + 51 Click "Add". src/app/help/faq/student-faq/student-faq.component.html - 50 + 52 The run will be added to your list of runs. src/app/help/faq/student-faq/student-faq.component.html - 51 + 53 Click "Launch" to open the project. src/app/help/faq/student-faq/student-faq.component.html - 52 + 54 I chose the wrong period, how can I change it? src/app/help/faq/student-faq/student-faq.component.html - 54 + 56 Only your teacher can change your period. Please ask them for assistance. src/app/help/faq/student-faq/student-faq.component.html - 56 + 58 The WISE web site won't load on my web browser. What do I do? src/app/help/faq/student-faq/student-faq.component.html - 60 + 62 src/app/help/faq/teacher-faq/teacher-faq.component.html - 332 + 329 @@ -3622,172 +3622,161 @@ Click "Cancel" to keep the invalid JSON open so you can fix it. and then reloading the WISE web site. src/app/help/faq/student-faq/student-faq.component.html - 62,68 + 64,70 src/app/help/faq/teacher-faq/teacher-faq.component.html - 334,340 + 331,337 You can try using a different web browser. We recommend using Chrome or Firefox. src/app/help/faq/student-faq/student-faq.component.html - 69 + 71 src/app/help/faq/teacher-faq/teacher-faq.component.html - 341 + 338 What if I have trouble logging in? src/app/help/faq/student-faq/student-faq.component.html - 71 + 73 src/app/help/faq/teacher-faq/teacher-faq.component.html - 351 + 348 If you do not remember your username or password click the Lost Username or Password link and follow the instructions. src/app/help/faq/student-faq/student-faq.component.html - 73,76 + 75,78 src/app/help/faq/teacher-faq/teacher-faq.component.html - 353,356 + 350,353 Can I use WISE in another language? src/app/help/faq/student-faq/student-faq.component.html - 78 - - - src/app/help/faq/teacher-faq/teacher-faq.component.html - 358 - - - - Yes! - - src/app/help/faq/student-faq/student-faq.component.html - 79 + 80 src/app/help/faq/teacher-faq/teacher-faq.component.html - 359 + 355 Sign into WISE with your student account. src/app/help/faq/student-faq/student-faq.component.html - 81 + 83 Click on your account icon at the top right of the page. This should open a drop down with options. src/app/help/faq/student-faq/student-faq.component.html - 82,85 + 84,87 src/app/help/faq/teacher-faq/teacher-faq.component.html - 362,365 + 359,362 Click the "Edit Profile" option. src/app/help/faq/student-faq/student-faq.component.html - 86,89 + 88,91 src/app/help/faq/teacher-faq/teacher-faq.component.html - 366,369 + 363,366 Near the bottom there will be a "Language" setting. src/app/help/faq/student-faq/student-faq.component.html - 90 + 92 src/app/help/faq/teacher-faq/teacher-faq.component.html - 370 + 367 Change the language to the language of your choice. src/app/help/faq/student-faq/student-faq.component.html - 91 + 93 src/app/help/faq/teacher-faq/teacher-faq.component.html - 371 + 368 Note 1: If your language is not listed as an option, or you'd like to help us improve the translation, please contact us and we'll help you get started! src/app/help/faq/student-faq/student-faq.component.html - 92,95 + 94,97 src/app/help/faq/teacher-faq/teacher-faq.component.html - 372,375 + 369,372 Note 2: Changing the language will change the language of the website but will not change the language of the projects. Projects must be independently translated which means that if you want to use a project in another language, you must translate it yourself or find a version of the project that has been translated by someone else. src/app/help/faq/student-faq/student-faq.component.html - 96,101 + 98,103 src/app/help/faq/teacher-faq/teacher-faq.component.html - 376,381 + 373,378 Who do I contact when I have a problem I can't solve? src/app/help/faq/student-faq/student-faq.component.html - 103 + 105 src/app/help/faq/teacher-faq/teacher-faq.component.html - 383 + 380 The Contact WISE form will send an email to the WISE technology group. You can find a link to the form at the bottom of the home page. Be sure to include as much information as you can about the problem. We will respond as quickly as we can. src/app/help/faq/student-faq/student-faq.component.html - 105,110 + 107,112 src/app/help/faq/teacher-faq/teacher-faq.component.html - 385,390 + 382,387 Getting Started src/app/help/faq/student-faq/student-faq.component.html - 130 + 132 src/app/help/faq/teacher-faq/teacher-faq.component.html - 410 + 407 src/app/help/getting-started/getting-started.component.html @@ -3802,11 +3791,11 @@ Click "Cancel" to keep the invalid JSON open so you can fix it.Information for new users. src/app/help/faq/student-faq/student-faq.component.html - 132 + 134 src/app/help/faq/teacher-faq/teacher-faq.component.html - 412 + 409 src/app/help/help-home/help-home.component.html @@ -3817,7 +3806,7 @@ Click "Cancel" to keep the invalid JSON open so you can fix it.Teacher FAQ src/app/help/faq/student-faq/student-faq.component.html - 141 + 143 src/app/help/getting-started/getting-started.component.html @@ -3832,7 +3821,7 @@ Click "Cancel" to keep the invalid JSON open so you can fix it.Questions from teachers. src/app/help/faq/student-faq/student-faq.component.html - 143 + 145 src/app/help/getting-started/getting-started.component.html @@ -3847,7 +3836,7 @@ Click "Cancel" to keep the invalid JSON open so you can fix it.Teacher Frequently Asked Questions src/app/help/faq/teacher-faq/teacher-faq.component.html - 4 + 3 @@ -3858,7 +3847,7 @@ Click "Cancel" to keep the invalid JSON open so you can fix it. src/app/help/faq/teacher-faq/teacher-faq.component.html - 67 + 64 @@ -3869,50 +3858,50 @@ Click "Cancel" to keep the invalid JSON open so you can fix it. src/app/help/faq/teacher-faq/teacher-faq.component.html - 176 + 173 Assessment of Student Work src/app/help/faq/teacher-faq/teacher-faq.component.html - 19 + 18 src/app/help/faq/teacher-faq/teacher-faq.component.html - 253 + 250 Real Time Classroom Monitor src/app/help/faq/teacher-faq/teacher-faq.component.html - 24 + 21 src/app/help/faq/teacher-faq/teacher-faq.component.html - 309 + 306 Click on "Teacher". src/app/help/faq/teacher-faq/teacher-faq.component.html - 35 + 32 How do I use a unit with my class? src/app/help/faq/teacher-faq/teacher-faq.component.html - 44 + 41 Sign in to WISE with your teacher account. src/app/help/faq/teacher-faq/teacher-faq.component.html - 46 + 43 src/app/help/getting-started/getting-started.component.html @@ -3923,11 +3912,11 @@ Click "Cancel" to keep the invalid JSON open so you can fix it.Click the "Unit Library" tab. src/app/help/faq/teacher-faq/teacher-faq.component.html - 47 + 44 src/app/help/faq/teacher-faq/teacher-faq.component.html - 204 + 201 src/app/help/getting-started/getting-started.component.html @@ -3938,7 +3927,7 @@ Click "Cancel" to keep the invalid JSON open so you can fix it.Find a project that you would like to use with your class. src/app/help/faq/teacher-faq/teacher-faq.component.html - 48 + 45 src/app/help/getting-started/getting-started.component.html @@ -3949,7 +3938,7 @@ Click "Cancel" to keep the invalid JSON open so you can fix it.Click on the project to open the information for the project. src/app/help/faq/teacher-faq/teacher-faq.component.html - 49 + 46 src/app/help/getting-started/getting-started.component.html @@ -3960,7 +3949,7 @@ Click "Cancel" to keep the invalid JSON open so you can fix it.Click the "Use With Class" button. src/app/help/faq/teacher-faq/teacher-faq.component.html - 50 + 47 src/app/help/getting-started/getting-started.component.html @@ -3971,7 +3960,7 @@ Click "Cancel" to keep the invalid JSON open so you can fix it.Choose the periods you will use the project in. src/app/help/faq/teacher-faq/teacher-faq.component.html - 51 + 48 src/app/help/getting-started/getting-started.component.html @@ -3982,7 +3971,7 @@ Click "Cancel" to keep the invalid JSON open so you can fix it. Choose the number of students per team. Choosing 1-3 will allow students to work together in a team. src/app/help/faq/teacher-faq/teacher-faq.component.html - 52,55 + 49,52 src/app/help/getting-started/getting-started.component.html @@ -3993,7 +3982,7 @@ Click "Cancel" to keep the invalid JSON open so you can fix it. Choose the start date. Students will not be able to use the project until this date. src/app/help/faq/teacher-faq/teacher-faq.component.html - 56,58 + 53,55 src/app/help/getting-started/getting-started.component.html @@ -4004,7 +3993,7 @@ Click "Cancel" to keep the invalid JSON open so you can fix it.Click "Create Run". src/app/help/faq/teacher-faq/teacher-faq.component.html - 59 + 56 src/app/help/getting-started/getting-started.component.html @@ -4015,7 +4004,7 @@ Click "Cancel" to keep the invalid JSON open so you can fix it.The run will be created and added to your Teacher Home. src/app/help/faq/teacher-faq/teacher-faq.component.html - 60 + 57 src/app/help/getting-started/getting-started.component.html @@ -4026,7 +4015,7 @@ Click "Cancel" to keep the invalid JSON open so you can fix it. Copy the "Access Code" for the new run and write it down somewhere like on the white board. Students will need to use this access code to work on the run you created. src/app/help/faq/teacher-faq/teacher-faq.component.html - 61,64 + 58,61 src/app/help/getting-started/getting-started.component.html @@ -4037,294 +4026,294 @@ Click "Cancel" to keep the invalid JSON open so you can fix it.Should I register my students for WISE or have them do it themselves? src/app/help/faq/teacher-faq/teacher-faq.component.html - 68 + 65 WISE makes student registration simple and intuitive -- direct your students to the register page by having them go to the WISE home page and clicking the "Register" link at the upper right. They should be able to register in 10 minutes or less. However, you can also opt to pre-register all of your students and provide them with a copy of their username/password on their first day in the project run. src/app/help/faq/teacher-faq/teacher-faq.component.html - 69,75 + 66,72 Once a student has created a WISE account they should never need to create another one. src/app/help/faq/teacher-faq/teacher-faq.component.html - 77,79 + 74,76 Some teachers that pre-register prefer to give all students the same initial password, to decrease problems with students signing in. This is ok, but for security purposes, we advise that you have the students change their passwords once they log in. src/app/help/faq/teacher-faq/teacher-faq.component.html - 80,84 + 77,81 A student has forgotten his/her username or password. What should I do? src/app/help/faq/teacher-faq/teacher-faq.component.html - 86 + 83 First, we recommend always having students WRITE DOWN their username/password when they first register. src/app/help/faq/teacher-faq/teacher-faq.component.html - 88,91 + 85,88 Second, encourage the students to solve the problem themselves. Tell them to go to the WISE home page, click the Lost username/password link, and click the Student button. If the student can answer their security question (created at registration) they can change their password. src/app/help/faq/teacher-faq/teacher-faq.component.html - 92,96 + 89,93 Third, if the student can't solve the problem directly, you can change their password for them using the instructions below. src/app/help/faq/teacher-faq/teacher-faq.component.html - 97,100 + 94,97 How do I change a student's password? src/app/help/faq/teacher-faq/teacher-faq.component.html - 102 + 99 Sign into WISE with your teacher account. src/app/help/faq/teacher-faq/teacher-faq.component.html - 104 + 101 src/app/help/faq/teacher-faq/teacher-faq.component.html - 117 + 114 src/app/help/faq/teacher-faq/teacher-faq.component.html - 147 + 144 src/app/help/faq/teacher-faq/teacher-faq.component.html - 171 + 168 src/app/help/faq/teacher-faq/teacher-faq.component.html - 203 + 200 src/app/help/faq/teacher-faq/teacher-faq.component.html - 225 + 222 src/app/help/faq/teacher-faq/teacher-faq.component.html - 234 + 231 src/app/help/faq/teacher-faq/teacher-faq.component.html - 256 + 253 src/app/help/faq/teacher-faq/teacher-faq.component.html - 361 + 358 Find the run in your Teacher Home Page. src/app/help/faq/teacher-faq/teacher-faq.component.html - 105 + 102 src/app/help/faq/teacher-faq/teacher-faq.component.html - 118 + 115 src/app/help/faq/teacher-faq/teacher-faq.component.html - 148 + 145 src/app/help/faq/teacher-faq/teacher-faq.component.html - 172 + 169 src/app/help/faq/teacher-faq/teacher-faq.component.html - 226 + 223 src/app/help/faq/teacher-faq/teacher-faq.component.html - 235 + 232 src/app/help/faq/teacher-faq/teacher-faq.component.html - 257 + 254 Click the "Teacher Tools" button on the run. src/app/help/faq/teacher-faq/teacher-faq.component.html - 106 + 103 src/app/help/faq/teacher-faq/teacher-faq.component.html - 119 + 116 src/app/help/faq/teacher-faq/teacher-faq.component.html - 149 + 146 src/app/help/faq/teacher-faq/teacher-faq.component.html - 258 + 255 Click on the "Manage Students" icon on the left side bar. src/app/help/faq/teacher-faq/teacher-faq.component.html - 107 + 104 src/app/help/faq/teacher-faq/teacher-faq.component.html - 120 + 117 src/app/help/faq/teacher-faq/teacher-faq.component.html - 150 + 147 Find the period the student is in. src/app/help/faq/teacher-faq/teacher-faq.component.html - 108 + 105 src/app/help/faq/teacher-faq/teacher-faq.component.html - 121 + 118 src/app/help/faq/teacher-faq/teacher-faq.component.html - 151 + 148 Find the student and click "Change Password". src/app/help/faq/teacher-faq/teacher-faq.component.html - 109 + 106 Alternatively, you can change the password for ALL students in the current period (the new password will be applied to all the students in the period). src/app/help/faq/teacher-faq/teacher-faq.component.html - 110,113 + 107,110 How do I change a student team after they've started a project run? src/app/help/faq/teacher-faq/teacher-faq.component.html - 115 + 112 Drag-and-drop student names to move them from one team to another. Make sure to save your changes before leaving this window. src/app/help/faq/teacher-faq/teacher-faq.component.html - 122,125 + 119,122 If you want to move students into a brand new team, click New Team, then drag 1 or more students into the new team. Save your changes. src/app/help/faq/teacher-faq/teacher-faq.component.html - 126,129 + 123,126 Warning 1 src/app/help/faq/teacher-faq/teacher-faq.component.html - 131 + 128 If you move Student A into an established team, student A loses all of their current work and inherits the current work of the established team. src/app/help/faq/teacher-faq/teacher-faq.component.html - 133,134 + 130,131 Warning 2 src/app/help/faq/teacher-faq/teacher-faq.component.html - 138 + 135 If you move Student A into a newly created (blank) team, student A will lose all of their work. src/app/help/faq/teacher-faq/teacher-faq.component.html - 140,141 + 137,138 How do I change the period for a student? src/app/help/faq/teacher-faq/teacher-faq.component.html - 145 + 142 Find the student. src/app/help/faq/teacher-faq/teacher-faq.component.html - 152 + 149 Click the "Period" link. src/app/help/faq/teacher-faq/teacher-faq.component.html - 153 + 150 A popup will show up that will allow you to choose a different period for the student. src/app/help/faq/teacher-faq/teacher-faq.component.html - 154,156 + 151,153 Choose a different period. src/app/help/faq/teacher-faq/teacher-faq.component.html - 157 + 154 Click "Save Changes". src/app/help/faq/teacher-faq/teacher-faq.component.html - 158 + 155 Warning src/app/help/faq/teacher-faq/teacher-faq.component.html - 160 + 157 src/app/modules/shared/unlink-google-account-confirm/unlink-google-account-confirm.component.html @@ -4351,365 +4340,372 @@ Click "Cancel" to keep the invalid JSON open so you can fix it.If you move a student to a different period, they will lose all of their work. src/app/help/faq/teacher-faq/teacher-faq.component.html - 162 + 159 I do not remember my teacher access code that students need to create their account for my new students. src/app/help/faq/teacher-faq/teacher-faq.component.html - 166,169 + 163,166 The Access Code will be displayed below the run title. src/app/help/faq/teacher-faq/teacher-faq.component.html - 173 + 170 When should I set up my project run? src/app/help/faq/teacher-faq/teacher-faq.component.html - 177 + 174 You need to set up your project run anytime before the students can start working on the project. They will need the Access Code for the run in order to start working. src/app/help/faq/teacher-faq/teacher-faq.component.html - 179,182 + 176,179 How long does it take to run a project? src/app/help/faq/teacher-faq/teacher-faq.component.html - 184 + 181 Project durations vary from about 3 days to 10 days. Some projects may display an estimation of the number of hours it will take for students to complete the project. src/app/help/faq/teacher-faq/teacher-faq.component.html - 186,189 + 183,186 Can I shorten a project run to 1 or 2 days? src/app/help/faq/teacher-faq/teacher-faq.component.html - 191 + 188 It is not recommended to shorten a project. Each project has been carefully designed to lead the student through an inquiry process and cutting it short will result in a less satisfactory educational student experience. Nevertheless, if you are under a time constraint and knowledgeable of the project topic, you could customize the project and shorten it to your specific needs. src/app/help/faq/teacher-faq/teacher-faq.component.html - 193,199 + 190,196 Where do I find out about lesson plans and standards for WISE projects? src/app/help/faq/teacher-faq/teacher-faq.component.html - 201 + 198 Find a project you would like to learn about. src/app/help/faq/teacher-faq/teacher-faq.component.html - 205 + 202 Click on the project. src/app/help/faq/teacher-faq/teacher-faq.component.html - 206 + 203 This will display a popup that displays information about the project. src/app/help/faq/teacher-faq/teacher-faq.component.html - 207 + 204 Note: Some projects may not have much information because it is dependent on the author to provide the lesson plan and standards. src/app/help/faq/teacher-faq/teacher-faq.component.html - 208,211 + 205,208 How do I fit a WISE project into my curriculum? src/app/help/faq/teacher-faq/teacher-faq.component.html - 213 + 210 In general students will benefit from some pre-teaching of the topic covered in the project. It is really up to the teacher to decide where it best fits to support student learning. Many teachers use a WISE project as a capstone activity while others integrate it into their curriculum at a midpoint. Some teachers elect to use WISE projects an introductory activity for a unit, or as a summation activity for a unit. src/app/help/faq/teacher-faq/teacher-faq.component.html - 215,221 + 212,218 How do I add a period after creating a run? src/app/help/faq/teacher-faq/teacher-faq.component.html - 223 + 220 On the run, click the three vertical dots to view the run options. src/app/help/faq/teacher-faq/teacher-faq.component.html - 227 + 224 src/app/help/faq/teacher-faq/teacher-faq.component.html - 236 + 233 Click "Edit Settings". src/app/help/faq/teacher-faq/teacher-faq.component.html - 228 + 225 src/app/help/faq/teacher-faq/teacher-faq.component.html - 237 + 234 Enter a period name in the "Add New Period" field. src/app/help/faq/teacher-faq/teacher-faq.component.html - 229 + 226 Click "Add Period". src/app/help/faq/teacher-faq/teacher-faq.component.html - 230 + 227 How do I delete a period after creating a run? src/app/help/faq/teacher-faq/teacher-faq.component.html - 232 + 229 Find the period you want to delete and click the "Delete" button next to it. src/app/help/faq/teacher-faq/teacher-faq.component.html - 238 + 235 Note: You are not allowed to delete a period that has students in it. src/app/help/faq/teacher-faq/teacher-faq.component.html - 239 + 236 What if I run out of computer lab time but some of my students are not finished with the project? src/app/help/faq/teacher-faq/teacher-faq.component.html - 241,244 + 238,241 WISE is a web-based learning environments, so students can sign in from a computer at school or at home. This means that students can complete the project from any home or community based computer, per the teacher's discretion. src/app/help/faq/teacher-faq/teacher-faq.component.html - 246,250 + 243,247 How do I review and grade student work? src/app/help/faq/teacher-faq/teacher-faq.component.html - 254 + 251 Here you will be able to look at your students' work. src/app/help/faq/teacher-faq/teacher-faq.component.html - 259 + 256 On the left sidebar you can choose to look at the work by step by clicking "Grade By Step" or you can choose to look at the work by team by clicking "Grade By Team". src/app/help/faq/teacher-faq/teacher-faq.component.html - 260,263 + 257,260 Next to each student's work, you will be able to give them a score and comment. src/app/help/faq/teacher-faq/teacher-faq.component.html - 264 + 261 How do students see my comments and scores for their work? src/app/help/faq/teacher-faq/teacher-faq.component.html - 266 + 263 The student must sign into WISE with their student account. src/app/help/faq/teacher-faq/teacher-faq.component.html - 268 + 265 Open the project. src/app/help/faq/teacher-faq/teacher-faq.component.html - 269 + 266 Go to the step that the teacher graded. src/app/help/faq/teacher-faq/teacher-faq.component.html - 270 + 267 The comment and score will be displayed under the piece of work that was graded. src/app/help/faq/teacher-faq/teacher-faq.component.html - 271 + 268 What should I look for in my student's answers? src/app/help/faq/teacher-faq/teacher-faq.component.html - 273 + 270 The following link will give you a sample rubric for grading a step in the Mitosis and Cell Processes project. The rubric is based on our TELS Center research on how students integrate their knowledge of complex science concepts. We hope that it can give you a start in developing your own rubrics for the notes and steps you plan to grade. src/app/help/faq/teacher-faq/teacher-faq.component.html - 275,280 + 272,277 Sample rubric for assessing student work src/app/help/faq/teacher-faq/teacher-faq.component.html - 286 + 283 How can I encourage my students to review the graded notes and comments I have made? src/app/help/faq/teacher-faq/teacher-faq.component.html - 290 + 287 Many teachers find it advantageous to grade the first step or two at the end of the first day of the project run. At the beginning of class the next day they share with the whole class some sample responses and have the class critique the work. src/app/help/faq/teacher-faq/teacher-faq.component.html - 292,296 + 289,293 How do I find time to grade all of the student work? src/app/help/faq/teacher-faq/teacher-faq.component.html - 298 + 295 We recommend that you go through the project and select a few steps that you think best demonstrate the students' understanding of the complex concepts covered in the module and grade those steps. Then tell your students they must complete all questions but should concentrate their efforts on the key steps. We recognize that critically grading each step is very time consuming and unpractical. src/app/help/faq/teacher-faq/teacher-faq.component.html - 300,306 + 297,303 What is the Real Time Classroom Monitor? src/app/help/faq/teacher-faq/teacher-faq.component.html - 310 + 307 The Real Time Classroom Monitor allows teachers to view student progress in real time. Teachers will be able to see what step a student is on, how much time the student has spent on that step, and how much of the project the student has completed. All of this information will be updated immediately in real time as students work on the project. src/app/help/faq/teacher-faq/teacher-faq.component.html - 312,317 + 309,314 Does the Real Time Classroom Monitor work on a tablet like the iPad? src/app/help/faq/teacher-faq/teacher-faq.component.html - 319 + 316 Yes it does. src/app/help/faq/teacher-faq/teacher-faq.component.html - 321 + 318 Can I use the Real Time Classroom Monitor to pause student screens? src/app/help/faq/teacher-faq/teacher-faq.component.html - 323 + 320 Yes you can! This can be useful if you need to grab their attention in order to have a class discussion or to make an announcement. src/app/help/faq/teacher-faq/teacher-faq.component.html - 325,328 + 322,325 How many computers do I need to run WISE? src/app/help/faq/teacher-faq/teacher-faq.component.html - 343 + 340 We strongly recommend one computer for every two students. Research shows that students benefit from working together as a team of two. src/app/help/faq/teacher-faq/teacher-faq.component.html - 345,348 + 342,345 + + + + Yes! + + src/app/help/faq/teacher-faq/teacher-faq.component.html + 356 Student FAQ src/app/help/faq/teacher-faq/teacher-faq.component.html - 421 + 418 src/app/help/getting-started/getting-started.component.html @@ -4724,7 +4720,7 @@ Click "Cancel" to keep the invalid JSON open so you can fix it.Questions from students. src/app/help/faq/teacher-faq/teacher-faq.component.html - 423 + 420 src/app/help/getting-started/getting-started.component.html