alpha
Login
or
Join now
nandi.uk
/
semble
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
This repository has no description
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
Merge branch 'development'
author
Pouria Delfanazari
date
2 months ago
(May 7, 2026, 11:41 AM -0700)
commit
3326c281
3326c281047e0a914466a4aab208914f73850ea9
parent
89c89183
89c891835c64550468345f896830d3ea85a153f2
+13
-15
3 changed files
Expand all
Collapse all
Unified
Split
src
webapp
features
connections
containers
connectionsContainer
ConnectionsContainer.tsx
home
components
recentCollections
Skeleton.RecentCollections.tsx
platforms
bluesky
components
videoEmbed
VideoEmbed.tsx
+10
-12
src/webapp/features/connections/containers/connectionsContainer/ConnectionsContainer.tsx
View file
Reviewed
···
4
4
import useBackwardConnections from '@/features/connections/lib/queries/useBackwardConnections';
5
5
import useAllConnections from '@/features/connections/lib/queries/useAllConnections';
6
6
import InfiniteScroll from '@/components/contentDisplay/infiniteScroll/InfiniteScroll';
7
7
-
import { Box, Grid, Group, Stack } from '@mantine/core';
7
7
+
import { Box, Group, Stack } from '@mantine/core';
8
8
import ConnectionsContainerError from './Error.ConnectionsContainer';
9
9
import ConnectionItem from '@/features/connections/components/connectionItem/ConnectionItem';
10
10
import SembleEmptyTab from '@/features/semble/components/sembleEmptyTab/SembleEmptyTab';
···
156
156
isLoading={isFetchingNextPage}
157
157
loadMore={fetchNextPage}
158
158
>
159
159
-
<Grid gap="xl" mx={'auto'} maw={600} w={'100%'}>
159
159
+
<Stack gap="xl" mx={'auto'} maw={600} w={'100%'}>
160
160
{connections.map((connection, index) => {
161
161
// Determine the actual direction for this specific connection
162
162
// If direction is 'all', check if the source URL matches props.url
···
177
177
containIntrinsicSize: 'auto 200px',
178
178
}}
179
179
>
180
180
-
<Grid.Col span={12}>
181
181
-
<ConnectionItem
182
182
-
connection={connection}
183
183
-
direction={connectionDirection}
184
184
-
onEdit={() => {
185
185
-
handleOpenEditModal(connection.connection, targetUrl);
186
186
-
}}
187
187
-
/>
188
188
-
</Grid.Col>
180
180
+
<ConnectionItem
181
181
+
connection={connection}
182
182
+
direction={connectionDirection}
183
183
+
onEdit={() => {
184
184
+
handleOpenEditModal(connection.connection, targetUrl);
185
185
+
}}
186
186
+
/>
189
187
</Box>
190
188
);
191
189
})}
192
192
-
</Grid>
190
190
+
</Stack>
193
191
</InfiniteScroll>
194
192
)}
195
193
</Stack>
+2
-2
src/webapp/features/home/components/recentCollections/Skeleton.RecentCollections.tsx
View file
Reviewed
···
17
17
</Group>
18
18
19
19
<Group gap="xs">
20
20
-
<Skeleton w={56} h={30} radius={'xl'} />
21
21
-
<Skeleton w={82} h={30} radius={'xl'} />
22
20
<Skeleton w={110} h={30} radius={'xl'} />
21
21
+
<Skeleton w={82} h={30} radius={'xl'} />
22
22
+
<Skeleton w={109} h={30} radius={'xl'} />
23
23
</Group>
24
24
25
25
<SimpleGrid cols={{ base: 1, sm: 2, lg: 4 }} spacing="xs">
+1
-1
src/webapp/features/platforms/bluesky/components/videoEmbed/VideoEmbed.tsx
View file
Reviewed
···
20
20
: 16 / 9;
21
21
22
22
return (
23
23
-
<AspectRatio ratio={ratio} style={{ position: 'relative', zIndex: 1 }}>
23
23
+
<AspectRatio ratio={ratio} style={{ position: 'relative', zIndex: 0 }}>
24
24
<MediaPlayer
25
25
crossOrigin
26
26
playsInline