Compare commits

..

No commits in common. "3dc2196f1a841421ad274309bcbe05bc12f2b9cf" and "591a930bb677c7d60d23d9b66ba5250012715b9b" have entirely different histories.

6 changed files with 13 additions and 15 deletions

View file

@ -1,7 +1,7 @@
{ {
"$schema": "https://json.schemastore.org/package", "$schema": "https://json.schemastore.org/package",
"name": "tutu", "name": "tutu",
"version": "1.0.7", "version": "1.0.6",
"description": "", "description": "",
"private": true, "private": true,
"type": "module", "type": "module",

View file

@ -60,13 +60,5 @@
top: unset; top: unset;
transform: translateX(-50%); transform: translateX(-50%);
bottom: 0; bottom: 0;
@media (max-width: 560px) {
& {
transform: none;
height: unset;
}
}
} }
} }

View file

@ -1,14 +1,19 @@
import { import {
children, children,
createEffect, createEffect,
createRenderEffect,
createSignal, createSignal,
onCleanup, onCleanup,
onMount,
startTransition,
useTransition, useTransition,
type ChildrenReturn,
type ParentComponent, type ParentComponent,
type ResolvedChildren, type ResolvedChildren,
} from "solid-js"; } from "solid-js";
import styles from "./BottomSheet.module.css"; import styles from "./BottomSheet.module.css";
import { useHeroSignal } from "../platform/anim"; import { useHeroSignal } from "../platform/anim";
import { makeEventListener } from "@solid-primitives/event-listener";
export type BottomSheetProps = { export type BottomSheetProps = {
open?: boolean; open?: boolean;

View file

@ -172,7 +172,6 @@ const TimelinePanel: Component<{
client={props.client} client={props.client}
expanded={item.id === expandedThreadId() ? 1 : 0} expanded={item.id === expandedThreadId() ? 1 : 0}
onExpandChange={(x) => { onExpandChange={(x) => {
setTyping(false)
if (item.id !== expandedThreadId()) { if (item.id !== expandedThreadId()) {
setExpandedThreadId((x) => (x ? undefined : item.id)); setExpandedThreadId((x) => (x ? undefined : item.id));
} else if (x === 2) { } else if (x === 2) {
@ -424,6 +423,11 @@ const Home: ParentComponent = (props) => {
</Toolbar> </Toolbar>
</AppBar> </AppBar>
} }
fab={
<Fab color="secondary">
<CreateTootIcon />
</Fab>
}
> >
<TimeSourceProvider value={now}> <TimeSourceProvider value={now}>
<Show when={!!client()}> <Show when={!!client()}>

View file

@ -109,10 +109,8 @@ const MediaAttachmentGrid: Component<{
src={item.url || undefined} src={item.url || undefined}
style={style()} style={style()}
onLoadedMetadata={[setLoaded, true]} onLoadedMetadata={[setLoaded, true]}
autoplay={false} autoplay={true}
controls controls
playsinline /* or safari on iOS will play in full-screen */
loop
/> />
); );

View file

@ -183,8 +183,7 @@ function randomChoose<T extends any[]>(
rn: number, rn: number,
K: T, K: T,
): T extends Array<infer E> ? E : never { ): T extends Array<infer E> ? E : never {
const idx = Math.floor(rn * K.length); const idx = Math.round(rn * K.length);
console.log(idx, K.length);
return K[idx]; return K[idx];
} }