2024-07-08 13:43:28 -07:00
|
|
|
class OutfitViewer extends HTMLElement {
|
|
|
|
#internals;
|
|
|
|
|
|
|
|
constructor() {
|
|
|
|
super();
|
2024-08-30 17:09:39 -07:00
|
|
|
this.#internals = this.attachInternals(); // for CSS `:state()`
|
2024-07-08 13:43:28 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
connectedCallback() {
|
2024-08-30 17:09:39 -07:00
|
|
|
// The `<outfit-layer>` is connected to the DOM right before its
|
|
|
|
// children are. So, to engage with the children, wait a tick!
|
2024-07-08 13:43:28 -07:00
|
|
|
setTimeout(() => this.#connectToChildren(), 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
#connectToChildren() {
|
|
|
|
const playPauseToggle = document.querySelector(".play-pause-toggle");
|
|
|
|
|
|
|
|
// Read our initial playing state from the toggle, and subscribe to changes.
|
|
|
|
this.#setIsPlaying(playPauseToggle.checked);
|
|
|
|
playPauseToggle.addEventListener("change", () => {
|
|
|
|
this.#setIsPlaying(playPauseToggle.checked);
|
2024-07-08 16:27:38 -07:00
|
|
|
this.#setIsPlayingCookie(playPauseToggle.checked);
|
2024-07-08 13:43:28 -07:00
|
|
|
});
|
Fix bug where item preview loading indicator sometimes doesn't delay
The loading indicator *should* fade in after two seconds, to avoid a
flash of a loading indicator when the page loads quickly - but in some
circumstances it wouldn't delay:
1. Visit an item page. (It delays correctly the first time!)
2. Click "Infinite Closet", then click a link to another item page.
3. The loading indicator appears immediately, because this time the
web component JS is already loaded, so the `outfit-layer` elements
enter `:state(loading)` *immediately*. The element starts at
`opacity: 1`, and the delay doesn't matter, because it was never at
anything else.
In this change, we have the `outfit-viewer` web component take on a
`:state(after-first-frame)`, after a `setTimeout(0)` resolves. That
enables the loading state CSS to *never* apply on the first frame, but
then sometimes kick in on the *second* frame, so that the element is
correctly perceived as "transitioning" from hidden to visible, and the
two-second delay will apply.
2024-09-06 12:13:10 -07:00
|
|
|
|
|
|
|
// Tell the CSS our first frame has rendered, which we use for loading
|
|
|
|
// state transitions.
|
|
|
|
this.#internals.states.add("after-first-frame");
|
2024-07-08 13:43:28 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
#setIsPlaying(isPlaying) {
|
|
|
|
// TODO: Listen for changes to the child list, and add `playing` when new
|
|
|
|
// nodes arrive, if playing.
|
2024-07-08 16:27:38 -07:00
|
|
|
const thirtyDays = 60 * 60 * 24 * 30;
|
2024-07-08 13:43:28 -07:00
|
|
|
if (isPlaying) {
|
|
|
|
this.#internals.states.add("playing");
|
2024-07-08 16:27:38 -07:00
|
|
|
for (const layer of this.querySelectorAll("outfit-layer")) {
|
|
|
|
layer.play();
|
2024-07-08 13:43:28 -07:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
this.#internals.states.delete("playing");
|
2024-07-08 16:27:38 -07:00
|
|
|
for (const layer of this.querySelectorAll("outfit-layer")) {
|
|
|
|
layer.pause();
|
2024-07-08 13:43:28 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2024-07-08 16:27:38 -07:00
|
|
|
|
|
|
|
#setIsPlayingCookie(isPlaying) {
|
|
|
|
const thirtyDays = 60 * 60 * 24 * 30;
|
|
|
|
const value = isPlaying ? "true" : "false";
|
|
|
|
document.cookie = `DTIOutfitViewerIsPlaying=${value};max-age=${thirtyDays}`;
|
|
|
|
}
|
2024-07-08 13:43:28 -07:00
|
|
|
}
|
|
|
|
|
2024-07-02 22:16:37 -07:00
|
|
|
class OutfitLayer extends HTMLElement {
|
2024-07-02 22:34:51 -07:00
|
|
|
#internals;
|
|
|
|
|
|
|
|
constructor() {
|
|
|
|
super();
|
|
|
|
this.#internals = this.attachInternals();
|
2024-07-07 21:52:38 -07:00
|
|
|
|
|
|
|
// An <outfit-layer> starts in the loading state, and then might very
|
|
|
|
// quickly decide it's not after `#connectToChildren`. This is to prevent a
|
|
|
|
// flash of *non*-loading state, when a new layer loads in. (e.g. In the
|
|
|
|
// time between our parent <turbo-frame> loading, which shows the loading
|
|
|
|
// spinner; and us being marked `:state(loading)`, which shows the loading
|
|
|
|
// spinner; we don't want the loading spinner to do its usual *immediate*
|
|
|
|
// total fade-out; then have to fade back in again, on the usual delay.)
|
|
|
|
this.#setStatus("loading");
|
2024-07-02 22:34:51 -07:00
|
|
|
}
|
|
|
|
|
2024-07-02 22:16:37 -07:00
|
|
|
connectedCallback() {
|
2024-07-03 20:15:35 -07:00
|
|
|
setTimeout(() => this.#connectToChildren(), 0);
|
2024-07-02 22:16:37 -07:00
|
|
|
}
|
|
|
|
|
2024-07-03 20:15:35 -07:00
|
|
|
disconnectedCallback() {
|
2024-08-30 17:09:39 -07:00
|
|
|
// When this `<outfit-layer>` leaves the DOM, stop listening for iframe
|
|
|
|
// messages, if we were.
|
2024-07-03 20:15:35 -07:00
|
|
|
window.removeEventListener("message", this.#onMessage);
|
|
|
|
}
|
|
|
|
|
2024-07-08 16:27:38 -07:00
|
|
|
play() {
|
2024-07-08 16:44:22 -07:00
|
|
|
this.#sendMessageToIframe({ type: "play" });
|
2024-07-08 16:27:38 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
pause() {
|
2024-07-08 16:44:22 -07:00
|
|
|
this.#sendMessageToIframe({ type: "pause" });
|
2024-07-08 13:43:28 -07:00
|
|
|
}
|
|
|
|
|
2024-07-03 20:15:35 -07:00
|
|
|
#connectToChildren() {
|
|
|
|
const image = this.querySelector("img");
|
|
|
|
const iframe = this.querySelector("iframe");
|
|
|
|
|
|
|
|
if (image) {
|
2024-08-30 17:09:39 -07:00
|
|
|
// If this is an image layer, track its loading state by listening
|
|
|
|
// to the load/error events, and initialize based on whether it's
|
|
|
|
// already `complete` (which it can be if it loaded from cache).
|
2024-07-08 16:44:22 -07:00
|
|
|
this.#setStatus(image.complete ? "loaded" : "loading");
|
2024-07-03 20:15:35 -07:00
|
|
|
image.addEventListener("load", () => this.#setStatus("loaded"));
|
|
|
|
image.addEventListener("error", () => this.#setStatus("error"));
|
|
|
|
} else if (iframe) {
|
|
|
|
this.iframe = iframe;
|
2024-07-08 16:44:22 -07:00
|
|
|
|
2024-08-30 17:09:39 -07:00
|
|
|
// Initialize status to `loading`, and asynchronously request a
|
|
|
|
// status message from the iframe if it managed to load before this
|
|
|
|
// triggers (impressive, but I think I've seen it happen!). Then,
|
|
|
|
// wait for messages or error events from the iframe to update
|
|
|
|
// status further if needed.
|
2024-07-08 16:44:22 -07:00
|
|
|
this.#setStatus("loading");
|
|
|
|
this.#sendMessageToIframe({ type: "requestStatus" });
|
2024-07-03 20:15:35 -07:00
|
|
|
window.addEventListener("message", (m) => this.#onMessage(m));
|
2024-08-30 17:09:39 -07:00
|
|
|
this.iframe.addEventListener("error", () =>
|
|
|
|
this.#setStatus("error"),
|
|
|
|
);
|
2024-07-03 20:15:35 -07:00
|
|
|
} else {
|
2024-09-06 17:57:18 -07:00
|
|
|
console.warn(`<outfit-layer> contained no image or iframe: `, this);
|
2024-07-02 22:16:37 -07:00
|
|
|
}
|
2024-07-03 20:15:35 -07:00
|
|
|
}
|
2024-07-02 22:16:37 -07:00
|
|
|
|
2024-07-03 20:15:35 -07:00
|
|
|
#onMessage({ source, data }) {
|
2024-08-30 17:09:39 -07:00
|
|
|
// Ignore messages that aren't from *our* frame.
|
2024-07-03 20:15:35 -07:00
|
|
|
if (source !== this.iframe.contentWindow) {
|
|
|
|
return;
|
|
|
|
}
|
2024-07-02 22:16:37 -07:00
|
|
|
|
2024-08-30 17:09:39 -07:00
|
|
|
// Validate the incoming status message, then set our status to match.
|
2024-07-08 13:43:28 -07:00
|
|
|
if (data.type === "status") {
|
|
|
|
if (data.status === "loaded") {
|
|
|
|
this.#setStatus("loaded");
|
|
|
|
this.#setHasAnimations(data.hasAnimations);
|
|
|
|
} else if (data.status === "error") {
|
|
|
|
this.#setStatus("error");
|
|
|
|
} else {
|
|
|
|
throw new Error(
|
2024-08-30 17:09:39 -07:00
|
|
|
`<outfit-layer> got unexpected status: ` +
|
|
|
|
JSON.stringify(data.status),
|
2024-07-08 13:43:28 -07:00
|
|
|
);
|
|
|
|
}
|
2024-07-03 20:15:35 -07:00
|
|
|
} else {
|
|
|
|
throw new Error(
|
2024-08-30 17:09:39 -07:00
|
|
|
`<outfit-layer> got unexpected message: ` +
|
|
|
|
JSON.stringify(data),
|
2024-07-03 20:15:35 -07:00
|
|
|
);
|
|
|
|
}
|
2024-07-02 22:16:37 -07:00
|
|
|
}
|
|
|
|
|
2024-08-30 17:09:39 -07:00
|
|
|
/**
|
|
|
|
* Set the status value that the CSS `:state()` selector will match.
|
|
|
|
* For example, when loading, `:state(loading)` matches this element.
|
|
|
|
*/
|
2024-07-02 22:16:37 -07:00
|
|
|
#setStatus(newStatus) {
|
2024-07-08 13:43:28 -07:00
|
|
|
this.#internals.states.delete("loading");
|
|
|
|
this.#internals.states.delete("loaded");
|
|
|
|
this.#internals.states.delete("error");
|
2024-07-02 22:34:51 -07:00
|
|
|
this.#internals.states.add(newStatus);
|
2024-07-02 22:16:37 -07:00
|
|
|
}
|
2024-07-08 13:43:28 -07:00
|
|
|
|
2024-08-30 17:09:39 -07:00
|
|
|
/**
|
|
|
|
* Set whether CSS selector `:state(has-animations)` matches this element.
|
|
|
|
*/
|
2024-07-08 13:43:28 -07:00
|
|
|
#setHasAnimations(hasAnimations) {
|
|
|
|
if (hasAnimations) {
|
|
|
|
this.#internals.states.add("has-animations");
|
|
|
|
} else {
|
|
|
|
this.#internals.states.delete("has-animations");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-07-08 16:44:22 -07:00
|
|
|
#sendMessageToIframe(message) {
|
2024-08-30 17:09:39 -07:00
|
|
|
// If we have no frame or it hasn't loaded, ignore this message.
|
2024-09-05 17:37:16 -07:00
|
|
|
if (this.iframe == null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (this.iframe.contentWindow == null) {
|
2024-08-30 17:09:39 -07:00
|
|
|
console.debug(
|
2024-09-05 17:37:16 -07:00
|
|
|
`Ignoring message, frame not loaded yet: `,
|
2024-08-30 17:09:39 -07:00
|
|
|
this.iframe,
|
|
|
|
message,
|
|
|
|
);
|
2024-07-08 13:43:28 -07:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2024-07-08 16:44:22 -07:00
|
|
|
// The frame is sandboxed (origin == null), so send to Any origin.
|
|
|
|
this.iframe.contentWindow.postMessage(message, "*");
|
2024-07-08 13:43:28 -07:00
|
|
|
}
|
2024-07-02 22:16:37 -07:00
|
|
|
}
|
|
|
|
|
2024-07-08 13:43:28 -07:00
|
|
|
customElements.define("outfit-viewer", OutfitViewer);
|
2024-07-02 22:16:37 -07:00
|
|
|
customElements.define("outfit-layer", OutfitLayer);
|
2024-07-03 21:52:43 -07:00
|
|
|
|
|
|
|
// Morph turbo-frames on this page, to reuse asset nodes when we want to—very
|
|
|
|
// important for movies!—but ensure that it *doesn't* do its usual behavior of
|
|
|
|
// aggressively reusing existing <outfit-layer> nodes for entirely different
|
|
|
|
// assets. (It's a lot clearer for managing the loading state, and not showing
|
|
|
|
// old incorrect layers!) (We also tried using `id` to enforce this… no luck.)
|
2024-08-30 17:09:39 -07:00
|
|
|
function morphWithOutfitLayers(currentElement, newElement) {
|
|
|
|
Idiomorph.morph(currentElement, newElement.innerHTML, {
|
|
|
|
morphStyle: "innerHTML",
|
|
|
|
callbacks: {
|
|
|
|
beforeNodeMorphed: (currentNode, newNode) => {
|
|
|
|
// If Idiomorph wants to transform an <outfit-layer> to
|
|
|
|
// have a different data-asset-id attribute, we replace
|
|
|
|
// the node ourselves and abort the morph.
|
|
|
|
if (
|
|
|
|
newNode.tagName === "OUTFIT-LAYER" &&
|
|
|
|
newNode.getAttribute("data-asset-id") !==
|
|
|
|
currentNode.getAttribute("data-asset-id")
|
|
|
|
) {
|
|
|
|
currentNode.replaceWith(newNode);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
},
|
|
|
|
});
|
|
|
|
}
|
2024-07-03 21:52:43 -07:00
|
|
|
addEventListener("turbo:before-frame-render", (event) => {
|
2024-08-30 17:09:39 -07:00
|
|
|
// Rather than enforce Idiomorph must be loaded, let's just be resilient
|
|
|
|
// and only bother if we have it. (Replacing content is not *that* bad!)
|
2024-07-03 21:52:43 -07:00
|
|
|
if (typeof Idiomorph !== "undefined") {
|
2024-08-30 17:09:39 -07:00
|
|
|
event.detail.render = (a, b) => morphWithOutfitLayers(a, b);
|
2024-07-03 21:52:43 -07:00
|
|
|
}
|
|
|
|
});
|