Skip to content

Commit 6314dfb

Browse files
Merge branch 'main' of https://github.com/CSC207-2022F-UofT/course-project-team-bbq into Anthony's_Branch
2 parents 489a8bb + 6df8104 commit 6314dfb

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+546
-267
lines changed

.idea/misc.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 41 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,54 @@
1-
# Project Template
1+
**Welcome to Bargain Bin Quizlet (BBQ for short)!**
22

3-
This is a template repository for CSC 207 projects.
4-
This repository contains starter code for a gradle project.
5-
It also contains workflow documents that give instructions on how to manage your Github repository and how to use Github Projects for efficient collaboration.
3+
This is a flashcard study application inspired by Quizlet.
64

7-
## Checklist For Your Project
8-
- [ ] Verify the correct settings for your project repository
9-
- [ ] Set up Github Projects
10-
- [ ] Create the implementation plan using issues and Github Projects
11-
- [ ] Create deveopment branches for your features
12-
- [ ] Use pull requests to merge finished features into main branch
13-
- [ ] Conduct code reviews
5+
# Main Features
146

15-
**If your team has trouble with any of these steps, please ask on Piazza. For example, with how GitHub Classroom works, your team *may* not have permissions to do some of the first few steps, in which case we'll post alternative instructions as needed.**
7+
### 1a. Sign Up For The Application.
8+
- If the user selects the "Sign Up" option from the welcome screen the user has an option of Signing up as a user with or without admin level access
9+
- The user must select a username that does not previously exist in the database, if the user inputs a previously existing username they shall be warned with a failure in registration and must choose another username.
10+
- The password needs to be greater than or equal to 5 characters in length and not blank.
11+
- The repeat password must match the password entered to ensure coherency and surety.
12+
- If the user does not require admin level they can leave the Admin Key field blank and they shall be registered as a common user that can access teh program.
13+
- If the user does require admin level access they can input the Admin Key in the field, if there is an error in the inputting of the key the user shall be warned accordingly.
1614

17-
## Workflow Documents
15+
### 1b. Log In For The Application.
16+
- If the user selects the "Log In" option from the welcome screen the user may input their respective username and password, if the username does not match an existing username from the database or incorrect password they shall be warned.
1817

19-
* Github Workflow: Please refer to the workflow that was introduced in the first lab. You should follow this when working on your code. The following document provides additional details too.
18+
### 2. Create a flashcard or a flashcard set.
2019

21-
* [Project Planning and Development Guide](project_plan_dev.md): This document helps you to understand how to create and maintain a project plan for your class project. **This document helps you to complete the Implementation Plan Milestone.**
20+
### 3a. Edit a flashcard set.
21+
- If there are no flashcard sets on the main page, then we cannot edit a flashcard set.
22+
- If there is a flashcard set, the user can choose which flashcard set to edit and can click the "Edit" button of the desired flashcard set.
23+
- When "Edit" is clicked an Editor Main Page is shown. There is an "Edit Flashcard Set" button and when clicked a window pops up with Title and Description text prompts for the user to edit. The user cannot change the Title to an empty title.
24+
### 3b. Edit a flashcard in a flashcard set.
25+
- If there are no flashcard sets on the main page, then we cannot edit a flashcard in a flashcard set.
26+
- If there is a flashcard set, the user can choose which flashcard set to edit and can click the "Edit" button of the desired flashcard set.
27+
- When "Edit" is clicked an Editor Main Page is shown.
28+
- If there are no flashcards, the user cannot edit a flashcard.
29+
- If there are flashcards, the user can choose which flashcard to edit by clicking the "Edit Flashcard" button. When clicked a window pops up with Term and Definition text prompts for the user to edit. The user cannot change the Term to an empty term.
2230

23-
## Gradle Project
24-
Import this project into your Intellij editor. It should automatically recognise this as a gradle repository.
25-
The starter code was built using SDK version 11.0.1. Ensure that you are using this version for this project. (You can, of course, change the SDK version as per your requirement if your team has all agreed to use a different version)
31+
### 4. Delete a flashcard or a flashcard set.
2632

