Compare commits

..

No commits in common. "62aaaeee9ababa3c82fda1c98e369b5bad5e78c2" and "18fa2810c48fc5bf98de004d889e8fc5fce07e53" have entirely different histories.

6 changed files with 337 additions and 382 deletions

View file

@ -5,7 +5,12 @@
@supports (grid-template-rows: masonry) { @supports (grid-template-rows: masonry) {
.NativeMasonry { .NativeMasonry {
display: grid; display: grid;
grid-template-columns: repeat(auto-fit, minmax(33%, min-content)); grid-template-columns: repeat(auto-fit, minmax(44px, min-content));
grid-template-rows: masonry; grid-template-rows: masonry;
&:has(> :last-child:nth-child(2n)) {
grid-template-columns: repeat(2, minmax(auto, min-content));
} }
} }
}

View file

@ -5,8 +5,10 @@ import {
type Ref, type Ref,
createRenderEffect, createRenderEffect,
onCleanup, onCleanup,
children,
createEffect, createEffect,
createSignal, createSignal,
onMount,
} from "solid-js"; } from "solid-js";
import { Dynamic, type DynamicProps } from "solid-js/web"; import { Dynamic, type DynamicProps } from "solid-js/web";
import MasonryLayout from "masonry-layout"; import MasonryLayout from "masonry-layout";
@ -18,6 +20,7 @@ type MasonryContainer =
| Component<{ | Component<{
ref?: Ref<Element>; ref?: Ref<Element>;
class?: string; class?: string;
children?: JSX.Element;
}>; }>;
type ElementOf<T extends MasonryContainer> = type ElementOf<T extends MasonryContainer> =
@ -34,10 +37,7 @@ function forwardRef<T>(value: T, ref?: Ref<T>) {
(ref as (value: T) => void)(value); (ref as (value: T) => void)(value);
} }
function createCompatMasonry( function createMasonry(element: Element, options: () => MasonryLayout.Options) {
element: Element,
options: () => MasonryLayout.Options,
) {
const layout = new MasonryLayout(element, { const layout = new MasonryLayout(element, {
initLayout: false, initLayout: false,
}); });
@ -46,21 +46,11 @@ function createCompatMasonry(
const size = createElementSize(element); const size = createElementSize(element);
const treeMutObx = new MutationObserver(() => {
layout.reloadItems?.();
});
onCleanup(() => treeMutObx.disconnect());
createRenderEffect(() => { createRenderEffect(() => {
const opts = options(); const opts = options();
layout.option?.(opts); layout.option?.(opts);
}); });
createRenderEffect(() => {
treeMutObx.observe(element, { childList: true });
});
createRenderEffect(() => { createRenderEffect(() => {
const width = size.width; // only tracking width const width = size.width; // only tracking width
layout.layout?.(); layout.layout?.();
@ -71,6 +61,8 @@ function createCompatMasonry(
layout.layout?.(); layout.layout?.();
}); });
} }
return layout;
} }
const supportsCSSMasonryLayout = /* @__PURE__ */ CSS.supports( const supportsCSSMasonryLayout = /* @__PURE__ */ CSS.supports(
@ -93,7 +85,9 @@ if (import.meta.env.VITE_PLATFROM_MASONRY_ALWAYS_COMPAT) {
function MasonryCompat<T extends MasonryContainer>( function MasonryCompat<T extends MasonryContainer>(
oprops: DynamicProps<T> & { class?: string }, oprops: DynamicProps<T> & { class?: string },
) { ) {
const [props, rest] = splitProps(oprops, ["ref", "class"]); const [props, rest] = splitProps(oprops, ["ref", "children", "class"]);
const childrenComponents = children(() => props.children);
return ( return (
<Dynamic <Dynamic
@ -102,7 +96,7 @@ function MasonryCompat<T extends MasonryContainer>(
const [columnGap, setColumnGap] = createSignal<number>(); const [columnGap, setColumnGap] = createSignal<number>();
createCompatMasonry(element, () => { const layout = createMasonry(element, () => {
return { return {
gutter: columnGap(), gutter: columnGap(),
}; };
@ -121,9 +115,18 @@ function MasonryCompat<T extends MasonryContainer>(
setColumnGap(Number(colGap.slice(0, colGap.length - 2))); setColumnGap(Number(colGap.slice(0, colGap.length - 2)));
} }
}); });
createRenderEffect(() => {
childrenComponents(); // just tracks
setTimeout(() => {
layout.reloadItems?.();
layout.layout?.();
}, 0);
});
}} }}
class={`Masonry CompatMasonry ${props.class || ""}`} class={`Masonry CompatMasonry ${props.class || ""}`}
{...rest} {...rest}
children={childrenComponents}
/> />
); );
} }
@ -144,13 +147,6 @@ function MasonryNative<T extends MasonryContainer>(
* and fallback to masonry-layout if not supported. The children * and fallback to masonry-layout if not supported. The children
* must have specified width and height. * must have specified width and height.
* *
* Testing native behaviour:
* - Firefox: in `about:config`, search for `layout.css.grid-template-masonry-value.enabled`
*
* Class `NativeMasonry` will be added to the element if it's under the
* css masonry layout, otherwise it's `CompatMasonry`. `Masonry` is always
* added.
*
* **Children Changes** As the children changed, reflow will be triggered, * **Children Changes** As the children changed, reflow will be triggered,
* and there is might be a blink (or transition) for user. If it's not your * and there is might be a blink (or transition) for user. If it's not your
* intention, don't remove/add the direct children. Instead wraps them under * intention, don't remove/add the direct children. Instead wraps them under

View file

@ -1,10 +1,10 @@
.StackedPage { .StackedPage {
contain: strict; container: StackedPage / size;
container: StackedPage / inline-size; display: contents;
width: 100vw; max-width: 100vw;
width: 100dvw; max-width: 100dvw;
height: 100vh;
height: 100dvh; contain: layout;
} }
dialog.StackedPage { dialog.StackedPage {

View file

@ -115,46 +115,6 @@
} }
} }
@supports (container-type: inline-size) {
@container StackedPage (inline-size >=960px) {
.Profile {
display: grid;
grid-template-columns: auto 560px;
grid-template-rows: min-content 1fr;
height: 100cqh;
>.topbar {
grid-column: 1 / 3;
grid-row: 1 /2;
.MuiToolbar-root {
padding-right: calc(560px + 24px);
}
}
>.details {
height: 100%;
display: flex;
flex-flow: column nowrap;
>.intro {
flex-grow: 1;
}
}
>.recent-toots {
overflow-y: auto;
margin-top: calc(-1 * var(--scaffold-topbar-height));
z-index: calc(var(--tutu-zidx-nav, 1) + 1);
>.toot-list-toolbar {
top: 0;
}
}
}
}
}
.Profile__page-title { .Profile__page-title {
flex-grow: 1; flex-grow: 1;
white-space: nowrap; white-space: nowrap;

View file

@ -237,7 +237,6 @@ const Profile: Component = () => {
} }
class="Profile" class="Profile"
> >
<div class="details">
<Menu <Menu
id={optMenuId} id={optMenuId}
open={menuOpen()} open={menuOpen()}
@ -425,9 +424,7 @@ const Profile: Component = () => {
aria-label="Display name" aria-label="Display name"
></Body2> ></Body2>
</div> </div>
<span aria-label="Complete username" class="username"> <span aria-label="Complete username" class="username">{fullUsername()}</span>
{fullUsername()}
</span>
</div> </div>
<div role="presentation"> <div role="presentation">
<Switch> <Switch>
@ -496,9 +493,7 @@ const Profile: Component = () => {
</tbody> </tbody>
</table> </table>
</div> </div>
</div>
<div class="recent-toots">
<div class="toot-list-toolbar"> <div class="toot-list-toolbar">
<TootFilterButton <TootFilterButton
options={{ options={{
@ -551,7 +546,6 @@ const Profile: Component = () => {
</IconButton> </IconButton>
</div> </div>
</Show> </Show>
</div>
</Scaffold> </Scaffold>
); );
}; };