<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.expertiza.ncsu.edu/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Shassa22</id>
	<title>Expertiza_Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.expertiza.ncsu.edu/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Shassa22"/>
	<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=Special:Contributions/Shassa22"/>
	<updated>2026-05-13T06:10:25Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.41.0</generator>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2024_-_E2487._Reimplement_authorization_helper.rb&amp;diff=159232</id>
		<title>CSC/ECE 517 Fall 2024 - E2487. Reimplement authorization helper.rb</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2024_-_E2487._Reimplement_authorization_helper.rb&amp;diff=159232"/>
		<updated>2024-11-13T00:34:21Z</updated>

		<summary type="html">&lt;p&gt;Shassa22: /* JWT Token Overview */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Introduction ==&lt;br /&gt;
Expertiza currently uses session-based authentication in its AuthorizationHelper module. However, the new back-end reimplementation adopts JSON Web Token (JWT) for authentication. This transition is necessary to make the system more scalable, stateless, and secure. JWT-based authentication will replace session-based methods, requiring updates to the AuthorizationHelper module and associated methods.&lt;br /&gt;
&lt;br /&gt;
== Background ==&lt;br /&gt;
The AuthorizationHelper module in Expertiza plays a critical role in managing user permissions and access control within the system. It provides methods to verify a user’s privileges based on their assigned roles, such as Super-Admin, Admin, Instructor, TA, or Student. These methods check if the user is authorized to perform actions like submitting assignments, reviewing work, or participating in quizzes. Additionally, it determines whether a user is involved in specific assignments, either as a participant, instructor, or through TA mappings.&lt;br /&gt;
&lt;br /&gt;
==Problem Statement==&lt;br /&gt;
&lt;br /&gt;
Expertiza currently uses session-based authentication in its [[https://github.com/expertiza/expertiza/blob/main/app/helpers/authorization_helper.rb| AuthorizationHelper]] module. The [[https://github.com/expertiza/reimplementation-back-end| reimplementation-back-end]] however, uses JWT (JSON Web Token) based authentication. This requires a redesign of the AuthorizationHelper module to accommodate JWT-based authentication.&lt;br /&gt;
&lt;br /&gt;
The following points need to be taken care of as per the requirement&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;strong&amp;gt; JWT Creation &amp;lt;/strong&amp;gt;: &lt;br /&gt;
** Enable the system to process, verify, and decode JWT tokens.&lt;br /&gt;
** Use token data to authenticate users and authorize their actions.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;strong&amp;gt; Token expiry and revocation &amp;lt;/strong&amp;gt;: &lt;br /&gt;
** Implement token expiry mechanisms to ensure tokens have limited lifetimes.&lt;br /&gt;
** Add a strategy to handle token revocation, such as maintaining a revocation list.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;strong&amp;gt; Privilege Verification &amp;lt;/strong&amp;gt;:&lt;br /&gt;
** Update methods to validate user privileges using JWT claims.&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;strong&amp;gt; Testing and Documentation &amp;lt;/strong&amp;gt;: &lt;br /&gt;
** Write comprehensive unit tests for all JWT-related methods.&lt;br /&gt;
** Include clear documentation and comments to aid future developers.&lt;br /&gt;
&lt;br /&gt;
=Proposed Changes=&lt;br /&gt;
&lt;br /&gt;
== JWT Token Overview ==&lt;br /&gt;
&lt;br /&gt;
A JSON Web Token (JWT) is a compact, URL-safe token format commonly used for securely transmitting information between parties. It is widely used in web applications for authentication and authorization, as it allows information to be verified and trusted. In the context of our reimplemented AuthorizationHelper module, JWT tokens will replace session-based authentication, enabling stateless and more secure access control.&lt;br /&gt;
&lt;br /&gt;
A JWT Token consists of three main parts:&lt;br /&gt;
&lt;br /&gt;
*Header: Contains metadata about the token, such as the type (JWT) and the hashing algorithm used (e.g., HS256 or RS256).&lt;br /&gt;
*Payload: Includes claims, which are statements about an entity (typically, the user) and additional data like the user’s role and permissions.&lt;br /&gt;
*Signature: A cryptographic signature generated by encoding the header and payload with a secret key or private key, ensuring data integrity.&lt;br /&gt;
These three sections are separated by dots (.), forming a token that looks like this: &amp;lt;Header&amp;gt;.&amp;lt;Payload&amp;gt;.&amp;lt;Signature&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:JWT-Workflow.png|500px|center]]&lt;br /&gt;
&lt;br /&gt;
==Methods to implement==&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;strong&amp;gt;jwt_verify_and_decode(token)&amp;lt;/strong&amp;gt;: This method will verify and decode a JWT token and return the user's information, including role and claims. Successful verification of the token signature with the secret key will be followed by extraction of the payload which will contain important information about the user and their role for authentication and authorization.&lt;br /&gt;
* &amp;lt;strong&amp;gt;check_user_privileges(user_info, required_privilege)&amp;lt;/strong&amp;gt;: extract the user's roles or permissions from user_info (e.g., from the decoded JWT payload). Then, check if required_privilege exists within the user's permissions, returning true if it does and false otherwise to control access accordingly.&lt;br /&gt;
&lt;br /&gt;
==Existing Methods to update==&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;strong&amp;gt;current_user_is_a?(role_name)&amp;lt;/strong&amp;gt;:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
 def current_user_is_a?(role_name)&lt;br /&gt;
     current_user_and_role_exist? &amp;amp;&amp;amp; session[:user].role.name == role_name&lt;br /&gt;
 end&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Currently this method relies on the session variable which is populated at the time of login to determine the role of a user. This would have to be updated to decode the user's role from the JWT payload&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;strong&amp;gt;user_logged_in?&amp;lt;/strong&amp;gt;:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
 def user_logged_in?&lt;br /&gt;
     !session[:user].nil?&lt;br /&gt;
 end&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
This method will have to be updated to check the user's login status based on JWT validity&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;strong&amp;gt;current_user_has_privileges_of?(role_name)&amp;lt;/strong&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
 def current_user_has_privileges_of?(role_name)&lt;br /&gt;
    current_user_and_role_exist? &amp;amp;&amp;amp; session[:user].role.has_all_privileges_of?(Role.find_by(name: role_name))&lt;br /&gt;
 end&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Needs to remove dependency on session variable and get user information from the JWT's decoded payload&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;strong&amp;gt;current_user_and_role_exist?&amp;lt;/strong&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
 def current_user_and_role_exist?&lt;br /&gt;
     user_logged_in? &amp;amp;&amp;amp; !session[:user].role.nil?&lt;br /&gt;
 end&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Similarly, the role here needs to be checked from the JWT payload&lt;br /&gt;
Similarly methods like &amp;lt;strong&amp;gt;current_user_has_id?(id)&amp;lt;/strong&amp;gt; will also have to be updated to remove dependencies from the session object, which are all part of the [[https://github.com/expertiza/expertiza/blob/main/app/helpers/authorization_helper.rb| AuthorizationHelper]] module&lt;br /&gt;
&lt;br /&gt;
==Anticipated Outcomes==&lt;br /&gt;
1. Enhanced AuthorizationHelper Module with JWT Integration: &amp;lt;br&amp;gt;&lt;br /&gt;
Updated and operational AuthorizationHelper module that would use JWT-based authentication. The module would be restructured to incorporate token-based authentication checks, replacing prior session-based methods.&lt;br /&gt;
&lt;br /&gt;
2. Updated Associated Methods: &amp;lt;br&amp;gt;&lt;br /&gt;
Methods within the module will have to be updated to leverage JWT claims, ensuring authentication and authorization are handled based on token data. This will allow the module to verify user roles and permissions effectively through JWT claims.&lt;br /&gt;
&lt;br /&gt;
3. Comprehensive JWT Error Handling: &amp;lt;br&amp;gt;&lt;br /&gt;
Built-in error handling to manage potential JWT-related issues, such as token expiration, tampering, or invalid claims. This ensures that unauthorized access is &lt;br /&gt;
blocked, and clear error messages are provided when issues arise.&lt;br /&gt;
&lt;br /&gt;
4. Robust Unit Tests for Validation: &amp;lt;br&amp;gt;&lt;br /&gt;
A full suite of unit tests covering various scenarios, including normal, boundary, and edge cases, to validate each method’s functionality and confirm that all &lt;br /&gt;
JWT-based authentication flows work reliably.&lt;br /&gt;
&lt;br /&gt;
5. Detailed Documentation and Code Comments: &amp;lt;br&amp;gt;&lt;br /&gt;
In-depth documentation and comments would be added to each function, explaining purpose, usage, and JWT-related adjustments, aiding in code readability and future &lt;br /&gt;
maintenance.&lt;br /&gt;
&lt;br /&gt;
== Design Principles ==&lt;br /&gt;
The redesign of the AuthorizationHelper module for JWT-based authentication adheres to several core design principles to ensure scalability, maintainability, security, and user-centric functionality. Below, we outline the principles and their application in the context of this project:&lt;br /&gt;
&lt;br /&gt;
1. Single Responsibility Principle (SRP)&lt;br /&gt;
Definition: Each module or class should have one and only one reason to change.&lt;br /&gt;
Application:&lt;br /&gt;
* The AuthorizationHelper module is solely responsible for managing user authentication and authorization. By separating authentication (token verification) and authorization (privilege checking) into distinct methods, we ensure clarity and easier maintenance.&lt;br /&gt;
* Methods like jwt_verify_and_decode focus exclusively on token verification, while methods like check_user_privileges handle role-based privilege checks.&lt;br /&gt;
&lt;br /&gt;
2. Separation of Concerns&lt;br /&gt;
Definition: Different concerns of a system should be managed in distinct parts of the codebase.&lt;br /&gt;
Application:&lt;br /&gt;
* JWT creation and decoding are handled by the JsonWebToken class, ensuring the AuthorizationHelper module is not overloaded with cryptographic logic.&lt;br /&gt;
* Business logic for determining user privileges is distinct from the logic for managing user sessions or tokens, allowing modular testing and independent updates.&lt;br /&gt;
&lt;br /&gt;
3. Security by Design&lt;br /&gt;
Definition: Security considerations should be integral to the system's design from the outset.&lt;br /&gt;
Application:&lt;br /&gt;
* Sensitive token data (e.g., secret keys) is stored securely in environment variables.&lt;br /&gt;
* JWT tokens are validated for expiry and tampering before any privilege checks occur.&lt;br /&gt;
* Role-based access control (RBAC) ensures fine-grained control over user actions based on claims within the token.&lt;br /&gt;
* All communication involving JWTs is secured using HTTPS to prevent token interception.&lt;br /&gt;
&lt;br /&gt;
4. Statelessness&lt;br /&gt;
Definition: The system should not store client-specific data on the server between requests.&lt;br /&gt;
Application:&lt;br /&gt;
* JWT-based authentication eliminates the dependency on session storage, making the system stateless and scalable.&lt;br /&gt;
* All necessary information about the user is encoded in the token, allowing distributed servers to authenticate and authorize users without shared session data.&lt;br /&gt;
&lt;br /&gt;
5. DRY (Don’t Repeat Yourself)&lt;br /&gt;
Definition: Avoid duplication of code by abstracting reusable logic.&lt;br /&gt;
Application:&lt;br /&gt;
* Common operations, such as JWT decoding, privilege checks, and role comparisons, are encapsulated in reusable methods (jwt_verify_and_decode, check_user_privileges).&lt;br /&gt;
* This reduces redundancy and makes updates easier, as changes in logic need to be applied only once.&lt;br /&gt;
&lt;br /&gt;
6. Fail Fast&lt;br /&gt;
Definition: Systems should detect errors early and fail predictably.&lt;br /&gt;
Application:&lt;br /&gt;
* Methods like jwt_verify_and_decode and check_user_privileges handle invalid tokens or missing claims by immediately returning error responses.&lt;br /&gt;
* Explicit checks for token validity, role presence, and privilege requirements ensure errors are caught before proceeding to sensitive operations.&lt;br /&gt;
&lt;br /&gt;
7. Testability&lt;br /&gt;
Definition: Code should be designed to facilitate comprehensive and reliable testing.&lt;br /&gt;
Application:&lt;br /&gt;
* Modular methods, each with a single responsibility, make unit testing straightforward.&lt;br /&gt;
* Mock tokens can be used to test various scenarios, including valid, expired, and tampered tokens.&lt;br /&gt;
* Edge cases, such as missing roles or conflicting claims, are explicitly tested.&lt;br /&gt;
&lt;br /&gt;
8. Scalability&lt;br /&gt;
Definition: Systems should be able to handle increased load without significant changes to the architecture.&lt;br /&gt;
Application:&lt;br /&gt;
* Stateless JWT authentication allows multiple servers to handle authentication independently, enhancing horizontal scalability.&lt;br /&gt;
* A revocation list stored in a distributed cache (e.g., Redis) ensures token invalidation mechanisms scale with user growth.&lt;br /&gt;
&lt;br /&gt;
9. Code Readability&lt;br /&gt;
Definition: Code should be easy to read and understand for future developers.&lt;br /&gt;
Application:&lt;br /&gt;
* Each method is well-documented with clear comments explaining its purpose, inputs, outputs, and error handling.&lt;br /&gt;
* Logical naming conventions (check_user_privileges, current_user_is_a?) make the code self-explanatory.&lt;br /&gt;
&lt;br /&gt;
10. Extensibility&lt;br /&gt;
Definition: Design should allow easy addition of new features without affecting existing functionality.&lt;br /&gt;
Application:&lt;br /&gt;
* New roles or privileges can be added by updating the role hierarchy and claims in the JWT payload without modifying core logic.&lt;br /&gt;
* The modular design supports the addition of new methods or extensions for custom token handling or privilege checks.&lt;br /&gt;
&lt;br /&gt;
== Test Plan ==&lt;br /&gt;
&lt;br /&gt;
* Unit Tests:&lt;br /&gt;
** Test valid JWT decoding.&lt;br /&gt;
** Verify behavior with invalid or expired tokens.&lt;br /&gt;
** Check privilege verification for various roles.&lt;br /&gt;
&lt;br /&gt;
* Integration Tests:&lt;br /&gt;
** Simulate API requests with valid and invalid JWT tokens.&lt;br /&gt;
** Test behavior of endpoints using the updated AuthorizationHelper methods.&lt;br /&gt;
&lt;br /&gt;
* Edge Cases:&lt;br /&gt;
** Tokens with missing claims.&lt;br /&gt;
** Users with conflicting roles or privileges.&lt;br /&gt;
&lt;br /&gt;
== Team ==&lt;br /&gt;
===Mentor===&lt;br /&gt;
*Kashika Mallick (kmallick@ncsu.edu)&lt;br /&gt;
&lt;br /&gt;
===Members===&lt;br /&gt;
*Shafa Hassan (shassa22@ncsu.edu)&lt;br /&gt;
*Archit Gupta (agupta85@ncsu.edu)&lt;br /&gt;
*Ansh Ganatra (aganatr@ncsu.edu)&lt;/div&gt;</summary>
		<author><name>Shassa22</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2024_-_E2487._Reimplement_authorization_helper.rb&amp;diff=159068</id>
		<title>CSC/ECE 517 Fall 2024 - E2487. Reimplement authorization helper.rb</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2024_-_E2487._Reimplement_authorization_helper.rb&amp;diff=159068"/>
		<updated>2024-11-12T15:12:50Z</updated>

		<summary type="html">&lt;p&gt;Shassa22: /* Anticipated Outcomes */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Background ==&lt;br /&gt;
The AuthorizationHelper module in Expertiza plays a critical role in managing user permissions and access control within the system. It provides methods to verify a user’s privileges based on their assigned roles, such as Super-Admin, Admin, Instructor, TA, or Student. These methods check if the user is authorized to perform actions like submitting assignments, reviewing work, or participating in quizzes. Additionally, it determines whether a user is involved in specific assignments, either as a participant, instructor, or through TA mappings.&lt;br /&gt;
&lt;br /&gt;
==Problem Statement==&lt;br /&gt;
&lt;br /&gt;
Expertiza currently uses session-based authentication in its [[https://github.com/expertiza/expertiza/blob/main/app/helpers/authorization_helper.rb| AuthorizationHelper]] module. The [[https://github.com/expertiza/reimplementation-back-end| reimplementation-back-end]] however, uses JWT (JSON Web Token) based authentication. This requires a redesign of the AuthorizationHelper module to accommodate JWT-based authentication.&lt;br /&gt;
&lt;br /&gt;
The following points need to be taken care of as per the requirement&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;strong&amp;gt; JWT Creation &amp;lt;/strong&amp;gt;: Make sure that a valid JSON Web Token is created which stores necessary details about the user and their role&lt;br /&gt;
* &amp;lt;strong&amp;gt; Token expiry and revocation &amp;lt;/strong&amp;gt;: Token expiry and refresh mechanisms need to be implemented as well as a strategy for token revocation&lt;br /&gt;
* &amp;lt;strong&amp;gt; Remove dependency on session &amp;lt;/strong&amp;gt;: The system has to be refactored, configured and tested thoroughly to ensure that having migrated to JWT, there is no dependency on Rails' session&lt;br /&gt;
* Writing rspec test cases for all JWT authentication helper methods to ensure proper exception and error handling&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Methods to implement==&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;strong&amp;gt;jwt_verify_and_decode(token)&amp;lt;/strong&amp;gt;: This method will verify and decode a JWT token and return the user's information, including role and claims. Successful verification of the token signature with the secret key will be followed by extraction of the payload which will contain important information about the user and their role for authentication and authorization.&lt;br /&gt;
* &amp;lt;strong&amp;gt;check_user_privileges(user_info, required_privilege)&amp;lt;/strong&amp;gt;: extract the user's roles or permissions from user_info (e.g., from the decoded JWT payload). Then, check if required_privilege exists within the user's permissions, returning true if it does and false otherwise to control access accordingly.&lt;br /&gt;
&lt;br /&gt;
Further, the already existing methods need to be updated and need to be refactored to account for the new authentication system&lt;br /&gt;
&lt;br /&gt;
== JWT Token Overview ==&lt;br /&gt;
&lt;br /&gt;
A JSON Web Token (JWT) is a compact, URL-safe token format commonly used for securely transmitting information between parties. It is widely used in web applications for authentication and authorization, as it allows information to be verified and trusted. In the context of our reimplemented AuthorizationHelper module, JWT tokens will replace session-based authentication, enabling stateless and more secure access control.&lt;br /&gt;
&lt;br /&gt;
Structure of a JWT&lt;br /&gt;
A JWT consists of three main parts:&lt;br /&gt;
&lt;br /&gt;
*Header: Contains metadata about the token, such as the type (JWT) and the hashing algorithm used (e.g., HS256 or RS256).&lt;br /&gt;
*Payload: Includes claims, which are statements about an entity (typically, the user) and additional data like the user’s role and permissions.&lt;br /&gt;
*Signature: A cryptographic signature generated by encoding the header and payload with a secret key or private key, ensuring data integrity.&lt;br /&gt;
These three sections are separated by dots (.), forming a token that looks like this: &amp;lt;Header&amp;gt;.&amp;lt;Payload&amp;gt;.&amp;lt;Signature&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:JWT-Workflow.png|500px|center]]]&lt;br /&gt;
&lt;br /&gt;
==Anticipated Outcomes==&lt;br /&gt;
1. Enhanced AuthorizationHelper Module with JWT Integration: &amp;lt;br&amp;gt;&lt;br /&gt;
Updated and operational AuthorizationHelper module that would use JWT-based authentication. The module would be restructured to incorporate token-based authentication checks, replacing prior session-based methods.&lt;br /&gt;
&lt;br /&gt;
2. Updated Associated Methods: &amp;lt;br&amp;gt;&lt;br /&gt;
Methods within the module will have to be updated to leverage JWT claims, ensuring authentication and authorization are handled based on token data. This will allow the module to verify user roles and permissions effectively through JWT claims.&lt;br /&gt;
&lt;br /&gt;
3. Comprehensive JWT Error Handling: &amp;lt;br&amp;gt;&lt;br /&gt;
Built-in error handling to manage potential JWT-related issues, such as token expiration, tampering, or invalid claims. This ensures that unauthorized access is &lt;br /&gt;
blocked, and clear error messages are provided when issues arise.&lt;br /&gt;
&lt;br /&gt;
4. Robust Unit Tests for Validation: &amp;lt;br&amp;gt;&lt;br /&gt;
A full suite of unit tests covering various scenarios, including normal, boundary, and edge cases, to validate each method’s functionality and confirm that all &lt;br /&gt;
JWT-based authentication flows work reliably.&lt;br /&gt;
&lt;br /&gt;
5. Detailed Documentation and Code Comments: &amp;lt;br&amp;gt;&lt;br /&gt;
In-depth documentation and comments would be added to each function, explaining purpose, usage, and JWT-related adjustments, aiding in code readability and future &lt;br /&gt;
maintenance.&lt;br /&gt;
&lt;br /&gt;
== Test Plan ==&lt;br /&gt;
&lt;br /&gt;
== Team ==&lt;br /&gt;
===Mentor===&lt;br /&gt;
*Kashika Mallick  (kmallick@ncsu.edu)&lt;br /&gt;
&lt;br /&gt;
===Members===&lt;br /&gt;
*Shafa Hassan (shassa22@ncsu.edu)&lt;br /&gt;
*Archit Gupta (agupta85@ncsu.edu)&lt;br /&gt;
*Ansh Ganatra (aganatr@ncsu.edu)&lt;/div&gt;</summary>
		<author><name>Shassa22</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2024_-_E2487._Reimplement_authorization_helper.rb&amp;diff=159066</id>
		<title>CSC/ECE 517 Fall 2024 - E2487. Reimplement authorization helper.rb</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2024_-_E2487._Reimplement_authorization_helper.rb&amp;diff=159066"/>
		<updated>2024-11-12T15:11:44Z</updated>

		<summary type="html">&lt;p&gt;Shassa22: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Background ==&lt;br /&gt;
The AuthorizationHelper module in Expertiza plays a critical role in managing user permissions and access control within the system. It provides methods to verify a user’s privileges based on their assigned roles, such as Super-Admin, Admin, Instructor, TA, or Student. These methods check if the user is authorized to perform actions like submitting assignments, reviewing work, or participating in quizzes. Additionally, it determines whether a user is involved in specific assignments, either as a participant, instructor, or through TA mappings.&lt;br /&gt;
&lt;br /&gt;
==Problem Statement==&lt;br /&gt;
&lt;br /&gt;
Expertiza currently uses session-based authentication in its [[https://github.com/expertiza/expertiza/blob/main/app/helpers/authorization_helper.rb| AuthorizationHelper]] module. The [[https://github.com/expertiza/reimplementation-back-end| reimplementation-back-end]] however, uses JWT (JSON Web Token) based authentication. This requires a redesign of the AuthorizationHelper module to accommodate JWT-based authentication.&lt;br /&gt;
&lt;br /&gt;
The following points need to be taken care of as per the requirement&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;strong&amp;gt; JWT Creation &amp;lt;/strong&amp;gt;: Make sure that a valid JSON Web Token is created which stores necessary details about the user and their role&lt;br /&gt;
* &amp;lt;strong&amp;gt; Token expiry and revocation &amp;lt;/strong&amp;gt;: Token expiry and refresh mechanisms need to be implemented as well as a strategy for token revocation&lt;br /&gt;
* &amp;lt;strong&amp;gt; Remove dependency on session &amp;lt;/strong&amp;gt;: The system has to be refactored, configured and tested thoroughly to ensure that having migrated to JWT, there is no dependency on Rails' session&lt;br /&gt;
* Writing rspec test cases for all JWT authentication helper methods to ensure proper exception and error handling&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Methods to implement==&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;strong&amp;gt;jwt_verify_and_decode(token)&amp;lt;/strong&amp;gt;: This method will verify and decode a JWT token and return the user's information, including role and claims. Successful verification of the token signature with the secret key will be followed by extraction of the payload which will contain important information about the user and their role for authentication and authorization.&lt;br /&gt;
* &amp;lt;strong&amp;gt;check_user_privileges(user_info, required_privilege)&amp;lt;/strong&amp;gt;: extract the user's roles or permissions from user_info (e.g., from the decoded JWT payload). Then, check if required_privilege exists within the user's permissions, returning true if it does and false otherwise to control access accordingly.&lt;br /&gt;
&lt;br /&gt;
Further, the already existing methods need to be updated and need to be refactored to account for the new authentication system&lt;br /&gt;
&lt;br /&gt;
== JWT Token Overview ==&lt;br /&gt;
&lt;br /&gt;
A JSON Web Token (JWT) is a compact, URL-safe token format commonly used for securely transmitting information between parties. It is widely used in web applications for authentication and authorization, as it allows information to be verified and trusted. In the context of our reimplemented AuthorizationHelper module, JWT tokens will replace session-based authentication, enabling stateless and more secure access control.&lt;br /&gt;
&lt;br /&gt;
Structure of a JWT&lt;br /&gt;
A JWT consists of three main parts:&lt;br /&gt;
&lt;br /&gt;
*Header: Contains metadata about the token, such as the type (JWT) and the hashing algorithm used (e.g., HS256 or RS256).&lt;br /&gt;
*Payload: Includes claims, which are statements about an entity (typically, the user) and additional data like the user’s role and permissions.&lt;br /&gt;
*Signature: A cryptographic signature generated by encoding the header and payload with a secret key or private key, ensuring data integrity.&lt;br /&gt;
These three sections are separated by dots (.), forming a token that looks like this: &amp;lt;Header&amp;gt;.&amp;lt;Payload&amp;gt;.&amp;lt;Signature&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:JWT-Workflow.png|500px|center]]]&lt;br /&gt;
&lt;br /&gt;
==Anticipated Outcomes==&lt;br /&gt;
1. Enhanced AuthorizationHelper Module with JWT Integration: &amp;lt;br&amp;gt;&lt;br /&gt;
Updated and operational AuthorizationHelper module that would use JWT-based authentication. The module would be restructured to incorporate token-based authentication checks, replacing prior session-based methods.&lt;br /&gt;
&lt;br /&gt;
2. Updated Associated Methods: &amp;lt;br&amp;gt;&lt;br /&gt;
Methods within the module will have to be updated to leverage JWT claims, ensuring authentication and authorization are handled based on token data. This allows &lt;br /&gt;
the module to verify user roles and permissions effectively through JWT claims.&lt;br /&gt;
&lt;br /&gt;
3. Comprehensive JWT Error Handling: &amp;lt;br&amp;gt;&lt;br /&gt;
Built-in error handling to manage potential JWT-related issues, such as token expiration, tampering, or invalid claims. This ensures that unauthorized access is &lt;br /&gt;
blocked, and clear error messages are provided when issues arise.&lt;br /&gt;
&lt;br /&gt;
4. Robust Unit Tests for Validation: &amp;lt;br&amp;gt;&lt;br /&gt;
A full suite of unit tests covering various scenarios, including normal, boundary, and edge cases, to validate each method’s functionality and confirm that all &lt;br /&gt;
JWT-based authentication flows work reliably.&lt;br /&gt;
&lt;br /&gt;
5. Detailed Documentation and Code Comments: &amp;lt;br&amp;gt;&lt;br /&gt;
In-depth documentation and comments would be added to each function, explaining purpose, usage, and JWT-related adjustments, aiding in code readability and future &lt;br /&gt;
maintenance.&lt;br /&gt;
&lt;br /&gt;
== Test Plan ==&lt;br /&gt;
&lt;br /&gt;
== Team ==&lt;br /&gt;
===Mentor===&lt;br /&gt;
*Kashika Mallick  (kmallick@ncsu.edu)&lt;br /&gt;
&lt;br /&gt;
===Members===&lt;br /&gt;
*Shafa Hassan (shassa22@ncsu.edu)&lt;br /&gt;
*Archit Gupta (agupta85@ncsu.edu)&lt;br /&gt;
*Ansh Ganatra (aganatr@ncsu.edu)&lt;/div&gt;</summary>
		<author><name>Shassa22</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2024_-_E2487._Reimplement_authorization_helper.rb&amp;diff=159060</id>
		<title>CSC/ECE 517 Fall 2024 - E2487. Reimplement authorization helper.rb</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2024_-_E2487._Reimplement_authorization_helper.rb&amp;diff=159060"/>
		<updated>2024-11-12T14:59:08Z</updated>

		<summary type="html">&lt;p&gt;Shassa22: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Background ==&lt;br /&gt;
