mirror of
https://github.com/Aviortheking/codestats-readme.git
synced 2025-04-22 10:42:08 +00:00
chore: added secondary warning message in renderError
This commit is contained in:
parent
e32ab3f973
commit
6d5a828542
@ -33,7 +33,12 @@ module.exports = async (req, res) => {
|
|||||||
try {
|
try {
|
||||||
stats = await fetchStats(username, parseBoolean(count_private));
|
stats = await fetchStats(username, parseBoolean(count_private));
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
return res.send(renderError(err.message));
|
return res.send(
|
||||||
|
renderError(
|
||||||
|
err.message,
|
||||||
|
"Make sure the provided username is not an organization"
|
||||||
|
)
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
const cacheSeconds = clampValue(
|
const cacheSeconds = clampValue(
|
||||||
|
10
src/utils.js
10
src/utils.js
@ -1,16 +1,20 @@
|
|||||||
const axios = require("axios");
|
const axios = require("axios");
|
||||||
const themes = require("../themes");
|
const themes = require("../themes");
|
||||||
|
|
||||||
const renderError = (message) => {
|
const renderError = (message, secondaryMessage = "") => {
|
||||||
return `
|
return `
|
||||||
<svg width="495" height="100" viewBox="0 0 495 100" fill="none" xmlns="http://www.w3.org/2000/svg">
|
<svg width="495" height="120" viewBox="0 0 495 120" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
<style>
|
<style>
|
||||||
.text { font: 600 16px 'Segoe UI', Ubuntu, Sans-Serif; fill: #2F80ED }
|
.text { font: 600 16px 'Segoe UI', Ubuntu, Sans-Serif; fill: #2F80ED }
|
||||||
.small { font: 600 12px 'Segoe UI', Ubuntu, Sans-Serif; fill: #252525 }
|
.small { font: 600 12px 'Segoe UI', Ubuntu, Sans-Serif; fill: #252525 }
|
||||||
|
.gray { fill: #858585 }
|
||||||
</style>
|
</style>
|
||||||
<rect x="0.5" y="0.5" width="494" height="99%" rx="4.5" fill="#FFFEFE" stroke="#E4E2E2"/>
|
<rect x="0.5" y="0.5" width="494" height="99%" rx="4.5" fill="#FFFEFE" stroke="#E4E2E2"/>
|
||||||
<text x="25" y="45" class="text">Something went wrong! file an issue at https://git.io/JJmN9</text>
|
<text x="25" y="45" class="text">Something went wrong! file an issue at https://git.io/JJmN9</text>
|
||||||
<text id="message" x="25" y="65" class="text small">${message}</text>
|
<text data-testid="message" x="25" y="55" class="text small">
|
||||||
|
<tspan x="25" dy="18">${message}</tspan>
|
||||||
|
<tspan x="25" dy="18" class="gray">${secondaryMessage}</tspan>
|
||||||
|
</text>
|
||||||
</svg>
|
</svg>
|
||||||
`;
|
`;
|
||||||
};
|
};
|
||||||
|
@ -94,7 +94,12 @@ describe("Test /api/", () => {
|
|||||||
await api(req, res);
|
await api(req, res);
|
||||||
|
|
||||||
expect(res.setHeader).toBeCalledWith("Content-Type", "image/svg+xml");
|
expect(res.setHeader).toBeCalledWith("Content-Type", "image/svg+xml");
|
||||||
expect(res.send).toBeCalledWith(renderError(error.errors[0].message));
|
expect(res.send).toBeCalledWith(
|
||||||
|
renderError(
|
||||||
|
error.errors[0].message,
|
||||||
|
"Make sure the provided username is not an organization"
|
||||||
|
)
|
||||||
|
);
|
||||||
});
|
});
|
||||||
|
|
||||||
it("should get the query options", async () => {
|
it("should get the query options", async () => {
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
require("@testing-library/jest-dom");
|
||||||
const {
|
const {
|
||||||
kFormatter,
|
kFormatter,
|
||||||
encodeHTML,
|
encodeHTML,
|
||||||
@ -6,6 +7,8 @@ const {
|
|||||||
getCardColors,
|
getCardColors,
|
||||||
} = require("../src/utils");
|
} = require("../src/utils");
|
||||||
|
|
||||||
|
const { queryByTestId } = require("@testing-library/dom");
|
||||||
|
|
||||||
describe("Test utils.js", () => {
|
describe("Test utils.js", () => {
|
||||||
it("should test kFormatter", () => {
|
it("should test kFormatter", () => {
|
||||||
expect(kFormatter(1)).toBe(1);
|
expect(kFormatter(1)).toBe(1);
|
||||||
@ -25,9 +28,19 @@ describe("Test utils.js", () => {
|
|||||||
|
|
||||||
it("should test renderError", () => {
|
it("should test renderError", () => {
|
||||||
document.body.innerHTML = renderError("Something went wrong");
|
document.body.innerHTML = renderError("Something went wrong");
|
||||||
expect(document.getElementById("message").textContent).toBe(
|
expect(
|
||||||
"Something went wrong"
|
queryByTestId(document.body, "message").children[0]
|
||||||
|
).toHaveTextContent(/Something went wrong/gim);
|
||||||
|
expect(queryByTestId(document.body, "message").children[1]).toBeEmpty(2);
|
||||||
|
|
||||||
|
// Secondary message
|
||||||
|
document.body.innerHTML = renderError(
|
||||||
|
"Something went wrong",
|
||||||
|
"Secondary Message"
|
||||||
);
|
);
|
||||||
|
expect(
|
||||||
|
queryByTestId(document.body, "message").children[1]
|
||||||
|
).toHaveTextContent(/Secondary Message/gim);
|
||||||
});
|
});
|
||||||
|
|
||||||
it("should test FlexLayout", () => {
|
it("should test FlexLayout", () => {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user