Sha256: c6673d2e7441f8afa568e5785a0cb5b06c0d446698f17a2ce906d1938e442065

Contents?: true

Size: 1.11 KB

Versions: 16

Compression:

Stored size: 1.11 KB

Contents

module Gaku
  class StudentDecorator < PersonDecorator
    decorates 'Gaku::Student'
    delegate_all

    def badges_list
      h.comma_separated_list(object.badges) do |badge|
        if badge.badge_type.badge_image_file_name.nil?
          badge.badge_type.name
        else
          "#{badge.badge_type.name} (#{h.resize_image(badge.badge_type.badge_image, size: 22)})"
        end
      end
    end

    def simple_grades_list
      h.comma_separated_list(object.simple_grades) do |simple_grade|
        "#{simple_grade.simple_grade_type_name}"
      end
    end

    def student_specialties_list
      h.comma_separated_list(object.student_specialties) do |student_specialty|
        "#{student_specialty.specialty} (#{major_check(student_specialty)})"
      end
    end

    def class_group
      cg = object.class_groups.last
      cg.blank? ? 'Empty' : cg
    end

    def seat_number
      sn = object.class_group_enrollments.last
      sn.blank? ? '' : sn.seat_number
    end

    private

    def major_check(student_specialty)
      student_specialty.major ? h.t(:'specialty.major') : h.t(:'specialty.minor')
    end
  end
end

Version data entries

16 entries across 16 versions & 2 rubygems

Version Path
gaku_core-0.3.0 app/decorators/gaku/student_decorator.rb
gaku_core-0.3.0.pre.4 app/decorators/gaku/student_decorator.rb
gaku_core-0.3.0.pre.3 app/decorators/gaku/student_decorator.rb
gaku_core-0.3.0.pre.2 app/decorators/gaku/student_decorator.rb
gaku_core-0.3.0.pre.1 app/decorators/gaku/student_decorator.rb
gaku_core-0.3.0.pre.0 app/decorators/gaku/student_decorator.rb
gaku-0.2.4 core/app/decorators/gaku/student_decorator.rb
gaku_core-0.2.4 app/decorators/gaku/student_decorator.rb
gaku-0.2.3 core/app/decorators/gaku/student_decorator.rb
gaku_core-0.2.3 app/decorators/gaku/student_decorator.rb
gaku-0.2.2 core/app/decorators/gaku/student_decorator.rb
gaku_core-0.2.2 app/decorators/gaku/student_decorator.rb
gaku-0.2.1 core/app/decorators/gaku/student_decorator.rb
gaku_core-0.2.1 app/decorators/gaku/student_decorator.rb
gaku-0.2.0 core/app/decorators/gaku/student_decorator.rb
gaku_core-0.2.0 app/decorators/gaku/student_decorator.rb