From e1137646a1b13b0d96ff8524f8f6f2702daf389c Mon Sep 17 00:00:00 2001 From: Cem Keylan Date: Thu, 22 Feb 2024 16:02:47 +0100 Subject: home: use inline js for reading latest package info --- layouts/page/index.html | 7 ++++--- static/commits.js | 21 +++++++++++++++++++++ 2 files changed, 25 insertions(+), 3 deletions(-) create mode 100644 static/commits.js diff --git a/layouts/page/index.html b/layouts/page/index.html index 3aa7497..ec8a704 100644 --- a/layouts/page/index.html +++ b/layouts/page/index.html @@ -9,9 +9,10 @@

Latest Package Changes

- + +

News

RSS Feed | diff --git a/static/commits.js b/static/commits.js new file mode 100644 index 0000000..6a919ca --- /dev/null +++ b/static/commits.js @@ -0,0 +1,21 @@ +function createListItem(commit) { + const li = document.createElement('li'); + const a = document.createElement('a'); + a.setAttribute('href', `https://git.carbslinux.org/repository/commit/?id=${commit.id}`); + a.textContent = `${commit.log}` + li.appendChild(a); + return li; +} + +fetch('https://git.carbslinux.org/exports/repository.json') + .then(response => response.json()) + .then(data => { + const commits = data["latest-commits"]; + const list = document.createElement('ul'); + for (let i = 0; i < commits.length; i++) { + const commit = commits[i]; + const item = createListItem(commit); + list.appendChild(item); + } + document.getElementById("commits").appendChild(list); + }); -- cgit v1.2.3