From 9adf6de4b5f3df44657d336ed49f9b992d50f458 Mon Sep 17 00:00:00 2001 From: ludovicm67 Date: Wed, 10 Apr 2019 21:50:03 +0200 Subject: graphql: expose label color --- graphql/resolvers/color.go | 24 ++++++++++++++++++++++++ graphql/resolvers/label.go | 22 ++++++++++++++++++++++ graphql/resolvers/root.go | 8 ++++++++ 3 files changed, 54 insertions(+) create mode 100644 graphql/resolvers/color.go create mode 100644 graphql/resolvers/label.go (limited to 'graphql/resolvers') diff --git a/graphql/resolvers/color.go b/graphql/resolvers/color.go new file mode 100644 index 00000000..dc6f1b9c --- /dev/null +++ b/graphql/resolvers/color.go @@ -0,0 +1,24 @@ +package resolvers + +import ( + "context" + "image/color" + + "github.com/MichaelMure/git-bug/graphql/graph" +) + +var _ graph.ColorResolver = &colorResolver{} + +type colorResolver struct{} + +func (colorResolver) R(ctx context.Context, obj *color.RGBA) (int, error) { + return int(obj.R), nil +} + +func (colorResolver) G(ctx context.Context, obj *color.RGBA) (int, error) { + return int(obj.G), nil +} + +func (colorResolver) B(ctx context.Context, obj *color.RGBA) (int, error) { + return int(obj.B), nil +} diff --git a/graphql/resolvers/label.go b/graphql/resolvers/label.go new file mode 100644 index 00000000..7619f748 --- /dev/null +++ b/graphql/resolvers/label.go @@ -0,0 +1,22 @@ +package resolvers + +import ( + "context" + "image/color" + + "github.com/MichaelMure/git-bug/bug" + "github.com/MichaelMure/git-bug/graphql/graph" +) + +var _ graph.LabelResolver = &labelResolver{} + +type labelResolver struct{} + +func (labelResolver) Name(ctx context.Context, obj *bug.Label) (string, error) { + return obj.String(), nil +} + +func (labelResolver) Color(ctx context.Context, obj *bug.Label) (*color.RGBA, error) { + rgba := obj.RGBA() + return &rgba, nil +} diff --git a/graphql/resolvers/root.go b/graphql/resolvers/root.go index 7414a097..f6a4a57b 100644 --- a/graphql/resolvers/root.go +++ b/graphql/resolvers/root.go @@ -34,6 +34,14 @@ func (RootResolver) Bug() graph.BugResolver { return &bugResolver{} } +func (RootResolver) Color() graph.ColorResolver { + return &colorResolver{} +} + +func (RootResolver) Label() graph.LabelResolver { + return &labelResolver{} +} + func (r RootResolver) Identity() graph.IdentityResolver { return &identityResolver{} } -- cgit