-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathRepositoryListItem.tsx
93 lines (85 loc) · 2.88 KB
/
RepositoryListItem.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
import { Color, List, ActionPanel, Action, showToast, Toast, open, useNavigation } from "@raycast/api";
import { MutatePromise } from "@raycast/utils";
import { GitpodIcons } from "../../constants";
import { ExtendedRepositoryFieldsFragment } from "../generated/graphql";
import OpenInGitpod from "../helpers/openInGitpod";
import { getGitHubUser } from "../helpers/users";
import SearchContext from "../open_repo_context";
import RepositoryPreference from "../preferences/repository_preferences";
type RepositoryListItemProps = {
repository: ExtendedRepositoryFieldsFragment;
isGitpodified: boolean;
onVisit: (repository: ExtendedRepositoryFieldsFragment) => void;
mutateList: MutatePromise<ExtendedRepositoryFieldsFragment[] | undefined>;
};
export default function RepositoryListItem({ repository, isGitpodified, onVisit }: RepositoryListItemProps) {
const { push } = useNavigation();
const owner = getGitHubUser(repository.owner);
const numberOfStars = repository.stargazerCount;
const accessories: List.Item.Accessory[] = [
{
icon: isGitpodified ? GitpodIcons.gitpod_logo_primary : GitpodIcons.gitpod_logo_secondary,
},
];
const showLaunchToast = async () => {
await showToast({
title: "Launching your workspace",
style: Toast.Style.Success,
});
setTimeout(() => {
open(`https://gitpod.io/#${repository.url}`);
}, 1500);
};
accessories.unshift(
{
text: {
value: repository.issues?.totalCount.toString(),
},
icon: GitpodIcons.issues_icon,
},
{
text: {
value: repository.pullRequests?.totalCount.toString(),
},
icon: GitpodIcons.pulls_icon,
}
);
if (repository.latestRelease?.tagName) {
accessories.unshift({
tag: {
value: repository.latestRelease.tagName,
color: Color.Green,
},
icon: GitpodIcons.tag_icon,
});
}
return (
<List.Item
icon={owner.icon}
title={repository.name}
{...(numberOfStars > 0
? {
subtitle: {
value: `${numberOfStars}`,
tooltip: `Number of Stars: ${numberOfStars}`,
},
}
: {})}
accessories={accessories}
actions={
<ActionPanel>
<Action
title="Get In"
onAction={() => {
onVisit(repository);
push(<SearchContext repository={repository} />);
}}
/>
<Action title="Open Repo in GitHub" onAction={()=>open(repository.url)} />
<Action title="Trigger Workspace" onAction={()=>OpenInGitpod(repository.url,"Repository",repository.nameWithOwner)} shortcut={{ modifiers: ["cmd"], key: "g" }}/>
<Action title="Configure Workspace" onAction={()=> push(<RepositoryPreference repository={repository.nameWithOwner} />)} shortcut={{ modifiers: ["cmd"], key: "w" }}/>
</ActionPanel>
}
/>
);
}