1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
package resolvers
import (
"context"
"fmt"
"image/color"
"github.com/MichaelMure/git-bug/bug"
"github.com/MichaelMure/git-bug/graphql/graph"
"github.com/MichaelMure/git-bug/graphql/models"
)
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.Color().RGBA()
return &rgba, nil
}
var _ graph.LabelChangeResultResolver = &labelChangeResultResolver{}
type labelChangeResultResolver struct{}
func (labelChangeResultResolver) Status(ctx context.Context, obj *bug.LabelChangeResult) (models.LabelChangeStatus, error) {
switch obj.Status {
case bug.LabelChangeAdded:
return models.LabelChangeStatusAdded, nil
case bug.LabelChangeRemoved:
return models.LabelChangeStatusRemoved, nil
case bug.LabelChangeDuplicateInOp:
return models.LabelChangeStatusDuplicateInOp, nil
case bug.LabelChangeAlreadySet:
return models.LabelChangeStatusAlreadyExist, nil
case bug.LabelChangeDoesntExist:
return models.LabelChangeStatusDoesntExist, nil
}
return "", fmt.Errorf("unknown status")
}
|