32 lines
790 B
Ruby
Raw Permalink Normal View History

2024-11-13 07:59:07 +00:00
# Copyright (C) 2024 Manuel Bustillo
# frozen_string_literal: true
module Groups
class SummaryQuery
def call
Group.left_joins(:guests).group(:id).pluck_to_hash(
:id,
:name,
:icon,
:parent_id,
:color,
2024-12-28 18:16:36 +01:00
*count_expressions
)
end
private
def count_expressions
[
Arel.sql('count(*) filter (where status IS NOT NULL) as total'),
Arel.sql('count(*) filter (where status = 0) as considered'),
Arel.sql('count(*) filter (where status = 10) as invited'),
Arel.sql('count(*) filter (where status = 20) as confirmed'),
Arel.sql('count(*) filter (where status = 30) as declined'),
2024-12-28 18:16:36 +01:00
Arel.sql('count(*) filter (where status = 40) as tentative')
]
end
end
end