- Archive dormant apps (daemon, desktop, native, tui) and superseded packages/server into repos/ for reference - Archive 21 dead web components (chat page shell, work-os cluster, strays) into repos/web/; keep reused message-rendering primitives in components/chat - Merge @code/work-os into @code/primitives; work.ts absorbed via ./work subpath and barrel export; update all four importers - Add docs/futures.md tracking audio/video (blocked at Flue + provider), web layout cleanup, and message rendering quality - Repoint dev:zopu script to @code/agents (the live Flue server) - Note repos/ reference-code convention in AGENTS.md
47 lines
1.2 KiB
TypeScript
47 lines
1.2 KiB
TypeScript
import { cn } from "heroui-native";
|
|
import { type PropsWithChildren } from "react";
|
|
import { ScrollView, View, type ScrollViewProps, type ViewProps } from "react-native";
|
|
import Animated, { type AnimatedProps } from "react-native-reanimated";
|
|
import { useSafeAreaInsets } from "react-native-safe-area-context";
|
|
|
|
const AnimatedView = Animated.createAnimatedComponent(View);
|
|
|
|
type Props = AnimatedProps<ViewProps> & {
|
|
className?: string;
|
|
isScrollable?: boolean;
|
|
scrollViewProps?: Omit<ScrollViewProps, "contentContainerStyle">;
|
|
};
|
|
|
|
export function Container({
|
|
children,
|
|
className,
|
|
isScrollable = true,
|
|
scrollViewProps,
|
|
...props
|
|
}: PropsWithChildren<Props>) {
|
|
const insets = useSafeAreaInsets();
|
|
|
|
return (
|
|
<AnimatedView
|
|
className={cn("flex-1 bg-background", className)}
|
|
style={{
|
|
paddingBottom: insets.bottom,
|
|
}}
|
|
{...props}
|
|
>
|
|
{isScrollable ? (
|
|
<ScrollView
|
|
contentContainerStyle={{ flexGrow: 1 }}
|
|
keyboardShouldPersistTaps="handled"
|
|
contentInsetAdjustmentBehavior="automatic"
|
|
{...scrollViewProps}
|
|
>
|
|
{children}
|
|
</ScrollView>
|
|
) : (
|
|
<View className="flex-1">{children}</View>
|
|
)}
|
|
</AnimatedView>
|
|
);
|
|
}
|