You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
sqm-dashboards/lib/tasks/report.rake

185 lines
5.4 KiB

namespace :report do
desc "create a report of the scores for all subcategories"
task subcategory: :environment do
Report::Subcategory.create_report(filename: "subcategory_report.csv")
end
namespace :measure do
task :district_summary, %i[district ay] => :environment do |_, args|
district = District.find_by_name args[:district]
academic_years = AcademicYear.where(range: args[:ay])
if district.nil?
puts "Invalid district name"
bad = true
end
if academic_years.nil?
puts "Invalid academic year"
bad = true
end
next if bad
Report::MeasureSummary.create_report(
district:,
academic_years:,
filename: "measure_summary_" + district.slug + ".csv"
)
end
task :district, %i[district ay] => :environment do |_, args|
district = District.find_by_name args[:district]
academic_years = AcademicYear.where(range: args[:ay])
if district.nil?
puts "Invalid district name"
bad = true
end
if academic_years.nil?
puts "Invalid academic year"
bad = true
end
next if bad
Report::Measure.create_report(
schools: School.where(district:),
academic_years:,
# measures:,
filename: "measure_report_" + district.slug + ".csv"
)
end
task sqm: :environment do
measure_ids = %w[
1A-i
1A-ii
1A-iii
1B-i
1B-ii
2A-i
2A-ii
2B-i
2B-ii
2C-i
2C-ii
3A-i
3A-ii
3B-i
3B-ii
3B-iii
3C-i
3C-ii
4A-i
4A-ii
4B-i
4B-ii
4C-i
4D-i
4D-ii
5A-i
5A-ii
5B-i
5B-ii
5C-i
5C-ii
5D-i
5D-ii
]
measures = measure_ids.map { |measure_id| Measure.find_by_measure_id(measure_id) }.reject(&:nil?)
Report::Measure.create_report(filename: "measure_report_attleboro.csv", measures:, schools:)
end
end
namespace :scale do
task bll: :environment do
measure_ids = %w[
2A-i
2A-ii
2B-i
2B-ii
2C-i
2C-ii
4B-i
5B-i
5B-ii
5D-i
]
measures = measure_ids.map { |measure_id| Measure.find_by_measure_id(measure_id) }
scales = []
measures.each { |measure| scales << measure.scales }
scales = scales.flatten.compact
Report::BeyondLearningLoss.create_report(filename: "bll_report.csv", scales:)
end
end
# Usage example
# bundle exec rake 'report:survey_item:create[Lee Elementary School, 2023-24 Fall]'
namespace :survey_item do
task :create, %i[school academic_year] => :environment do |_, args|
school = School.find_by_name(args[:school])
academic_year = AcademicYear.find_by_range(args[:academic_year])
if school.nil?
puts "Invalid school name"
bad = 1
end
if academic_year.nil?
puts "Invalid academic year"
bad = 1
end
next if bad == 1
Report::SurveyItem.create_item_report(school:, academic_year:,
filename: "survey_item_report_" + school.slug + "_" + academic_year.range + "_by_item.csv")
Report::SurveyItem.create_grade_report(school:, academic_year:,
filename: "survey_item_report_" + school.slug + "_" + academic_year.range + "_by_grade.csv")
end
end
# Usage example
# bundle exec rake 'report:survey_item:district[Lee Public Schools, 2023-24 Fall, early_education]'
namespace :survey_item do
task :district, %i[district academic_year survey_item_type] => :environment do |_, args|
district = District.find_by_name(args[:district])
if district.nil?
puts "Invalid district name"
bad = 1
end
academic_year = AcademicYear.find_by_range(args[:academic_year])
if academic_year.nil?
puts "Invalid academic year"
bad = 1
end
survey_item_type = args[:survey_item_type] || ""
use_student_survey_items = case survey_item_type
when "standard"
::SurveyItem.standard_survey_items.pluck(:id)
when "short_form"
::SurveyItem.short_form_survey_items.pluck(:id)
when "early_education"
::SurveyItem.early_education_survey_items.pluck(:id)
else
::SurveyItem.student_survey_items.pluck(:id)
end
next if bad == 1
schools = district.schools
schools.each do |school|
filename_prefix = []
filename_prefix << "survey_item_report"
filename_prefix << survey_item_type unless survey_item_type.blank?
filename_prefix << school.slug
filename_prefix << academic_year.range
Report::SurveyItem.create_item_report(school:, academic_year:,
filename: filename_prefix.join("_") + "_by_item.csv", use_student_survey_items:)
Report::SurveyItem.create_grade_report(school:, academic_year:,
filename: filename_prefix.join("_") + "_by_grade.csv", use_student_survey_items:)
end
end
end
end