Compare commits
No commits in common. "b4fd4f344ca1dcddd5164c6fbea0b4ddba776a35" and "7fba4dbbd6b9bd764b7b83b020f8cbeaa5f3e7c7" have entirely different histories.
b4fd4f344c
...
7fba4dbbd6
@ -1,2 +1 @@
|
||||
readme.md 2022-28-06 Tickle
|
||||
examples.md 2022-28-06 Examples
|
||||
readme.md 2022-03-03 Tickle
|
75
index.html
75
index.html
@ -153,47 +153,12 @@
|
||||
<main id="Body"></main>
|
||||
<div id="Loading"></div>
|
||||
<script type="module">
|
||||
//@ts-check
|
||||
|
||||
const is_debug_mode = /^localhost|127.0.0.1/.test(
|
||||
window.location.hostname
|
||||
);
|
||||
|
||||
/**
|
||||
* markdown parser. Remove if you don't use markdown
|
||||
*/
|
||||
// @ts-ignore
|
||||
import { micromark } from "https://esm.sh/micromark@3?bundle";
|
||||
|
||||
/**
|
||||
* A small utility to query elements and get back an array
|
||||
*/
|
||||
const $ = (parent, selector) => [
|
||||
...(!selector
|
||||
? document.querySelectorAll(parent)
|
||||
: parent.querySelectorAll(selector)),
|
||||
];
|
||||
|
||||
/**
|
||||
* Assumes a provided url is external if it begins by a known protocol
|
||||
* @param {string} url
|
||||
*/
|
||||
const isExternal = (url) =>
|
||||
/^(https?|mailto|tel|ftp|ipfs|dat):/.test(url);
|
||||
|
||||
const rewriteLocalUrls = (container) => {
|
||||
$(container, "a").forEach((a) => {
|
||||
const href = a.getAttribute("href");
|
||||
if (href && !isExternal(href)) {
|
||||
console.log({ href });
|
||||
const rewrittenHref = "#/" + href.replace(/^\.?\//, "");
|
||||
a.setAttribute("href", rewrittenHref);
|
||||
console.log(a);
|
||||
console.log(rewrittenHref);
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
/**
|
||||
* useful to check for transitions while developing styles, if the loading screen disappears too fast
|
||||
*
|
||||
@ -212,12 +177,10 @@
|
||||
*/
|
||||
const mainTitle = document.title;
|
||||
|
||||
const showLoadingOverlay = () =>
|
||||
document.body.classList.add("is-loading");
|
||||
const hideLoadingOverlay = () =>
|
||||
document.body.classList.remove("is-loading");
|
||||
const startLoading = () => document.body.classList.add("is-loading");
|
||||
const stopLoading = () => document.body.classList.remove("is-loading");
|
||||
|
||||
const getCurrentHashUrl = () => {
|
||||
const getCurrentPage = () => {
|
||||
const [path, searchStr] = (
|
||||
window.location.hash[1] === "/" ? window.location.hash.slice(2) : ""
|
||||
).split("?");
|
||||
@ -226,27 +189,24 @@
|
||||
};
|
||||
|
||||
const onHashChange = (evt) => {
|
||||
const { path, params } = getCurrentHashUrl();
|
||||
const { path, params } = getCurrentPage();
|
||||
if (!path) {
|
||||
return false;
|
||||
}
|
||||
showLoadingOverlay();
|
||||
return fetch(
|
||||
is_debug_mode ? `./${path}?rand=${Math.random()}` : `./${path}`
|
||||
)
|
||||
startLoading();
|
||||
return fetch(`./${path}`)
|
||||
.then((response) => response.text())
|
||||
.then(wait)
|
||||
.then((text) => {
|
||||
const [, title] = text.match(/^#\s+(\w+.+)/) ||
|
||||
const [, title] = text.match(/^(#\s\w+)/) ||
|
||||
text.match(/(.*?)\n===+/m) || [, path];
|
||||
document.title = `${title} | ${mainTitle}`;
|
||||
if (params.has("source")) {
|
||||
Body.innerHTML = `<pre>${text}</pre>`;
|
||||
} else {
|
||||
Body.innerHTML = micromark(text);
|
||||
rewriteLocalUrls(Body);
|
||||
}
|
||||
hideLoadingOverlay();
|
||||
stopLoading();
|
||||
});
|
||||
};
|
||||
|
||||
@ -256,8 +216,7 @@
|
||||
* Loads the article list, parses it, creates the menu items
|
||||
*/
|
||||
const start = () => {
|
||||
let hasAutoloadedFirstPage = false;
|
||||
showLoadingOverlay();
|
||||
startLoading();
|
||||
fetch("./files.txt")
|
||||
.then((response) => response.text())
|
||||
.then((lines) => {
|
||||
@ -266,7 +225,7 @@
|
||||
.map((line, index) => {
|
||||
const today = new Date().toISOString().split("T")[0];
|
||||
const result = line.match(
|
||||
/(?<name>.+)\.(?<ext>\w{2,3})(?:\s+(?<date>[\d-]+)?(?<title>.+))?/
|
||||
/(?<name>.+)\.(?<ext>\w{2,3})(?:\s(?<date>[\d-]+)?(?<title>.+))?/
|
||||
);
|
||||
if (!result) {
|
||||
console.log(`could not parse line ${index}: [${line}]`);
|
||||
@ -276,22 +235,20 @@
|
||||
groups: { name, ext, date = today, title = name },
|
||||
} = result;
|
||||
const href = `/${name}.${ext}`;
|
||||
if (!getCurrentHashUrl().path) {
|
||||
hasAutoloadedFirstPage = true;
|
||||
if (!getCurrentPage().path) {
|
||||
window.location.hash = `#${href}`;
|
||||
}
|
||||
const date_unix = new Date(date).getTime();
|
||||
return { name, href, date, title, date_unix };
|
||||
console.log({ name, href, date, title });
|
||||
return { name, href, date, title };
|
||||
})
|
||||
.filter(Boolean)
|
||||
.sort(({ date_unix: a }, { date_unix: b }) => a - b)
|
||||
.sort(({ date: a }, { date: b }) => a - b)
|
||||
.map(
|
||||
({ href, title }) => `<a data-link href="#${href}">${title}</a>`
|
||||
)
|
||||
.join(`\n`);
|
||||
if (!hasAutoloadedFirstPage) {
|
||||
onHashChange();
|
||||
}
|
||||
|
||||
onHashChange();
|
||||
});
|
||||
};
|
||||
|
||||
|
@ -31,8 +31,8 @@ We have a [neat little UI to help you do all of that](https://git.poto.cafe/yagi
|
||||
|
||||
Here are more detailed explanations, for different knowledge levels.
|
||||
|
||||
- [I do not care about tech stuff, I just want to publish](tutorial-publishers.md)
|
||||
- [I can write some code, give me detailed explanations](tutorial-hackers.md)
|
||||
- [I do not care about tech stuff, I just want to publish](/#/tutorial-publishers.md)
|
||||
- [I can write some code, give me detailed explanations](/#/tutorial-hackers.md)
|
||||
|
||||
It's important to know that Tickle is an *idea*. Think of it as a specification. We have a few examples listed [here](examples.md)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user