Commit Graph

27 Commits

Author SHA1 Message Date
Jacky Zhao
cf4b9f3f39 feat: add more plausible events 2023-02-05 11:34:39 -08:00
Adam Brangenberg
e30987445a feat: Remove leading slash of folders in graph view (#282) 2023-02-01 12:34:18 -08:00
Adam Brangenberg
5fd105f35f refactor: General performance/style improvements (#262) 2022-12-29 10:43:41 -05:00
Jacky Zhao
d315e75b91 feat: better graph scaling (closes #170) 2022-08-05 11:04:01 -07:00
DhammaCharts
32354d4d9d minor adjustment 2022-06-06 16:48:16 +01:00
DhammaCharts
4bdfbcfbfb better font behaviour 2022-06-02 08:35:28 +01:00
DhammaCharts
e9d9a6cfb9 change to object destructuring for drawGraph() arguments 2022-06-02 08:16:02 +01:00
DhammaCharts
a61b57f827 uncomment window.Million 2022-06-01 21:30:40 +01:00
DhammaCharts
47dae8a6d4 Improve graph display, options and ability to have a global graph on the home page, local graphs on subpage. 2022-06-01 13:49:27 +01:00
Aiden Bai
c1b8d1965b Add prefetch to graph 2022-05-27 08:40:00 -07:00
Aiden Bai
5c7d7eb5f8 Remove redundant URL construction 2022-05-03 10:55:45 -07:00
Aiden Bai
b146d410d9 Support /path root sites 2022-05-03 10:54:39 -07:00
Aiden Bai
b5bf2152ac Support active node with other data at end of url 2022-05-03 10:38:41 -07:00
Aiden Bai
055422cc17 Use explicit regex for trailing slash trim 2022-05-03 09:27:25 -07:00
Aiden Bai
8d105ce68f Remove unnecessary 'url' param in drawGraph 2022-05-03 09:20:01 -07:00
Aiden Bai
7a80cc0510 Fix active node on graph 2022-05-03 08:53:18 -07:00
Jacky Zhao
c3eaa9ea86 fmt: remove semis for good 2022-05-02 12:56:44 -04:00
Jacky Zhao
24f70ec244 fmt: remove semis :) 2022-05-02 12:14:51 -04:00
Aiden Bai
3f60ab4bbf Add clarification comments 2022-05-02 09:04:36 -07:00
Aiden Bai
b4675a9282 Add router 2022-05-01 22:06:33 -07:00
Jacky Zhao
92d5e5bd3b feat: show graph titles on zoom (fixes #92) 2022-04-28 15:49:16 -07:00
Jacky Zhao
5451e16dd8 fix: append trailing slash, fixes #111 2022-04-28 10:48:31 -07:00
Jacky Zhao
0f98d65f4c fix: cjk support + demo page 2022-04-02 17:38:39 -07:00
Jacky Zhao
4592bde30d feat: better titles for empty pages #61 2022-03-15 00:37:56 -07:00
Claudio Yanes
29e2934dc2 Format JS 2022-03-07 18:25:02 +00:00
Claudio Yanes
a1c6b89740 Fix fetchData
The fetchData function suffer from a race condition. If the function is
called before the promise finishes, it will result in another pair of
HTTP request. This does not only make the function useless but
Actually, it makes it harmful as the data might be redownloaded twice.

Now fetchData is not a function but rather the promise by itself.
Previous callers are expected to await the variable instead, this
should be not concern as awaiting a promise multiple time in
JavaScript is completely safe.
2022-03-04 02:25:30 +00:00
Claudio Yanes
6846d314d6 Move css and js to appropriate files
Having the CSS and JS in the html template produces pages larger
than necessary, as each page need to contain all the js/css.
Separating them in appropriate files allow the browser to just download
them once and use them for all the pages. This is even more effective
with an aggressive cache policy for the js and css, something that can
be done without fear thanks to the implemented cache-busting.
Also, having then in separate files allows us to use Hugo pipelines
for minimizing the code.
2022-03-04 02:07:51 +00:00