mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-11-13 08:38:43 +03:00
Merge pull request #4926 from urbit/james/permalink-spacing
permalinks: final spacing pass for elements + placeholders
This commit is contained in:
commit
f0a43b0032
@ -1,3 +1,5 @@
|
||||
/* eslint-disable no-case-declarations */
|
||||
/* eslint-disable @typescript-eslint/no-non-null-asserted-optional-chain */
|
||||
import { Anchor, Box, Col, Icon, Row, Text } from '@tlon/indigo-react';
|
||||
import { Association, GraphConfig, GraphNode, Group, Post, ReferenceContent, TextContent, UrlContent } from '@urbit/api';
|
||||
import bigInt from 'big-integer';
|
||||
@ -33,7 +35,7 @@ function TranscludedLinkNode(props: {
|
||||
>
|
||||
<Text gray>This link has been deleted.</Text>
|
||||
</Box>
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
switch (idx.length) {
|
||||
@ -49,6 +51,7 @@ function TranscludedLinkNode(props: {
|
||||
<Author
|
||||
pt='12px'
|
||||
pl='12px'
|
||||
mt='6px'
|
||||
size={24}
|
||||
sigilPadding='6'
|
||||
showImage
|
||||
@ -110,7 +113,7 @@ function TranscludedComment(props: {
|
||||
>
|
||||
<Text gray>This comment has been deleted.</Text>
|
||||
</Box>
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
const group = useGroupForAssoc(assoc)!;
|
||||
@ -121,6 +124,7 @@ function TranscludedComment(props: {
|
||||
<Author
|
||||
pt='12px'
|
||||
pl='12px'
|
||||
mt='6px'
|
||||
size={24}
|
||||
sigilPadding='6'
|
||||
showImage
|
||||
@ -150,7 +154,6 @@ function TranscludedPublishNode(props: {
|
||||
const group = useGroupForAssoc(assoc)!;
|
||||
|
||||
if (typeof node?.post === 'string') {
|
||||
console.log(node)
|
||||
return (
|
||||
<Box
|
||||
mx="12px"
|
||||
@ -171,10 +174,11 @@ function TranscludedPublishNode(props: {
|
||||
?.get(bigInt.one)
|
||||
?.children?.peekLargest()?.[1]!;
|
||||
return (
|
||||
<Col color="black" gapY={2}>
|
||||
<Col color="black">
|
||||
<Author
|
||||
pl='12px'
|
||||
pt='12px'
|
||||
mt='6px'
|
||||
size={24}
|
||||
sigilPadding='6'
|
||||
showImage
|
||||
@ -227,7 +231,7 @@ export function TranscludedPost(props: {
|
||||
>
|
||||
<Text gray>This post has been deleted.</Text>
|
||||
</Box>
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
return (
|
||||
@ -235,6 +239,7 @@ export function TranscludedPost(props: {
|
||||
<Author
|
||||
pt='12px'
|
||||
pl='12px'
|
||||
mt='6px'
|
||||
size={24}
|
||||
sigilPadding='6'
|
||||
showImage
|
||||
@ -272,8 +277,8 @@ export function TranscludedNode(props: {
|
||||
const group = useGroupForAssoc(assoc)!;
|
||||
|
||||
if (
|
||||
typeof node?.post === "string" &&
|
||||
(assoc.metadata.config as GraphConfig).graph === "chat"
|
||||
typeof node?.post === 'string' &&
|
||||
(assoc.metadata.config as GraphConfig).graph === 'chat'
|
||||
) {
|
||||
return (
|
||||
<Box
|
||||
|
@ -1,18 +1,18 @@
|
||||
import { BaseAnchor, Box, Center, Col, Icon, Row, Text } from "@tlon/indigo-react";
|
||||
import { BaseAnchor, Box, Center, Col, Icon, Row, Text } from '@tlon/indigo-react';
|
||||
import { Association, GraphNode, resourceFromPath, GraphConfig } from '@urbit/api';
|
||||
import React, { useCallback, useEffect, useState } from "react";
|
||||
import React, { useCallback, useEffect, useState } from 'react';
|
||||
import _ from 'lodash';
|
||||
import { useHistory, useLocation } from 'react-router-dom';
|
||||
import GlobalApi from '~/logic/api/global';
|
||||
import {
|
||||
getPermalinkForGraph, GraphPermalink as IGraphPermalink, parsePermalink
|
||||
} from '~/logic/lib/permalinks';
|
||||
import { getModuleIcon, GraphModule } from "~/logic/lib/util";
|
||||
import { useVirtualResizeProp } from "~/logic/lib/virtualContext";
|
||||
import useGraphState from "~/logic/state/graph";
|
||||
import useMetadataState from "~/logic/state/metadata";
|
||||
import { GroupLink } from "~/views/components/GroupLink";
|
||||
import { TranscludedNode } from "./TranscludedNode";
|
||||
import { getModuleIcon, GraphModule } from '~/logic/lib/util';
|
||||
import { useVirtualResizeProp } from '~/logic/lib/virtualContext';
|
||||
import useGraphState from '~/logic/state/graph';
|
||||
import useMetadataState from '~/logic/state/metadata';
|
||||
import { GroupLink } from '~/views/components/GroupLink';
|
||||
import { TranscludedNode } from './TranscludedNode';
|
||||
|
||||
function Placeholder(type) {
|
||||
const lines = (type) => {
|
||||
@ -24,10 +24,10 @@ function Placeholder(type) {
|
||||
default:
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
};
|
||||
return (
|
||||
<>
|
||||
<Row mt='12px' ml='12px' mb='6px' height="4">
|
||||
<Box p='12px 12px 6px'>
|
||||
<Row mb='6px' height="4">
|
||||
<Box
|
||||
backgroundColor="washedGray"
|
||||
size="4"
|
||||
@ -41,8 +41,8 @@ function Placeholder(type) {
|
||||
borderRadius="2"
|
||||
/>
|
||||
</Row>
|
||||
{_.times(lines(type), () => (
|
||||
<Row margin="6px" ml='44px' mr='12px' height="4">
|
||||
{_.times(lines(type), i => (
|
||||
<Row margin="6px" ml='32px' height="4">
|
||||
<Box
|
||||
backgroundColor="washedGray"
|
||||
height="4"
|
||||
@ -51,7 +51,7 @@ function Placeholder(type) {
|
||||
/>
|
||||
</Row>
|
||||
))}
|
||||
</>
|
||||
</Box>
|
||||
);
|
||||
}
|
||||
|
||||
@ -78,7 +78,7 @@ function GraphPermalink(
|
||||
full?: boolean;
|
||||
}
|
||||
) {
|
||||
const { full = false, showOurContact, pending, link, graph, group, index, api, transcluded } = props;
|
||||
const { full = false, showOurContact, pending, graph, group, index, api, transcluded } = props;
|
||||
const history = useHistory();
|
||||
const location = useLocation();
|
||||
const { ship, name } = resourceFromPath(graph);
|
||||
@ -145,8 +145,8 @@ function GraphPermalink(
|
||||
<Col
|
||||
width="100%"
|
||||
bg="white"
|
||||
maxWidth={full ? null : "500px"}
|
||||
border={full ? null : "1"}
|
||||
maxWidth={full ? null : '500px'}
|
||||
border={full ? null : '1'}
|
||||
borderColor="lightGray"
|
||||
borderRadius={2}
|
||||
cursor="pointer"
|
||||
@ -154,7 +154,7 @@ function GraphPermalink(
|
||||
navigate(e);
|
||||
}}
|
||||
>
|
||||
{loading && association && Placeholder((association.metadata.config as GraphConfig).graph)}
|
||||
{loading && association && !errored && Placeholder((association.metadata.config as GraphConfig).graph)}
|
||||
{showTransclusion && index && !loading && (
|
||||
<TranscludedNode
|
||||
api={api}
|
||||
@ -182,7 +182,7 @@ function GraphPermalink(
|
||||
permalink={permalink}
|
||||
/>
|
||||
)}
|
||||
{isInSameResource && transcluded !== 2 && <Row height='2' />}
|
||||
{isInSameResource && transcluded !== 2 && !loading && <Row height='2' />}
|
||||
{!association && !loading && (
|
||||
<PermalinkDetails
|
||||
icon="Groups"
|
||||
@ -203,7 +203,7 @@ function PermalinkDetails(props: {
|
||||
showDetails?: boolean;
|
||||
known?: boolean;
|
||||
}) {
|
||||
const { title, icon, permalink, known, showTransclusion } = props;
|
||||
const { title, icon, known, showTransclusion } = props;
|
||||
const rowTransclusionStyle = showTransclusion
|
||||
? { p: '12px 12px 11px 11px' }
|
||||
: { p: '12px' };
|
||||
|
Loading…
Reference in New Issue
Block a user