The AuthorizationHelper module in Expertiza plays a critical role in managing user permissions and access control within the system. It provides methods to verify a user’s privileges based on their assigned roles, such as Super-Admin, Admin, Instructor, TA, or Student. These methods check if the user is authorized to perform actions like submitting assignments, reviewing work, or participating in quizzes. Additionally, it determines whether a user is involved in specific assignments, either as a participant, instructor, or through TA mappings.&lt;br /&gt;
&lt;br /&gt;
==Problem Statement==&lt;br /&gt;
&lt;br /&gt;
Expertiza currently uses session-based authentication in its [[https://github.com/expertiza/expertiza/blob/main/app/helpers/authorization_helper.rb| AuthorizationHelper]] module. The [[https://github.com/expertiza/reimplementation-back-end| reimplementation-back-end]] however, uses JWT (JSON Web Token) based authentication. This requires a redesign of the AuthorizationHelper module to accommodate JWT-based authentication.&lt;br /&gt;
&lt;br /&gt;
The following points need to be taken care of as per the requirement&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;strong&amp;gt; JWT Creation &amp;lt;/strong&amp;gt;: Make sure that a valid JSON Web Token is created which stores necessary details about the user and their role&lt;br /&gt;
* &amp;lt;strong&amp;gt; Token expiry and revocation &amp;lt;/strong&amp;gt;: Token expiry and refresh mechanisms need to be implemented as well as a strategy for token revocation&lt;br /&gt;
* &amp;lt;strong&amp;gt; Remove dependency on session &amp;lt;/strong&amp;gt;: The system has to be refactored, configured and tested thoroughly to ensure that having migrated to JWT, there is no dependency on Rails' session&lt;br /&gt;
* Writing rspec test cases for all JWT authentication helper methods to ensure proper exception and error handling&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Methods to implement==&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;strong&amp;gt;jwt_verify_and_decode(token)&amp;lt;/strong&amp;gt;: This method will verify and decode a JWT token and return the user's information, including role and claims. Successful verification of the token signature with the secret key will be followed by extraction of the payload which will contain important information about the user and their role for authentication and authorization.&lt;br /&gt;
* &amp;lt;strong&amp;gt;check_user_privileges(user_info, required_privilege)&amp;lt;/strong&amp;gt;: extract the user's roles or permissions from user_info (e.g., from the decoded JWT payload). Then, check if required_privilege exists within the user's permissions, returning true if it does and false otherwise to control access accordingly.&lt;br /&gt;
&lt;br /&gt;
Further, the already existing methods need to be updated and need to be refactored to account for the new authentication system&lt;br /&gt;
&lt;br /&gt;
== JWT Token Overview ==&lt;br /&gt;
&lt;br /&gt;
A JSON Web Token (JWT) is a compact, URL-safe token format commonly used for securely transmitting information between parties. It is widely used in web applications for authentication and authorization, as it allows information to be verified and trusted. In the context of our reimplemented AuthorizationHelper module, JWT tokens will replace session-based authentication, enabling stateless and more secure access control.&lt;br /&gt;
&lt;br /&gt;
Structure of a JWT&lt;br /&gt;
A JWT consists of three main parts:&lt;br /&gt;
&lt;br /&gt;
*Header: Contains metadata about the token, such as the type (JWT) and the hashing algorithm used (e.g., HS256 or RS256).&lt;br /&gt;
*Payload: Includes claims, which are statements about an entity (typically, the user) and additional data like the user’s role and permissions.&lt;br /&gt;
*Signature: A cryptographic signature generated by encoding the header and payload with a secret key or private key, ensuring data integrity.&lt;br /&gt;
These three sections are separated by dots (.), forming a token that looks like this: &amp;lt;Header&amp;gt;.&amp;lt;Payload&amp;gt;.&amp;lt;Signature&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:JWT-Workflow.png|500px|center]]]&lt;br /&gt;
&lt;br /&gt;
== Test Plan ==&lt;br /&gt;
&lt;br /&gt;
== Team ==&lt;br /&gt;
===Mentor===&lt;br /&gt;
*Kashika Mallick  (kmallick@ncsu.edu)&lt;br /&gt;
&lt;br /&gt;
===Members===&lt;br /&gt;
*Shafa Hassan (shassa22@ncsu.edu)&lt;br /&gt;
*Archit Gupta (agupta85@ncsu.edu)&lt;br /&gt;
*Ansh Ganatra (aganatr@ncsu.edu)&lt;/div&gt;</summary>
		<author><name>Shassa22</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2024_-_E2487._Reimplement_authorization_helper.rb&amp;diff=159052</id>
		<title>CSC/ECE 517 Fall 2024 - E2487. Reimplement authorization helper.rb</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2024_-_E2487._Reimplement_authorization_helper.rb&amp;diff=159052"/>
		<updated>2024-11-12T14:39:52Z</updated>

		<summary type="html">&lt;p&gt;Shassa22: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Background ==&lt;br /&gt;
&lt;br /&gt;
==Problem Statement==&lt;br /&gt;
&lt;br /&gt;
Expertiza currently uses session-based authentication in its [[https://github.com/expertiza/expertiza/blob/main/app/helpers/authorization_helper.rb| AuthorizationHelper]] module. The [[https://github.com/expertiza/reimplementation-back-end| reimplementation-back-end]] however, uses JWT (JSON Web Token) based authentication. This requires a redesign of the AuthorizationHelper module to accommodate JWT-based authentication.&lt;br /&gt;
&lt;br /&gt;
The following points need to be taken care of as per the requirement&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;strong&amp;gt; JWT Creation &amp;lt;/strong&amp;gt;: Make sure that a valid JSON Web Token is created which stores necessary details about the user and their role&lt;br /&gt;
* &amp;lt;strong&amp;gt; Token expiry and revocation &amp;lt;/strong&amp;gt;: Token expiry and refresh mechanisms need to be implemented as well as a strategy for token revocation&lt;br /&gt;
* &amp;lt;strong&amp;gt; Remove dependency on session &amp;lt;/strong&amp;gt;: The system has to be refactored, configured and tested thoroughly to ensure that having migrated to JWT, there is no dependency on Rails' session&lt;br /&gt;
* Writing rspec test cases for all JWT authentication helper methods to ensure proper exception and error handling&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Methods to implement==&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;strong&amp;gt;jwt_verify_and_decode(token)&amp;lt;/strong&amp;gt;: This method will verify and decode a JWT token and return the user's information, including role and claims. Successful verification of the token signature with the secret key will be followed by extraction of the payload which will contain important information about the user and their role for authentication and authorization.&lt;br /&gt;
* &amp;lt;strong&amp;gt;check_user_privileges(user_info, required_privilege)&amp;lt;/strong&amp;gt;: extract the user's roles or permissions from user_info (e.g., from the decoded JWT payload). Then, check if required_privilege exists within the user's permissions, returning true if it does and false otherwise to control access accordingly.&lt;br /&gt;
&lt;br /&gt;
Further, the already existing methods need to be updated and need to be refactored to account for the new authentication system&lt;br /&gt;
&lt;br /&gt;
== JWT Token Overview ==&lt;br /&gt;
&lt;br /&gt;
A JSON Web Token (JWT) is a compact, URL-safe token format commonly used for securely transmitting information between parties. It is widely used in web applications for authentication and authorization, as it allows information to be verified and trusted. In the context of our reimplemented AuthorizationHelper module, JWT tokens will replace session-based authentication, enabling stateless and more secure access control.&lt;br /&gt;
&lt;br /&gt;
Structure of a JWT&lt;br /&gt;
A JWT consists of three main parts:&lt;br /&gt;
&lt;br /&gt;
*Header: Contains metadata about the token, such as the type (JWT) and the hashing algorithm used (e.g., HS256 or RS256).&lt;br /&gt;
*Payload: Includes claims, which are statements about an entity (typically, the user) and additional data like the user’s role and permissions.&lt;br /&gt;
*Signature: A cryptographic signature generated by encoding the header and payload with a secret key or private key, ensuring data integrity.&lt;br /&gt;
These three sections are separated by dots (.), forming a token that looks like this: &amp;lt;Header&amp;gt;.&amp;lt;Payload&amp;gt;.&amp;lt;Signature&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:JWT-Workflow.png|500px|center]]]&lt;br /&gt;
&lt;br /&gt;
== Test Plan ==&lt;br /&gt;
&lt;br /&gt;
== Team ==&lt;br /&gt;
===Mentor===&lt;br /&gt;
*Kashika Mallick  (kmallick@ncsu.edu)&lt;br /&gt;
&lt;br /&gt;
===Members===&lt;br /&gt;
*Shafa Hassan (shassa22@ncsu.edu)&lt;br /&gt;
*Archit Gupta (agupta85@ncsu.edu)&lt;br /&gt;
*Ansh Ganatra (aganatr@ncsu.edu)&lt;/div&gt;</summary>
		<author><name>Shassa22</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2024_-_E2487._Reimplement_authorization_helper.rb&amp;diff=159051</id>
		<title>CSC/ECE 517 Fall 2024 - E2487. Reimplement authorization helper.rb</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2024_-_E2487._Reimplement_authorization_helper.rb&amp;diff=159051"/>
		<updated>2024-11-12T14:37:07Z</updated>

		<summary type="html">&lt;p&gt;Shassa22: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Background ==&lt;br /&gt;
&lt;br /&gt;
==Problem Statement==&lt;br /&gt;
&lt;br /&gt;
Expertiza currently uses session-based authentication in its [[https://github.com/expertiza/expertiza/blob/main/app/helpers/authorization_helper.rb| AuthorizationHelper]] module. The [[https://github.com/expertiza/reimplementation-back-end| reimplementation-back-end]] however, uses JWT (JSON Web Token) based authentication. This requires a redesign of the AuthorizationHelper module to accommodate JWT-based authentication.&lt;br /&gt;
&lt;br /&gt;
The following points need to be taken care of as per the requirement&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;strong&amp;gt; JWT Creation &amp;lt;/strong&amp;gt;: Make sure that a valid JSON Web Token is created which stores necessary details about the user and their role&lt;br /&gt;
* &amp;lt;strong&amp;gt; Token expiry and revocation &amp;lt;/strong&amp;gt;: Token expiry and refresh mechanisms need to be implemented as well as a strategy for token revocation&lt;br /&gt;
* &amp;lt;strong&amp;gt; Remove dependency on session &amp;lt;/strong&amp;gt;: The system has to be refactored, configured and tested thoroughly to ensure that having migrated to JWT, there is no dependency on Rails' session&lt;br /&gt;
* Writing rspec test cases for all JWT authentication helper methods to ensure proper exception and error handling&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Methods to implement==&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;strong&amp;gt;jwt_verify_and_decode(token)&amp;lt;/strong&amp;gt;: This method will verify and decode a JWT token and return the user's information, including role and claims. Successful verification of the token signature with the secret key will be followed by extraction of the payload which will contain important information about the user and their role for authentication and authorization.&lt;br /&gt;
* &amp;lt;strong&amp;gt;check_user_privileges(user_info, required_privilege)&amp;lt;/strong&amp;gt;: extract the user's roles or permissions from user_info (e.g., from the decoded JWT payload). Then, check if required_privilege exists within the user's permissions, returning true if it does and false otherwise to control access accordingly.&lt;br /&gt;
&lt;br /&gt;
Further, the already existing methods need to be updated and need to be refactored to account for the new authentication system&lt;br /&gt;
&lt;br /&gt;
== JWT Token Overview ==&lt;br /&gt;
&lt;br /&gt;
A JSON Web Token (JWT) is a compact, URL-safe token format commonly used for securely transmitting information between parties. It is widely used in web applications for authentication and authorization, as it allows information to be verified and trusted. In the context of our reimplemented AuthorizationHelper module, JWT tokens will replace session-based authentication, enabling stateless and more secure access control.&lt;br /&gt;
&lt;br /&gt;
Structure of a JWT&lt;br /&gt;
A JWT consists of three main parts:&lt;br /&gt;
&lt;br /&gt;
*Header: Contains metadata about the token, such as the type (JWT) and the hashing algorithm used (e.g., HS256 or RS256).&lt;br /&gt;
*Payload: Includes claims, which are statements about an entity (typically, the user) and additional data like the user’s role and permissions.&lt;br /&gt;
*Signature: A cryptographic signature generated by encoding the header and payload with a secret key or private key, ensuring data integrity.&lt;br /&gt;
These three sections are separated by dots (.), forming a token that looks like this: &amp;lt;Header&amp;gt;.&amp;lt;Payload&amp;gt;.&amp;lt;Signature&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:JWT-Workflow.png|500px|center]]]&lt;/div&gt;</summary>
		<author><name>Shassa22</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=File:JWT-Workflow.png&amp;diff=159050</id>
		<title>File:JWT-Workflow.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=File:JWT-Workflow.png&amp;diff=159050"/>
		<updated>2024-11-12T14:34:12Z</updated>

		<summary type="html">&lt;p&gt;Shassa22: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Shassa22</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2024_-_E2487._Reimplement_authorization_helper.rb&amp;diff=159049</id>
		<title>CSC/ECE 517 Fall 2024 - E2487. Reimplement authorization helper.rb</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2024_-_E2487._Reimplement_authorization_helper.rb&amp;diff=159049"/>
		<updated>2024-11-12T14:32:14Z</updated>

		<summary type="html">&lt;p&gt;Shassa22: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Background ==&lt;br /&gt;
