-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #314 from cs169/187460464/bugfix/tooltip
CS169L SP24: Iter 2-4 Changes
- Loading branch information
Showing
67 changed files
with
2,153 additions
and
270 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
# frozen_string_literal: true | ||
|
||
class EmailAddressesController < ApplicationController | ||
before_action :require_login | ||
before_action :require_admin | ||
before_action :set_teacher | ||
|
||
def edit | ||
end | ||
|
||
def update | ||
if update_personal_emails | ||
redirect_to teacher_path(@teacher), notice: "Personal email addresses updated successfully." | ||
else | ||
flash.now[:alert] = "An error occurred: " + (@error_messages || "Unknown error") | ||
render :edit | ||
end | ||
end | ||
|
||
private | ||
def set_teacher | ||
@teacher = Teacher.find(params[:teacher_id]) | ||
end | ||
|
||
def update_personal_emails | ||
EmailAddress.transaction do | ||
params[:teacher][:email_addresses_attributes].each do |_, email_attr| | ||
if email_attr[:id].present? | ||
email = EmailAddress.find(email_attr[:id]) | ||
if email_attr[:_destroy] == "1" | ||
email.destroy! | ||
else | ||
email.update!(email: email_attr[:email]) | ||
end | ||
else | ||
@teacher.email_addresses.create!(email: email_attr[:email]) unless email_attr[:email].blank? | ||
end | ||
end | ||
end | ||
true | ||
rescue ActiveRecord::RecordInvalid => e | ||
@error_messages = e.record&.errors&.full_messages&.join(", ") | ||
@error_messages ||= "A validation error occurred, but no specific error details are available." | ||
false | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
# frozen_string_literal: true | ||
|
||
class PdRegistrationsController < ApplicationController | ||
before_action :require_login | ||
before_action :require_admin | ||
before_action :set_pd_registration, only: [:show, :edit, :update, :destroy] | ||
before_action :set_professional_development, only: [:new, :create, :edit, :update, :destroy] | ||
|
||
def index | ||
end | ||
|
||
def show | ||
end | ||
|
||
def new | ||
@pd_registration = PdRegistration.new | ||
end | ||
|
||
def edit | ||
end | ||
|
||
def create | ||
@pd_registration = PdRegistration.new(pd_registration_params.merge( | ||
professional_development_id: @professional_development.id)) | ||
|
||
if @pd_registration.save | ||
redirect_to professional_development_path(@professional_development), | ||
notice: "Registration for professional development was successfully created." | ||
else | ||
flash.now[:alert] = @pd_registration.errors.full_messages.to_sentence | ||
render "professional_developments/show" | ||
end | ||
end | ||
|
||
def update | ||
if @pd_registration.update(pd_registration_params) | ||
redirect_to professional_development_path(@professional_development), | ||
notice: "Registration was successfully updated." | ||
else | ||
flash.now[:alert] = @pd_registration.errors.full_messages.to_sentence | ||
render "professional_developments/show" | ||
end | ||
end | ||
|
||
def destroy | ||
if @pd_registration.destroy | ||
redirect_to professional_development_path(@professional_development), | ||
notice: "Registration was successfully cancelled." | ||
else | ||
flash.now[:alert] = @pd_registration.errors.full_messages.to_sentence | ||
render "professional_developments/show" | ||
end | ||
end | ||
|
||
private | ||
def set_pd_registration | ||
@pd_registration = PdRegistration.find(params[:id]) | ||
rescue ActiveRecord::RecordNotFound | ||
redirect_to professional_development_path, alert: "Registration not found." | ||
end | ||
|
||
def set_professional_development | ||
@professional_development = ProfessionalDevelopment.find_by(id: params[:professional_development_id]) | ||
unless @professional_development | ||
redirect_to professional_developments_path, alert: "Professional Development not found." | ||
end | ||
end | ||
|
||
def pd_registration_params | ||
params.require(:pd_registration).permit(:teacher_id, :attended, :role, :professional_development_id) | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
# frozen_string_literal: true | ||
|
||
class ProfessionalDevelopmentsController < ApplicationController | ||
before_action :set_professional_development, only: [:show, :edit, :update, :destroy] | ||
before_action :require_login | ||
before_action :require_admin | ||
|
||
def index | ||
@professional_developments = ProfessionalDevelopment.all | ||
end | ||
|
||
def show | ||
end | ||
|
||
def new | ||
@professional_development = ProfessionalDevelopment.new | ||
end | ||
|
||
def edit | ||
end | ||
|
||
def create | ||
@professional_development = ProfessionalDevelopment.new(professional_development_params) | ||
|
||
if @professional_development.save | ||
redirect_to @professional_development, notice: "Professional development created successfully." | ||
else | ||
flash.now[:alert] = @professional_development.errors.full_messages.to_sentence | ||
render :new | ||
end | ||
end | ||
|
||
def update | ||
if @professional_development.update(professional_development_params) | ||
redirect_to @professional_development, notice: "Professional development updated successfully." | ||
else | ||
flash.now[:alert] = @professional_development.errors.full_messages.to_sentence | ||
render :edit | ||
end | ||
end | ||
|
||
def destroy | ||
if @professional_development.destroy | ||
redirect_to professional_developments_url, notice: "Professional development deleted successfully." | ||
else | ||
redirect_to professional_developments_url, alert: "Failed to delete professional development." | ||
end | ||
end | ||
|
||
private | ||
def set_professional_development | ||
@professional_development = ProfessionalDevelopment.find(params[:id]) | ||
rescue ActiveRecord::RecordNotFound | ||
redirect_to professional_developments_url, alert: "Professional development not found." | ||
end | ||
|
||
def professional_development_params | ||
params.require(:professional_development).permit(:name, :city, :state, :country, :start_date, :end_date, | ||
:grade_level) | ||
end | ||
end |
Oops, something went wrong.