-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathmain.tsx
147 lines (131 loc) · 5.2 KB
/
main.tsx
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
import React from 'react';
import { css } from '@emotion/css';
import { useForm } from 'react-hook-form';
import { GrafanaTheme2 } from '@grafana/data';
import { useStyles2, Button, IconButton, Field, Input, Card, TagList } from '@grafana/ui';
import { IssueClient } from '../api/issue_client';
import { Issue } from '../generated/issue/v1/issue_object_gen';
import { useState, useEffect } from 'react';
import { PluginPage } from '@grafana/runtime';
// This is used for the create new issue form
type ReactHookFormProps = {
title: string;
description: string;
};
function PageOne() {
const s = useStyles2(getStyles);
let issues: Issue[] = [];
const [issuesData, setIssuesData] = useState(issues);
useEffect(() => {
const fetchData = async () => {
const client = new IssueClient()
const issues = await client.list();
setIssuesData(issues.data.items);
}
fetchData().catch(console.error);
}, []);
// IssueClient to share for all our functions
const ic = new IssueClient();
const listIssues = async() => {
const issues = await ic.list();
setIssuesData(issues.data.items);
}
const createIssue = async (title: string, description: string) => {
await ic.create(title, description);
await listIssues();
};
const deleteIssue = async (id: string) => {
await ic.delete(id);
await listIssues();
};
const updateStatus = async (issue: Issue, newStatus: string) => {
issue.spec.status = newStatus;
await ic.update(issue.metadata.name, issue);
await listIssues();
}
// Form handling
const { handleSubmit, register } = useForm<ReactHookFormProps>({
mode: 'onChange',
defaultValues: {
title: '',
description: '',
},
});
const handleCreate = handleSubmit((issue) => {
createIssue(issue.title, issue.description);
});
// getActions gets the appropriate <Card.Actions> for an issue based on its status
const getActions = (issue: Issue) => {
if(issue.spec.status === 'open') {
return (
<Card.Actions>
<Button key="mark-in-progress" onClick={() => {updateStatus(issue, 'in_progress')}}>Start Progress</Button>
</Card.Actions>
)
} else if(issue.spec.status === 'in_progress') {
return (
<Card.Actions>
<Button key="mark-open" onClick={() => {updateStatus(issue, 'open')}}>Stop Progress</Button>
<Button key="mark-closed" onClick={() => {updateStatus(issue, 'closed')}}>Complete</Button>
</Card.Actions>
)
} else {
return <Card.Actions></Card.Actions>
}
}
return (
<PluginPage>
<div>
<h1>Issue list</h1>
{issuesData.length > 0 && (
<ul>
{issuesData.map((issue: any) => (
<li key={issue.metadata.name}>
<Card>
<Card.Heading>{issue.spec.title}</Card.Heading>
<Card.Description>{issue.spec.description}</Card.Description>
<Card.Tags>
<TagList tags={[issue.spec.status]} />
</Card.Tags>
{ getActions(issue) }
<Card.SecondaryActions>
<IconButton
key="delete-issue"
name="trash-alt"
size={'md'}
aria-label="delete-issue"
onClick={() => {
deleteIssue(issue.metadata.name);
}}
>
Delete
</IconButton>
</Card.SecondaryActions>
</Card>
</li>
))}
</ul>
)}
<br />
<h1>Create New Issue</h1>
<form onSubmit={handleCreate}>
<Field label="Issue Title">
<Input type="text" aria-label="issue title" id="title" {...register('title')} />
</Field>
<Field label="Issue Description">
<Input type="text" aria-label="issue description" id="description" {...register('description')} />
</Field>
<Button type="submit" aria-label="Create Issue">
Create
</Button>
</form>
</div>
</PluginPage>
);
}
export default PageOne;
const getStyles = (theme: GrafanaTheme2) => ({
marginTop: css`
margin-top: ${theme.spacing(2)};
`,
});