&lt;br /&gt;
==Problem Statement==&lt;br /&gt;
&lt;br /&gt;
Expertiza currently uses session-based authentication in its [[https://github.com/expertiza/expertiza/blob/main/app/helpers/authorization_helper.rb| AuthorizationHelper]] module. The [[https://github.com/expertiza/reimplementation-back-end| reimplementation-back-end]] however, uses JWT (JSON Web Token) based authentication. This requires a redesign of the AuthorizationHelper module to accommodate JWT-based authentication.&lt;br /&gt;
&lt;br /&gt;
The following points need to be taken care of as per the requirement&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;strong&amp;gt; JWT Creation &amp;lt;/strong&amp;gt;: Make sure that a valid JSON Web Token is created which stores necessary details about the user and their role&lt;br /&gt;
* &amp;lt;strong&amp;gt; Token expiry and revocation &amp;lt;/strong&amp;gt;: Token expiry and refresh mechanisms need to be implemented as well as a strategy for token revocation&lt;br /&gt;
* &amp;lt;strong&amp;gt; Remove dependency on session &amp;lt;/strong&amp;gt;: The system has to be refactored, configured and tested thoroughly to ensure that having migrated to JWT, there is no dependency on Rails' session&lt;br /&gt;
* Writing rspec test cases for all JWT authentication helper methods to ensure proper exception and error handling&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Methods to implement==&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;strong&amp;gt;jwt_verify_and_decode(token)&amp;lt;/strong&amp;gt;: This method will verify and decode a JWT token and return the user's information, including role and claims. Successful verification of the token signature with the secret key will be followed by extraction of the payload which will contain important information about the user and their role for authentication and authorization.&lt;br /&gt;
* &amp;lt;strong&amp;gt;check_user_privileges(user_info, required_privilege)&amp;lt;/strong&amp;gt;: extract the user's roles or permissions from user_info (e.g., from the decoded JWT payload). Then, check if required_privilege exists within the user's permissions, returning true if it does and false otherwise to control access accordingly.&lt;br /&gt;
&lt;br /&gt;
Further, the already existing methods need to be updated and need to be refactored to account for the new authentication system&lt;br /&gt;
&lt;br /&gt;
== JWT Token Overview ==&lt;br /&gt;
&lt;br /&gt;
A JSON Web Token (JWT) is a compact, URL-safe token format commonly used for securely transmitting information between parties. It is widely used in web applications for authentication and authorization, as it allows information to be verified and trusted. In the context of our reimplemented AuthorizationHelper module, JWT tokens will replace session-based authentication, enabling stateless and more secure access control.&lt;br /&gt;
&lt;br /&gt;
Structure of a JWT&lt;br /&gt;
A JWT consists of three main parts:&lt;br /&gt;
&lt;br /&gt;
*Header: Contains metadata about the token, such as the type (JWT) and the hashing algorithm used (e.g., HS256 or RS256).&lt;br /&gt;
*Payload: Includes claims, which are statements about an entity (typically, the user) and additional data like the user’s role and permissions.&lt;br /&gt;
*Signature: A cryptographic signature generated by encoding the header and payload with a secret key or private key, ensuring data integrity.&lt;br /&gt;
These three sections are separated by dots (.), forming a token that looks like this: &amp;lt;Header&amp;gt;.&amp;lt;Payload&amp;gt;.&amp;lt;Signature&amp;gt;&lt;/div&gt;</summary>
		<author><name>Shassa22</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2024_-_E2487._Reimplement_authorization_helper.rb&amp;diff=159047</id>
		<title>CSC/ECE 517 Fall 2024 - E2487. Reimplement authorization helper.rb</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2024_-_E2487._Reimplement_authorization_helper.rb&amp;diff=159047"/>
		<updated>2024-11-12T14:20:05Z</updated>

		<summary type="html">&lt;p&gt;Shassa22: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Background ==&lt;br /&gt;
&lt;br /&gt;
==Problem Statement==&lt;br /&gt;
&lt;br /&gt;
Expertiza currently uses session-based authentication in its [[https://github.com/expertiza/expertiza/blob/main/app/helpers/authorization_helper.rb| AuthorizationHelper]] module. The [[https://github.com/expertiza/reimplementation-back-end| reimplementation-back-end]] however, uses JWT (JSON Web Token) based authentication. This requires a redesign of the AuthorizationHelper module to accommodate JWT-based authentication.&lt;br /&gt;
&lt;br /&gt;
The following points need to be taken care of as per the requirement&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;strong&amp;gt; JWT Creation &amp;lt;/strong&amp;gt;: Make sure that a valid JSON Web Token is created which stores necessary details about the user and their role&lt;br /&gt;
* &amp;lt;strong&amp;gt; Token expiry and revocation &amp;lt;/strong&amp;gt;: Token expiry and refresh mechanisms need to be implemented as well as a strategy for token revocation&lt;br /&gt;
* &amp;lt;strong&amp;gt; Remove dependency on session &amp;lt;/strong&amp;gt;: The system has to be refactored, configured and tested thoroughly to ensure that having migrated to JWT, there is no dependency on Rails' session&lt;br /&gt;
* Writing rspec test cases for all JWT authentication helper methods to ensure proper exception and error handling&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Methods to implement==&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;strong&amp;gt;jwt_verify_and_decode(token)&amp;lt;/strong&amp;gt;: This method will verify and decode a JWT token and return the user's information, including role and claims. Successful verification of the token signature with the secret key will be followed by extraction of the payload which will contain important information about the user and their role for authentication and authorization.&lt;br /&gt;
* &amp;lt;strong&amp;gt;check_user_privileges(user_info, required_privilege)&amp;lt;/strong&amp;gt;: extract the user's roles or permissions from user_info (e.g., from the decoded JWT payload). Then, check if required_privilege exists within the user's permissions, returning true if it does and false otherwise to control access accordingly.&lt;br /&gt;
&lt;br /&gt;
Further, the already existing methods need to be updated and need to be refactored to account for the new authentication system&lt;br /&gt;
&lt;br /&gt;
== JWT Token Overview ==&lt;/div&gt;</summary>
		<author><name>Shassa22</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2024_-_E2469._Reimplement_grades/view_team&amp;diff=157689</id>
		<title>CSC/ECE 517 Fall 2024 - E2469. Reimplement grades/view team</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2024_-_E2469._Reimplement_grades/view_team&amp;diff=157689"/>
		<updated>2024-10-29T21:42:46Z</updated>

		<summary type="html">&lt;p&gt;Shassa22: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Background ==&lt;br /&gt;
Expertiza is an open-source learning management system developed with Ruby on Rails, facilitating assignment creation, team management, and a structured peer review process. Designed for educational settings, Expertiza offers instructors tools to assign topics, manage teams, and allow students to collaborate on various assignment formats, including URLs and wiki pages. Its peer review functionality encourages students to provide feedback, promoting a collaborative learning experience.&lt;br /&gt;
&lt;br /&gt;
==Problem Statement ==&lt;br /&gt;
This project focuses on reimplementing the grades/view_team page in Expertiza. The current interface lacks modern design aesthetics and usability standards making it challenging for users to access and understand grading data efficiently. Our objective is to develop a fully functional and visually cohesive front end for the Grades View page. By enhancing visual consistency, simplifying information display, improving responsiveness, giving users freedom to select views, and intuitive layout, this redesign aims to provide an improved user experience.&lt;br /&gt;
&lt;br /&gt;
== Reimplementation and Improvements ==&lt;br /&gt;
=== Enhanced Peer Review and Author Feedback Filtering ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
==== I) Existing Design ====&lt;br /&gt;
[[File:ShowReviews Feedback.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
==== II) Modified Design ====&lt;br /&gt;
[[File:GradesView2.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
==== III) Files Changed for this Modification ====&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
1. [https://github.com/rarchitgupta/reimplementation-front-end/blob/feature/review-table-improvements/src/pages/ViewTeamGrades/Statistics.tsx Statistics.tsx]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
2. [https://github.com/rarchitgupta/reimplementation-front-end/blob/feature/review-table-improvements/src/pages/ViewTeamGrades/Filters.tsx Filters.tsx]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
3. [https://github.com/rarchitgupta/reimplementation-front-end/blob/feature/review-table-improvements/src/pages/ViewTeamGrades/ShowReviews.tsx ShowReviews.tsx]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
The requirement in the statistic section of the grade page was to make changes to show dropdown selection menu for &amp;quot;Author Feedback&amp;quot; or &amp;quot;Reviews&amp;quot; and further add filtering based on the rounds (Round 1 or Round 2 or All) for &amp;quot;Author Feedback&amp;quot; or &amp;quot;Reviews&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
To carry out the changes on first selection menu, we had toggle reviews and toggle feedback event listeners defined in statistics based on which we displayed the data using ShowReviews react componenet. These event listeners were passed to Filters component and which had drop down UI component for &amp;quot;Author Feedback&amp;quot; or &amp;quot;Reviews&amp;quot;. Based on the option selected either toggleShowReviews or toggleAuthorFeedback were invoked.&lt;br /&gt;
&lt;br /&gt;
To do make further changes to display data according to rounds, first in the Statistics component of react application we defined the state &amp;quot;roundSelected&amp;quot; and also defined listener function to update round (selectRound). This event listener function was passed to Filter react component which had the UI element for second drop down for rounds selection. Based on the round selected from the dropdown, we invoked selectRound event listener function. When this event listener function is invoked we update the state variable &amp;quot;roundSelected&amp;quot;. And then this state variable is passed as props to ShowReviews react component which is responsible for iterating over &amp;quot;Author Feedback&amp;quot; or &amp;quot;Reviews&amp;quot; data and added the logic to show data with rounds based on the prop.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
==== IV) Rationale ====&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
The &amp;quot;Show Reviews&amp;quot; and &amp;quot;Show Author Feedback&amp;quot; link displays all the peer reviews from Round 1 and Round 2 and author's feedback from both rounds in a single view. This forces the users to scroll all the rounds' reviews and feedback sequentially which can be overwhelming when users wish to view feedback from a specific round. Also, users don't have the freedom and control to choose to view all rounds' reviews/feedbacks or specific rounds' reviews/feedbacks. Additionally, a single view adds visual clutter and increases cognitive load. &lt;br /&gt;
&lt;br /&gt;
With the 2 dropdowns users have more control over which reviews they would like to view. The first dropdown lets them choose from viewing reviews or author's feedback for the reviews provided, while the second dropdown allows them to select specific rounds (Round 1, Round 2, or both). This gives users the flexibility to focus on specific rounds as needed. Separating the reviews/author feedback based on a round filter reduces clutter, creating a cleaner, more organized layout. Users can now view reviews and feedback in a more structured way, which simplifies navigation and enhances readability and improves satisfaction.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Replaced the disorganized display of scores for submitted work, author feedback, and teammate reviews with a Structured Scorecard table for clearer presentation. ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
==== I) Existing Design ====&lt;br /&gt;
[[File:OldScorecard.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
==== II) Modified Design ====&lt;br /&gt;
[[File:NewScorecard.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
==== III) [Design pattern/solid/dry][TODO] ====&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
==== IV) [Code Snippet][TODO] ====&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
==== V) Rationale ====&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
The previous display of scores for submitted work, author feedback, and teammate reviews was fragmented and lacked clarity, making it difficult for users to interpret performance metrics at a glance. By introducing a structured scorecard table, we present all relevant data in a clear, organized format, enabling users to easily compare and understand scores across different rounds. This redesign improves usability by offering a more intuitive layout and better visibility of grading information.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== Removed the names of reviewers as they are supposed to remain anonymous. ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
==== I) Existing Design ====&lt;br /&gt;
[[File:ReviewerNameChange.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
==== II) Modified Design ====&lt;br /&gt;
[[File:ReviewerNameChange2.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
==== III) [Design pattern/solid/dry][TODO] ====&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
==== IV) [Code Snippet][TODO] ====&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
==== V) Rationale ====&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
The reason for this change is to shift focus more on quality and content of feedback and reviews rather than identity of reviewers. Anonymity encourages the reviewers to provide constructive criticism as reviewers will review without concern for any issues or repercussions.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== Removed information that didn’t add value ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
==== I) Existing Design ====&lt;br /&gt;
[[File:Contributer RangeRemoved.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
==== II) [Design pattern/solid/dry][TODO] ====&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
==== IV) [Code Snippet][TODO] ====&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
==== V) Rationale ====&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
Contributor Name: The displayed contributor name only indicated the team member who submitted the work, which could cause confusion, as all team members contribute to the assignment. Additionally, team members' names are already displayed at the top of the page, making this information redundant. Removing it reduces visual clutter, focusing the user's attention on relevant grading information.&lt;br /&gt;
Score Range: The score range provided minimal value in understanding the overall grade, as the average score alone conveys a clearer summary of performance. By removing the range, the layout is simplified, helping users to focus on meaningful metrics without unnecessary data.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== Styling of Review Table ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
==== I) Existing Design ====&lt;br /&gt;
[Image to be Added]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
==== II) Modified Design ====&lt;br /&gt;
[Image to be Added]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
==== III) [Design pattern/solid/dry][TODO] ====&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
==== IV) [Code Snippet][TODO] ====&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
==== V) Rationale ====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== Fixed styling Toggle Question List ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
==== I) Existing Design ====&lt;br /&gt;
[[File:ToggleChange1.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
==== II) Modified Design ====&lt;br /&gt;
[[File:ToggleChange.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
==== III) [Design pattern/solid/dry][TODO] ====&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
==== IV) [Code Snippet][TODO] ====&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
==== V) Rationale ====&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
The &amp;quot;Toggle Question List&amp;quot; styling was refined for better alignment and readability, enhancing the clarity of the page’s interactive elements.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== Unified Review Rounds Button and Interface Styling Update ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
==== I) Existing Design ====&lt;br /&gt;
[[File:ReviewTableSeparateView.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
==== II) Modified Design ====&lt;br /&gt;
[[File:UnifiedReviewTable.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
==== III) [Design pattern/solid/dry][TODO] ====&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
==== IV) [Code Snippet][TODO] ====&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
==== V) Rationale ====&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
Addition of “All Rounds’’ Button: The new &amp;quot;All Rounds&amp;quot; button allows users to view reviews from multiple rounds in a single table. This eliminates the need to switch between individual rounds, giving users a comprehensive view of the feedback across all rounds at once. &lt;br /&gt;
Color and Style Consistency: The colors and styles of the buttons were updated to match Expertiza’s established color scheme, ensuring a cohesive and professional look across the platform. This consistency aids in navigation, making the interface feel more intuitive and visually appealing. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== Expanded Submission Links Display ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
==== I) Existing Design ====&lt;br /&gt;
[[File:ToggleSubmission.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
==== II) Modified Design ====&lt;br /&gt;
[[File:ExpandedSubmissions.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
==== III) [Design pattern/solid/dry][TODO] ====&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
==== IV) [Code Snippet][TODO] ====&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
==== V) Rationale ====&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
The change enhances usability by directly presenting all relevant submission links to users without requiring additional interaction to show or hide them. This expanded view allows for quicker access to project resources and a more streamlined experience, improving efficiency and clarity in the peer review process on the grades/view_team page.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
== Testing ==&lt;br /&gt;
We have conducted comprehensive manual testing to verify the functionality, usability, and visual consistency of the reimplemented features.&lt;br /&gt;
&lt;br /&gt;
1. &amp;lt;b&amp;gt;Peer Review and Feedback Filter:&amp;lt;/b&amp;gt; Tested the dropdown options to confirm that users can correctly view specific rounds of peer reviews or author feedback as selected. &lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
2. &amp;lt;b&amp;gt;Scorecard Table:&amp;lt;/b&amp;gt; Checked that the Scorecard table displays relevant scores in an organized manner and ensured that the scoring data is correctly calculated.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
3 &amp;lt;b&amp;gt;Submission Links:&amp;lt;/b&amp;gt; Verified that the submission links were directly displayed, without the need to toggle them. Each link was tested individually to ensure it opens the correct resource without errors.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
4. &amp;lt;b&amp;gt;Styling Consistency:&amp;lt;/b&amp;gt; We compared the new styling of buttons, dropdowns, and tables with the rest of Expertiza's interface to ensure a cohesive look.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
5. &amp;lt;b&amp;gt;Anonymity of Reviewers:&amp;lt;/b&amp;gt; Verified that reviewers’ names were properly hidden, preserving anonymity throughout the review display&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
6. &amp;lt;b&amp;gt;All Rounds Button:&amp;lt;/b&amp;gt; Tested the &amp;quot;All Rounds&amp;quot; button by viewing multiple rounds of reviews in a single table to confirm that users can easily access and interpret cumulative feedback without toggling between views.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
== Repository Links ==&lt;br /&gt;
[https://github.com/rarchitgupta/reimplementation-front-end FrontEnd]&lt;br /&gt;
&lt;br /&gt;
[https://github.com/expertiza/reimplementation-back-end Backend]&lt;br /&gt;
&lt;br /&gt;
[https://github.com/expertiza/reimplementation-front-end/pull/62 Pull Request]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
== Project Mentor ==&lt;br /&gt;
Kashika Mallick  (kmallick@ncsu.edu)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
== Team Members ==&lt;br /&gt;
Shafa Hassan (shassa22@ncsu.edu)&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
Archit Gupta (agupta85@ncsu.edu)&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
Ansh Ganatra (aganatr@ncsu.edu)&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;/div&gt;</summary>
		<author><name>Shassa22</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2024_-_E2469._Reimplement_grades/view_team&amp;diff=157676</id>
		<title>CSC/ECE 517 Fall 2024 - E2469. Reimplement grades/view team</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2024_-_E2469._Reimplement_grades/view_team&amp;diff=157676"/>
		<updated>2024-10-29T21:39:31Z</updated>

		<summary type="html">&lt;p&gt;Shassa22: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Background ==&lt;br /&gt;
Expertiza is an open-source learning management system developed with Ruby on Rails, facilitating assignment creation, team management, and a structured peer review process. Designed for educational settings, Expertiza offers instructors tools to assign topics, manage teams, and allow students to collaborate on various assignment formats, including URLs and wiki pages. Its peer review functionality encourages students to provide feedback, promoting a collaborative learning experience.&lt;br /&gt;
&lt;br /&gt;
==Problem Statement ==&lt;br /&gt;
This project focuses on reimplementing the grades/view_team page in Expertiza. The current interface lacks modern design aesthetics and usability standards making it challenging for users to access and understand grading data efficiently. Our objective is to develop a fully functional and visually cohesive front end for the Grades View page. By enhancing visual consistency, simplifying information display, improving responsiveness, giving users freedom to select views, and intuitive layout, this redesign aims to provide an improved user experience.&lt;br /&gt;
&lt;br /&gt;
== Reimplementation and Improvements ==&lt;br /&gt;
=== Enhanced Peer Review and Author Feedback Filtering ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
==== I) Existing Design ====&lt;br /&gt;
[[File:ShowReviews Feedback.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
==== II) Modified Design ====&lt;br /&gt;
[[File:GradesView2.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
==== III) Files Changed for this Modification ====&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
1. [https://github.com/rarchitgupta/reimplementation-front-end/blob/feature/review-table-improvements/src/pages/ViewTeamGrades/Statistics.tsx Statistics.tsx]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
2. [https://github.com/rarchitgupta/reimplementation-front-end/blob/feature/review-table-improvements/src/pages/ViewTeamGrades/Filters.tsx Filters.tsx]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
3. [https://github.com/rarchitgupta/reimplementation-front-end/blob/feature/review-table-improvements/src/pages/ViewTeamGrades/ShowReviews.tsx ShowReviews.tsx]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
The requirement in the statistic section of the grade page was to make changes to show dropdown selection menu for &amp;quot;Author Feedback&amp;quot; or &amp;quot;Reviews&amp;quot; and further add filtering based on the rounds (Round 1 or Round 2 or All) for &amp;quot;Author Feedback&amp;quot; or &amp;quot;Reviews&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
To carry out the changes on first selection menu, we had toggle reviews and toggle feedback event listeners defined in statistics based on which we displayed the data using ShowReviews react componenet. These event listeners were passed to Filters component and which had drop down UI component for &amp;quot;Author Feedback&amp;quot; or &amp;quot;Reviews&amp;quot;. Based on the option selected either toggleShowReviews or toggleAuthorFeedback were invoked.&lt;br /&gt;
&lt;br /&gt;
To do make further changes to display data according to rounds, first in the Statistics component of react application we defined the state &amp;quot;roundSelected&amp;quot; and also defined listener function to update round (selectRound). This event listener function was passed to Filter react component which had the UI element for second drop down for rounds selection. Based on the round selected from the dropdown, we invoked selectRound event listener function. When this event listener function is invoked we update the state variable &amp;quot;roundSelected&amp;quot;. And then this state variable is passed as props to ShowReviews react component which is responsible for iterating over &amp;quot;Author Feedback&amp;quot; or &amp;quot;Reviews&amp;quot; data and added the logic to show data with rounds based on the prop.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
==== IV) Rationale ====&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
The &amp;quot;Show Reviews&amp;quot; and &amp;quot;Show Author Feedback&amp;quot; link displays all the peer reviews from Round 1 and Round 2 and author's feedback from both rounds in a single view. This forces the users to scroll all the rounds' reviews and feedback sequentially which can be overwhelming when users wish to view feedback from a specific round. Also, users don't have the freedom and control to choose to view all rounds' reviews/feedbacks or specific rounds' reviews/feedbacks. Additionally, a single view adds visual clutter and increases cognitive load. &lt;br /&gt;
&lt;br /&gt;
With the 2 dropdowns users have more control over which reviews they would like to view. The first dropdown lets them choose from viewing reviews or author's feedback for the reviews provided, while the second dropdown allows them to select specific rounds (Round 1, Round 2, or both). This gives users the flexibility to focus on specific rounds as needed. Separating the reviews/author feedback based on a round filter reduces clutter, creating a cleaner, more organized layout. Users can now view reviews and feedback in a more structured way, which simplifies navigation and enhances readability and improves satisfaction.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Replaced the disorganized display of scores for submitted work, author feedback, and teammate reviews with a Structured Scorecard table for clearer presentation. ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
==== I) Existing Design ====&lt;br /&gt;
[[File:OldScorecard.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
==== II) Modified Design ====&lt;br /&gt;
[[File:NewScorecard.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
==== III) [Design pattern/solid/dry][TODO] ====&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
==== IV) [Code Snippet][TODO] ====&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
==== V) Rationale ====&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
The previous display of scores for submitted work, author feedback, and teammate reviews was fragmented and lacked clarity, making it difficult for users to interpret performance metrics at a glance. By introducing a structured scorecard table, we present all relevant data in a clear, organized format, enabling users to easily compare and understand scores across different rounds. This redesign improves usability by offering a more intuitive layout and better visibility of grading information.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== Removed the names of reviewers as they are supposed to remain anonymous. ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
==== I) Existing Design ====&lt;br /&gt;
[[File:ReviewerNameChange.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
==== II) Modified Design ====&lt;br /&gt;
[[File:ReviewerNameChange2.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
==== III) [Design pattern/solid/dry][TODO] ====&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
==== IV) [Code Snippet][TODO] ====&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
==== V) Rationale ====&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
The reason for this change is to shift focus more on quality and content of feedback and reviews rather than identity of reviewers. Anonymity encourages the reviewers to provide constructive criticism as reviewers will review without concern for any issues or repercussions.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== Removed information that didn’t add value ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
==== I) Existing Design ====&lt;br /&gt;
[[File:Contributer RangeRemoved.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
==== II) [Design pattern/solid/dry][TODO] ====&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
==== IV) [Code Snippet][TODO] ====&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
==== V) Rationale ====&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
Contributor Name: The displayed contributor name only indicated the team member who submitted the work, which could cause confusion, as all team members contribute to the assignment. Additionally, team members' names are already displayed at the top of the page, making this information redundant. Removing it reduces visual clutter, focusing the user's attention on relevant grading information.&lt;br /&gt;
Score Range: The score range provided minimal value in understanding the overall grade, as the average score alone conveys a clearer summary of performance. By removing the range, the layout is simplified, helping users to focus on meaningful metrics without unnecessary data.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== Styling of Review Table ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
==== I) Existing Design ====&lt;br /&gt;
[Image to be Added]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
==== II) Modified Design ====&lt;br /&gt;
[Image to be Added]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
==== III) [Design pattern/solid/dry][TODO] ====&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
==== IV) [Code Snippet][TODO] ====&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
==== V) Rationale ====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== Fixed styling Toggle Question List ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
==== I) Existing Design ====&lt;br /&gt;
[[File:ToggleChange1.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
==== II) Modified Design ====&lt;br /&gt;
[[File:ToggleChange.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
==== III) [Design pattern/solid/dry][TODO] ====&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
==== IV) [Code Snippet][TODO] ====&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
==== V) Rationale ====&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
The &amp;quot;Toggle Question List&amp;quot; styling was refined for better alignment and readability, enhancing the clarity of the page’s interactive elements.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== Unified Review Rounds Button and Interface Styling Update ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
==== I) Existing Design ====&lt;br /&gt;
[[File:ReviewTableSeparateView.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
==== II) Modified Design ====&lt;br /&gt;
[[File:UnifiedReviewTable.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
==== III) [Design pattern/solid/dry][TODO] ====&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
==== IV) [Code Snippet][TODO] ====&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
==== V) Rationale ====&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
Addition of “All Rounds’’ Button: The new &amp;quot;All Rounds&amp;quot; button allows users to view reviews from multiple rounds in a single table. This eliminates the need to switch between individual rounds, giving users a comprehensive view of the feedback across all rounds at once. &lt;br /&gt;
Color and Style Consistency: The colors and styles of the buttons were updated to match Expertiza’s established color scheme, ensuring a cohesive and professional look across the platform. This consistency aids in navigation, making the interface feel more intuitive and visually appealing. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== Expanded Submission Links Display ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
==== I) Existing Design ====&lt;br /&gt;
[[File:ToggleSubmission.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
==== II) Modified Design ====&lt;br /&gt;
[[File:ExpandedSubmissions.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
==== III) [Design pattern/solid/dry][TODO] ====&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
==== IV) [Code Snippet][TODO] ====&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
==== V) Rationale ====&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
The change enhances usability by directly presenting all relevant submission links to users without requiring additional interaction to show or hide them. This expanded view allows for quicker access to project resources and a more streamlined experience, improving efficiency and clarity in the peer review process on the grades/view_team page.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
== Testing ==&lt;br /&gt;
We have conducted comprehensive manual testing to verify the functionality, usability, and visual consistency of the reimplemented features.&lt;br /&gt;
&lt;br /&gt;
1. &amp;lt;b&amp;gt;Peer Review and Feedback Filter:&amp;lt;/b&amp;gt; Tested the dropdown options to confirm that users can correctly view specific rounds of peer reviews or author feedback as selected. &lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
2. &amp;lt;b&amp;gt;Scorecard Table:&amp;lt;/b&amp;gt; Checked that the Scorecard table displays relevant scores in an organized manner and ensured that the scoring data is correctly calculated.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
3 &amp;lt;b&amp;gt;Submission Links:&amp;lt;/b&amp;gt; Verified that the submission links were directly displayed, without the need to toggle them. Each link was tested individually to ensure it opens the correct resource without errors.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
4. &amp;lt;b&amp;gt;Styling Consistency:&amp;lt;/b&amp;gt; We compared the new styling of buttons, dropdowns, and tables with the rest of Expertiza's interface to ensure a cohesive look.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
5. &amp;lt;b&amp;gt;Anonymity of Reviewers:&amp;lt;/b&amp;gt; Verified that reviewers’ names were properly hidden, preserving anonymity throughout the review display&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
6. &amp;lt;b&amp;gt;All Rounds Button:&amp;lt;/b&amp;gt; Tested the &amp;quot;All Rounds&amp;quot; button by viewing multiple rounds of reviews in a single table to confirm that users can easily access and interpret cumulative feedback without toggling between views.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Repository Links ==&lt;br /&gt;
[https://github.com/rarchitgupta/reimplementation-front-end FrontEnd]&lt;br /&gt;
&lt;br /&gt;
[https://github.com/expertiza/reimplementation-back-end Backend]&lt;br /&gt;
&lt;br /&gt;
[https://github.com/expertiza/reimplementation-front-end/pull/62 Pull Request]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
== Project Mentor ==&lt;br /&gt;
&lt;br /&gt;
Kashika Mallick  (kmallick@ncsu.edu)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
== Team Members ==&lt;br /&gt;
&lt;br /&gt;
Shafa Hassan (shassa22@ncsu.edu)&lt;br /&gt;
&lt;br /&gt;
Archit Gupta (agupta85@ncsu.edu)&lt;br /&gt;
&lt;br /&gt;
Ansh Ganatra (aganatr@ncsu.edu)&lt;/div&gt;</summary>
		<author><name>Shassa22</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2024_-_E2469._Reimplement_grades/view_team&amp;diff=157667</id>
		<title>CSC/ECE 517 Fall 2024 - E2469. Reimplement grades/view team</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2024_-_E2469._Reimplement_grades/view_team&amp;diff=157667"/>
		<updated>2024-10-29T21:34:13Z</updated>

		<summary type="html">&lt;p&gt;Shassa22: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Background ==&lt;br /&gt;
Expertiza is an open-source learning management system developed with Ruby on Rails, facilitating assignment creation, team management, and a structured peer review process. Designed for educational settings, Expertiza offers instructors tools to assign topics, manage teams, and allow students to collaborate on various assignment formats, including URLs and wiki pages. Its peer review functionality encourages students to provide feedback, promoting a collaborative learning experience.&lt;br /&gt;
&lt;br /&gt;
==Problem Statement ==&lt;br /&gt;
This project focuses on reimplementing the grades/view_team page in Expertiza. The current interface lacks modern design aesthetics and usability standards making it challenging for users to access and understand grading data efficiently. Our objective is to develop a fully functional and visually cohesive front end for the Grades View page. By enhancing visual consistency, simplifying information display, improving responsiveness, giving users freedom to select views, and intuitive layout, this redesign aims to provide an improved user experience.&lt;br /&gt;
&lt;br /&gt;
== Reimplementation and Improvements ==&lt;br /&gt;
=== Enhanced Peer Review and Author Feedback Filtering ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
==== I) Existing Design ====&lt;br /&gt;
[[File:ShowReviews Feedback.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
==== II) Modified Design ====&lt;br /&gt;
[[File:GradesView2.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
==== III) Files Changed for this Modification ====&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
1. [https://github.com/rarchitgupta/reimplementation-front-end/blob/feature/review-table-improvements/src/pages/ViewTeamGrades/Statistics.tsx Statistics.tsx]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
2. [https://github.com/rarchitgupta/reimplementation-front-end/blob/feature/review-table-improvements/src/pages/ViewTeamGrades/Filters.tsx Filters.tsx]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
3. [https://github.com/rarchitgupta/reimplementation-front-end/blob/feature/review-table-improvements/src/pages/ViewTeamGrades/ShowReviews.tsx ShowReviews.tsx]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
The requirement in the statistic section of the grade page was to make changes to show dropdown selection menu for &amp;quot;Author Feedback&amp;quot; or &amp;quot;Reviews&amp;quot; and further add filtering based on the rounds (Round 1 or Round 2 or All) for &amp;quot;Author Feedback&amp;quot; or &amp;quot;Reviews&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
To carry out the changes on first selection menu, we had toggle reviews and toggle feedback event listeners defined in statistics based on which we displayed the data using ShowReviews react componenet. These event listeners were passed to Filters component and which had drop down UI component for &amp;quot;Author Feedback&amp;quot; or &amp;quot;Reviews&amp;quot;. Based on the option selected either toggleShowReviews or toggleAuthorFeedback were invoked.&lt;br /&gt;
&lt;br /&gt;
To do make further changes to display data according to rounds, first in the Statistics component of react application we defined the state &amp;quot;roundSelected&amp;quot; and also defined listener function to update round (selectRound). This event listener function was passed to Filter react component which had the UI element for second drop down for rounds selection. Based on the round selected from the dropdown, we invoked selectRound event listener function. When this event listener function is invoked we update the state variable &amp;quot;roundSelected&amp;quot;. And then this state variable is passed as props to ShowReviews react component which is responsible for iterating over &amp;quot;Author Feedback&amp;quot; or &amp;quot;Reviews&amp;quot; data and added the logic to show data with rounds based on the prop.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
==== IV) Rationale ====&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
The &amp;quot;Show Reviews&amp;quot; and &amp;quot;Show Author Feedback&amp;quot; link displays all the peer reviews from Round 1 and Round 2 and author's feedback from both rounds in a single view. This forces the users to scroll all the rounds' reviews and feedback sequentially which can be overwhelming when users wish to view feedback from a specific round. Also, users don't have the freedom and control to choose to view all rounds' reviews/feedbacks or specific rounds' reviews/feedbacks. Additionally, a single view adds visual clutter and increases cognitive load. &lt;br /&gt;
&lt;br /&gt;
With the 2 dropdowns users have more control over which reviews they would like to view. The first dropdown lets them choose from viewing reviews or author's feedback for the reviews provided, while the second dropdown allows them to select specific rounds (Round 1, Round 2, or both). This gives users the flexibility to focus on specific rounds as needed. Separating the reviews/author feedback based on a round filter reduces clutter, creating a cleaner, more organized layout. Users can now view reviews and feedback in a more structured way, which simplifies navigation and enhances readability and improves satisfaction.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Replaced the disorganized display of scores for submitted work, author feedback, and teammate reviews with a Structured Scorecard table for clearer presentation. ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
==== I) Existing Design ====&lt;br /&gt;
[[File:OldScorecard.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
==== II) Modified Design ====&lt;br /&gt;
[[File:NewScorecard.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
==== III) [Design pattern/solid/dry][TODO] ====&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
==== IV) [Code Snippet][TODO] ====&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
==== V) Rationale ====&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
The previous display of scores for submitted work, author feedback, and teammate reviews was fragmented and lacked clarity, making it difficult for users to interpret performance metrics at a glance. By introducing a structured scorecard table, we present all relevant data in a clear, organized format, enabling users to easily compare and understand scores across different rounds. This redesign improves usability by offering a more intuitive layout and better visibility of grading information.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== Removed the names of reviewers as they are supposed to remain anonymous. ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a. Existing Design&lt;br /&gt;
[[File:ReviewerNameChange.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b. Modified Design&lt;br /&gt;
[[File:ReviewerNameChange2.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
e.Rationale&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
The reason for this change is to shift focus more on quality and content of feedback and reviews rather than identity of reviewers. Anonymity encourages the reviewers to provide constructive criticism as reviewers will review without concern for any issues or repercussions.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== Removed information that didn’t add value ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a.Existing Design&lt;br /&gt;
[[File:Contributer RangeRemoved.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.Rationale&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
Contributor Name: The displayed contributor name only indicated the team member who submitted the work, which could cause confusion, as all team members contribute to the assignment. Additionally, team members' names are already displayed at the top of the page, making this information redundant. Removing it reduces visual clutter, focusing the user's attention on relevant grading information.&lt;br /&gt;
Score Range: The score range provided minimal value in understanding the overall grade, as the average score alone conveys a clearer summary of performance. By removing the range, the layout is simplified, helping users to focus on meaningful metrics without unnecessary data.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== Styling of Review Table ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a. Existing Design&lt;br /&gt;
[Image to be Added]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b. Modified Design&lt;br /&gt;
[Image to be Added]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
e.Rationale&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== Fixed styling Toggle Question List ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a. Existing Design&lt;br /&gt;
[[File:ToggleChange1.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b. Modified Design&lt;br /&gt;
[[File:ToggleChange.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
e.Rationale&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
The &amp;quot;Toggle Question List&amp;quot; styling was refined for better alignment and readability, enhancing the clarity of the page’s interactive elements.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== Unified Review Rounds Button and Interface Styling Update ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a. Existing Design&lt;br /&gt;
[[File:ReviewTableSeparateView.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b. Modified Design&lt;br /&gt;
[[File:UnifiedReviewTable.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
e.Rationale&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
Addition of “All Rounds’’ Button: The new &amp;quot;All Rounds&amp;quot; button allows users to view reviews from multiple rounds in a single table. This eliminates the need to switch between individual rounds, giving users a comprehensive view of the feedback across all rounds at once. &lt;br /&gt;
Color and Style Consistency: The colors and styles of the buttons were updated to match Expertiza’s established color scheme, ensuring a cohesive and professional look across the platform. This consistency aids in navigation, making the interface feel more intuitive and visually appealing. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== Expanded Submission Links Display ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a. Existing Design&lt;br /&gt;
[[File:ToggleSubmission.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b. Modified Design&lt;br /&gt;
[[File:ExpandedSubmissions.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
e.Rationale&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
The change enhances usability by directly presenting all relevant submission links to users without requiring additional interaction to show or hide them. This expanded view allows for quicker access to project resources and a more streamlined experience, improving efficiency and clarity in the peer review process on the grades/view_team page.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
== Testing ==&lt;br /&gt;
We have conducted comprehensive manual testing to verify the functionality, usability, and visual consistency of the reimplemented features.&lt;br /&gt;
&lt;br /&gt;
1. &amp;lt;b&amp;gt;Peer Review and Feedback Filter:&amp;lt;/b&amp;gt; Tested the dropdown options to confirm that users can correctly view specific rounds of peer reviews or author feedback as selected. &lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
2. &amp;lt;b&amp;gt;Scorecard Table:&amp;lt;/b&amp;gt; Checked that the Scorecard table displays relevant scores in an organized manner and ensured that the scoring data is correctly calculated.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
3 &amp;lt;b&amp;gt;Submission Links:&amp;lt;/b&amp;gt; Verified that the submission links were directly displayed, without the need to toggle them. Each link was tested individually to ensure it opens the correct resource without errors.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
4. &amp;lt;b&amp;gt;Styling Consistency:&amp;lt;/b&amp;gt; We compared the new styling of buttons, dropdowns, and tables with the rest of Expertiza's interface to ensure a cohesive look.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
5. &amp;lt;b&amp;gt;Anonymity of Reviewers:&amp;lt;/b&amp;gt; Verified that reviewers’ names were properly hidden, preserving anonymity throughout the review display&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
6. &amp;lt;b&amp;gt;All Rounds Button:&amp;lt;/b&amp;gt; Tested the &amp;quot;All Rounds&amp;quot; button by viewing multiple rounds of reviews in a single table to confirm that users can easily access and interpret cumulative feedback without toggling between views.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Repository Links ==&lt;br /&gt;
[https://github.com/rarchitgupta/reimplementation-front-end FrontEnd]&lt;br /&gt;
&lt;br /&gt;
[https://github.com/expertiza/reimplementation-back-end Backend]&lt;br /&gt;
&lt;br /&gt;
[&amp;lt;Link to be Added&amp;gt; Pull Request]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
== Project Mentor ==&lt;br /&gt;
&lt;br /&gt;
Kashika Mallick  (kmallick@ncsu.edu)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
== Team Members ==&lt;br /&gt;
&lt;br /&gt;
Shafa Hassan (shassa22@ncsu.edu)&lt;br /&gt;
&lt;br /&gt;
Archit Gupta (agupta85@ncsu.edu)&lt;br /&gt;
&lt;br /&gt;
Ansh Ganatra (aganatr@ncsu.edu)&lt;/div&gt;</summary>
		<author><name>Shassa22</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2024_-_E2469._Reimplement_grades/view_team&amp;diff=157660</id>
		<title>CSC/ECE 517 Fall 2024 - E2469. Reimplement grades/view team</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2024_-_E2469._Reimplement_grades/view_team&amp;diff=157660"/>
		<updated>2024-10-29T21:28:03Z</updated>

		<summary type="html">&lt;p&gt;Shassa22: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Background ==&lt;br /&gt;
Expertiza is an open-source learning management system developed with Ruby on Rails, facilitating assignment creation, team management, and a structured peer review process. Designed for educational settings, Expertiza offers instructors tools to assign topics, manage teams, and allow students to collaborate on various assignment formats, including URLs and wiki pages. Its peer review functionality encourages students to provide feedback, promoting a collaborative learning experience.&lt;br /&gt;
&lt;br /&gt;
==Problem Statement ==&lt;br /&gt;
This project focuses on reimplementing the grades/view_team page in Expertiza. The current interface lacks modern design aesthetics and usability standards making it challenging for users to access and understand grading data efficiently. Our objective is to develop a fully functional and visually cohesive front end for the Grades View page. By enhancing visual consistency, simplifying information display, improving responsiveness, giving users freedom to select views, and intuitive layout, this redesign aims to provide an improved user experience.&lt;br /&gt;
&lt;br /&gt;
== Reimplementation and Improvements ==&lt;br /&gt;
=== Enhanced Peer Review and Author Feedback Filtering ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a.Existing Design&lt;br /&gt;
[[File:ShowReviews Feedback.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b. Modified Design&lt;br /&gt;
[[File:GradesView2.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.Files Changed for this Modification&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
1. [https://github.com/rarchitgupta/reimplementation-front-end/blob/feature/review-table-improvements/src/pages/ViewTeamGrades/Statistics.tsx Statistics.tsx]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
2. [https://github.com/rarchitgupta/reimplementation-front-end/blob/feature/review-table-improvements/src/pages/ViewTeamGrades/Filters.tsx Filters.tsx]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
3. [https://github.com/rarchitgupta/reimplementation-front-end/blob/feature/review-table-improvements/src/pages/ViewTeamGrades/ShowReviews.tsx ShowReviews.tsx]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
The requirement in the statistic section of the grade page was to make changes to show dropdown selection menu for &amp;quot;Author Feedback&amp;quot; or &amp;quot;Reviews&amp;quot; and further add filtering based on the rounds (Round 1 or Round 2 or All) for &amp;quot;Author Feedback&amp;quot; or &amp;quot;Reviews&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
To carry out the changes on first selection menu, we had toggle reviews and toggle feedback event listeners defined in statistics based on which we displayed the data using ShowReviews react componenet. These event listeners were passed to Filters component and which had drop down UI component for &amp;quot;Author Feedback&amp;quot; or &amp;quot;Reviews&amp;quot;. Based on the option selected either toggleShowReviews or toggleAuthorFeedback were invoked.&lt;br /&gt;
&lt;br /&gt;
To do make further changes to display data according to rounds, first in the Statistics component of react application we defined the state &amp;quot;roundSelected&amp;quot; and also defined listener function to update round (selectRound). This event listener function was passed to Filter react component which had the UI element for second drop down for rounds selection. Based on the round selected from the dropdown, we invoked selectRound event listener function. When this event listener function is invoked we update the state variable &amp;quot;roundSelected&amp;quot;. And then this state variable is passed as props to ShowReviews react component which is responsible for iterating over &amp;quot;Author Feedback&amp;quot; or &amp;quot;Reviews&amp;quot; data and added the logic to show data with rounds based on the prop.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
e.Rationale&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
The &amp;quot;Show Reviews&amp;quot; and &amp;quot;Show Author Feedback&amp;quot; link displays all the peer reviews from Round 1 and Round 2 and author's feedback from both rounds in a single view. This forces the users to scroll all the rounds' reviews and feedback sequentially which can be overwhelming when users wish to view feedback from a specific round. Also, users don't have the freedom and control to choose to view all rounds' reviews/feedbacks or specific rounds' reviews/feedbacks. Additionally, a single view adds visual clutter and increases cognitive load. &lt;br /&gt;
&lt;br /&gt;
With the 2 dropdowns users have more control over which reviews they would like to view. The first dropdown lets them choose from viewing reviews or author's feedback for the reviews provided, while the second dropdown allows them to select specific rounds (Round 1, Round 2, or both). This gives users the flexibility to focus on specific rounds as needed. Separating the reviews/author feedback based on a round filter reduces clutter, creating a cleaner, more organized layout. Users can now view reviews and feedback in a more structured way, which simplifies navigation and enhances readability and improves satisfaction.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Replaced the disorganized display of scores for submitted work, author feedback, and teammate reviews with a Structured Scorecard table for clearer presentation. ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a. Existing Design&lt;br /&gt;
[[File:OldScorecard.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b. Modified Design&lt;br /&gt;
[[File:NewScorecard.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
e.Rationale&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
The previous display of scores for submitted work, author feedback, and teammate reviews was fragmented and lacked clarity, making it difficult for users to interpret performance metrics at a glance. By introducing a structured scorecard table, we present all relevant data in a clear, organized format, enabling users to easily compare and understand scores across different rounds. This redesign improves usability by offering a more intuitive layout and better visibility of grading information.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== Removed the names of reviewers as they are supposed to remain anonymous. ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a. Existing Design&lt;br /&gt;
[[File:ReviewerNameChange.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b. Modified Design&lt;br /&gt;
[[File:ReviewerNameChange2.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
e.Rationale&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
The reason for this change is to shift focus more on quality and content of feedback and reviews rather than identity of reviewers. Anonymity encourages the reviewers to provide constructive criticism as reviewers will review without concern for any issues or repercussions.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== Removed information that didn’t add value ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a.Existing Design&lt;br /&gt;
[[File:Contributer RangeRemoved.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.Rationale&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
Contributor Name: The displayed contributor name only indicated the team member who submitted the work, which could cause confusion, as all team members contribute to the assignment. Additionally, team members' names are already displayed at the top of the page, making this information redundant. Removing it reduces visual clutter, focusing the user's attention on relevant grading information.&lt;br /&gt;
Score Range: The score range provided minimal value in understanding the overall grade, as the average score alone conveys a clearer summary of performance. By removing the range, the layout is simplified, helping users to focus on meaningful metrics without unnecessary data.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== Styling of Review Table ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a. Existing Design&lt;br /&gt;
[Image to be Added]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b. Modified Design&lt;br /&gt;
[Image to be Added]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
e.Rationale&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== Fixed styling Toggle Question List ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a. Existing Design&lt;br /&gt;
[[File:ToggleChange1.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b. Modified Design&lt;br /&gt;
[[File:ToggleChange.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
e.Rationale&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
The &amp;quot;Toggle Question List&amp;quot; styling was refined for better alignment and readability, enhancing the clarity of the page’s interactive elements.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== Unified Review Rounds Button and Interface Styling Update ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a. Existing Design&lt;br /&gt;
[[File:ReviewTableSeparateView.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b. Modified Design&lt;br /&gt;
[[File:UnifiedReviewTable.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
e.Rationale&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
Addition of “All Rounds’’ Button: The new &amp;quot;All Rounds&amp;quot; button allows users to view reviews from multiple rounds in a single table. This eliminates the need to switch between individual rounds, giving users a comprehensive view of the feedback across all rounds at once. &lt;br /&gt;
Color and Style Consistency: The colors and styles of the buttons were updated to match Expertiza’s established color scheme, ensuring a cohesive and professional look across the platform. This consistency aids in navigation, making the interface feel more intuitive and visually appealing. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== Expanded Submission Links Display ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a. Existing Design&lt;br /&gt;
[[File:ToggleSubmission.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b. Modified Design&lt;br /&gt;
[[File:ExpandedSubmissions.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
e.Rationale&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
The change enhances usability by directly presenting all relevant submission links to users without requiring additional interaction to show or hide them. This expanded view allows for quicker access to project resources and a more streamlined experience, improving efficiency and clarity in the peer review process on the grades/view_team page.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
== Testing ==&lt;br /&gt;
We have conducted comprehensive manual testing to verify the functionality, usability, and visual consistency of the reimplemented features.&lt;br /&gt;
&lt;br /&gt;
1. &amp;lt;b&amp;gt;Peer Review and Feedback Filter:&amp;lt;/b&amp;gt; Tested the dropdown options to confirm that users can correctly view specific rounds of peer reviews or author feedback as selected. &lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
2. &amp;lt;b&amp;gt;Scorecard Table:&amp;lt;/b&amp;gt; Checked that the Scorecard table displays relevant scores in an organized manner and ensured that the scoring data is correctly calculated.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
3 &amp;lt;b&amp;gt;Submission Links:&amp;lt;/b&amp;gt; Verified that the submission links were directly displayed, without the need to toggle them. Each link was tested individually to ensure it opens the correct resource without errors.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
4. &amp;lt;b&amp;gt;Styling Consistency:&amp;lt;/b&amp;gt; We compared the new styling of buttons, dropdowns, and tables with the rest of Expertiza's interface to ensure a cohesive look.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
5. &amp;lt;b&amp;gt;Anonymity of Reviewers:&amp;lt;/b&amp;gt; Verified that reviewers’ names were properly hidden, preserving anonymity throughout the review display&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
6. &amp;lt;b&amp;gt;All Rounds Button:&amp;lt;/b&amp;gt; Tested the &amp;quot;All Rounds&amp;quot; button by viewing multiple rounds of reviews in a single table to confirm that users can easily access and interpret cumulative feedback without toggling between views.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Repository Links ==&lt;br /&gt;
[https://github.com/rarchitgupta/reimplementation-front-end FrontEnd]&lt;br /&gt;
&lt;br /&gt;
[https://github.com/expertiza/reimplementation-back-end Backend]&lt;br /&gt;
&lt;br /&gt;
[&amp;lt;Link to be Added&amp;gt; Pull Request]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
== Project Mentor ==&lt;br /&gt;
&lt;br /&gt;
Kashika Mallick  (kmallick@ncsu.edu)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
== Team Members ==&lt;br /&gt;
&lt;br /&gt;
Shafa Hassan (shassa22@ncsu.edu)&lt;br /&gt;
&lt;br /&gt;
Archit Gupta (agupta85@ncsu.edu)&lt;br /&gt;
&lt;br /&gt;
Ansh Ganatra (aganatr@ncsu.edu)&lt;/div&gt;</summary>
		<author><name>Shassa22</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2024_-_E2469._Reimplement_grades/view_team&amp;diff=157589</id>
		<title>CSC/ECE 517 Fall 2024 - E2469. Reimplement grades/view team</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2024_-_E2469._Reimplement_grades/view_team&amp;diff=157589"/>
		<updated>2024-10-29T20:22:09Z</updated>

		<summary type="html">&lt;p&gt;Shassa22: /* Testing */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Background ==&lt;br /&gt;
Expertiza is an open-source learning management system developed with Ruby on Rails, facilitating assignment creation, team management, and a structured peer review process. Designed for educational settings, Expertiza offers instructors tools to assign topics, manage teams, and allow students to collaborate on various assignment formats, including URLs and wiki pages. Its peer review functionality encourages students to provide feedback, promoting a collaborative learning experience.&lt;br /&gt;
&lt;br /&gt;
==Problem Statement ==&lt;br /&gt;
This project focuses on reimplementing the grades/view_team page in Expertiza. The current interface lacks modern design aesthetics and usability standards making it challenging for users to access and understand grading data efficiently. Our objective is to develop a fully functional and visually cohesive front end for the Grades View page. By enhancing visual consistency, simplifying information display, improving responsiveness, giving users freedom to select views, and intuitive layout, this redesign aims to provide an improved user experience.&lt;br /&gt;
&lt;br /&gt;
== Reimplementation and Improvements ==&lt;br /&gt;
=== Enhanced Peer Review and Author Feedback Filtering ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a.Existing Design&lt;br /&gt;
[[File:ShowReviews Feedback.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b. Modified Design&lt;br /&gt;
[[File:GradesView2.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
e.Rationale&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
The &amp;quot;Show Reviews&amp;quot; and &amp;quot;Show Author Feedback&amp;quot; link displays all the peer reviews from Round 1 and Round 2 and author's feedback from both rounds in a single view. This forces the users to scroll all the rounds' reviews and feedback sequentially which can be overwhelming when users wish to view feedback from a specific round. Also, users don't have the freedom and control to choose to view all rounds' reviews/feedbacks or specific rounds' reviews/feedbacks. Additionally, a single view adds visual clutter and increases cognitive load. &lt;br /&gt;
&lt;br /&gt;
With the 2 dropdowns users have more control over which reviews they would like to view. The first dropdown lets them choose from viewing reviews or author's feedback for the reviews provided, while the second dropdown allows them to select specific rounds (Round 1, Round 2, or both). This gives users the flexibility to focus on specific rounds as needed. Separating the reviews/author feedback based on a round filter reduces clutter, creating a cleaner, more organized layout. Users can now view reviews and feedback in a more structured way, which simplifies navigation and enhances readability and improves satisfaction.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Replaced the disorganized display of scores for submitted work, author feedback, and teammate reviews with a Structured Scorecard table for clearer presentation. ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a. Existing Design&lt;br /&gt;
[[File:OldScorecard.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b. Modified Design&lt;br /&gt;
[[File:NewScorecard.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
e.Rationale&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
The previous display of scores for submitted work, author feedback, and teammate reviews was fragmented and lacked clarity, making it difficult for users to interpret performance metrics at a glance. By introducing a structured scorecard table, we present all relevant data in a clear, organized format, enabling users to easily compare and understand scores across different rounds. This redesign improves usability by offering a more intuitive layout and better visibility of grading information.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== Removed the names of reviewers as they are supposed to remain anonymous. ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a. Existing Design&lt;br /&gt;
[[File:ReviewerNameChange.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b. Modified Design&lt;br /&gt;
[[File:ReviewerNameChange2.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
e.Rationale&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
The reason for this change is to shift focus more on quality and content of feedback and reviews rather than identity of reviewers. Anonymity encourages the reviewers to provide constructive criticism as reviewers will review without concern for any issues or repercussions.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== Removed information that didn’t add value ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a.Existing Design&lt;br /&gt;
[[File:Contributer RangeRemoved.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.Rationale&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
Contributor Name: The displayed contributor name only indicated the team member who submitted the work, which could cause confusion, as all team members contribute to the assignment. Additionally, team members' names are already displayed at the top of the page, making this information redundant. Removing it reduces visual clutter, focusing the user's attention on relevant grading information.&lt;br /&gt;
Score Range: The score range provided minimal value in understanding the overall grade, as the average score alone conveys a clearer summary of performance. By removing the range, the layout is simplified, helping users to focus on meaningful metrics without unnecessary data.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== Styling of Review Table ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a. Existing Design&lt;br /&gt;
[Image to be Added]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b. Modified Design&lt;br /&gt;
[Image to be Added]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
e.Rationale&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== Fixed styling Toggle Question List ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a. Existing Design&lt;br /&gt;
[[File:ToggleChange1.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b. Modified Design&lt;br /&gt;
[[File:ToggleChange.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
e.Rationale&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
The &amp;quot;Toggle Question List&amp;quot; styling was refined for better alignment and readability, enhancing the clarity of the page’s interactive elements.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== Unified Review Rounds Button and Interface Styling Update ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a. Existing Design&lt;br /&gt;
[[File:ReviewTableSeparateView.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b. Modified Design&lt;br /&gt;
[[File:UnifiedReviewTable.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
e.Rationale&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
Addition of “All Rounds’’ Button: The new &amp;quot;All Rounds&amp;quot; button allows users to view reviews from multiple rounds in a single table. This eliminates the need to switch between individual rounds, giving users a comprehensive view of the feedback across all rounds at once. &lt;br /&gt;
Color and Style Consistency: The colors and styles of the buttons were updated to match Expertiza’s established color scheme, ensuring a cohesive and professional look across the platform. This consistency aids in navigation, making the interface feel more intuitive and visually appealing. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== Expanded Submission Links Display ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a. Existing Design&lt;br /&gt;
[[File:ToggleSubmission.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b. Modified Design&lt;br /&gt;
[[File:ExpandedSubmissions.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
e.Rationale&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
The change enhances usability by directly presenting all relevant submission links to users without requiring additional interaction to show or hide them. This expanded view allows for quicker access to project resources and a more streamlined experience, improving efficiency and clarity in the peer review process on the grades/view_team page.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
== Testing ==&lt;br /&gt;
We have conducted comprehensive manual testing to verify the functionality, usability, and visual consistency of the reimplemented features.&lt;br /&gt;
&lt;br /&gt;
1. &amp;lt;b&amp;gt;Peer Review and Feedback Filter:&amp;lt;/b&amp;gt; Tested the dropdown options to confirm that users can correctly view specific rounds of peer reviews or author feedback as selected. &lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
2. &amp;lt;b&amp;gt;Scorecard Table:&amp;lt;/b&amp;gt; Checked that the Scorecard table displays relevant scores in an organized manner and ensured that the scoring data is correctly calculated.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
3 &amp;lt;b&amp;gt;Submission Links:&amp;lt;/b&amp;gt; Verified that the submission links were directly displayed, without the need to toggle them. Each link was tested individually to ensure it opens the correct resource without errors.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
4. &amp;lt;b&amp;gt;Styling Consistency:&amp;lt;/b&amp;gt; We compared the new styling of buttons, dropdowns, and tables with the rest of Expertiza's interface to ensure a cohesive look.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
5. &amp;lt;b&amp;gt;Anonymity of Reviewers:&amp;lt;/b&amp;gt; Verified that reviewers’ names were properly hidden, preserving anonymity throughout the review display&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
6. &amp;lt;b&amp;gt;All Rounds Button:&amp;lt;/b&amp;gt; Tested the &amp;quot;All Rounds&amp;quot; button by viewing multiple rounds of reviews in a single table to confirm that users can easily access and interpret cumulative feedback without toggling between views.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Repository Links ==&lt;br /&gt;
[https://github.com/rarchitgupta/reimplementation-front-end FrontEnd]&lt;br /&gt;
&lt;br /&gt;
[https://github.com/expertiza/reimplementation-back-end Backend]&lt;br /&gt;
&lt;br /&gt;
[&amp;lt;Link to be Added&amp;gt; Pull Request]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
== Project Mentor ==&lt;br /&gt;
&lt;br /&gt;
Kashika Mallick  (kmallick@ncsu.edu)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
== Team Members ==&lt;br /&gt;
&lt;br /&gt;
Shafa Hassan (shassa22@ncsu.edu)&lt;br /&gt;
&lt;br /&gt;
Archit Gupta (agupta85@ncsu.edu)&lt;br /&gt;
&lt;br /&gt;
Ansh Ganatra (aganatr@ncsu.edu)&lt;/div&gt;</summary>
		<author><name>Shassa22</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2024_-_E2469._Reimplement_grades/view_team&amp;diff=157587</id>
		<title>CSC/ECE 517 Fall 2024 - E2469. Reimplement grades/view team</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2024_-_E2469._Reimplement_grades/view_team&amp;diff=157587"/>
		<updated>2024-10-29T20:20:26Z</updated>

		<summary type="html">&lt;p&gt;Shassa22: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Background ==&lt;br /&gt;
Expertiza is an open-source learning management system developed with Ruby on Rails, facilitating assignment creation, team management, and a structured peer review process. Designed for educational settings, Expertiza offers instructors tools to assign topics, manage teams, and allow students to collaborate on various assignment formats, including URLs and wiki pages. Its peer review functionality encourages students to provide feedback, promoting a collaborative learning experience.&lt;br /&gt;
&lt;br /&gt;
==Problem Statement ==&lt;br /&gt;
This project focuses on reimplementing the grades/view_team page in Expertiza. The current interface lacks modern design aesthetics and usability standards making it challenging for users to access and understand grading data efficiently. Our objective is to develop a fully functional and visually cohesive front end for the Grades View page. By enhancing visual consistency, simplifying information display, improving responsiveness, giving users freedom to select views, and intuitive layout, this redesign aims to provide an improved user experience.&lt;br /&gt;
&lt;br /&gt;
== Reimplementation and Improvements ==&lt;br /&gt;
=== Enhanced Peer Review and Author Feedback Filtering ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a.Existing Design&lt;br /&gt;
[[File:ShowReviews Feedback.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b. Modified Design&lt;br /&gt;
[[File:GradesView2.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
e.Rationale&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
The &amp;quot;Show Reviews&amp;quot; and &amp;quot;Show Author Feedback&amp;quot; link displays all the peer reviews from Round 1 and Round 2 and author's feedback from both rounds in a single view. This forces the users to scroll all the rounds' reviews and feedback sequentially which can be overwhelming when users wish to view feedback from a specific round. Also, users don't have the freedom and control to choose to view all rounds' reviews/feedbacks or specific rounds' reviews/feedbacks. Additionally, a single view adds visual clutter and increases cognitive load. &lt;br /&gt;
&lt;br /&gt;
With the 2 dropdowns users have more control over which reviews they would like to view. The first dropdown lets them choose from viewing reviews or author's feedback for the reviews provided, while the second dropdown allows them to select specific rounds (Round 1, Round 2, or both). This gives users the flexibility to focus on specific rounds as needed. Separating the reviews/author feedback based on a round filter reduces clutter, creating a cleaner, more organized layout. Users can now view reviews and feedback in a more structured way, which simplifies navigation and enhances readability and improves satisfaction.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Replaced the disorganized display of scores for submitted work, author feedback, and teammate reviews with a Structured Scorecard table for clearer presentation. ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a. Existing Design&lt;br /&gt;
[[File:OldScorecard.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b. Modified Design&lt;br /&gt;
[[File:NewScorecard.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
e.Rationale&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
The previous display of scores for submitted work, author feedback, and teammate reviews was fragmented and lacked clarity, making it difficult for users to interpret performance metrics at a glance. By introducing a structured scorecard table, we present all relevant data in a clear, organized format, enabling users to easily compare and understand scores across different rounds. This redesign improves usability by offering a more intuitive layout and better visibility of grading information.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== Removed the names of reviewers as they are supposed to remain anonymous. ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a. Existing Design&lt;br /&gt;
[[File:ReviewerNameChange.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b. Modified Design&lt;br /&gt;
[[File:ReviewerNameChange2.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
e.Rationale&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
The reason for this change is to shift focus more on quality and content of feedback and reviews rather than identity of reviewers. Anonymity encourages the reviewers to provide constructive criticism as reviewers will review without concern for any issues or repercussions.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== Removed information that didn’t add value ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a.Existing Design&lt;br /&gt;
[[File:Contributer RangeRemoved.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.Rationale&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
Contributor Name: The displayed contributor name only indicated the team member who submitted the work, which could cause confusion, as all team members contribute to the assignment. Additionally, team members' names are already displayed at the top of the page, making this information redundant. Removing it reduces visual clutter, focusing the user's attention on relevant grading information.&lt;br /&gt;
Score Range: The score range provided minimal value in understanding the overall grade, as the average score alone conveys a clearer summary of performance. By removing the range, the layout is simplified, helping users to focus on meaningful metrics without unnecessary data.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== Styling of Review Table ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a. Existing Design&lt;br /&gt;
[Image to be Added]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b. Modified Design&lt;br /&gt;
[Image to be Added]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
e.Rationale&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== Fixed styling Toggle Question List ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a. Existing Design&lt;br /&gt;
[[File:ToggleChange1.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b. Modified Design&lt;br /&gt;
[[File:ToggleChange.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
e.Rationale&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
The &amp;quot;Toggle Question List&amp;quot; styling was refined for better alignment and readability, enhancing the clarity of the page’s interactive elements.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== Unified Review Rounds Button and Interface Styling Update ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a. Existing Design&lt;br /&gt;
[[File:ReviewTableSeparateView.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b. Modified Design&lt;br /&gt;
[[File:UnifiedReviewTable.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
e.Rationale&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
Addition of “All Rounds’’ Button: The new &amp;quot;All Rounds&amp;quot; button allows users to view reviews from multiple rounds in a single table. This eliminates the need to switch between individual rounds, giving users a comprehensive view of the feedback across all rounds at once. &lt;br /&gt;
Color and Style Consistency: The colors and styles of the buttons were updated to match Expertiza’s established color scheme, ensuring a cohesive and professional look across the platform. This consistency aids in navigation, making the interface feel more intuitive and visually appealing. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== Expanded Submission Links Display ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a. Existing Design&lt;br /&gt;
[[File:ToggleSubmission.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b. Modified Design&lt;br /&gt;
[[File:ExpandedSubmissions.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
e.Rationale&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
The change enhances usability by directly presenting all relevant submission links to users without requiring additional interaction to show or hide them. This expanded view allows for quicker access to project resources and a more streamlined experience, improving efficiency and clarity in the peer review process on the grades/view_team page.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
== Testing ==&lt;br /&gt;
We have conducted comprehensive manual testing to verify the functionality, usability, and visual consistency of the reimplemented features.&lt;br /&gt;
&lt;br /&gt;
1. Peer Review and Feedback Filter: Tested the dropdown options to confirm that users can correctly view specific rounds of peer reviews or author feedback as selected. &lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
2. Scorecard Table: Checked that the Scorecard table displays relevant scores in an organized manner and ensured that the scoring data is correctly calculated.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
3 Submission Links: Verified that the submission links were directly displayed, without the need to toggle them. Each link was tested individually to ensure it opens the correct resource without errors.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
4. Styling Consistency: We compared the new styling of buttons, dropdowns, and tables with the rest of Expertiza's interface to ensure a cohesive look.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
5. Anonymity of Reviewers: Verified that reviewers’ names were properly hidden, preserving anonymity throughout the review display&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
6. All Rounds Button: Tested the &amp;quot;All Rounds&amp;quot; button by viewing multiple rounds of reviews in a single table to confirm that users can easily access and interpret cumulative feedback without toggling between views.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Repository Links ==&lt;br /&gt;
[https://github.com/rarchitgupta/reimplementation-front-end FrontEnd]&lt;br /&gt;
&lt;br /&gt;
[https://github.com/expertiza/reimplementation-back-end Backend]&lt;br /&gt;
&lt;br /&gt;
[&amp;lt;Link to be Added&amp;gt; Pull Request]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
== Project Mentor ==&lt;br /&gt;
&lt;br /&gt;
Kashika Mallick  (kmallick@ncsu.edu)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
== Team Members ==&lt;br /&gt;
&lt;br /&gt;
Shafa Hassan (shassa22@ncsu.edu)&lt;br /&gt;
&lt;br /&gt;
Archit Gupta (agupta85@ncsu.edu)&lt;br /&gt;
&lt;br /&gt;
Ansh Ganatra (aganatr@ncsu.edu)&lt;/div&gt;</summary>
		<author><name>Shassa22</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2024_-_E2469._Reimplement_grades/view_team&amp;diff=157570</id>
		<title>CSC/ECE 517 Fall 2024 - E2469. Reimplement grades/view team</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2024_-_E2469._Reimplement_grades/view_team&amp;diff=157570"/>
		<updated>2024-10-29T19:46:43Z</updated>

		<summary type="html">&lt;p&gt;Shassa22: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Background ==&lt;br /&gt;
Expertiza is an open-source learning management system developed with Ruby on Rails, facilitating assignment creation, team management, and a structured peer review process. Designed for educational settings, Expertiza offers instructors tools to assign topics, manage teams, and allow students to collaborate on various assignment formats, including URLs and wiki pages. Its peer review functionality encourages students to provide feedback, promoting a collaborative learning experience.&lt;br /&gt;
&lt;br /&gt;
==Problem Statement ==&lt;br /&gt;
This project focuses on reimplementing the grades/view_team page in Expertiza. The current interface lacks modern design aesthetics and usability standards making it challenging for users to access and understand grading data efficiently. Our objective is to develop a fully functional and visually cohesive front end for the Grades View page. By enhancing visual consistency, simplifying information display, improving responsiveness, giving users freedom to select views, and intuitive layout, this redesign aims to provide an improved user experience.&lt;br /&gt;
&lt;br /&gt;
== Reimplementation and Improvements ==&lt;br /&gt;
=== Enhanced Peer Review and Author Feedback Filtering ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a.Existing Design&lt;br /&gt;
[[File:ShowReviews Feedback.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b. Modified Design&lt;br /&gt;
[[File:GradesView2.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
e.Rationale&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
The &amp;quot;Show Reviews&amp;quot; and &amp;quot;Show Author Feedback&amp;quot; link displays all the peer reviews from Round 1 and Round 2 and author's feedback from both rounds in a single view. This forces the users to scroll all the rounds' reviews and feedback sequentially which can be overwhelming when users wish to view feedback from a specific round. Also, users don't have the freedom and control to choose to view all rounds' reviews/feedbacks or specific rounds' reviews/feedbacks. Additionally, a single view adds visual clutter and increases cognitive load. &lt;br /&gt;
&lt;br /&gt;
With the 2 dropdowns users have more control over which reviews they would like to view. The first dropdown lets them choose from viewing reviews or author's feedback for the reviews provided, while the second dropdown allows them to select specific rounds (Round 1, Round 2, or both). This gives users the flexibility to focus on specific rounds as needed. Separating the reviews/author feedback based on a round filter reduces clutter, creating a cleaner, more organized layout. Users can now view reviews and feedback in a more structured way, which simplifies navigation and enhances readability and improves satisfaction.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Replaced the disorganized display of scores for submitted work, author feedback, and teammate reviews with a Structured Scorecard table for clearer presentation. ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a. Existing Design&lt;br /&gt;
[[File:OldScorecard.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b. Modified Design&lt;br /&gt;
[[File:NewScorecard.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
e.Rationale&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
The previous display of scores for submitted work, author feedback, and teammate reviews was fragmented and lacked clarity, making it difficult for users to interpret performance metrics at a glance. By introducing a structured scorecard table, we present all relevant data in a clear, organized format, enabling users to easily compare and understand scores across different rounds. This redesign improves usability by offering a more intuitive layout and better visibility of grading information.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== Removed the names of reviewers as they are supposed to remain anonymous. ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a. Existing Design&lt;br /&gt;
[[File:ReviewerNameChange.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b. Modified Design&lt;br /&gt;
[[File:ReviewerNameChange2.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
e.Rationale&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
The reason for this change is to shift focus more on quality and content of feedback and reviews rather than identity of reviewers. Anonymity encourages the reviewers to provide constructive criticism as reviewers will review without concern for any issues or repercussions.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== Removed information that didn’t add value ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a.Existing Design&lt;br /&gt;
[[File:Contributer RangeRemoved.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.Rationale&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
Contributor Name: The displayed contributor name only indicated the team member who submitted the work, which could cause confusion, as all team members contribute to the assignment. Additionally, team members' names are already displayed at the top of the page, making this information redundant. Removing it reduces visual clutter, focusing the user's attention on relevant grading information.&lt;br /&gt;
Score Range: The score range provided minimal value in understanding the overall grade, as the average score alone conveys a clearer summary of performance. By removing the range, the layout is simplified, helping users to focus on meaningful metrics without unnecessary data.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== Styling of Review Table ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a. Existing Design&lt;br /&gt;
[Image to be Added]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b. Modified Design&lt;br /&gt;
[Image to be Added]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
e.Rationale&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== Fixed styling Toggle Question List ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a. Existing Design&lt;br /&gt;
[[File:ToggleChange1.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b. Modified Design&lt;br /&gt;
[[File:ToggleChange.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
e.Rationale&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
The &amp;quot;Toggle Question List&amp;quot; styling was refined for better alignment and readability, enhancing the clarity of the page’s interactive elements.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== Unified Review Rounds Button and Interface Styling Update ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a. Existing Design&lt;br /&gt;
[[File:ReviewTableSeparateView.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b. Modified Design&lt;br /&gt;
[[File:UnifiedReviewTable.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
e.Rationale&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
Addition of “All Rounds’’ Button: The new &amp;quot;All Rounds&amp;quot; button allows users to view reviews from multiple rounds in a single table. This eliminates the need to switch between individual rounds, giving users a comprehensive view of the feedback across all rounds at once. &lt;br /&gt;
Color and Style Consistency: The colors and styles of the buttons were updated to match Expertiza’s established color scheme, ensuring a cohesive and professional look across the platform. This consistency aids in navigation, making the interface feel more intuitive and visually appealing. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== Expanded Submission Links Display ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a. Existing Design&lt;br /&gt;
[[File:ToggleSubmission.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b. Modified Design&lt;br /&gt;
[[File:ExpandedSubmissions.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
e.Rationale&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
The change enhances usability by directly presenting all relevant submission links to users without requiring additional interaction to show or hide them. This expanded view allows for quicker access to project resources and a more streamlined experience, improving efficiency and clarity in the peer review process on the grades/view_team page.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
== Testing ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
== Repository Links ==&lt;br /&gt;
[https://github.com/rarchitgupta/reimplementation-front-end FrontEnd]&lt;br /&gt;
&lt;br /&gt;
[https://github.com/expertiza/reimplementation-back-end Backend]&lt;br /&gt;
&lt;br /&gt;
[&amp;lt;Link to be Added&amp;gt; Pull Request]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
== Project Mentor ==&lt;br /&gt;
&lt;br /&gt;
Kashika Mallick  (kmallick@ncsu.edu)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
== Team Members ==&lt;br /&gt;
&lt;br /&gt;
Shafa Hassan (shassa22@ncsu.edu)&lt;br /&gt;
&lt;br /&gt;
Archit Gupta (agupta85@ncsu.edu)&lt;br /&gt;
&lt;br /&gt;
Ansh Ganatra (aganatr@ncsu.edu)&lt;/div&gt;</summary>
		<author><name>Shassa22</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2024_-_E2469._Reimplement_grades/view_team&amp;diff=157459</id>
		<title>CSC/ECE 517 Fall 2024 - E2469. Reimplement grades/view team</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2024_-_E2469._Reimplement_grades/view_team&amp;diff=157459"/>
		<updated>2024-10-29T16:04:00Z</updated>

		<summary type="html">&lt;p&gt;Shassa22: /* Enhanced review filtering and author */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Background ==&lt;br /&gt;
Expertiza is an open-source learning management system developed with Ruby on Rails, facilitating assignment creation, team management, and a structured peer review process. Designed for educational settings, Expertiza offers instructors tools to assign topics, manage teams, and allow students to collaborate on various assignment formats, including URLs and wiki pages. Its peer review functionality encourages students to provide feedback, promoting a collaborative learning experience.&lt;br /&gt;
&lt;br /&gt;
==Problem Statement ==&lt;br /&gt;
This project focuses on reimplementing the grades/view_team page in Expertiza. The current interface lacks modern design aesthetics and usability standards making it challenging for users to access and understand grading data efficiently. Our objective is to develop a fully functional and visually cohesive front end for the Grades View page. By enhancing visual consistency, simplifying information display, improving responsiveness, giving users freedom to select views, and intuitive layout, this redesign aims to provide an improved user experience.&lt;br /&gt;
&lt;br /&gt;
== Reimplementation and Improvements ==&lt;br /&gt;
=== Enhanced Peer Review and Author Feedback Filtering ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a.Existing Design&lt;br /&gt;
[[File:ShowReviews Feedback.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b. Modified Design&lt;br /&gt;
[[File:GradesView2.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
e.Rationale&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
The &amp;quot;Show Reviews&amp;quot; and &amp;quot;Show Author Feedback&amp;quot; link displays all the peer reviews from Round 1 and Round 2 and author's feedback from both rounds in a single view. This forces the users to scroll all the rounds' reviews and feedback sequentially which can be overwhelming when users wish to view feedback from a specific round. Also, users don't have the freedom and control to choose to view all rounds' reviews/feedbacks or specific rounds' reviews/feedbacks. Additionally, a single view adds visual clutter and increases cognitive load. &lt;br /&gt;
&lt;br /&gt;
With the 2 dropdowns users have more control over which reviews they would like to view. The first dropdown lets them choose from viewing reviews or author's feedback for the reviews provided, while the second dropdown allows them to select specific rounds (Round 1, Round 2, or both). This gives users the flexibility to focus on specific rounds as needed. Separating the reviews/author feedback based on a round filter reduces clutter, creating a cleaner, more organized layout. Users can now view reviews and feedback in a more structured way, which simplifies navigation and enhances readability and improves satisfaction.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Replaced the disorganized display of scores for submitted work, author feedback, and teammate reviews with a Structured Scorecard table for clearer presentation. ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a. Existing Design&lt;br /&gt;
[[File:OldScorecard.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b. Modified Design&lt;br /&gt;
[[File:NewScorecard.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
e.Rationale&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
The previous display of scores for submitted work, author feedback, and teammate reviews was fragmented and lacked clarity, making it difficult for users to interpret performance metrics at a glance. By introducing a structured scorecard table, we present all relevant data in a clear, organized format, enabling users to easily compare and understand scores across different rounds. This redesign improves usability by offering a more intuitive layout and better visibility of grading information.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== Removed the names of reviewers as they are supposed to remain anonymous. ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a. Existing Design&lt;br /&gt;
[[File:ReviewerNameChange.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b. Modified Design&lt;br /&gt;
[[File:ReviewerNameChange2.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
e.Rationale&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
The reason for this change is to shift focus more on quality and content of feedback and reviews rather than identity of reviewers. Anonymity encourages the reviewers to provide constructive criticism as reviewers will review without concern for any issues or repercussions.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== Removed information that didn’t add value ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a.Existing Design&lt;br /&gt;
[[File:Contributer RangeRemoved.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.Rationale&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
Contributor Name: The displayed contributor name only indicated the team member who submitted the work, which could cause confusion, as all team members contribute to the assignment. Additionally, team members' names are already displayed at the top of the page, making this information redundant. Removing it reduces visual clutter, focusing the user's attention on relevant grading information.&lt;br /&gt;
Score Range: The score range provided minimal value in understanding the overall grade, as the average score alone conveys a clearer summary of performance. By removing the range, the layout is simplified, helping users to focus on meaningful metrics without unnecessary data.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== Styling of Review Table ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a. Existing Design&lt;br /&gt;
[Image to be Added]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b. Modified Design&lt;br /&gt;
[Image to be Added]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
e.Rationale&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== Fixed styling Toggle Question List ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a. Existing Design&lt;br /&gt;
[[File:ToggleChange1.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b. Modified Design&lt;br /&gt;
[[File:ToggleChange.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
e.Rationale&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
The &amp;quot;Toggle Question List&amp;quot; styling was refined for better alignment and readability, enhancing the clarity of the page’s interactive elements.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== Unified Review Rounds Button and Interface Styling Update ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a. Existing Design&lt;br /&gt;
[[File:ReviewTableSeparateView.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b. Modified Design&lt;br /&gt;
[[File:UnifiedReviewTable.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
e.Rationale&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
Addition of “All Rounds’’ Button: The new &amp;quot;All Rounds&amp;quot; button allows users to view reviews from multiple rounds in a single table. This eliminates the need to switch between individual rounds, giving users a comprehensive view of the feedback across all rounds at once. &lt;br /&gt;
Color and Style Consistency: The colors and styles of the buttons were updated to match Expertiza’s established color scheme, ensuring a cohesive and professional look across the platform. This consistency aids in navigation, making the interface feel more intuitive and visually appealing. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== Expanded Submission Links Display ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a. Existing Design&lt;br /&gt;
[[File:ToggleSubmission.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b. Modified Design&lt;br /&gt;
[[File:ExpandedSubmissions.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
e.Rationale&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
The change enhances usability by directly presenting all relevant submission links to users without requiring additional interaction to show or hide them. This expanded view allows for quicker access to project resources and a more streamlined experience, improving efficiency and clarity in the peer review process on the grades/view_team page.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
== Dummy Data ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
== Testing ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
== Repository Links ==&lt;br /&gt;
[https://github.com/rarchitgupta/reimplementation-front-end FrontEnd]&lt;br /&gt;
&lt;br /&gt;
[https://github.com/expertiza/reimplementation-back-end Backend]&lt;br /&gt;
&lt;br /&gt;
[&amp;lt;Link to be Added&amp;gt; Pull Request]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
== Project Mentor ==&lt;br /&gt;
&lt;br /&gt;
Kashika Mallick  (kmallick@ncsu.edu)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
== Team Members ==&lt;br /&gt;
&lt;br /&gt;
Shafa Hassan (shassa22@ncsu.edu)&lt;br /&gt;
&lt;br /&gt;
Archit Gupta (agupta85@ncsu.edu)&lt;br /&gt;
&lt;br /&gt;
Ansh Ganatra (aganatr@ncsu.edu)&lt;/div&gt;</summary>
		<author><name>Shassa22</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2024_-_E2469._Reimplement_grades/view_team&amp;diff=157452</id>
		<title>CSC/ECE 517 Fall 2024 - E2469. Reimplement grades/view team</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2024_-_E2469._Reimplement_grades/view_team&amp;diff=157452"/>
		<updated>2024-10-29T15:46:30Z</updated>

		<summary type="html">&lt;p&gt;Shassa22: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Background ==&lt;br /&gt;
Expertiza is an open-source learning management system developed with Ruby on Rails, facilitating assignment creation, team management, and a structured peer review process. Designed for educational settings, Expertiza offers instructors tools to assign topics, manage teams, and allow students to collaborate on various assignment formats, including URLs and wiki pages. Its peer review functionality encourages students to provide feedback, promoting a collaborative learning experience.&lt;br /&gt;
&lt;br /&gt;
==Problem Statement ==&lt;br /&gt;
This project focuses on reimplementing the grades/view_team page in Expertiza. The current interface lacks modern design aesthetics and usability standards making it challenging for users to access and understand grading data efficiently. Our objective is to develop a fully functional and visually cohesive front end for the Grades View page. By enhancing visual consistency, simplifying information display, improving responsiveness, giving users freedom to select views, and intuitive layout, this redesign aims to provide an improved user experience.&lt;br /&gt;
&lt;br /&gt;
== Reimplementation and Improvements ==&lt;br /&gt;
=== Enhanced review filtering and author ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a.Existing Design&lt;br /&gt;
[[File:ShowReviews Feedback.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b. Modified Design&lt;br /&gt;
[[File:GradesView2.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
e.Rationale&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
The &amp;quot;Show Reviews&amp;quot; and &amp;quot;Show Author Feedback&amp;quot; link displays all the peer reviews from Round 1 and Round 2 and author's feedback from both rounds in a single view. This forces the users to scroll all the rounds' reviews and feedback sequentially which can be overwhelming when users wish to view feedback from a specific round. Also, users don't have the freedom and control to choose to view all rounds' reviews/feedbacks or specific rounds' reviews/feedbacks. Additionally, a single view adds visual clutter and increases cognitive load. &lt;br /&gt;
&lt;br /&gt;
With the 2 dropdowns users have more control over which reviews they would like to view. The first dropdown lets them choose from viewing reviews or author's feedback for the reviews provided, while the second dropdown allows them to select specific rounds (Round 1, Round 2, or both). This gives users the flexibility to focus on specific rounds as needed. Separating the reviews/author feedback based on a round filter reduces clutter, creating a cleaner, more organized layout. Users can now view reviews and feedback in a more structured way, which simplifies navigation and enhances readability and improves satisfaction.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== Replaced the disorganized display of scores for submitted work, author feedback, and teammate reviews with a Structured Scorecard table for clearer presentation. ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a. Existing Design&lt;br /&gt;
[[File:OldScorecard.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b. Modified Design&lt;br /&gt;
[[File:NewScorecard.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
e.Rationale&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
The previous display of scores for submitted work, author feedback, and teammate reviews was fragmented and lacked clarity, making it difficult for users to interpret performance metrics at a glance. By introducing a structured scorecard table, we present all relevant data in a clear, organized format, enabling users to easily compare and understand scores across different rounds. This redesign improves usability by offering a more intuitive layout and better visibility of grading information.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== Removed the names of reviewers as they are supposed to remain anonymous. ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a. Existing Design&lt;br /&gt;
[[File:ReviewerNameChange.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b. Modified Design&lt;br /&gt;
[[File:ReviewerNameChange2.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
e.Rationale&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
The reason for this change is to shift focus more on quality and content of feedback and reviews rather than identity of reviewers. Anonymity encourages the reviewers to provide constructive criticism as reviewers will review without concern for any issues or repercussions.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== Removed information that didn’t add value ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a.Existing Design&lt;br /&gt;
[[File:Contributer RangeRemoved.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.Rationale&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
Contributor Name: The displayed contributor name only indicated the team member who submitted the work, which could cause confusion, as all team members contribute to the assignment. Additionally, team members' names are already displayed at the top of the page, making this information redundant. Removing it reduces visual clutter, focusing the user's attention on relevant grading information.&lt;br /&gt;
Score Range: The score range provided minimal value in understanding the overall grade, as the average score alone conveys a clearer summary of performance. By removing the range, the layout is simplified, helping users to focus on meaningful metrics without unnecessary data.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== Styling of Review Table ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a. Existing Design&lt;br /&gt;
[Image to be Added]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b. Modified Design&lt;br /&gt;
[Image to be Added]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
e.Rationale&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== Fixed styling Toggle Question List ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a. Existing Design&lt;br /&gt;
[[File:ToggleChange1.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b. Modified Design&lt;br /&gt;
[[File:ToggleChange.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
e.Rationale&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
The &amp;quot;Toggle Question List&amp;quot; styling was refined for better alignment and readability, enhancing the clarity of the page’s interactive elements.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== Unified Review Rounds Button and Interface Styling Update ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a. Existing Design&lt;br /&gt;
[[File:ReviewTableSeparateView.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b. Modified Design&lt;br /&gt;
[[File:UnifiedReviewTable.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
e.Rationale&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
Addition of “All Rounds’’ Button: The new &amp;quot;All Rounds&amp;quot; button allows users to view reviews from multiple rounds in a single table. This eliminates the need to switch between individual rounds, giving users a comprehensive view of the feedback across all rounds at once. &lt;br /&gt;
Color and Style Consistency: The colors and styles of the buttons were updated to match Expertiza’s established color scheme, ensuring a cohesive and professional look across the platform. This consistency aids in navigation, making the interface feel more intuitive and visually appealing. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== Expanded Submission Links Display ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a. Existing Design&lt;br /&gt;
[[File:ToggleSubmission.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b. Modified Design&lt;br /&gt;
[[File:ExpandedSubmissions.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
e.Rationale&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
The change enhances usability by directly presenting all relevant submission links to users without requiring additional interaction to show or hide them. This expanded view allows for quicker access to project resources and a more streamlined experience, improving efficiency and clarity in the peer review process on the grades/view_team page.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
== Dummy Data ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
== Testing ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
== Repository Links ==&lt;br /&gt;
[https://github.com/rarchitgupta/reimplementation-front-end FrontEnd]&lt;br /&gt;
&lt;br /&gt;
[https://github.com/expertiza/reimplementation-back-end Backend]&lt;br /&gt;
&lt;br /&gt;
[&amp;lt;Link to be Added&amp;gt; Pull Request]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
== Project Mentor ==&lt;br /&gt;
&lt;br /&gt;
Kashika Mallick  (kmallick@ncsu.edu)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
== Team Members ==&lt;br /&gt;
&lt;br /&gt;
Shafa Hassan (shassa22@ncsu.edu)&lt;br /&gt;
&lt;br /&gt;
Archit Gupta (agupta85@ncsu.edu)&lt;br /&gt;
&lt;br /&gt;
Ansh Ganatra (aganatr@ncsu.edu)&lt;/div&gt;</summary>
		<author><name>Shassa22</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2024_-_E2469._Reimplement_grades/view_team&amp;diff=157451</id>
		<title>CSC/ECE 517 Fall 2024 - E2469. Reimplement grades/view team</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2024_-_E2469._Reimplement_grades/view_team&amp;diff=157451"/>
		<updated>2024-10-29T15:44:48Z</updated>

		<summary type="html">&lt;p&gt;Shassa22: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Background ==&lt;br /&gt;
Expertiza is an open-source learning management system developed with Ruby on Rails, facilitating assignment creation, team management, and a structured peer review process. Designed for educational settings, Expertiza offers instructors tools to assign topics, manage teams, and allow students to collaborate on various assignment formats, including URLs and wiki pages. Its peer review functionality encourages students to provide feedback, promoting a collaborative learning experience.&lt;br /&gt;
&lt;br /&gt;
==Problem Statement ==&lt;br /&gt;
This project focuses on reimplementing the grades/view_team page in Expertiza. The current interface lacks modern design aesthetics and usability standards making it challenging for users to access and understand grading data efficiently. Our objective is to develop a fully functional and visually cohesive front end for the Grades View page. By enhancing visual consistency, simplifying information display, improving responsiveness, giving users freedom to select views, and intuitive layout, this redesign aims to provide an improved user experience.&lt;br /&gt;
&lt;br /&gt;
== Reimplementation and Improvements ==&lt;br /&gt;
=== Enhanced review filtering and author ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a.Existing Design&lt;br /&gt;
[[File:ShowReviews Feedback.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b. Modified Design&lt;br /&gt;
[[File:GradesView2.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
e.Rationale&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
The &amp;quot;Show Reviews&amp;quot; and &amp;quot;Show Author Feedback&amp;quot; link displays all the peer reviews from Round 1 and Round 2 and author's feedback from both rounds in a single view. This forces the users to scroll all the rounds' reviews and feedback sequentially which can be overwhelming when users wish to view feedback from a specific round. Also, users don't have the freedom and control to choose to view all rounds' reviews/feedbacks or specific rounds' reviews/feedbacks. Additionally, a single view adds visual clutter and increases cognitive load. &lt;br /&gt;
&lt;br /&gt;
With the 2 dropdowns users have more control over which reviews they would like to view. The first dropdown lets them choose from viewing reviews or author's feedback for the reviews provided, while the second dropdown allows them to select specific rounds (Round 1, Round 2, or both). This gives users the flexibility to focus on specific rounds as needed. Separating the reviews/author feedback based on a round filter reduces clutter, creating a cleaner, more organized layout. Users can now view reviews and feedback in a more structured way, which simplifies navigation and enhances readability and improves satisfaction.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== Replaced the disorganized display of scores for submitted work, author feedback, and teammate reviews with a Structured Scorecard table for clearer presentation. ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a. Existing Design&lt;br /&gt;
[[File:OldScorecard.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b. Modified Design&lt;br /&gt;
[[File:NewScorecard.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
e.Rationale&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
The previous display of scores for submitted work, author feedback, and teammate reviews was fragmented and lacked clarity, making it difficult for users to interpret performance metrics at a glance. By introducing a structured scorecard table, we present all relevant data in a clear, organized format, enabling users to easily compare and understand scores across different rounds. This redesign improves usability by offering a more intuitive layout and better visibility of grading information.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== Removed the names of reviewers as they are supposed to remain anonymous. ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a. Existing Design&lt;br /&gt;
[[File:ReviewerNameChange.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b. Modified Design&lt;br /&gt;
[[File:ReviewerNameChange2.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
e.Rationale&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
The reason for this change is to shift focus more on quality and content of feedback and reviews rather than identity of reviewers. Anonymity encourages the reviewers to provide constructive criticism as reviewers will review without concern for any issues or repercussions.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== Removed information that didn’t add value ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a.Existing Design&lt;br /&gt;
[[File:Contributer RangeRemoved.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.Rationale&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
Contributor Name: The displayed contributor name only indicated the team member who submitted the work, which could cause confusion, as all team members contribute to the assignment. Additionally, team members' names are already displayed at the top of the page, making this information redundant. Removing it reduces visual clutter, focusing the user's attention on relevant grading information.&lt;br /&gt;
Score Range: The score range provided minimal value in understanding the overall grade, as the average score alone conveys a clearer summary of performance. By removing the range, the layout is simplified, helping users to focus on meaningful metrics without unnecessary data.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== Styling of Review Table ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a. Existing Design&lt;br /&gt;
[Image to be Added]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b. Modified Design&lt;br /&gt;
[Image to be Added]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
e.Rationale&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== Fixed styling Toggle Question List ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a. Existing Design&lt;br /&gt;
[[File:ToggleChange1.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b. Modified Design&lt;br /&gt;
[[File:ToggleChange.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
e.Rationale&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
The &amp;quot;Toggle Question List&amp;quot; styling was refined for better alignment and readability, enhancing the clarity of the page’s interactive elements.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== Unified Review Rounds Button and Interface Styling Update ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a. Existing Design&lt;br /&gt;
[[File:ReviewTableSeparateView.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b. Modified Design&lt;br /&gt;
[[File:UnifiedReviewTable.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
e.Rationale&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
Addition of “All Rounds’’ Button: The new &amp;quot;All Rounds&amp;quot; button allows users to view reviews from multiple rounds in a single table. This eliminates the need to switch between individual rounds, giving users a comprehensive view of the feedback across all rounds at once. &lt;br /&gt;
Color and Style Consistency: The colors and styles of the buttons were updated to match Expertiza’s established color scheme, ensuring a cohesive and professional look across the platform. This consistency aids in navigation, making the interface feel more intuitive and visually appealing. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== Expanded Submission Links Display ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a. Existing Design&lt;br /&gt;
[[File:ToggleSubmission.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b. Modified Design&lt;br /&gt;
[[File:ExpandedSubmissions.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
e.Rationale&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
The change enhances usability by directly presenting all relevant submission links to users without requiring additional interaction to show or hide them. This expanded view allows for quicker access to project resources and a more streamlined experience, improving efficiency and clarity in the peer review process on the grades/view_team page.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
== Repository Links ==&lt;br /&gt;
[https://github.com/rarchitgupta/reimplementation-front-end FrontEnd]&lt;br /&gt;
&lt;br /&gt;
[https://github.com/expertiza/reimplementation-back-end Backend]&lt;br /&gt;
&lt;br /&gt;
[&amp;lt;Link to be Added&amp;gt; Pull Request]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
== Project Mentor ==&lt;br /&gt;
&lt;br /&gt;
Kashika Mallick  (kmallick@ncsu.edu)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
== Team Members ==&lt;br /&gt;
&lt;br /&gt;
Shafa Hassan (shassa22@ncsu.edu)&lt;br /&gt;
&lt;br /&gt;
Archit Gupta (agupta85@ncsu.edu)&lt;br /&gt;
&lt;br /&gt;
Ansh Ganatra (aganatr@ncsu.edu)&lt;/div&gt;</summary>
		<author><name>Shassa22</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2024_-_E2469._Reimplement_grades/view_team&amp;diff=157450</id>
		<title>CSC/ECE 517 Fall 2024 - E2469. Reimplement grades/view team</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2024_-_E2469._Reimplement_grades/view_team&amp;diff=157450"/>
		<updated>2024-10-29T15:37:23Z</updated>

		<summary type="html">&lt;p&gt;Shassa22: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Background ==&lt;br /&gt;
Expertiza is an open-source learning management system developed with Ruby on Rails, facilitating assignment creation, team management, and a structured peer review process. Designed for educational settings, Expertiza offers instructors tools to assign topics, manage teams, and allow students to collaborate on various assignment formats, including URLs and wiki pages. Its peer review functionality encourages students to provide feedback, promoting a collaborative learning experience.&lt;br /&gt;
&lt;br /&gt;
==Problem Statement ==&lt;br /&gt;
This project focuses on reimplementing the grades/view_team page in Expertiza. The current interface lacks modern design aesthetics and usability standards making it challenging for users to access and understand grading data efficiently. Our objective is to develop a fully functional and visually cohesive front end for the Grades View page. By enhancing visual consistency, simplifying information display, improving responsiveness, giving users freedom to select views, and intuitive layout, this redesign aims to provide an improved user experience.&lt;br /&gt;
&lt;br /&gt;
== Reimplementation and Improvements ==&lt;br /&gt;
=== Enhanced review filtering and author ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a.Existing Design&lt;br /&gt;
[[File:ShowReviews Feedback.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b. Modified Design&lt;br /&gt;
[[File:GradesView2.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
e.Rationale&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
The &amp;quot;Show Reviews&amp;quot; and &amp;quot;Show Author Feedback&amp;quot; link displays all the peer reviews from Round 1 and Round 2 and author's feedback from both rounds in a single view. This forces the users to scroll all the rounds' reviews and feedback sequentially which can be overwhelming when users wish to view feedback from a specific round. Also, users don't have the freedom and control to choose to view all rounds' reviews/feedbacks or specific rounds' reviews/feedbacks. Additionally, a single view adds visual clutter and increases cognitive load. &lt;br /&gt;
&lt;br /&gt;
With the 2 dropdowns users have more control over which reviews they would like to view. The first dropdown lets them choose from viewing reviews or author's feedback for the reviews provided, while the second dropdown allows them to select specific rounds (Round 1, Round 2, or both). This gives users the flexibility to focus on specific rounds as needed. Separating the reviews/author feedback based on a round filter reduces clutter, creating a cleaner, more organized layout. Users can now view reviews and feedback in a more structured way, which simplifies navigation and enhances readability and improves satisfaction.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== Replaced the disorganized display of scores for submitted work, author feedback, and teammate reviews with a Structured Scorecard table for clearer presentation. ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a. Existing Design&lt;br /&gt;
[[File:OldScorecard.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b. Modified Design&lt;br /&gt;
[[File:NewScorecard.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
e.Rationale&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
The previous display of scores for submitted work, author feedback, and teammate reviews was fragmented and lacked clarity, making it difficult for users to interpret performance metrics at a glance. By introducing a structured scorecard table, we present all relevant data in a clear, organized format, enabling users to easily compare and understand scores across different rounds. This redesign improves usability by offering a more intuitive layout and better visibility of grading information.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== Removed the names of reviewers as they are supposed to remain anonymous. ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a. Existing Design&lt;br /&gt;
[[File:ReviewerNameChange.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b. Modified Design&lt;br /&gt;
[[File:ReviewerNameChange2.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
e.Rationale&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
The reason for this change is to shift focus more on quality and content of feedback and reviews rather than identity of reviewers. Anonymity encourages the reviewers to provide constructive criticism as reviewers will review without concern for any issues or repercussions.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== Removed information that didn’t add value ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a.Existing Design&lt;br /&gt;
[[File:Contributer RangeRemoved.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.Rationale&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
Contributor Name: The displayed contributor name only indicated the team member who submitted the work, which could cause confusion, as all team members contribute to the assignment. Additionally, team members' names are already displayed at the top of the page, making this information redundant. Removing it reduces visual clutter, focusing the user's attention on relevant grading information.&lt;br /&gt;
Score Range: The score range provided minimal value in understanding the overall grade, as the average score alone conveys a clearer summary of performance. By removing the range, the layout is simplified, helping users to focus on meaningful metrics without unnecessary data.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== Styling of Review Table ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a. Existing Design&lt;br /&gt;
[Image to be Added]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b. Modified Design&lt;br /&gt;
[Image to be Added]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
e.Rationale&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== Fixed styling Toggle Question List ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a. Existing Design&lt;br /&gt;
[[File:ToggleChange1.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b. Modified Design&lt;br /&gt;
[[File:ToggleChange.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
e.Rationale&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
The &amp;quot;Toggle Question List&amp;quot; styling was refined for better alignment and readability, enhancing the clarity of the page’s interactive elements.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== Unified Review Rounds Button and Interface Styling Update ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a. Existing Design&lt;br /&gt;
[[File:ReviewTableSeparateView.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b. Modified Design&lt;br /&gt;
[[File:UnifiedReviewTable.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
e.Rationale&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
Addition of “All Rounds’’ Button: The new &amp;quot;All Rounds&amp;quot; button allows users to view reviews from multiple rounds in a single table. This eliminates the need to switch between individual rounds, giving users a comprehensive view of the feedback across all rounds at once. &lt;br /&gt;
Color and Style Consistency: The colors and styles of the buttons were updated to match Expertiza’s established color scheme, ensuring a cohesive and professional look across the platform. This consistency aids in navigation, making the interface feel more intuitive and visually appealing. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== Expanded Submission Links Display ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a. Existing Design&lt;br /&gt;
[[File:ToggleSubmission.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b. Modified Design&lt;br /&gt;
[[File:ExpandedSubmissions.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
e.Rationale&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
The change enhances usability by directly presenting all relevant submission links to users without requiring additional interaction to show or hide them. This expanded view allows for quicker access to project resources and a more streamlined experience, improving efficiency and clarity in the peer review process on the grades/view_team page.&lt;/div&gt;</summary>
		<author><name>Shassa22</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2024_-_E2469._Reimplement_grades/view_team&amp;diff=157449</id>
		<title>CSC/ECE 517 Fall 2024 - E2469. Reimplement grades/view team</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2024_-_E2469._Reimplement_grades/view_team&amp;diff=157449"/>
		<updated>2024-10-29T15:36:13Z</updated>

		<summary type="html">&lt;p&gt;Shassa22: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Background ==&lt;br /&gt;
Expertiza is an open-source learning management system developed with Ruby on Rails, facilitating assignment creation, team management, and a structured peer review process. Designed for educational settings, Expertiza offers instructors tools to assign topics, manage teams, and allow students to collaborate on various assignment formats, including URLs and wiki pages. Its peer review functionality encourages students to provide feedback, promoting a collaborative learning experience.&lt;br /&gt;
&lt;br /&gt;
==Problem Statement ==&lt;br /&gt;
This project focuses on reimplementing the grades/view_team page in Expertiza. The current interface lacks modern design aesthetics and usability standards making it challenging for users to access and understand grading data efficiently. Our objective is to develop a fully functional and visually cohesive front end for the Grades View page. By enhancing visual consistency, simplifying information display, improving responsiveness, giving users freedom to select views, and intuitive layout, this redesign aims to provide an improved user experience.&lt;br /&gt;
&lt;br /&gt;
== Reimplementation and Improvements ==&lt;br /&gt;
=== Enhanced review filtering and author ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a.Existing Design&lt;br /&gt;
[[File:ShowReviews Feedback.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b. Modified Design&lt;br /&gt;
[[File:GradesView2.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
e.Rationale&lt;br /&gt;
The &amp;quot;Show Reviews&amp;quot; and &amp;quot;Show Author Feedback&amp;quot; link displays all the peer reviews from Round 1 and Round 2 and author's feedback from both rounds in a single view. This forces the users to scroll all the rounds' reviews and feedback sequentially which can be overwhelming when users wish to view feedback from a specific round. Also, users don't have the freedom and control to choose to view all rounds' reviews/feedbacks or specific rounds' reviews/feedbacks. Additionally, a single view adds visual clutter and increases cognitive load. &lt;br /&gt;
&lt;br /&gt;
With the 2 dropdowns users have more control over which reviews they would like to view. The first dropdown lets them choose from viewing reviews or author's feedback for the reviews provided, while the second dropdown allows them to select specific rounds (Round 1, Round 2, or both). This gives users the flexibility to focus on specific rounds as needed. Separating the reviews/author feedback based on a round filter reduces clutter, creating a cleaner, more organized layout. Users can now view reviews and feedback in a more structured way, which simplifies navigation and enhances readability and improves satisfaction.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== Replaced the disorganized display of scores for submitted work, author feedback, and teammate reviews with a Structured Scorecard table for clearer presentation. ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a. Existing Design&lt;br /&gt;
[[File:OldScorecard.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b. Modified Design&lt;br /&gt;
[[File:NewScorecard.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
e.Rationale&lt;br /&gt;
The previous display of scores for submitted work, author feedback, and teammate reviews was fragmented and lacked clarity, making it difficult for users to interpret performance metrics at a glance. By introducing a structured scorecard table, we present all relevant data in a clear, organized format, enabling users to easily compare and understand scores across different rounds. This redesign improves usability by offering a more intuitive layout and better visibility of grading information.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== Removed the names of reviewers as they are supposed to remain anonymous. ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a. Existing Design&lt;br /&gt;
[[File:ReviewerNameChange.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b. Modified Design&lt;br /&gt;
[[File:ReviewerNameChange2.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
e.Rationale&lt;br /&gt;
The reason for this change is to shift focus more on quality and content of feedback and reviews rather than identity of reviewers. Anonymity encourages the reviewers to provide constructive criticism as reviewers will review without concern for any issues or repercussions.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== Removed information that didn’t add value ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a.Existing Design&lt;br /&gt;
[[File:Contributer RangeRemoved.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.Rationale&lt;br /&gt;
Contributor Name: The displayed contributor name only indicated the team member who submitted the work, which could cause confusion, as all team members contribute to the assignment. Additionally, team members' names are already displayed at the top of the page, making this information redundant. Removing it reduces visual clutter, focusing the user's attention on relevant grading information.&lt;br /&gt;
Score Range: The score range provided minimal value in understanding the overall grade, as the average score alone conveys a clearer summary of performance. By removing the range, the layout is simplified, helping users to focus on meaningful metrics without unnecessary data.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== Styling of Review Table ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a. Existing Design&lt;br /&gt;
[Image to be Added]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b. Modified Design&lt;br /&gt;
[Image to be Added]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
e.Rationale&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== Fixed styling Toggle Question List ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a. Existing Design&lt;br /&gt;
[[File:ToggleChange1.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b. Modified Design&lt;br /&gt;
[[File:ToggleChange.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
e.Rationale&lt;br /&gt;
The &amp;quot;Toggle Question List&amp;quot; styling was refined for better alignment and readability, enhancing the clarity of the page’s interactive elements.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== Unified Review Rounds Button and Interface Styling Update ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a. Existing Design&lt;br /&gt;
[[File:ReviewTableSeparateView.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b. Modified Design&lt;br /&gt;
[[File:UnifiedReviewTable.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
e.Rationale&lt;br /&gt;
Addition of “All Rounds’’ Button: The new &amp;quot;All Rounds&amp;quot; button allows users to view reviews from multiple rounds in a single table. This eliminates the need to switch between individual rounds, giving users a comprehensive view of the feedback across all rounds at once. &lt;br /&gt;
Color and Style Consistency: The colors and styles of the buttons were updated to match Expertiza’s established color scheme, ensuring a cohesive and professional look across the platform. This consistency aids in navigation, making the interface feel more intuitive and visually appealing. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== Expanded Submission Links Display ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a. Existing Design&lt;br /&gt;
[[File:ToggleSubmission.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b. Modified Design&lt;br /&gt;
[[File:ExpandedSubmissions.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
e.Rationale&lt;br /&gt;
The change enhances usability by directly presenting all relevant submission links to users without requiring additional interaction to show or hide them. This expanded view allows for quicker access to project resources and a more streamlined experience, improving efficiency and clarity in the peer review process on the grades/view_team page.&lt;/div&gt;</summary>
		<author><name>Shassa22</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2024_-_E2469._Reimplement_grades/view_team&amp;diff=157448</id>
		<title>CSC/ECE 517 Fall 2024 - E2469. Reimplement grades/view team</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2024_-_E2469._Reimplement_grades/view_team&amp;diff=157448"/>
		<updated>2024-10-29T15:33:13Z</updated>

		<summary type="html">&lt;p&gt;Shassa22: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Background ==&lt;br /&gt;
Expertiza is an open-source learning management system developed with Ruby on Rails, facilitating assignment creation, team management, and a structured peer review process. Designed for educational settings, Expertiza offers instructors tools to assign topics, manage teams, and allow students to collaborate on various assignment formats, including URLs and wiki pages. Its peer review functionality encourages students to provide feedback, promoting a collaborative learning experience.&lt;br /&gt;
&lt;br /&gt;
==Problem Statement ==&lt;br /&gt;
This project focuses on reimplementing the grades/view_team page in Expertiza. The current interface lacks modern design aesthetics and usability standards making it challenging for users to access and understand grading data efficiently. Our objective is to develop a fully functional and visually cohesive front end for the Grades View page. By enhancing visual consistency, simplifying information display, improving responsiveness, giving users freedom to select views, and intuitive layout, this redesign aims to provide an improved user experience.&lt;br /&gt;
&lt;br /&gt;
== Reimplementation and Improvements ==&lt;br /&gt;
=== Enhanced review filtering and author ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a. Existing Design&lt;br /&gt;
[[File:ShowReviews Feedback.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b. Modified Design&lt;br /&gt;
[[File:GradesView2.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
e.Rationale&lt;br /&gt;
The &amp;quot;Show Reviews&amp;quot; and &amp;quot;Show Author Feedback&amp;quot; link displays all the peer reviews from Round 1 and Round 2 and author's feedback from both rounds in a single view. This forces the users to scroll all the rounds' reviews and feedback sequentially which can be overwhelming when users wish to view feedback from a specific round. Also, users don't have the freedom and control to choose to view all rounds' reviews/feedbacks or specific rounds' reviews/feedbacks. Additionally, a single view adds visual clutter and increases cognitive load. &lt;br /&gt;
&lt;br /&gt;
With the 2 dropdowns users have more control over which reviews they would like to view. The first dropdown lets them choose from viewing reviews or author's feedback for the reviews provided, while the second dropdown allows them to select specific rounds (Round 1, Round 2, or both). This gives users the flexibility to focus on specific rounds as needed. Separating the reviews/author feedback based on a round filter reduces clutter, creating a cleaner, more organized layout. Users can now view reviews and feedback in a more structured way, which simplifies navigation and enhances readability and improves satisfaction.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== Replaced the disorganized display of scores for submitted work, author feedback, and teammate reviews with a Structured Scorecard table for clearer presentation. ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a. Existing Design&lt;br /&gt;
[[File:OldScorecard.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b. Modified Design&lt;br /&gt;
[[File:NewScorecard.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
e.Rationale&lt;br /&gt;
The previous display of scores for submitted work, author feedback, and teammate reviews was fragmented and lacked clarity, making it difficult for users to interpret performance metrics at a glance. By introducing a structured scorecard table, we present all relevant data in a clear, organized format, enabling users to easily compare and understand scores across different rounds. This redesign improves usability by offering a more intuitive layout and better visibility of grading information.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== Removed the names of reviewers as they are supposed to remain anonymous. ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a. Existing Design&lt;br /&gt;
[[File:ReviewerNameChange.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b. Modified Design&lt;br /&gt;
[[File:ReviewerNameChange2.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
e.Rationale&lt;br /&gt;
The reason for this change is to shift focus more on quality and content of feedback and reviews rather than identity of reviewers. Anonymity encourages the reviewers to provide constructive criticism as reviewers will review without concern for any issues or repercussions.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== Removed information that didn’t add value ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a. Existing Design&lt;br /&gt;
[[File:Contributer RangeRemoved.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.Rationale&lt;br /&gt;
Contributor Name: The displayed contributor name only indicated the team member who submitted the work, which could cause confusion, as all team members contribute to the assignment. Additionally, team members' names are already displayed at the top of the page, making this information redundant. Removing it reduces visual clutter, focusing the user's attention on relevant grading information.&lt;br /&gt;
Score Range: The score range provided minimal value in understanding the overall grade, as the average score alone conveys a clearer summary of performance. By removing the range, the layout is simplified, helping users to focus on meaningful metrics without unnecessary data.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== Styling of Review Table ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a. Existing Design&lt;br /&gt;
[[File:ShowReviews Feedback.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b. Modified Design&lt;br /&gt;
[[File:GradesView2.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
e.Rationale&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== Fixed styling Toggle Question List ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a. Existing Design&lt;br /&gt;
[[File:ToggleChange1.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b. Modified Design&lt;br /&gt;
[File:ToggleChange.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
e.Rationale&lt;br /&gt;
The &amp;quot;Toggle Question List&amp;quot; styling was refined for better alignment and readability, enhancing the clarity of the page’s interactive elements.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== Unified Review Rounds Button and Interface Styling Update ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a. Existing Design&lt;br /&gt;
[File:ReviewTableSeparateView.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b. Modified Design&lt;br /&gt;
[File:UnifiedReviewTable.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
e.Rationale&lt;br /&gt;
Addition of “All Rounds’’ Button: The new &amp;quot;All Rounds&amp;quot; button allows users to view reviews from multiple rounds in a single table. This eliminates the need to switch between individual rounds, giving users a comprehensive view of the feedback across all rounds at once. &lt;br /&gt;
Color and Style Consistency: The colors and styles of the buttons were updated to match Expertiza’s established color scheme, ensuring a cohesive and professional look across the platform. This consistency aids in navigation, making the interface feel more intuitive and visually appealing. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== Expanded Submission Links Display ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a. Existing Design&lt;br /&gt;
[File:ToggleSubmission.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b. Modified Design&lt;br /&gt;
[File:ExpandedSubmissions.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
e.Rationale&lt;br /&gt;
The change enhances usability by directly presenting all relevant submission links to users without requiring additional interaction to show or hide them. This expanded view allows for quicker access to project resources and a more streamlined experience, improving efficiency and clarity in the peer review process on the grades/view_team page.&lt;/div&gt;</summary>
		<author><name>Shassa22</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=File:ExpandedSubmissions.png&amp;diff=157447</id>
		<title>File:ExpandedSubmissions.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=File:ExpandedSubmissions.png&amp;diff=157447"/>
		<updated>2024-10-29T15:32:05Z</updated>

		<summary type="html">&lt;p&gt;Shassa22: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Shassa22</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=File:ToggleSubmission.png&amp;diff=157446</id>
		<title>File:ToggleSubmission.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=File:ToggleSubmission.png&amp;diff=157446"/>
		<updated>2024-10-29T15:31:27Z</updated>

		<summary type="html">&lt;p&gt;Shassa22: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Shassa22</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=File:ReviewTableSeparateView.png&amp;diff=157445</id>
		<title>File:ReviewTableSeparateView.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=File:ReviewTableSeparateView.png&amp;diff=157445"/>
		<updated>2024-10-29T15:28:32Z</updated>

		<summary type="html">&lt;p&gt;Shassa22: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Shassa22</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=File:UnifiedReviewTable.png&amp;diff=157444</id>
		<title>File:UnifiedReviewTable.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=File:UnifiedReviewTable.png&amp;diff=157444"/>
		<updated>2024-10-29T15:28:00Z</updated>

		<summary type="html">&lt;p&gt;Shassa22: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Shassa22</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=File:ToggleChange1.png&amp;diff=157443</id>
		<title>File:ToggleChange1.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=File:ToggleChange1.png&amp;diff=157443"/>
		<updated>2024-10-29T15:26:26Z</updated>

		<summary type="html">&lt;p&gt;Shassa22: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Shassa22</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=File:ToggleChange.png&amp;diff=157442</id>
		<title>File:ToggleChange.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=File:ToggleChange.png&amp;diff=157442"/>
		<updated>2024-10-29T15:25:53Z</updated>

		<summary type="html">&lt;p&gt;Shassa22: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Shassa22</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=File:Contributer_RangeRemoved.png&amp;diff=157440</id>
		<title>File:Contributer RangeRemoved.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=File:Contributer_RangeRemoved.png&amp;diff=157440"/>
		<updated>2024-10-29T15:23:15Z</updated>

		<summary type="html">&lt;p&gt;Shassa22: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Shassa22</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2024_-_E2469._Reimplement_grades/view_team&amp;diff=157438</id>
		<title>CSC/ECE 517 Fall 2024 - E2469. Reimplement grades/view team</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2024_-_E2469._Reimplement_grades/view_team&amp;diff=157438"/>
		<updated>2024-10-29T15:21:16Z</updated>

		<summary type="html">&lt;p&gt;Shassa22: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Background ==&lt;br /&gt;
Expertiza is an open-source learning management system developed with Ruby on Rails, facilitating assignment creation, team management, and a structured peer review process. Designed for educational settings, Expertiza offers instructors tools to assign topics, manage teams, and allow students to collaborate on various assignment formats, including URLs and wiki pages. Its peer review functionality encourages students to provide feedback, promoting a collaborative learning experience.&lt;br /&gt;
&lt;br /&gt;
==Problem Statement ==&lt;br /&gt;
This project focuses on reimplementing the grades/view_team page in Expertiza. The current interface lacks modern design aesthetics and usability standards making it challenging for users to access and understand grading data efficiently. Our objective is to develop a fully functional and visually cohesive front end for the Grades View page. By enhancing visual consistency, simplifying information display, improving responsiveness, giving users freedom to select views, and intuitive layout, this redesign aims to provide an improved user experience.&lt;br /&gt;
&lt;br /&gt;
== Reimplementation and Improvements ==&lt;br /&gt;
=== 1. Enhanced review filtering and author ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a. Existing Design&lt;br /&gt;
[[File:ShowReviews Feedback.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b. Modified Design&lt;br /&gt;
[[File:GradesView2.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
e.Rationale&lt;br /&gt;
The &amp;quot;Show Reviews&amp;quot; and &amp;quot;Show Author Feedback&amp;quot; link displays all the peer reviews from Round 1 and Round 2 and author's feedback from both rounds in a single view. This forces the users to scroll all the rounds' reviews and feedback sequentially which can be overwhelming when users wish to view feedback from a specific round. Also, users don't have the freedom and control to choose to view all rounds' reviews/feedbacks or specific rounds' reviews/feedbacks. Additionally, a single view adds visual clutter and increases cognitive load. &lt;br /&gt;
&lt;br /&gt;
With the 2 dropdowns users have more control over which reviews they would like to view. The first dropdown lets them choose from viewing reviews or author's feedback for the reviews provided, while the second dropdown allows them to select specific rounds (Round 1, Round 2, or both). This gives users the flexibility to focus on specific rounds as needed. Separating the reviews/author feedback based on a round filter reduces clutter, creating a cleaner, more organized layout. Users can now view reviews and feedback in a more structured way, which simplifies navigation and enhances readability and improves satisfaction.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== 2. Replaced the disorganized display of scores for submitted work, author feedback, and teammate reviews with a Structured Scorecard table for clearer presentation. ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a. Existing Design&lt;br /&gt;
[[File:OldScorecard.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b. Modified Design&lt;br /&gt;
[[File:NewScorecard.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
e.Rationale&lt;br /&gt;
The previous display of scores for submitted work, author feedback, and teammate reviews was fragmented and lacked clarity, making it difficult for users to interpret performance metrics at a glance. By introducing a structured scorecard table, we present all relevant data in a clear, organized format, enabling users to easily compare and understand scores across different rounds. This redesign improves usability by offering a more intuitive layout and better visibility of grading information.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== 3. Removed the names of reviewers as they are supposed to remain anonymous. ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a. Existing Design&lt;br /&gt;
[[File:ReviewerNameChange.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b. Modified Design&lt;br /&gt;
[[File:ReviewerNameChange2.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
e.Rationale&lt;br /&gt;
The reason for this change is to shift focus more on quality and content of feedback and reviews rather than identity of reviewers. Anonymity encourages the reviewers to provide constructive criticism as reviewers will review without concern for any issues or repercussions.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== 4. Removed information that didn’t add value ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a. Existing Design&lt;br /&gt;
[[File:ShowReviews Feedback.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b. Modified Design&lt;br /&gt;
[[File:GradesView2.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
e.Rationale&lt;br /&gt;
Contributor Name: The displayed contributor name only indicated the team member who submitted the work, which could cause confusion, as all team members contribute to the assignment. Additionally, team members' names are already displayed at the top of the page, making this information redundant. Removing it reduces visual clutter, focusing the user's attention on relevant grading information.&lt;br /&gt;
Score Range: The score range provided minimal value in understanding the overall grade, as the average score alone conveys a clearer summary of performance. By removing the range, the layout is simplified, helping users to focus on meaningful metrics without unnecessary data.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== 5. Styling of Review Table ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a. Existing Design&lt;br /&gt;
[[File:ShowReviews Feedback.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b. Modified Design&lt;br /&gt;
[[File:GradesView2.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
e.Rationale&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== 6. Fixed styling Toggle Question List ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a. Existing Design&lt;br /&gt;
[[File:ShowReviews Feedback.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b. Modified Design&lt;br /&gt;
[[File:GradesView2.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
e.Rationale&lt;br /&gt;
The &amp;quot;Toggle Question List&amp;quot; styling was refined for better alignment and readability, enhancing the clarity of the page’s interactive elements.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== 7. Unified Review Rounds Button and Interface Styling Update ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a. Existing Design&lt;br /&gt;
[[File:ShowReviews Feedback.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b. Modified Design&lt;br /&gt;
[[File:GradesView2.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
e.Rationale&lt;br /&gt;
Addition of “All Rounds’’ Button: The new &amp;quot;All Rounds&amp;quot; button allows users to view reviews from multiple rounds in a single table. This eliminates the need to switch between individual rounds, giving users a comprehensive view of the feedback across all rounds at once. &lt;br /&gt;
Color and Style Consistency: The colors and styles of the buttons were updated to match Expertiza’s established color scheme, ensuring a cohesive and professional look across the platform. This consistency aids in navigation, making the interface feel more intuitive and visually appealing. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== 8. Expanded Submission Links Display ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a. Existing Design&lt;br /&gt;
[[File:ShowReviews Feedback.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b. Modified Design&lt;br /&gt;
[[File:GradesView2.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
e.Rationale&lt;br /&gt;
The change enhances usability by directly presenting all relevant submission links to users without requiring additional interaction to show or hide them. This expanded view allows for quicker access to project resources and a more streamlined experience, improving efficiency and clarity in the peer review process on the grades/view_team page.&lt;/div&gt;</summary>
		<author><name>Shassa22</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=File:ReviewerNameChange.png&amp;diff=157437</id>
		<title>File:ReviewerNameChange.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=File:ReviewerNameChange.png&amp;diff=157437"/>
		<updated>2024-10-29T15:20:41Z</updated>

		<summary type="html">&lt;p&gt;Shassa22: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Shassa22</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=File:ReviewerNameChange2.png&amp;diff=157436</id>
		<title>File:ReviewerNameChange2.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=File:ReviewerNameChange2.png&amp;diff=157436"/>
		<updated>2024-10-29T15:20:18Z</updated>

		<summary type="html">&lt;p&gt;Shassa22: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Shassa22</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=File:OldScorecard.png&amp;diff=157435</id>
		<title>File:OldScorecard.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=File:OldScorecard.png&amp;diff=157435"/>
		<updated>2024-10-29T15:17:11Z</updated>

		<summary type="html">&lt;p&gt;Shassa22: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Shassa22</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=File:NewScorecard.png&amp;diff=157434</id>
		<title>File:NewScorecard.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=File:NewScorecard.png&amp;diff=157434"/>
		<updated>2024-10-29T15:16:22Z</updated>

		<summary type="html">&lt;p&gt;Shassa22: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Shassa22</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2024_-_E2469._Reimplement_grades/view_team&amp;diff=157433</id>
		<title>CSC/ECE 517 Fall 2024 - E2469. Reimplement grades/view team</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2024_-_E2469._Reimplement_grades/view_team&amp;diff=157433"/>
		<updated>2024-10-29T15:10:37Z</updated>

		<summary type="html">&lt;p&gt;Shassa22: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Background ==&lt;br /&gt;
Expertiza is an open-source learning management system developed with Ruby on Rails, facilitating assignment creation, team management, and a structured peer review process. Designed for educational settings, Expertiza offers instructors tools to assign topics, manage teams, and allow students to collaborate on various assignment formats, including URLs and wiki pages. Its peer review functionality encourages students to provide feedback, promoting a collaborative learning experience.&lt;br /&gt;
&lt;br /&gt;
==Problem Statement ==&lt;br /&gt;
This project focuses on reimplementing the grades/view_team page in Expertiza. The current interface lacks modern design aesthetics and usability standards making it challenging for users to access and understand grading data efficiently. Our objective is to develop a fully functional and visually cohesive front end for the Grades View page. By enhancing visual consistency, simplifying information display, improving responsiveness, giving users freedom to select views, and intuitive layout, this redesign aims to provide an improved user experience.&lt;br /&gt;
&lt;br /&gt;
== Reimplementation and Improvements ==&lt;br /&gt;
=== 1. Enhanced review filtering and author ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a. Existing Design&lt;br /&gt;
[[File:ShowReviews Feedback.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b. Modified Design&lt;br /&gt;
[[File:GradesView2.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
e.Rationale&lt;br /&gt;
The &amp;quot;Show Reviews&amp;quot; and &amp;quot;Show Author Feedback&amp;quot; link displays all the peer reviews from Round 1 and Round 2 and author's feedback from both rounds in a single view. This forces the users to scroll all the rounds' reviews and feedback sequentially which can be overwhelming when users wish to view feedback from a specific round. Also, users don't have the freedom and control to choose to view all rounds' reviews/feedbacks or specific rounds' reviews/feedbacks. Additionally, a single view adds visual clutter and increases cognitive load. &lt;br /&gt;
&lt;br /&gt;
With the 2 dropdowns users have more control over which reviews they would like to view. The first dropdown lets them choose from viewing reviews or author's feedback for the reviews provided, while the second dropdown allows them to select specific rounds (Round 1, Round 2, or both). This gives users the flexibility to focus on specific rounds as needed. Separating the reviews/author feedback based on a round filter reduces clutter, creating a cleaner, more organized layout. Users can now view reviews and feedback in a more structured way, which simplifies navigation and enhances readability and improves satisfaction.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== 2. Replaced the disorganized display of scores for submitted work, author feedback, and teammate reviews with a Structured Scorecard table for clearer presentation. ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a. Existing Design&lt;br /&gt;
[[File:ShowReviews Feedback.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b. Modified Design&lt;br /&gt;
[[File:GradesView2.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
e.Rationale&lt;br /&gt;
The previous display of scores for submitted work, author feedback, and teammate reviews was fragmented and lacked clarity, making it difficult for users to interpret performance metrics at a glance. By introducing a structured scorecard table, we present all relevant data in a clear, organized format, enabling users to easily compare and understand scores across different rounds. This redesign improves usability by offering a more intuitive layout and better visibility of grading information.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== 3. Removed the names of reviewers as they are supposed to remain anonymous. ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a. Existing Design&lt;br /&gt;
[[File:ShowReviews Feedback.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b. Modified Design&lt;br /&gt;
[[File:GradesView2.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
e.Rationale&lt;br /&gt;
The reason for this change is to shift focus more on quality and content of feedback and reviews rather than identity of reviewers. Anonymity encourages the reviewers to provide constructive criticism as reviewers will review without concern for any issues or repercussions.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== 4. Removed information that didn’t add value ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a. Existing Design&lt;br /&gt;
[[File:ShowReviews Feedback.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b. Modified Design&lt;br /&gt;
[[File:GradesView2.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
e.Rationale&lt;br /&gt;
Contributor Name: The displayed contributor name only indicated the team member who submitted the work, which could cause confusion, as all team members contribute to the assignment. Additionally, team members' names are already displayed at the top of the page, making this information redundant. Removing it reduces visual clutter, focusing the user's attention on relevant grading information.&lt;br /&gt;
Score Range: The score range provided minimal value in understanding the overall grade, as the average score alone conveys a clearer summary of performance. By removing the range, the layout is simplified, helping users to focus on meaningful metrics without unnecessary data.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== 5. Styling of Review Table ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a. Existing Design&lt;br /&gt;
[[File:ShowReviews Feedback.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b. Modified Design&lt;br /&gt;
[[File:GradesView2.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
e.Rationale&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== 6. Fixed styling Toggle Question List ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a. Existing Design&lt;br /&gt;
[[File:ShowReviews Feedback.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b. Modified Design&lt;br /&gt;
[[File:GradesView2.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
e.Rationale&lt;br /&gt;
The &amp;quot;Toggle Question List&amp;quot; styling was refined for better alignment and readability, enhancing the clarity of the page’s interactive elements.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== 7. Unified Review Rounds Button and Interface Styling Update ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a. Existing Design&lt;br /&gt;
[[File:ShowReviews Feedback.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b. Modified Design&lt;br /&gt;
[[File:GradesView2.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
e.Rationale&lt;br /&gt;
Addition of “All Rounds’’ Button: The new &amp;quot;All Rounds&amp;quot; button allows users to view reviews from multiple rounds in a single table. This eliminates the need to switch between individual rounds, giving users a comprehensive view of the feedback across all rounds at once. &lt;br /&gt;
Color and Style Consistency: The colors and styles of the buttons were updated to match Expertiza’s established color scheme, ensuring a cohesive and professional look across the platform. This consistency aids in navigation, making the interface feel more intuitive and visually appealing. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=== 8. Expanded Submission Links Display ===&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
a. Existing Design&lt;br /&gt;
[[File:ShowReviews Feedback.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
b. Modified Design&lt;br /&gt;
[[File:GradesView2.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
c.[Design pattern/solid/dry][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
d.[Code Snippet][TODO]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
e.Rationale&lt;br /&gt;
The change enhances usability by directly presenting all relevant submission links to users without requiring additional interaction to show or hide them. This expanded view allows for quicker access to project resources and a more streamlined experience, improving efficiency and clarity in the peer review process on the grades/view_team page.&lt;/div&gt;</summary>
		<author><name>Shassa22</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=File:GradesView2.png&amp;diff=157432</id>
		<title>File:GradesView2.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=File:GradesView2.png&amp;diff=157432"/>
		<updated>2024-10-29T14:57:45Z</updated>

		<summary type="html">&lt;p&gt;Shassa22: Shassa22 uploaded a new version of File:GradesView2.png&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Shassa22</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=File:GradesView2.png&amp;diff=157431</id>
		<title>File:GradesView2.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=File:GradesView2.png&amp;diff=157431"/>
		<updated>2024-10-29T14:55:57Z</updated>

		<summary type="html">&lt;p&gt;Shassa22: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Shassa22</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2024_-_E2469._Reimplement_grades/view_team&amp;diff=157426</id>
		<title>CSC/ECE 517 Fall 2024 - E2469. Reimplement grades/view team</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2024_-_E2469._Reimplement_grades/view_team&amp;diff=157426"/>
		<updated>2024-10-29T14:11:21Z</updated>

		<summary type="html">&lt;p&gt;Shassa22: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Background ==&lt;br /&gt;
Expertiza is an open-source learning management system developed with Ruby on Rails, facilitating assignment creation, team management, and a structured peer review process. Designed for educational settings, Expertiza offers instructors tools to assign topics, manage teams, and allow students to collaborate on various assignment formats, including URLs and wiki pages. Its peer review functionality encourages students to provide feedback, promoting a collaborative learning experience.&lt;br /&gt;
&lt;br /&gt;
==Problem Statement ==&lt;br /&gt;
This project focuses on reimplementing the grades/view_team page in Expertiza. The current interface lacks modern design aesthetics and usability standards making it challenging for users to access and understand grading data efficiently. Our objective is to develop a fully functional and visually cohesive front end for the Grades View page. By enhancing visual consistency, simplifying information display, improving responsiveness, giving users freedom to select views, and intuitive layout, this redesign aims to provide an improved user experience.&lt;br /&gt;
&lt;br /&gt;
== Reimplementation and Improvements ==&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
1. Existing Design&lt;br /&gt;
[[File:ShowReviews Feedback.png|500px|center]]&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
2. Modified Design&lt;/div&gt;</summary>
		<author><name>Shassa22</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=File:ShowReviews_Feedback.png&amp;diff=157425</id>
		<title>File:ShowReviews Feedback.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=File:ShowReviews_Feedback.png&amp;diff=157425"/>
		<updated>2024-10-29T14:03:32Z</updated>

		<summary type="html">&lt;p&gt;Shassa22: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Shassa22</name></author>
	</entry>
</feed>