Skip to content

Commit ec9afbc

Browse files
committed
add actions for builder and packages pages as well
1 parent faad035 commit ec9afbc

File tree

3 files changed

+85
-35
lines changed

3 files changed

+85
-35
lines changed

src/actions/index.ts

+61-10
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,16 @@ import { defineAction } from "astro:actions";
22
import { z } from "astro:schema";
33

44
let bearerToken = import.meta.env.STRAPI_WRITE_TOKEN;
5+
let strapiURL = import.meta.env.STRAPI_URL;
56

67
const getDownloadCounts = async () => {
78
try {
8-
const response = await fetch(
9-
`https://cms.athenaos.org/api/download-counts-list`,
10-
{
11-
headers: {
12-
"Content-Type": "application/json",
13-
Authorization: `Bearer ${bearerToken}`,
14-
},
15-
}
16-
);
9+
const response = await fetch(`${strapiURL}/api/download-counts-list`, {
10+
headers: {
11+
"Content-Type": "application/json",
12+
Authorization: `Bearer ${bearerToken}`,
13+
},
14+
});
1715
const result = await response.json();
1816
return result;
1917
} catch (error) {
@@ -34,7 +32,7 @@ const increaseDownloadCount = async (id: string) => {
3432
let countId = data.find((item) => item.download_type === id)?.id;
3533

3634
const response = await fetch(
37-
`https://cms.athenaos.org/api/download-count/${countId}/increment`,
35+
`${strapiURL}/api/download-count/${countId}/increment`,
3836
{
3937
method: "POST",
4038
headers: {
@@ -50,7 +48,36 @@ const increaseDownloadCount = async (id: string) => {
5048
}
5149
};
5250

51+
async function getBuilderData(input: any) {
52+
const response = await fetch(
53+
`${strapiURL}/api/builders?sort[1]=package_name:asc${input.searchString}${input.paginationString}${input.filterString}`,
54+
{
55+
headers: {
56+
Authorization: `Bearer ${bearerToken}`,
57+
"Content-Type": "application/json",
58+
},
59+
}
60+
);
61+
62+
return await response.json();
63+
}
64+
65+
async function getPackagesData(input: any) {
66+
const response = await fetch(
67+
`${strapiURL}/api/packages?sort[1]=package_name:asc${input.paginationString}${input.categoryString}${input.searchString}`,
68+
{
69+
headers: {
70+
Authorization: `Bearer ${bearerToken}`,
71+
"Content-Type": "application/json",
72+
},
73+
}
74+
);
75+
76+
return await response.json();
77+
}
78+
5379
export const server = {
80+
// download counts
5481
getDownloadCount: defineAction({
5582
handler: async () => {
5683
return await getDownloadCounts();
@@ -64,4 +91,28 @@ export const server = {
6491
return await increaseDownloadCount(input.id);
6592
},
6693
}),
94+
95+
// builder
96+
getBuilderData: defineAction({
97+
input: z.object({
98+
searchString: z.string(),
99+
paginationString: z.string(),
100+
filterString: z.string(),
101+
}),
102+
handler: async (input) => {
103+
return await getBuilderData(input);
104+
},
105+
}),
106+
107+
// packages
108+
getPackagesData: defineAction({
109+
input: z.object({
110+
paginationString: z.string(),
111+
searchString: z.string(),
112+
categoryString: z.string(),
113+
}),
114+
handler: async (input) => {
115+
return await getPackagesData(input);
116+
},
117+
}),
67118
};

src/components/builder-table.astro

+15-14
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,6 @@ let architectures = ["x86_64", "i686", "ARMv6h", "ARMv7h", "AArch64"];
7474
let statuses;
7575
if (builderData)
7676
statuses = architectures.map((str) => ({ [str]: getUniqueValues(str) }));
77-
78-
let logURL = "https://logs.athenaos.org/";
7977
---
8078

8179
<SearchPackages placeholder="Search Builder" />
@@ -139,7 +137,11 @@ let logURL = "https://logs.athenaos.org/";
139137
</div>
140138
</div>
141139

142-
<script define:vars={{ strapiURL, bearerToken, logURL, architectures }}>
140+
<script>
141+
import { actions } from "astro:actions";
142+
143+
let logURL = "https://logs.athenaos.org/";
144+
let architectures = ["x86_64", "i686", "ARMv6h", "ARMv7h", "AArch64"];
143145
const dataRows = document.getElementById("dataRows");
144146
const sentinel = document.getElementById("sentinel");
145147
let currentPage = 1;
@@ -170,17 +172,16 @@ let logURL = "https://logs.athenaos.org/";
170172
? `&filters[status_${filterInput.platformName}][$eq]=${filterInput.value}`
171173
: "";
172174

173-
const response = await fetch(
174-
`${strapiURL}/api/builders?sort[1]=package_name:asc${searchString}${paginationString}${filterString}`,
175-
{
176-
headers: {
177-
Authorization: `Bearer ${bearerToken}`,
178-
"Content-Type": "application/json",
179-
},
180-
}
181-
);
182175
try {
183-
const apiResponse = await response.json();
176+
let response = await actions.getBuilderData({
177+
searchString,
178+
paginationString,
179+
filterString,
180+
});
181+
182+
let apiResponse = await response.data;
183+
let error = await response.error;
184+
184185
newRemoveLoadingSpinners();
185186

186187
if (apiResponse.data.length === 0) {
@@ -214,7 +215,7 @@ let logURL = "https://logs.athenaos.org/";
214215
renderTable(builderData);
215216
currentPage++;
216217
} catch (e) {
217-
showErrorMessage();
218+
howErrorMessage();
218219
console.log(e);
219220
} finally {
220221
loading = false;

src/components/package-table.astro

+9-11
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,9 @@ let categoriesUnique: string[] = [...new Set(categoriesList.sort())];
108108
</div>
109109
</div>
110110

111-
<script define:vars={{ strapiURL, bearerToken }}>
111+
<script>
112+
import { actions } from "astro:actions";
113+
112114
let currentPage = 1;
113115
let pageSize = 100;
114116
let categoryInput = null;
@@ -135,17 +137,13 @@ let categoriesUnique: string[] = [...new Set(categoriesList.sort())];
135137
: `&pagination[page]=1&pagination[pageSize]=${pageSize}`;
136138

137139
try {
138-
const response = await fetch(
139-
`${strapiURL}/api/packages?sort[1]=package_name:asc${paginationString}${categoryString}${searchString}`,
140-
{
141-
headers: {
142-
Authorization: `Bearer ${bearerToken}`,
143-
"Content-Type": "application/json",
144-
},
145-
}
146-
);
140+
let response = await actions.getPackagesData({
141+
searchString,
142+
paginationString,
143+
categoryString,
144+
});
147145

148-
const apiResponse = await response.json();
146+
const apiResponse = await response.data;
149147
newRemoveLoadingSpinners();
150148

151149
if (apiResponse.data.length === 0) {

0 commit comments

Comments
 (0)