Skip to content

Commit d360a59

Browse files
committed
Moved componentes to their own files
1 parent 6ae6a96 commit d360a59

14 files changed

+487
-462
lines changed

web/src/ArtifactWidget.jsx

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
import { format } from "date-fns";
2+
import { TimeLabel } from './TimeLabel'
3+
4+
export function ArtifactWidget(props) {
5+
const { gitRepository } = props
6+
const artifact = gitRepository.status.artifact
7+
8+
const revision = artifact.revision
9+
const hash = revision.slice(revision.indexOf(':') + 1);
10+
const url = gitRepository.spec.url.slice(gitRepository.spec.url.indexOf('@') + 1)
11+
const branch = gitRepository.spec.ref.branch
12+
13+
const parsed = Date.parse(artifact.lastUpdateTime, "yyyy-MM-dd'T'HH:mm:ss");
14+
const exactDate = format(parsed, 'MMMM do yyyy, h:mm:ss a O')
15+
16+
return (
17+
<>
18+
<div className="field font-medium text-neutral-700">
19+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512" className="h4 w-4 inline fill-current"><path d="M320 336a80 80 0 1 0 0-160 80 80 0 1 0 0 160zm156.8-48C462 361 397.4 416 320 416s-142-55-156.8-128H32c-17.7 0-32-14.3-32-32s14.3-32 32-32H163.2C178 151 242.6 96 320 96s142 55 156.8 128H608c17.7 0 32 14.3 32 32s-14.3 32-32 32H476.8z" /></svg>
20+
<span className="pl-1">
21+
<a href={`https://${url}/commit/${hash}`} target="_blank" rel="noopener noreferrer">
22+
{hash.slice(0, 8)} committed <TimeLabel title={exactDate} date={parsed} />
23+
</a>
24+
</span>
25+
</div>
26+
<span className="block field text-neutral-600">
27+
<span className='font-mono bg-gray-100 px-1 rounded'>{branch}</span>
28+
<span className='px-1'>@</span>
29+
<a href={`https://${url}`} target="_blank" rel="noopener noreferrer">{url}</a>
30+
</span>
31+
</>
32+
)
33+
}

web/src/CompactServices.jsx

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
import React, { memo } from 'react';
2+
import { CompactService } from "./Service"
3+
4+
export const CompactServices = memo(function CompactServices(props) {
5+
const { capacitorClient, store, services } = props
6+
7+
return (
8+
<div className="space-y-4">
9+
{
10+
services?.map((service) => {
11+
return (
12+
<CompactService
13+
key={`${service.deployment.metadata.namespace}/${service.deployment.metadata.name}`}
14+
service={service}
15+
capacitorClient={capacitorClient}
16+
store={store}
17+
/>
18+
)
19+
})
20+
}
21+
</div>
22+
)
23+
})

0 commit comments

Comments
 (0)