27-
You have been provided with two starter files for demonstration: HelloWorld and HelloWorldTest.
33+
### 5. Search for a public flashcard set.
34+
- If the user selects the search button from the main page the user can search through the public community database for flashcard sets
35+
- The user types in search input, and selects tags to search from (title, description, owner), or optionally they can choose to “search all”
36+
- The user will be taken to a results screen where a list of all the public flashcard sets matching the user’s search will be returned, displaying the title, description, and creator for each
37+
- If the user is an admin, a list of all flashcard sets will be returned, regardless if the flashcard set is public or private
38+
- Once the user is on the results screen they are able to study or take a quiz for each flashcard set
39+
- If the user is an admin they also have the ability to edit and delete every flashcard set in the results
2840

29-
You will find HelloWorld in `src/main/java/tutorial` directory. Right click on the HelloWorld file and click on `Run HelloWorld.main()`.
30-
This should run the program and print on your console.
41+
### 6. Study from a flashcard set.
3142

32-
You will find HelloWorldTest in `src/test/java/tutorial` directory. Right click on the HelloWorldTest file and click on `Run HelloWorldTest`.
33-
All tests should pass. Your team can remove this sample of how testing works once you start adding your project code to the repo.
43+
### 7. Generate and take a quiz from a flashcard set.
44+
- Given a flashcard set, the user can enter quiz mode.
45+
- Quiz mode features three types of questions: multiple choice, text entry, and true/false.
46+
- First, the user toggles a set of quiz settings (such as number of questions, question types, and timer).
47+
- Then, the user submits their quiz settings and a quiz is automatically generated for them.
48+
- After taking and submitting the quiz, the user can receive their quiz results and identify which questions they answered incorrectly.
3449

35-
Moving forward, we expect you to maintain this project structure. You *should* use Gradle as the build environment, but it is fine if your team prefers to use something else -- just remove the gradle files and push your preferred project setup. Assuming you stick with Gradle, your source code should go into `src/main/java` (you can keep creating more subdirectories as per your project requirement). Every source class can auto-generate a test file for you. For example, open HelloWorld.java file and click on the `HelloWorld` variable as shown in the image below. You should see an option `Generate` and on clicking this your should see an option `Test`. Clicking on this will generate a JUnit test file for `HelloWorld` class. This was used to generate the `HelloWorldTest`.
50+
### 8. Save user and flashcard data to the database.
3651

37-
![image](https://user-images.githubusercontent.com/5333020/196066655-d3c97bf4-fdbd-46b0-b6ae-aeb8dbcf351d.png)
52+
# How to run the application?
3853

39-
You can create another simple class and try generating a test for this class.
54+
Run src/main/java/Main.java.

gradlew

100755100644
File mode changed.

src/main/java/create_flashcard_use_case/FcCInputBoundary.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package create_flashcard_use_case;
22

33
/**
4-
* Input boundary for flashcard creator.
4+
* Input boundary for flashcard creation.
55
* Application business rules.
66
* @author Junyu Chen
77
*/

src/main/java/create_flashcard_use_case/FcCInteractor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
import java.time.LocalDateTime;
99
/**
10-
* Interactor for flashcard creator.
10+
* Interactor for flashcard creation.
1111
* Application business rules.
1212
* @author Junyu Chen
1313
*/

src/main/java/create_flashcard_use_case/FcCMain.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
import java.io.IOException;
99

1010
/**
11-
* Main frame for flashcard Creator.
11+
* Main frame for flashcard Creation.
1212
* @author Junyu Chen
1313
*/
1414
public class FcCMain extends JFrame {

src/main/java/create_flashcard_use_case/FcCOutputBoundary.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package create_flashcard_use_case;
22
/**
3-
* Presenter for flashcard creator.
3+
* Presenter for flashcard creation.
44
* Application business rules.
55
* @author Junyu Chen
66
*/

src/main/java/create_flashcard_use_case/FcCRequestModel.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package create_flashcard_use_case;
22
/**
3-
* Request model for flashcard creator.
3+
* Request model for flashcard creation.
44
* Application business rules.
55
* @author Junyu Chen
66
*/

src/main/java/create_flashcard_use_case/FcCResponseModel.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import java.time.LocalDateTime;
44
/**
5-
* Response model for flashcard creator.
5+
* Response model for flashcard creation.
66
* Application business rules.
77
* @author Junyu Chen
88
*/

src/main/java/create_flashcard_use_case/fcCScreens/FcCController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import create_flashcard_use_case.FcCResponseModel;
66

77
/**
8-
* Controller for flashcard creator.
8+
* Controller for flashcard creation.
99
* Interface adaptors.
1010
* @author Junyu Chen
1111
*/

0 commit comments

Comments
 (0)