summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/work_items/graphql/resolvers.js
blob: 63d5234d0833fed67c4532b8d2d9916078753858 (plain)
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
46
47
48
49
50
51
52
53
54
55
56
57
58
import { uuids } from '~/lib/utils/uuids';
import workItemQuery from './work_item.query.graphql';

export const resolvers = {
  Mutation: {
    localCreateWorkItem(_, { input }, { cache }) {
      const id = uuids()[0];
      const workItem = {
        __typename: 'LocalWorkItem',
        type: 'FEATURE',
        id,
        widgets: {
          __typename: 'LocalWorkItemWidgetConnection',
          nodes: [
            {
              __typename: 'LocalTitleWidget',
              type: 'TITLE',
              enabled: true,
              contentText: input.title,
            },
          ],
        },
      };

      cache.writeQuery({ query: workItemQuery, variables: { id }, data: { workItem } });

      return {
        __typename: 'LocalCreateWorkItemPayload',
        workItem,
      };
    },

    localUpdateWorkItem(_, { input }, { cache }) {
      const workItemTitle = {
        __typename: 'LocalTitleWidget',
        type: 'TITLE',
        enabled: true,
        contentText: input.title,
      };
      const workItem = {
        __typename: 'LocalWorkItem',
        type: 'FEATURE',
        id: input.id,
        widgets: {
          __typename: 'LocalWorkItemWidgetConnection',
          nodes: [workItemTitle],
        },
      };

      cache.writeQuery({ query: workItemQuery, variables: { id: input.id }, data: { workItem } });

      return {
        __typename: 'LocalUpdateWorkItemPayload',
        workItem,
      };
    },
  },
};