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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
|
import {useEffect, useState} from "react";
import {FaClipboardList} from "react-icons/fa";
import remarkHtml from "remark-html"
import remarkParse from "remark-parse"
import remarkGfm from "remark-gfm"
import {unified} from "unified"
import {patchPartnerEventStore} from "./PartnerEventStorePatch";
import {staticClasses} from "@decky/ui";
import {definePlugin} from "@decky/api"
import {fetchReleases} from "./FetchReleases";
function Content() {
const [changelogHtml, setChangelogHtml] = useState<string | null>(null);
const [error, setError] = useState<string | null>(null);
const [isRefreshing, setIsRefreshing] = useState<boolean>(false);
const fetchChangelog = async (signal?: AbortSignal) => {
try {
const generator = fetchReleases(signal);
const iterator = await generator.next();
if (!iterator || iterator.done) {
setError("An unknown error occurred while fetching the changelog.");
return;
}
const html = await unified()
.use(remarkParse)
.use(remarkGfm)
.use(remarkHtml)
.process(iterator.value.body);
setChangelogHtml(html.value as string);
setError(null);
} catch (err) {
if (err instanceof DOMException && err.name === "AbortError") return;
const errorMessage =
err instanceof Error
? err.message
: "An unknown error occurred while fetching the changelog.";
setError(errorMessage);
}
};
useEffect(() => {
const controller = new AbortController();
fetchChangelog(controller.signal);
return () => {
controller.abort();
};
}, []);
const refreshChangelog = async () => {
setIsRefreshing(true);
setChangelogHtml(null);
setError(null);
try {
await fetchChangelog();
} finally {
setIsRefreshing(false);
}
};
return (
<div
style={{
padding: "10px",
width: "100%",
maxWidth: "800px", // Limit the width
margin: "0 auto", // Center the container
height: "100%",
overflowY: "auto",
backgroundColor: "#121212",
color: "#ffffff",
fontFamily: "Arial, sans-serif",
wordWrap: "break-word", // Break long words
overflowX: "hidden", // Prevent horizontal scrolling
}}
>
<h2>Bazzite Release Notes</h2>
<div style={{display: "flex", gap: "10px", marginBottom: "15px"}}>
<button
style={{
padding: "10px 20px",
backgroundColor: "#0078D7",
color: "#ffffff",
border: "none",
borderRadius: "5px",
cursor: "pointer",
fontSize: "16px",
}}
onClick={() =>
window.open(
"https://github.com/ublue-os/bazzite/releases",
"_blank"
)
}
>
View All Release Notes
</button>
<button
style={{
padding: "10px 20px",
backgroundColor: isRefreshing ? "#CCCCCC" : "#28A745",
color: "#ffffff",
border: "none",
borderRadius: "5px",
cursor: isRefreshing ? "not-allowed" : "pointer",
fontSize: "16px",
}}
onClick={refreshChangelog}
disabled={isRefreshing}
>
{isRefreshing ? "Refreshing..." : "Refresh"}
</button>
</div>
{error ? (
<p style={{color: "red"}} aria-live="polite">
{error}
</p>
) : changelogHtml ? (
<div
style={{
backgroundColor: "#1e1e1e",
padding: "10px",
borderRadius: "5px",
color: "#ffffff",
fontFamily: "Arial, sans-serif",
fontSize: "14px",
lineHeight: "1.6",
wordWrap: "break-word", // Prevent long text from overflowing
}}
>
<style>
{`
h1, h2, h3 {
color: #61dafb;
margin: 0 0 10px;
}
p {
margin: 0 0 10px;
}
ul, ol {
margin: 10px 0 10px 20px;
}
li {
margin: 5px 0;
}
pre {
background-color: #282c34;
padding: 10px;
border-radius: 5px;
overflow-x: auto;
color: #dcdcdc;
}
a {
color: #61dafb;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
`}
</style>
<div
dangerouslySetInnerHTML={{
__html: changelogHtml,
}}
></div>
</div>
) : (
<p aria-live="polite">Loading...</p>
)}
</div>
);
}
// noinspection JSUnusedGlobalSymbols
export default definePlugin(() => {
const patches = patchPartnerEventStore();
return {
name: "Bazzite Changelog Viewer",
title: <div className={staticClasses.Title}>Bazzite Buddy</div>,
icon: <FaClipboardList/>,
content: <Content/>,
onDismount() {
patches.forEach(patch => {
patch.unpatch();
});
},
};
});
|