Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# Define o comportamento padrão para todos os arquivos de texto
* text=auto

*.js text eol=lf
Expand Down
23 changes: 22 additions & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@
"node-pg-migrate": "6.2.2",
"pg": "8.11.3",
"react": "18.2.0",
"react-dom": "18.2.0"
"react-dom": "18.2.0",
"swr": "2.2.5"
},
"devDependencies": {
"@commitlint/cli": "19.3.0",
Expand Down
60 changes: 60 additions & 0 deletions pages/status/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
import useSWR from "swr";

async function fetchAPI(key) {
const response = await fetch(key);
const responseBody = await response.json();
return responseBody;
}

export default function StatusPage() {
return (
<>
<h1>Status</h1>
<UpdatedAt />
<DatabaseStatus />
</>
);
}

function UpdatedAt() {
const { isLoading, data } = useSWR("/api/v1/status", fetchAPI, {
refreshInterval: 2000,
});

let updatedAtText = "Carregando...";

if (!isLoading && data) {
updatedAtText = new Date(data.updated_at).toLocaleString("pt-BR");
}

return <div>Última atualização: {updatedAtText}</div>;
}

function DatabaseStatus() {
const { isLoading, data } = useSWR("/api/v1/status", fetchAPI, {
refreshInterval: 2000,
});

let databaseStatusInformation = "Carregando...";

if (!isLoading && data) {
databaseStatusInformation = (
<>
<div>Versão: {data.dependencies.database.version}</div>
<div>
Conexões abertas: {data.dependencies.database.opened_connections}
</div>
<div>
Conexões máximas: {data.dependencies.database.max_connections}
</div>
</>
);
}

return (
<>
<h2>Database</h2>
<div>{databaseStatusInformation}</div>
</>
);
}