aboutsummaryrefslogtreecommitdiff
path: root/static/widgets/image
diff options
context:
space:
mode:
authorNathan Reiner <nathan@nathanreiner.xyz>2025-11-24 21:13:47 +0100
committerNathan Reiner <nathan@nathanreiner.xyz>2025-11-24 21:17:05 +0100
commitf3756dac8a49f3b5599fd50f4c631da4168e9eb0 (patch)
treea84d95e30269d4b368b741ffd1a781b7cfbb1988 /static/widgets/image
parent97b35ce73fab8a84d4d3e6807618a252efcf4cd9 (diff)
add jump-to month
Diffstat (limited to 'static/widgets/image')
-rw-r--r--static/widgets/image/index.js11
1 files changed, 9 insertions, 2 deletions
diff --git a/static/widgets/image/index.js b/static/widgets/image/index.js
index 4c25988..291cf23 100644
--- a/static/widgets/image/index.js
+++ b/static/widgets/image/index.js
@@ -1,5 +1,6 @@
import * as api from 'api';
import * as sfw from 'sfw';
+import Month from '../../month.js';
const { Div, Img } = sfw.element.native;
const css = await sfw.css(import.meta.url, './index.css')
@@ -9,6 +10,7 @@ export default class Image extends sfw.element.Container {
#image
#menu
#id
+ #month
constructor() {
super ({ css })
@@ -43,8 +45,9 @@ export default class Image extends sfw.element.Container {
);
}
- set id(id) {
- this.#id = id;
+ set metadata(image) {
+ this.#id = image.id;
+ this.#month = Month.from_unix(image.timestamp);
this.#container.classList.remove('loaded');
}
@@ -53,4 +56,8 @@ export default class Image extends sfw.element.Container {
this.#image.src = `/api/image/load/${this.#id}`;
}
}
+
+ get month() {
+ return this.#month;
+ }
}