Gitea-VSCode/src/template.html.ts

43 lines
785 B
TypeScript
Raw Normal View History

2019-07-04 14:45:53 +02:00
import { Issue } from './issue';
2019-04-09 21:22:33 +02:00
export function showIssueHTML(issue: Issue) {
2019-07-04 14:45:53 +02:00
return `<body>
2019-04-09 21:22:33 +02:00
<h1>{{label}}</h1>
2019-07-04 14:45:53 +02:00
<table>
<tr>
<td>
Title
</td>
<td >
{{label}}
</td>
</tr>
<tr>
<td>
State
</td>
<td>
{{state}}
</td>
</tr>
<tr >
<td>
Assignee
</td>
<td>
{{assignee}}
</td>
</tr>
</table>
<p style="font-size: 20pt">
{{description}}
</p>
</body>
`
.replace('{{label}}', issue.label)
.replace('{{state}}', issue.issueState)
.replace('{{assignee}}', issue.assignee)
.replace('{{description}}', issue.body)
.replace('{{label}}', issue.label);
}