2019-01-14 17:13:17 +01:00
|
|
|
defmodule MobilizonWeb.Schema.Events.ParticipantType do
|
2019-01-14 17:48:08 +01:00
|
|
|
@moduledoc """
|
2019-09-22 16:26:23 +02:00
|
|
|
Schema representation for Participant.
|
2019-01-14 17:48:08 +01:00
|
|
|
"""
|
2019-09-22 16:26:23 +02:00
|
|
|
|
2019-01-14 17:13:17 +01:00
|
|
|
use Absinthe.Schema.Notation
|
2019-09-22 16:26:23 +02:00
|
|
|
|
2019-01-14 17:48:08 +01:00
|
|
|
import Absinthe.Resolution.Helpers, only: [dataloader: 1]
|
2019-09-22 16:26:23 +02:00
|
|
|
|
|
|
|
alias Mobilizon.{Actors, Events}
|
|
|
|
|
2019-01-25 15:41:10 +01:00
|
|
|
alias MobilizonWeb.Resolvers
|
2019-01-14 17:13:17 +01:00
|
|
|
|
|
|
|
@desc "Represents a participant to an event"
|
|
|
|
object :participant do
|
2019-09-20 18:22:03 +02:00
|
|
|
field(:id, :id, description: "The participation ID")
|
|
|
|
|
2019-02-01 15:38:35 +01:00
|
|
|
field(
|
|
|
|
:event,
|
|
|
|
:event,
|
2019-01-14 17:13:17 +01:00
|
|
|
resolve: dataloader(Events),
|
|
|
|
description: "The event which the actor participates in"
|
|
|
|
)
|
|
|
|
|
2019-02-01 15:38:35 +01:00
|
|
|
field(
|
|
|
|
:actor,
|
|
|
|
:actor,
|
|
|
|
resolve: dataloader(Actors),
|
|
|
|
description: "The actor that participates to the event"
|
|
|
|
)
|
|
|
|
|
2019-09-20 18:22:03 +02:00
|
|
|
field(:role, :participant_role_enum, description: "The role of this actor at this event")
|
|
|
|
end
|
|
|
|
|
|
|
|
enum :participant_role_enum do
|
|
|
|
value(:not_approved)
|
|
|
|
value(:participant)
|
|
|
|
value(:moderator)
|
|
|
|
value(:administrator)
|
|
|
|
value(:creator)
|
2019-09-30 13:48:47 +02:00
|
|
|
value(:rejected)
|
2019-01-14 17:13:17 +01:00
|
|
|
end
|
2019-01-25 15:41:10 +01:00
|
|
|
|
2019-02-01 15:38:35 +01:00
|
|
|
@desc "Represents a deleted participant"
|
|
|
|
object :deleted_participant do
|
2019-09-20 18:22:03 +02:00
|
|
|
field(:id, :id)
|
2019-02-01 15:38:35 +01:00
|
|
|
field(:event, :deleted_object)
|
|
|
|
field(:actor, :deleted_object)
|
|
|
|
end
|
|
|
|
|
|
|
|
object :participant_mutations do
|
|
|
|
@desc "Join an event"
|
|
|
|
field :join_event, :participant do
|
2019-09-09 09:31:08 +02:00
|
|
|
arg(:event_id, non_null(:id))
|
|
|
|
arg(:actor_id, non_null(:id))
|
2019-02-01 15:38:35 +01:00
|
|
|
|
|
|
|
resolve(&Resolvers.Event.actor_join_event/3)
|
|
|
|
end
|
|
|
|
|
|
|
|
@desc "Leave an event"
|
|
|
|
field :leave_event, :deleted_participant do
|
2019-09-09 09:31:08 +02:00
|
|
|
arg(:event_id, non_null(:id))
|
|
|
|
arg(:actor_id, non_null(:id))
|
2019-02-01 15:38:35 +01:00
|
|
|
|
|
|
|
resolve(&Resolvers.Event.actor_leave_event/3)
|
|
|
|
end
|
2019-09-20 18:22:03 +02:00
|
|
|
|
|
|
|
@desc "Accept a participation"
|
2019-09-30 13:48:47 +02:00
|
|
|
field :update_participation, :participant do
|
2019-09-20 18:22:03 +02:00
|
|
|
arg(:id, non_null(:id))
|
2019-09-30 13:48:47 +02:00
|
|
|
arg(:role, non_null(:participant_role_enum))
|
2019-09-20 18:22:03 +02:00
|
|
|
arg(:moderator_actor_id, non_null(:id))
|
|
|
|
|
2019-09-30 13:48:47 +02:00
|
|
|
resolve(&Resolvers.Event.update_participation/3)
|
2019-09-20 18:22:03 +02:00
|
|
|
end
|
2019-02-01 15:38:35 +01:00
|
|
|
end
|
2019-01-14 17:13:17 +01:00
|
|
|
end
|