Compare commits
26 Commits
feature/pa
...
fix/increm
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
09f58f18ae | ||
|
|
0a44b5b5d1 | ||
|
|
cc83924c27 | ||
|
|
e3e964f72a | ||
|
|
0def1d30a6 | ||
|
|
bdb2c0cf8f | ||
|
|
3e8dbc9793 | ||
|
|
d735cd3833 | ||
|
|
eddf228283 | ||
|
|
f9d617efdc | ||
|
|
43796021da | ||
|
|
241c21782d | ||
|
|
1a3f5d144c | ||
|
|
66fb68d52e | ||
|
|
aaeb32a576 | ||
|
|
78b5dcceb6 | ||
|
|
ce81c11c29 | ||
|
|
3a98b95e3d | ||
|
|
8bc36655e2 | ||
|
|
b6ab536a60 | ||
|
|
37a3d2b207 | ||
|
|
cd0c5f8a0d | ||
|
|
8dde89fa9a | ||
|
|
ca3d60cfb8 | ||
|
|
1a4d53cfbc | ||
|
|
94e126782b |
@@ -36,13 +36,11 @@ const AccountDialog = ({
|
|||||||
}) => {
|
}) => {
|
||||||
const snap = useSnapshot(state);
|
const snap = useSnapshot(state);
|
||||||
const [showSecret, setShowSecret] = useState(false);
|
const [showSecret, setShowSecret] = useState(false);
|
||||||
const activeAccount = snap.accounts.find(
|
const activeAccount = snap.accounts.find(account => account.address === activeAccountAddress);
|
||||||
(account) => account.address === activeAccountAddress
|
|
||||||
);
|
|
||||||
return (
|
return (
|
||||||
<Dialog
|
<Dialog
|
||||||
open={Boolean(activeAccountAddress)}
|
open={Boolean(activeAccountAddress)}
|
||||||
onOpenChange={(open) => {
|
onOpenChange={open => {
|
||||||
setShowSecret(false);
|
setShowSecret(false);
|
||||||
!open && setActiveAccountAddress(null);
|
!open && setActiveAccountAddress(null);
|
||||||
}}
|
}}
|
||||||
@@ -137,7 +135,7 @@ const AccountDialog = ({
|
|||||||
}}
|
}}
|
||||||
ghost
|
ghost
|
||||||
size="xs"
|
size="xs"
|
||||||
onClick={() => setShowSecret((curr) => !curr)}
|
onClick={() => setShowSecret(curr => !curr)}
|
||||||
>
|
>
|
||||||
{showSecret ? "Hide" : "Show"}
|
{showSecret ? "Hide" : "Show"}
|
||||||
</Button>
|
</Button>
|
||||||
@@ -186,7 +184,7 @@ const AccountDialog = ({
|
|||||||
<Button
|
<Button
|
||||||
size="sm"
|
size="sm"
|
||||||
ghost
|
ghost
|
||||||
css={{ color: "$green11 !important", mt: "$3" }}
|
css={{ color: "$grass11 !important", mt: "$3" }}
|
||||||
>
|
>
|
||||||
<ArrowSquareOut size="15px" />
|
<ArrowSquareOut size="15px" />
|
||||||
</Button>
|
</Button>
|
||||||
@@ -201,15 +199,7 @@ const AccountDialog = ({
|
|||||||
fontFamily: "$monospace",
|
fontFamily: "$monospace",
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
{activeAccount && activeAccount?.hooks?.length > 0
|
{activeAccount && activeAccount.hooks.length}
|
||||||
? activeAccount?.hooks
|
|
||||||
.map((i) => {
|
|
||||||
return `${i?.substring(0, 6)}...${i?.substring(
|
|
||||||
i.length - 4
|
|
||||||
)}`;
|
|
||||||
})
|
|
||||||
.join(", ")
|
|
||||||
: "–"}
|
|
||||||
</Text>
|
</Text>
|
||||||
</Flex>
|
</Flex>
|
||||||
</Flex>
|
</Flex>
|
||||||
@@ -231,15 +221,13 @@ interface AccountProps {
|
|||||||
showHookStats?: boolean;
|
showHookStats?: boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
const Accounts: FC<AccountProps> = (props) => {
|
const Accounts: FC<AccountProps> = props => {
|
||||||
const snap = useSnapshot(state);
|
const snap = useSnapshot(state);
|
||||||
const [activeAccountAddress, setActiveAccountAddress] = useState<
|
const [activeAccountAddress, setActiveAccountAddress] = useState<string | null>(null);
|
||||||
string | null
|
|
||||||
>(null);
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
const fetchAccInfo = async () => {
|
const fetchAccInfo = async () => {
|
||||||
if (snap.clientStatus === "online") {
|
if (snap.clientStatus === "online") {
|
||||||
const requests = snap.accounts.map((acc) =>
|
const requests = snap.accounts.map(acc =>
|
||||||
snap.client?.send({
|
snap.client?.send({
|
||||||
id: acc.address,
|
id: acc.address,
|
||||||
command: "account_info",
|
command: "account_info",
|
||||||
@@ -251,15 +239,13 @@ const Accounts: FC<AccountProps> = (props) => {
|
|||||||
const address = res?.account_data?.Account as string;
|
const address = res?.account_data?.Account as string;
|
||||||
const balance = res?.account_data?.Balance as string;
|
const balance = res?.account_data?.Balance as string;
|
||||||
const sequence = res?.account_data?.Sequence as number;
|
const sequence = res?.account_data?.Sequence as number;
|
||||||
const accountToUpdate = state.accounts.find(
|
const accountToUpdate = state.accounts.find(acc => acc.address === address);
|
||||||
(acc) => acc.address === address
|
|
||||||
);
|
|
||||||
if (accountToUpdate) {
|
if (accountToUpdate) {
|
||||||
accountToUpdate.xrp = balance;
|
accountToUpdate.xrp = balance;
|
||||||
accountToUpdate.sequence = sequence;
|
accountToUpdate.sequence = sequence;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
const objectRequests = snap.accounts.map((acc) => {
|
const objectRequests = snap.accounts.map(acc => {
|
||||||
return snap.client?.send({
|
return snap.client?.send({
|
||||||
id: `${acc.address}-hooks`,
|
id: `${acc.address}-hooks`,
|
||||||
command: "account_objects",
|
command: "account_objects",
|
||||||
@@ -269,9 +255,7 @@ const Accounts: FC<AccountProps> = (props) => {
|
|||||||
const objectResponses = await Promise.all(objectRequests);
|
const objectResponses = await Promise.all(objectRequests);
|
||||||
objectResponses.forEach((res: any) => {
|
objectResponses.forEach((res: any) => {
|
||||||
const address = res?.account as string;
|
const address = res?.account as string;
|
||||||
const accountToUpdate = state.accounts.find(
|
const accountToUpdate = state.accounts.find(acc => acc.address === address);
|
||||||
(acc) => acc.address === address
|
|
||||||
);
|
|
||||||
if (accountToUpdate) {
|
if (accountToUpdate) {
|
||||||
accountToUpdate.hooks = res.account_objects
|
accountToUpdate.hooks = res.account_objects
|
||||||
.filter((ac: any) => ac?.LedgerEntryType === "Hook")
|
.filter((ac: any) => ac?.LedgerEntryType === "Hook")
|
||||||
@@ -353,7 +337,7 @@ const Accounts: FC<AccountProps> = (props) => {
|
|||||||
overflowY: "auto",
|
overflowY: "auto",
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
{snap.accounts.map((account) => (
|
{snap.accounts.map(account => (
|
||||||
<Flex
|
<Flex
|
||||||
column
|
column
|
||||||
key={account.address + account.name}
|
key={account.address + account.name}
|
||||||
@@ -380,7 +364,7 @@ const Accounts: FC<AccountProps> = (props) => {
|
|||||||
<Text>{account.name} </Text>
|
<Text>{account.name} </Text>
|
||||||
<Text
|
<Text
|
||||||
css={{
|
css={{
|
||||||
color: "$mauve9",
|
color: "$textMuted",
|
||||||
wordBreak: "break-word",
|
wordBreak: "break-word",
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
@@ -406,11 +390,10 @@ const Accounts: FC<AccountProps> = (props) => {
|
|||||||
isLoading={account.isLoading}
|
isLoading={account.isLoading}
|
||||||
disabled={
|
disabled={
|
||||||
account.isLoading ||
|
account.isLoading ||
|
||||||
!snap.files.filter((file) => file.compiledWatContent)
|
!snap.files.filter(file => file.compiledWatContent).length
|
||||||
.length
|
|
||||||
}
|
}
|
||||||
variant="secondary"
|
variant="secondary"
|
||||||
onClick={(e) => {
|
onClick={e => {
|
||||||
e.stopPropagation();
|
e.stopPropagation();
|
||||||
deployHook(account);
|
deployHook(account);
|
||||||
}}
|
}}
|
||||||
@@ -421,7 +404,7 @@ const Accounts: FC<AccountProps> = (props) => {
|
|||||||
</Flex>
|
</Flex>
|
||||||
{props.showHookStats && (
|
{props.showHookStats && (
|
||||||
<Text muted small css={{ mt: "$2" }}>
|
<Text muted small css={{ mt: "$2" }}>
|
||||||
X hooks installed
|
{account.hooks.length} hook{account.hooks.length === 1 ? "" : "s"} installed
|
||||||
</Text>
|
</Text>
|
||||||
)}
|
)}
|
||||||
</Flex>
|
</Flex>
|
||||||
@@ -453,7 +436,7 @@ const ImportAccountDialog = () => {
|
|||||||
name="secret"
|
name="secret"
|
||||||
type="password"
|
type="password"
|
||||||
value={value}
|
value={value}
|
||||||
onChange={(e) => setValue(e.target.value)}
|
onChange={e => setValue(e.target.value)}
|
||||||
/>
|
/>
|
||||||
</DialogDescription>
|
</DialogDescription>
|
||||||
|
|
||||||
|
|||||||
@@ -66,6 +66,12 @@ export const StyledButton = styled("button", {
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
variant: {
|
variant: {
|
||||||
|
link: {
|
||||||
|
textDecoration: "underline",
|
||||||
|
fontSize: "inherit",
|
||||||
|
color: "$textMuted",
|
||||||
|
textUnderlineOffset: "2px",
|
||||||
|
},
|
||||||
default: {
|
default: {
|
||||||
backgroundColor: "$mauve12",
|
backgroundColor: "$mauve12",
|
||||||
boxShadow: "inset 0 0 0 1px $colors$mauve12",
|
boxShadow: "inset 0 0 0 1px $colors$mauve12",
|
||||||
@@ -81,8 +87,7 @@ export const StyledButton = styled("button", {
|
|||||||
boxShadow: "inset 0 0 0 1px $colors$mauve11",
|
boxShadow: "inset 0 0 0 1px $colors$mauve11",
|
||||||
},
|
},
|
||||||
"&:focus": {
|
"&:focus": {
|
||||||
boxShadow:
|
boxShadow: "inset 0 0 0 1px $colors$mauve12, inset 0 0 0 2px $colors$mauve12",
|
||||||
"inset 0 0 0 1px $colors$mauve12, inset 0 0 0 2px $colors$mauve12",
|
|
||||||
},
|
},
|
||||||
'&[data-radix-popover-trigger][data-state="open"], &[data-radix-dropdown-menu-trigger][data-state="open"]':
|
'&[data-radix-popover-trigger][data-state="open"], &[data-radix-dropdown-menu-trigger][data-state="open"]':
|
||||||
{
|
{
|
||||||
@@ -91,26 +96,26 @@ export const StyledButton = styled("button", {
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
primary: {
|
primary: {
|
||||||
backgroundColor: `$pink9`,
|
backgroundColor: `$accent`,
|
||||||
boxShadow: "inset 0 0 0 1px $colors$pink9",
|
boxShadow: "inset 0 0 0 1px $colors$purple9",
|
||||||
color: "$white",
|
color: "$white",
|
||||||
"@hover": {
|
"@hover": {
|
||||||
"&:hover": {
|
"&:hover": {
|
||||||
backgroundColor: "$pink10",
|
backgroundColor: "$purple10",
|
||||||
boxShadow: "inset 0 0 0 1px $colors$pink11",
|
boxShadow: "inset 0 0 0 1px $colors$purple11",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
"&:active": {
|
"&:active": {
|
||||||
backgroundColor: "$pink8",
|
backgroundColor: "$purple8",
|
||||||
boxShadow: "inset 0 0 0 1px $colors$pink8",
|
boxShadow: "inset 0 0 0 1px $colors$purple8",
|
||||||
},
|
},
|
||||||
"&:focus": {
|
"&:focus": {
|
||||||
boxShadow: "inset 0 0 0 2px $colors$pink12",
|
boxShadow: "inset 0 0 0 2px $colors$purple12",
|
||||||
},
|
},
|
||||||
'&[data-radix-popover-trigger][data-state="open"], &[data-radix-dropdown-menu-trigger][data-state="open"]':
|
'&[data-radix-popover-trigger][data-state="open"], &[data-radix-dropdown-menu-trigger][data-state="open"]':
|
||||||
{
|
{
|
||||||
backgroundColor: "$mauve4",
|
backgroundColor: "$mauve4",
|
||||||
boxShadow: "inset 0 0 0 1px $colors$pink8",
|
boxShadow: "inset 0 0 0 1px $colors$purple8",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
secondary: {
|
secondary: {
|
||||||
@@ -137,7 +142,11 @@ export const StyledButton = styled("button", {
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
muted: {
|
||||||
|
true: {
|
||||||
|
color: "$textMuted",
|
||||||
|
},
|
||||||
|
},
|
||||||
outline: {
|
outline: {
|
||||||
true: {
|
true: {
|
||||||
backgroundColor: "transparent",
|
backgroundColor: "transparent",
|
||||||
@@ -227,21 +236,16 @@ export const StyledButton = styled("button", {
|
|||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
const CustomButton: React.FC<
|
const CustomButton: React.FC<React.ComponentProps<typeof StyledButton> & { as?: string }> =
|
||||||
React.ComponentProps<typeof StyledButton> & { as?: string }
|
React.forwardRef(({ children, as = "button", ...rest }, ref) => (
|
||||||
> = React.forwardRef(({ children, as = "button", ...rest }, ref) => (
|
// @ts-expect-error
|
||||||
// @ts-expect-error
|
<StyledButton {...rest} ref={ref} as={as}>
|
||||||
<StyledButton {...rest} ref={ref} as={as}>
|
<Flex as="span" css={{ gap: "$2", alignItems: "center" }} className="button-content">
|
||||||
<Flex
|
{children}
|
||||||
as="span"
|
</Flex>
|
||||||
css={{ gap: "$2", alignItems: "center" }}
|
{rest.isLoading && <Spinner css={{ position: "absolute" }} />}
|
||||||
className="button-content"
|
</StyledButton>
|
||||||
>
|
));
|
||||||
{children}
|
|
||||||
</Flex>
|
|
||||||
{rest.isLoading && <Spinner css={{ position: "absolute" }} />}
|
|
||||||
</StyledButton>
|
|
||||||
));
|
|
||||||
|
|
||||||
CustomButton.displayName = "CustomButton";
|
CustomButton.displayName = "CustomButton";
|
||||||
|
|
||||||
|
|||||||
@@ -1,10 +1,12 @@
|
|||||||
import React, { useRef } from "react";
|
import React, { useRef, useState } from "react";
|
||||||
import { useSnapshot, ref } from "valtio";
|
import { useSnapshot, ref } from "valtio";
|
||||||
import Editor, { loader } from "@monaco-editor/react";
|
import Editor, { loader } from "@monaco-editor/react";
|
||||||
import type monaco from "monaco-editor";
|
import type monaco from "monaco-editor";
|
||||||
import { useTheme } from "next-themes";
|
import { useTheme } from "next-themes";
|
||||||
import { useRouter } from "next/router";
|
import { useRouter } from "next/router";
|
||||||
import NextLink from "next/link";
|
import NextLink from "next/link";
|
||||||
|
import ReactTimeAgo from "react-time-ago";
|
||||||
|
import filesize from "filesize";
|
||||||
|
|
||||||
import Box from "./Box";
|
import Box from "./Box";
|
||||||
import Container from "./Container";
|
import Container from "./Container";
|
||||||
@@ -13,8 +15,7 @@ import light from "../theme/editor/xcode_default.json";
|
|||||||
import state from "../state";
|
import state from "../state";
|
||||||
|
|
||||||
import EditorNavigation from "./EditorNavigation";
|
import EditorNavigation from "./EditorNavigation";
|
||||||
import Text from "./Text";
|
import { Button, Text, Link, Flex } from ".";
|
||||||
import Link from "./Link";
|
|
||||||
|
|
||||||
loader.config({
|
loader.config({
|
||||||
paths: {
|
paths: {
|
||||||
@@ -22,11 +23,65 @@ loader.config({
|
|||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
|
const FILESIZE_BREAKPOINTS: [number, number] = [2 * 1024, 5 * 1024];
|
||||||
|
|
||||||
const DeployEditor = () => {
|
const DeployEditor = () => {
|
||||||
const editorRef = useRef<monaco.editor.IStandaloneCodeEditor>();
|
const editorRef = useRef<monaco.editor.IStandaloneCodeEditor>();
|
||||||
const snap = useSnapshot(state);
|
const snap = useSnapshot(state);
|
||||||
const router = useRouter();
|
const router = useRouter();
|
||||||
const { theme } = useTheme();
|
const { theme } = useTheme();
|
||||||
|
|
||||||
|
const [showContent, setShowContent] = useState(false);
|
||||||
|
|
||||||
|
const activeFile = snap.files[snap.active];
|
||||||
|
const compiledSize = activeFile?.compiledContent?.byteLength || 0;
|
||||||
|
const color =
|
||||||
|
compiledSize > FILESIZE_BREAKPOINTS[1]
|
||||||
|
? "$error"
|
||||||
|
: compiledSize > FILESIZE_BREAKPOINTS[0]
|
||||||
|
? "$warning"
|
||||||
|
: "$success";
|
||||||
|
|
||||||
|
const CompiledStatView = activeFile && (
|
||||||
|
<Flex
|
||||||
|
column
|
||||||
|
align="center"
|
||||||
|
css={{
|
||||||
|
fontSize: "$sm",
|
||||||
|
fontFamily: "$monospace",
|
||||||
|
textAlign: "center",
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<Flex row align="center">
|
||||||
|
<Text css={{ mr: "$1" }}>Compiled {activeFile.name.split(".")[0] + ".wasm"}</Text>
|
||||||
|
{activeFile?.lastCompiled && <ReactTimeAgo date={activeFile.lastCompiled} locale="en-US" />}
|
||||||
|
{activeFile.compiledContent?.byteLength && (
|
||||||
|
<Text css={{ ml: "$2", color }}>({filesize(activeFile.compiledContent.byteLength)})</Text>
|
||||||
|
)}
|
||||||
|
</Flex>
|
||||||
|
<Button variant="link" onClick={() => setShowContent(true)}>
|
||||||
|
View as WAT-file
|
||||||
|
</Button>
|
||||||
|
</Flex>
|
||||||
|
);
|
||||||
|
const NoContentView = !snap.loading && router.isReady && (
|
||||||
|
<Text
|
||||||
|
css={{
|
||||||
|
mt: "-60px",
|
||||||
|
fontSize: "$sm",
|
||||||
|
fontFamily: "$monospace",
|
||||||
|
maxWidth: "300px",
|
||||||
|
textAlign: "center",
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
{`You haven't compiled any files yet, compile files on `}
|
||||||
|
<NextLink shallow href={`/develop/${router.query.slug}`} passHref>
|
||||||
|
<Link as="a">develop view</Link>
|
||||||
|
</NextLink>
|
||||||
|
</Text>
|
||||||
|
);
|
||||||
|
const isContent =
|
||||||
|
snap.files?.filter(file => file.compiledWatContent).length > 0 && router.isReady;
|
||||||
return (
|
return (
|
||||||
<Box
|
<Box
|
||||||
css={{
|
css={{
|
||||||
@@ -34,65 +89,50 @@ const DeployEditor = () => {
|
|||||||
display: "flex",
|
display: "flex",
|
||||||
position: "relative",
|
position: "relative",
|
||||||
flexDirection: "column",
|
flexDirection: "column",
|
||||||
backgroundColor: "$mauve3",
|
backgroundColor: "$mauve2",
|
||||||
width: "100%",
|
width: "100%",
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<EditorNavigation showWat />
|
<EditorNavigation showWat />
|
||||||
{snap.files?.filter((file) => file.compiledWatContent).length > 0 &&
|
<Container
|
||||||
router.isReady ? (
|
css={{
|
||||||
<Editor
|
display: "flex",
|
||||||
className="hooks-editor"
|
flex: 1,
|
||||||
// keepCurrentModel
|
justifyContent: "center",
|
||||||
defaultLanguage={snap.files?.[snap.active]?.language}
|
alignItems: "center",
|
||||||
language={snap.files?.[snap.active]?.language}
|
}}
|
||||||
path={`file://tmp/c/${snap.files?.[snap.active]?.name}.wat`}
|
>
|
||||||
value={snap.files?.[snap.active]?.compiledWatContent || ""}
|
{!isContent ? (
|
||||||
beforeMount={(monaco) => {
|
NoContentView
|
||||||
if (!state.editorCtx) {
|
) : !showContent ? (
|
||||||
state.editorCtx = ref(monaco.editor);
|
CompiledStatView
|
||||||
// @ts-expect-error
|
) : (
|
||||||
monaco.editor.defineTheme("dark", dark);
|
<Editor
|
||||||
// @ts-expect-error
|
className="hooks-editor"
|
||||||
monaco.editor.defineTheme("light", light);
|
defaultLanguage={snap.files?.[snap.active]?.language}
|
||||||
}
|
language={snap.files?.[snap.active]?.language}
|
||||||
}}
|
path={`file://tmp/c/${snap.files?.[snap.active]?.name}.wat`}
|
||||||
onMount={(editor, monaco) => {
|
value={snap.files?.[snap.active]?.compiledWatContent || ""}
|
||||||
editorRef.current = editor;
|
beforeMount={monaco => {
|
||||||
editor.updateOptions({
|
if (!state.editorCtx) {
|
||||||
glyphMargin: true,
|
state.editorCtx = ref(monaco.editor);
|
||||||
readOnly: true,
|
// @ts-expect-error
|
||||||
});
|
monaco.editor.defineTheme("dark", dark);
|
||||||
}}
|
// @ts-expect-error
|
||||||
theme={theme === "dark" ? "dark" : "light"}
|
monaco.editor.defineTheme("light", light);
|
||||||
/>
|
}
|
||||||
) : (
|
}}
|
||||||
<Container
|
onMount={(editor, monaco) => {
|
||||||
css={{
|
editorRef.current = editor;
|
||||||
display: "flex",
|
editor.updateOptions({
|
||||||
flex: 1,
|
glyphMargin: true,
|
||||||
justifyContent: "center",
|
readOnly: true,
|
||||||
alignItems: "center",
|
});
|
||||||
}}
|
}}
|
||||||
>
|
theme={theme === "dark" ? "dark" : "light"}
|
||||||
{!snap.loading && router.isReady && (
|
/>
|
||||||
<Text
|
)}
|
||||||
css={{
|
</Container>
|
||||||
mt: "-60px",
|
|
||||||
fontSize: "14px",
|
|
||||||
fontFamily: "$monospace",
|
|
||||||
maxWidth: "300px",
|
|
||||||
textAlign: "center",
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
{`You haven't compiled any files yet, compile files on `}
|
|
||||||
<NextLink shallow href={`/develop/${router.query.slug}`} passHref>
|
|
||||||
<Link as="a">develop view</Link>
|
|
||||||
</NextLink>
|
|
||||||
</Text>
|
|
||||||
)}
|
|
||||||
</Container>
|
|
||||||
)}
|
|
||||||
</Box>
|
</Box>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -71,7 +71,7 @@ const itemStyles = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
"&:focus": {
|
"&:focus": {
|
||||||
backgroundColor: "$pink9",
|
backgroundColor: "$purple9",
|
||||||
color: "$white",
|
color: "$white",
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
@@ -85,8 +85,8 @@ const StyledRadioItem = styled(DropdownMenuPrimitive.RadioItem, {
|
|||||||
});
|
});
|
||||||
const StyledTriggerItem = styled(DropdownMenuPrimitive.TriggerItem, {
|
const StyledTriggerItem = styled(DropdownMenuPrimitive.TriggerItem, {
|
||||||
'&[data-state="open"]': {
|
'&[data-state="open"]': {
|
||||||
backgroundColor: "$pink9",
|
backgroundColor: "$purple9",
|
||||||
color: "$pink9",
|
color: "$purple9",
|
||||||
},
|
},
|
||||||
...itemStyles,
|
...itemStyles,
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -26,7 +26,12 @@ import NewWindow from "react-new-window";
|
|||||||
import { signOut, useSession } from "next-auth/react";
|
import { signOut, useSession } from "next-auth/react";
|
||||||
import { useSnapshot } from "valtio";
|
import { useSnapshot } from "valtio";
|
||||||
|
|
||||||
import { createNewFile, syncToGist, updateEditorSettings, downloadAsZip } from "../state/actions";
|
import {
|
||||||
|
createNewFile,
|
||||||
|
syncToGist,
|
||||||
|
updateEditorSettings,
|
||||||
|
downloadAsZip,
|
||||||
|
} from "../state/actions";
|
||||||
import state from "../state";
|
import state from "../state";
|
||||||
import Box from "./Box";
|
import Box from "./Box";
|
||||||
import Button from "./Button";
|
import Button from "./Button";
|
||||||
@@ -57,7 +62,7 @@ import { styled } from "../stitches.config";
|
|||||||
const DEFAULT_EXTENSION = ".c";
|
const DEFAULT_EXTENSION = ".c";
|
||||||
|
|
||||||
const ErrorText = styled(Text, {
|
const ErrorText = styled(Text, {
|
||||||
color: "$red9",
|
color: "$error",
|
||||||
mt: "$1",
|
mt: "$1",
|
||||||
display: "block",
|
display: "block",
|
||||||
});
|
});
|
||||||
@@ -85,9 +90,16 @@ const EditorNavigation = ({ showWat }: { showWat?: boolean }) => {
|
|||||||
|
|
||||||
const validateFilename = useCallback(
|
const validateFilename = useCallback(
|
||||||
(filename: string): { error: string | null } => {
|
(filename: string): { error: string | null } => {
|
||||||
|
// check if filename already exists
|
||||||
if (snap.files.find(file => file.name === filename)) {
|
if (snap.files.find(file => file.name === filename)) {
|
||||||
return { error: "Filename already exists." };
|
return { error: "Filename already exists." };
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// check for illegal characters
|
||||||
|
const ILLEGAL_REGEX = /[/]/gi;
|
||||||
|
if (filename.match(ILLEGAL_REGEX)) {
|
||||||
|
return { error: "Filename contains illegal characters" };
|
||||||
|
}
|
||||||
// More checks in future
|
// More checks in future
|
||||||
return { error: null };
|
return { error: null };
|
||||||
},
|
},
|
||||||
@@ -95,7 +107,9 @@ const EditorNavigation = ({ showWat }: { showWat?: boolean }) => {
|
|||||||
);
|
);
|
||||||
const handleConfirm = useCallback(() => {
|
const handleConfirm = useCallback(() => {
|
||||||
// add default extension in case omitted
|
// add default extension in case omitted
|
||||||
let _filename = filename.includes(".") ? filename : filename + DEFAULT_EXTENSION;
|
let _filename = filename.includes(".")
|
||||||
|
? filename
|
||||||
|
: filename + DEFAULT_EXTENSION;
|
||||||
const chk = validateFilename(_filename);
|
const chk = validateFilename(_filename);
|
||||||
if (chk.error) {
|
if (chk.error) {
|
||||||
setNewfileError(`Error: ${chk.error}`);
|
setNewfileError(`Error: ${chk.error}`);
|
||||||
@@ -139,7 +153,9 @@ const EditorNavigation = ({ showWat }: { showWat?: boolean }) => {
|
|||||||
return (
|
return (
|
||||||
<Button
|
<Button
|
||||||
size="sm"
|
size="sm"
|
||||||
outline={showWat ? snap.activeWat !== index : snap.active !== index}
|
outline={
|
||||||
|
showWat ? snap.activeWat !== index : snap.active !== index
|
||||||
|
}
|
||||||
onClick={() => (state.active = index)}
|
onClick={() => (state.active = index)}
|
||||||
key={file.name + index}
|
key={file.name + index}
|
||||||
css={{
|
css={{
|
||||||
@@ -174,7 +190,8 @@ const EditorNavigation = ({ showWat }: { showWat?: boolean }) => {
|
|||||||
// If deleted file is behind active tab
|
// If deleted file is behind active tab
|
||||||
// we keep the current state otherwise
|
// we keep the current state otherwise
|
||||||
// select previous file on the list
|
// select previous file on the list
|
||||||
state.active = index > snap.active ? snap.active : snap.active - 1;
|
state.active =
|
||||||
|
index > snap.active ? snap.active : snap.active - 1;
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<X size="9px" weight="bold" />
|
<X size="9px" weight="bold" />
|
||||||
@@ -184,10 +201,18 @@ const EditorNavigation = ({ showWat }: { showWat?: boolean }) => {
|
|||||||
);
|
);
|
||||||
})}
|
})}
|
||||||
{!showWat && (
|
{!showWat && (
|
||||||
<Dialog open={isNewfileDialogOpen} onOpenChange={setIsNewfileDialogOpen}>
|
<Dialog
|
||||||
|
open={isNewfileDialogOpen}
|
||||||
|
onOpenChange={setIsNewfileDialogOpen}
|
||||||
|
>
|
||||||
<DialogTrigger asChild>
|
<DialogTrigger asChild>
|
||||||
<Button ghost size="sm" css={{ alignItems: "center", px: "$2", mr: "$3" }}>
|
<Button
|
||||||
<Plus size="16px" /> {snap.files.length === 0 && "Add new file"}
|
ghost
|
||||||
|
size="sm"
|
||||||
|
css={{ alignItems: "center", px: "$2", mr: "$3" }}
|
||||||
|
>
|
||||||
|
<Plus size="16px" />{" "}
|
||||||
|
{snap.files.length === 0 && "Add new file"}
|
||||||
</Button>
|
</Button>
|
||||||
</DialogTrigger>
|
</DialogTrigger>
|
||||||
<DialogContent>
|
<DialogContent>
|
||||||
@@ -196,8 +221,8 @@ const EditorNavigation = ({ showWat }: { showWat?: boolean }) => {
|
|||||||
<label>Filename</label>
|
<label>Filename</label>
|
||||||
<Input
|
<Input
|
||||||
value={filename}
|
value={filename}
|
||||||
onChange={e => setFilename(e.target.value)}
|
onChange={(e) => setFilename(e.target.value)}
|
||||||
onKeyPress={e => {
|
onKeyPress={(e) => {
|
||||||
if (e.key === "Enter") {
|
if (e.key === "Enter") {
|
||||||
handleConfirm();
|
handleConfirm();
|
||||||
}
|
}
|
||||||
@@ -216,10 +241,7 @@ const EditorNavigation = ({ showWat }: { showWat?: boolean }) => {
|
|||||||
<DialogClose asChild>
|
<DialogClose asChild>
|
||||||
<Button outline>Cancel</Button>
|
<Button outline>Cancel</Button>
|
||||||
</DialogClose>
|
</DialogClose>
|
||||||
<Button
|
<Button variant="primary" onClick={handleConfirm}>
|
||||||
variant="primary"
|
|
||||||
onClick={handleConfirm}
|
|
||||||
>
|
|
||||||
Create file
|
Create file
|
||||||
</Button>
|
</Button>
|
||||||
</Flex>
|
</Flex>
|
||||||
@@ -237,11 +259,13 @@ const EditorNavigation = ({ showWat }: { showWat?: boolean }) => {
|
|||||||
<Flex
|
<Flex
|
||||||
css={{
|
css={{
|
||||||
py: "$3",
|
py: "$3",
|
||||||
backgroundColor: "$mauve3",
|
backgroundColor: "$mauve2",
|
||||||
zIndex: 1,
|
zIndex: 1,
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<Container css={{ width: "unset", display: "flex", alignItems: "center" }}>
|
<Container
|
||||||
|
css={{ width: "unset", display: "flex", alignItems: "center" }}
|
||||||
|
>
|
||||||
{status === "authenticated" ? (
|
{status === "authenticated" ? (
|
||||||
<DropdownMenu>
|
<DropdownMenu>
|
||||||
<DropdownMenuTrigger asChild>
|
<DropdownMenuTrigger asChild>
|
||||||
@@ -274,10 +298,15 @@ const EditorNavigation = ({ showWat }: { showWat?: boolean }) => {
|
|||||||
</DropdownMenuTrigger>
|
</DropdownMenuTrigger>
|
||||||
<DropdownMenuContent>
|
<DropdownMenuContent>
|
||||||
<DropdownMenuItem disabled onClick={() => signOut()}>
|
<DropdownMenuItem disabled onClick={() => signOut()}>
|
||||||
<User size="16px" /> {session?.user?.username} ({session?.user.name})
|
<User size="16px" /> {session?.user?.username} (
|
||||||
|
{session?.user.name})
|
||||||
</DropdownMenuItem>
|
</DropdownMenuItem>
|
||||||
<DropdownMenuItem
|
<DropdownMenuItem
|
||||||
onClick={() => window.open(`http://gist.github.com/${session?.user.username}`)}
|
onClick={() =>
|
||||||
|
window.open(
|
||||||
|
`http://gist.github.com/${session?.user.username}`
|
||||||
|
)
|
||||||
|
}
|
||||||
>
|
>
|
||||||
<ArrowSquareOut size="16px" />
|
<ArrowSquareOut size="16px" />
|
||||||
Go to your Gist
|
Go to your Gist
|
||||||
@@ -291,7 +320,12 @@ const EditorNavigation = ({ showWat }: { showWat?: boolean }) => {
|
|||||||
</DropdownMenuContent>
|
</DropdownMenuContent>
|
||||||
</DropdownMenu>
|
</DropdownMenu>
|
||||||
) : (
|
) : (
|
||||||
<Button outline size="sm" css={{ mr: "$3" }} onClick={() => setPopUp(true)}>
|
<Button
|
||||||
|
outline
|
||||||
|
size="sm"
|
||||||
|
css={{ mr: "$3" }}
|
||||||
|
onClick={() => setPopUp(true)}
|
||||||
|
>
|
||||||
<GithubLogo size="16px" /> Login
|
<GithubLogo size="16px" /> Login
|
||||||
</Button>
|
</Button>
|
||||||
)}
|
)}
|
||||||
@@ -330,7 +364,13 @@ const EditorNavigation = ({ showWat }: { showWat?: boolean }) => {
|
|||||||
},
|
},
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<Button isLoading={snap.zipLoading} onClick={downloadAsZip} outline size="sm" css={{ alignItems: "center" }}>
|
<Button
|
||||||
|
isLoading={snap.zipLoading}
|
||||||
|
onClick={downloadAsZip}
|
||||||
|
outline
|
||||||
|
size="sm"
|
||||||
|
css={{ alignItems: "center" }}
|
||||||
|
>
|
||||||
<DownloadSimple size="16px" />
|
<DownloadSimple size="16px" />
|
||||||
</Button>
|
</Button>
|
||||||
<Button
|
<Button
|
||||||
@@ -338,7 +378,9 @@ const EditorNavigation = ({ showWat }: { showWat?: boolean }) => {
|
|||||||
size="sm"
|
size="sm"
|
||||||
css={{ alignItems: "center" }}
|
css={{ alignItems: "center" }}
|
||||||
onClick={() => {
|
onClick={() => {
|
||||||
navigator.clipboard.writeText(`${window.location.origin}/develop/${snap.gistId}`);
|
navigator.clipboard.writeText(
|
||||||
|
`${window.location.origin}/develop/${snap.gistId}`
|
||||||
|
);
|
||||||
toast.success("Copied share link to clipboard!");
|
toast.success("Copied share link to clipboard!");
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
@@ -368,7 +410,10 @@ const EditorNavigation = ({ showWat }: { showWat?: boolean }) => {
|
|||||||
</Button>
|
</Button>
|
||||||
</DropdownMenuTrigger>
|
</DropdownMenuTrigger>
|
||||||
<DropdownMenuContent>
|
<DropdownMenuContent>
|
||||||
<DropdownMenuItem disabled={snap.zipLoading} onClick={downloadAsZip}>
|
<DropdownMenuItem
|
||||||
|
disabled={snap.zipLoading}
|
||||||
|
onClick={downloadAsZip}
|
||||||
|
>
|
||||||
<DownloadSimple size="16px" /> Download as ZIP
|
<DownloadSimple size="16px" /> Download as ZIP
|
||||||
</DropdownMenuItem>
|
</DropdownMenuItem>
|
||||||
<DropdownMenuItem
|
<DropdownMenuItem
|
||||||
@@ -383,7 +428,9 @@ const EditorNavigation = ({ showWat }: { showWat?: boolean }) => {
|
|||||||
Copy share link to clipboard
|
Copy share link to clipboard
|
||||||
</DropdownMenuItem>
|
</DropdownMenuItem>
|
||||||
<DropdownMenuItem
|
<DropdownMenuItem
|
||||||
disabled={session?.user.username !== snap.gistOwner || !snap.gistId}
|
disabled={
|
||||||
|
session?.user.username !== snap.gistOwner || !snap.gistId
|
||||||
|
}
|
||||||
onClick={() => {
|
onClick={() => {
|
||||||
syncToGist(session);
|
syncToGist(session);
|
||||||
}}
|
}}
|
||||||
@@ -409,15 +456,21 @@ const EditorNavigation = ({ showWat }: { showWat?: boolean }) => {
|
|||||||
</DropdownMenu>
|
</DropdownMenu>
|
||||||
</Stack>
|
</Stack>
|
||||||
|
|
||||||
{popup && !session ? <NewWindow center="parent" url="/sign-in" /> : null}
|
{popup && !session ? (
|
||||||
|
<NewWindow center="parent" url="/sign-in" />
|
||||||
|
) : null}
|
||||||
</Container>
|
</Container>
|
||||||
</Flex>
|
</Flex>
|
||||||
<AlertDialog open={createNewAlertOpen} onOpenChange={value => setCreateNewAlertOpen(value)}>
|
<AlertDialog
|
||||||
|
open={createNewAlertOpen}
|
||||||
|
onOpenChange={(value) => setCreateNewAlertOpen(value)}
|
||||||
|
>
|
||||||
<AlertDialogContent>
|
<AlertDialogContent>
|
||||||
<AlertDialogTitle>Are you sure?</AlertDialogTitle>
|
<AlertDialogTitle>Are you sure?</AlertDialogTitle>
|
||||||
<AlertDialogDescription>
|
<AlertDialogDescription>
|
||||||
This action will create new <strong>public</strong> Github Gist from your current saved
|
This action will create new <strong>public</strong> Github Gist from
|
||||||
files. You can delete gist anytime from your GitHub Gists page.
|
your current saved files. You can delete gist anytime from your
|
||||||
|
GitHub Gists page.
|
||||||
</AlertDialogDescription>
|
</AlertDialogDescription>
|
||||||
<Flex css={{ justifyContent: "flex-end", gap: "$3" }}>
|
<Flex css={{ justifyContent: "flex-end", gap: "$3" }}>
|
||||||
<AlertDialogCancel asChild>
|
<AlertDialogCancel asChild>
|
||||||
@@ -451,8 +504,8 @@ const EditorNavigation = ({ showWat }: { showWat?: boolean }) => {
|
|||||||
type="number"
|
type="number"
|
||||||
min="1"
|
min="1"
|
||||||
value={editorSettings.tabSize}
|
value={editorSettings.tabSize}
|
||||||
onChange={e =>
|
onChange={(e) =>
|
||||||
setEditorSettings(curr => ({
|
setEditorSettings((curr) => ({
|
||||||
...curr,
|
...curr,
|
||||||
tabSize: Number(e.target.value),
|
tabSize: Number(e.target.value),
|
||||||
}))
|
}))
|
||||||
@@ -462,12 +515,18 @@ const EditorNavigation = ({ showWat }: { showWat?: boolean }) => {
|
|||||||
|
|
||||||
<Flex css={{ marginTop: 25, justifyContent: "flex-end", gap: "$3" }}>
|
<Flex css={{ marginTop: 25, justifyContent: "flex-end", gap: "$3" }}>
|
||||||
<DialogClose asChild>
|
<DialogClose asChild>
|
||||||
<Button outline onClick={() => updateEditorSettings(editorSettings)}>
|
<Button
|
||||||
|
outline
|
||||||
|
onClick={() => updateEditorSettings(editorSettings)}
|
||||||
|
>
|
||||||
Cancel
|
Cancel
|
||||||
</Button>
|
</Button>
|
||||||
</DialogClose>
|
</DialogClose>
|
||||||
<DialogClose asChild>
|
<DialogClose asChild>
|
||||||
<Button variant="primary" onClick={() => updateEditorSettings(editorSettings)}>
|
<Button
|
||||||
|
variant="primary"
|
||||||
|
onClick={() => updateEditorSettings(editorSettings)}
|
||||||
|
>
|
||||||
Save changes
|
Save changes
|
||||||
</Button>
|
</Button>
|
||||||
</DialogClose>
|
</DialogClose>
|
||||||
|
|||||||
@@ -16,9 +16,37 @@ const Flex = styled(Box, {
|
|||||||
},
|
},
|
||||||
fluid: {
|
fluid: {
|
||||||
true: {
|
true: {
|
||||||
width: '100%'
|
width: "100%",
|
||||||
}
|
},
|
||||||
}
|
},
|
||||||
|
align: {
|
||||||
|
start: {
|
||||||
|
alignItems: "start",
|
||||||
|
},
|
||||||
|
center: {
|
||||||
|
alignItems: "center",
|
||||||
|
},
|
||||||
|
end: {
|
||||||
|
alignItems: "end",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
justify: {
|
||||||
|
start: {
|
||||||
|
justifyContent: "start",
|
||||||
|
},
|
||||||
|
center: {
|
||||||
|
justifyContent: "center",
|
||||||
|
},
|
||||||
|
end: {
|
||||||
|
justifyContent: "end",
|
||||||
|
},
|
||||||
|
"space-between": {
|
||||||
|
justifyContent: "space-between",
|
||||||
|
},
|
||||||
|
"space-around": {
|
||||||
|
justifyContent: "space-around",
|
||||||
|
},
|
||||||
|
},
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
@@ -29,7 +29,7 @@ loader.config({
|
|||||||
|
|
||||||
const validateWritability = (editor: monaco.editor.IStandaloneCodeEditor) => {
|
const validateWritability = (editor: monaco.editor.IStandaloneCodeEditor) => {
|
||||||
const currPath = editor.getModel()?.uri.path;
|
const currPath = editor.getModel()?.uri.path;
|
||||||
if (apiHeaderFiles.find(h => currPath?.endsWith(h))) {
|
if (apiHeaderFiles.find((h) => currPath?.endsWith(h))) {
|
||||||
editor.updateOptions({ readOnly: true });
|
editor.updateOptions({ readOnly: true });
|
||||||
} else {
|
} else {
|
||||||
editor.updateOptions({ readOnly: false });
|
editor.updateOptions({ readOnly: false });
|
||||||
@@ -60,7 +60,7 @@ const HooksEditor = () => {
|
|||||||
display: "flex",
|
display: "flex",
|
||||||
position: "relative",
|
position: "relative",
|
||||||
flexDirection: "column",
|
flexDirection: "column",
|
||||||
backgroundColor: "$mauve3",
|
backgroundColor: "$mauve2",
|
||||||
width: "100%",
|
width: "100%",
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
@@ -73,9 +73,9 @@ const HooksEditor = () => {
|
|||||||
language={snap.files?.[snap.active]?.language}
|
language={snap.files?.[snap.active]?.language}
|
||||||
path={`file:///work/c/${snap.files?.[snap.active]?.name}`}
|
path={`file:///work/c/${snap.files?.[snap.active]?.name}`}
|
||||||
defaultValue={snap.files?.[snap.active]?.content}
|
defaultValue={snap.files?.[snap.active]?.content}
|
||||||
beforeMount={monaco => {
|
beforeMount={(monaco) => {
|
||||||
if (!snap.editorCtx) {
|
if (!snap.editorCtx) {
|
||||||
snap.files.forEach(file =>
|
snap.files.forEach((file) =>
|
||||||
monaco.editor.createModel(
|
monaco.editor.createModel(
|
||||||
file.content,
|
file.content,
|
||||||
file.language,
|
file.language,
|
||||||
@@ -100,7 +100,7 @@ const HooksEditor = () => {
|
|||||||
// listen when the web socket is opened
|
// listen when the web socket is opened
|
||||||
listen({
|
listen({
|
||||||
webSocket: webSocket as WebSocket,
|
webSocket: webSocket as WebSocket,
|
||||||
onConnection: connection => {
|
onConnection: (connection) => {
|
||||||
// create and start the language client
|
// create and start the language client
|
||||||
const languageClient = createLanguageClient(connection);
|
const languageClient = createLanguageClient(connection);
|
||||||
const disposable = languageClient.start();
|
const disposable = languageClient.start();
|
||||||
@@ -139,10 +139,13 @@ const HooksEditor = () => {
|
|||||||
enabled: true,
|
enabled: true,
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
editor.addCommand(monaco.KeyMod.CtrlCmd | monaco.KeyCode.KeyS, () => {
|
editor.addCommand(
|
||||||
saveFile();
|
monaco.KeyMod.CtrlCmd | monaco.KeyCode.KeyS,
|
||||||
});
|
() => {
|
||||||
validateWritability(editor)
|
saveFile();
|
||||||
|
}
|
||||||
|
);
|
||||||
|
validateWritability(editor);
|
||||||
}}
|
}}
|
||||||
theme={theme === "dark" ? "dark" : "light"}
|
theme={theme === "dark" ? "dark" : "light"}
|
||||||
/>
|
/>
|
||||||
@@ -160,7 +163,9 @@ const HooksEditor = () => {
|
|||||||
<Box css={{ display: "inline-flex", pl: "35px" }}>
|
<Box css={{ display: "inline-flex", pl: "35px" }}>
|
||||||
<ArrowBendLeftUp size={30} />
|
<ArrowBendLeftUp size={30} />
|
||||||
</Box>
|
</Box>
|
||||||
<Box css={{ pl: "0px", pt: "15px", flex: 1, display: "inline-flex" }}>
|
<Box
|
||||||
|
css={{ pl: "0px", pt: "15px", flex: 1, display: "inline-flex" }}
|
||||||
|
>
|
||||||
<Text
|
<Text
|
||||||
css={{
|
css={{
|
||||||
fontSize: "14px",
|
fontSize: "14px",
|
||||||
@@ -168,7 +173,7 @@ const HooksEditor = () => {
|
|||||||
fontFamily: "$monospace",
|
fontFamily: "$monospace",
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
Click the link above to create a your file
|
Click the link above to create your file
|
||||||
</Text>
|
</Text>
|
||||||
</Box>
|
</Box>
|
||||||
</Box>
|
</Box>
|
||||||
|
|||||||
@@ -117,15 +117,17 @@ export const Input = styled("input", {
|
|||||||
},
|
},
|
||||||
state: {
|
state: {
|
||||||
invalid: {
|
invalid: {
|
||||||
boxShadow: "inset 0 0 0 1px $colors$red7",
|
boxShadow: "inset 0 0 0 1px $colors$crimson7",
|
||||||
"&:focus": {
|
"&:focus": {
|
||||||
boxShadow: "inset 0px 0px 0px 1px $colors$red8, 0px 0px 0px 1px $colors$red8",
|
boxShadow:
|
||||||
|
"inset 0px 0px 0px 1px $colors$crimson8, 0px 0px 0px 1px $colors$crimson8",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
valid: {
|
valid: {
|
||||||
boxShadow: "inset 0 0 0 1px $colors$green7",
|
boxShadow: "inset 0 0 0 1px $colors$grass7",
|
||||||
"&:focus": {
|
"&:focus": {
|
||||||
boxShadow: "inset 0px 0px 0px 1px $colors$green8, 0px 0px 0px 1px $colors$green8",
|
boxShadow:
|
||||||
|
"inset 0px 0px 0px 1px $colors$grass8, 0px 0px 0px 1px $colors$grass8",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -11,13 +11,13 @@ const Text = styled("span", {
|
|||||||
color: "$text",
|
color: "$text",
|
||||||
},
|
},
|
||||||
warning: {
|
warning: {
|
||||||
color: "$yellow11",
|
color: "$warning",
|
||||||
},
|
},
|
||||||
error: {
|
error: {
|
||||||
color: "$red11",
|
color: "$error",
|
||||||
},
|
},
|
||||||
success: {
|
success: {
|
||||||
color: "$green11",
|
color: "$success",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
capitalize: {
|
capitalize: {
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
import { styled } from "../stitches.config";
|
import { styled } from "../stitches.config";
|
||||||
|
|
||||||
const SVG = styled("svg", {
|
const SVG = styled("svg", {
|
||||||
"& #path-one, & #path-two": {
|
"& #path": {
|
||||||
fill: "$text",
|
fill: "$accent",
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
function Logo({
|
function Logo({
|
||||||
@@ -14,21 +14,18 @@ function Logo({
|
|||||||
}) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<SVG
|
<SVG
|
||||||
width={width || "1em"}
|
width={width || "1.1em"}
|
||||||
height={height || "1em"}
|
height={height || "1.1em"}
|
||||||
viewBox="0 0 28 22"
|
viewBox="0 0 294 283"
|
||||||
fill="none"
|
fill="none"
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
>
|
>
|
||||||
<path
|
<path
|
||||||
id="path-one"
|
|
||||||
d="M19.603 3.87h2.3l-4.786 4.747a4.466 4.466 0 01-6.276 0L6.054 3.871h2.3l3.636 3.605a2.828 2.828 0 003.975 0l3.638-3.605zM8.325 17.069h-2.3l4.816-4.776a4.466 4.466 0 016.276 0l4.816 4.776h-2.3l-3.665-3.635a2.828 2.828 0 00-3.975 0l-3.668 3.635z"
|
|
||||||
/>
|
|
||||||
<path
|
|
||||||
id="path-two"
|
|
||||||
fillRule="evenodd"
|
fillRule="evenodd"
|
||||||
clipRule="evenodd"
|
clipRule="evenodd"
|
||||||
d="M1.556 9.769h4.751v1.555H1.556v10.072H0V0h1.556v9.769zM26.444 9.769h-4.751v1.555h4.751v10.072H28V0h-1.556v9.769z"
|
id="path"
|
||||||
|
d="M265.827 235L172.416 141.589L265.005 49H226.822L147.732 128.089H53.5514L27.4824 155.089H147.732L227.643 235H265.827Z"
|
||||||
|
fill="#9D2DFF"
|
||||||
/>
|
/>
|
||||||
</SVG>
|
</SVG>
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -40,6 +40,7 @@ const Navigation = () => {
|
|||||||
as="nav"
|
as="nav"
|
||||||
css={{
|
css={{
|
||||||
display: "flex",
|
display: "flex",
|
||||||
|
backgroundColor: "$mauve1",
|
||||||
borderBottom: "1px solid $mauve6",
|
borderBottom: "1px solid $mauve6",
|
||||||
position: "relative",
|
position: "relative",
|
||||||
zIndex: 2003,
|
zIndex: 2003,
|
||||||
@@ -61,7 +62,7 @@ const Navigation = () => {
|
|||||||
pr: "$4",
|
pr: "$4",
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<Link href="/" passHref>
|
<Link href={gistId ? `/develop/${gistId}` : "/develop"} passHref>
|
||||||
<Box
|
<Box
|
||||||
as="a"
|
as="a"
|
||||||
css={{
|
css={{
|
||||||
@@ -70,7 +71,7 @@ const Navigation = () => {
|
|||||||
color: "$textColor",
|
color: "$textColor",
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<Logo width="30px" height="30px" />
|
<Logo width="32px" height="32px" />
|
||||||
</Box>
|
</Box>
|
||||||
</Link>
|
</Link>
|
||||||
<Flex
|
<Flex
|
||||||
@@ -91,10 +92,25 @@ const Navigation = () => {
|
|||||||
css={{ fontSize: "$xs", color: "$mauve10", lineHeight: 1 }}
|
css={{ fontSize: "$xs", color: "$mauve10", lineHeight: 1 }}
|
||||||
>
|
>
|
||||||
{snap.files.length > 0 ? "Gist: " : "Playground"}
|
{snap.files.length > 0 ? "Gist: " : "Playground"}
|
||||||
<Text css={{ color: "$mauve12" }}>
|
{snap.files.length > 0 && (
|
||||||
{snap.files.length > 0 &&
|
<Link
|
||||||
`${snap.gistOwner || "-"}/${truncate(snap.gistId || "")}`}
|
href={`https://gist.github.com/${snap.gistOwner || ""}/${
|
||||||
</Text>
|
snap.gistId || ""
|
||||||
|
}`}
|
||||||
|
passHref
|
||||||
|
>
|
||||||
|
<Text
|
||||||
|
as="a"
|
||||||
|
target="_blank"
|
||||||
|
rel="noreferrer noopener"
|
||||||
|
css={{ color: "$mauve12" }}
|
||||||
|
>
|
||||||
|
{`${snap.gistOwner || "-"}/${truncate(
|
||||||
|
snap.gistId || ""
|
||||||
|
)}`}
|
||||||
|
</Text>
|
||||||
|
</Link>
|
||||||
|
)}
|
||||||
</Text>
|
</Text>
|
||||||
</>
|
</>
|
||||||
)}
|
)}
|
||||||
@@ -138,10 +154,12 @@ const Navigation = () => {
|
|||||||
flexDirection: "column",
|
flexDirection: "column",
|
||||||
p: "$7",
|
p: "$7",
|
||||||
height: "100%",
|
height: "100%",
|
||||||
|
backgroundColor: "$mauve2",
|
||||||
"@md": {
|
"@md": {
|
||||||
width: "30%",
|
width: "30%",
|
||||||
|
maxWidth: "300px",
|
||||||
borderBottom: "0px",
|
borderBottom: "0px",
|
||||||
borderRight: "1px solid $colors$mauve5",
|
borderRight: "1px solid $colors$mauve6",
|
||||||
},
|
},
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
@@ -152,9 +170,11 @@ const Navigation = () => {
|
|||||||
alignItems: "center",
|
alignItems: "center",
|
||||||
gap: "$3",
|
gap: "$3",
|
||||||
fontSize: "$xl",
|
fontSize: "$xl",
|
||||||
|
lineHeight: "$one",
|
||||||
|
fontWeight: "$bold",
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<Logo width="30px" height="30px" /> XRPL Hooks Editor
|
<Logo width="48px" height="48px" /> XRPL Hooks Builder
|
||||||
</DialogTitle>
|
</DialogTitle>
|
||||||
<DialogDescription as="div">
|
<DialogDescription as="div">
|
||||||
<Text
|
<Text
|
||||||
@@ -176,9 +196,9 @@ const Navigation = () => {
|
|||||||
display: "inline-flex",
|
display: "inline-flex",
|
||||||
alignItems: "center",
|
alignItems: "center",
|
||||||
gap: "$3",
|
gap: "$3",
|
||||||
color: "$green9",
|
color: "$purple10",
|
||||||
"&:hover": {
|
"&:hover": {
|
||||||
color: "$green11 !important",
|
color: "$purple11",
|
||||||
},
|
},
|
||||||
"&:focus": {
|
"&:focus": {
|
||||||
outline: 0,
|
outline: 0,
|
||||||
@@ -189,7 +209,7 @@ const Navigation = () => {
|
|||||||
target="_blank"
|
target="_blank"
|
||||||
href="https://github.com/XRPL-Labs/xrpld-hooks"
|
href="https://github.com/XRPL-Labs/xrpld-hooks"
|
||||||
>
|
>
|
||||||
<ArrowUpRight size="15px" /> Developing Hooks
|
<ArrowUpRight size="15px" /> Hooks Github
|
||||||
</Text>
|
</Text>
|
||||||
|
|
||||||
<Text
|
<Text
|
||||||
@@ -197,9 +217,9 @@ const Navigation = () => {
|
|||||||
display: "inline-flex",
|
display: "inline-flex",
|
||||||
alignItems: "center",
|
alignItems: "center",
|
||||||
gap: "$3",
|
gap: "$3",
|
||||||
color: "$green9",
|
color: "$purple10",
|
||||||
"&:hover": {
|
"&:hover": {
|
||||||
color: "$green11 !important",
|
color: "$purple11",
|
||||||
},
|
},
|
||||||
"&:focus": {
|
"&:focus": {
|
||||||
outline: 0,
|
outline: 0,
|
||||||
@@ -217,9 +237,9 @@ const Navigation = () => {
|
|||||||
display: "inline-flex",
|
display: "inline-flex",
|
||||||
alignItems: "center",
|
alignItems: "center",
|
||||||
gap: "$3",
|
gap: "$3",
|
||||||
color: "$green9",
|
color: "$purple10",
|
||||||
"&:hover": {
|
"&:hover": {
|
||||||
color: "$green11 !important",
|
color: "$purple11",
|
||||||
},
|
},
|
||||||
"&:focus": {
|
"&:focus": {
|
||||||
outline: 0,
|
outline: 0,
|
||||||
@@ -246,9 +266,7 @@ const Navigation = () => {
|
|||||||
gap: "$3",
|
gap: "$3",
|
||||||
alignItems: "flex-start",
|
alignItems: "flex-start",
|
||||||
flexWrap: "wrap",
|
flexWrap: "wrap",
|
||||||
backgroundImage: `url('/pattern.svg'), url('/pattern-2.svg')`,
|
backgroundColor: "$mauve1",
|
||||||
backgroundRepeat: "no-repeat",
|
|
||||||
backgroundPosition: "bottom left, top right",
|
|
||||||
"@md": {
|
"@md": {
|
||||||
gridTemplateColumns: "1fr 1fr 1fr",
|
gridTemplateColumns: "1fr 1fr 1fr",
|
||||||
gridTemplateRows: "max-content",
|
gridTemplateRows: "max-content",
|
||||||
@@ -261,28 +279,18 @@ const Navigation = () => {
|
|||||||
>
|
>
|
||||||
<Heading>Starter</Heading>
|
<Heading>Starter</Heading>
|
||||||
<Text>
|
<Text>
|
||||||
Just an empty starter with essential imports
|
Just a basic starter with essential imports
|
||||||
</Text>
|
</Text>
|
||||||
</PanelBox>
|
</PanelBox>
|
||||||
<PanelBox
|
<PanelBox
|
||||||
as="a"
|
as="a"
|
||||||
href={`/develop/${templateFileIds.starter}`}
|
href={`/develop/${templateFileIds.firewall}`}
|
||||||
>
|
>
|
||||||
<Heading>Firewall</Heading>
|
<Heading>Firewall</Heading>
|
||||||
<Text>
|
<Text>
|
||||||
This Hook essentially checks a blacklist of accounts
|
This Hook essentially checks a blacklist of accounts
|
||||||
</Text>
|
</Text>
|
||||||
</PanelBox>
|
</PanelBox>
|
||||||
<PanelBox
|
|
||||||
as="a"
|
|
||||||
href={`/develop/${templateFileIds.accept}`}
|
|
||||||
>
|
|
||||||
<Heading>Accept</Heading>
|
|
||||||
<Text>
|
|
||||||
This hook just accepts any transaction coming through
|
|
||||||
it
|
|
||||||
</Text>
|
|
||||||
</PanelBox>
|
|
||||||
<PanelBox
|
<PanelBox
|
||||||
as="a"
|
as="a"
|
||||||
href={`/develop/${templateFileIds.notary}`}
|
href={`/develop/${templateFileIds.notary}`}
|
||||||
@@ -304,7 +312,7 @@ const Navigation = () => {
|
|||||||
href={`/develop/${templateFileIds.peggy}`}
|
href={`/develop/${templateFileIds.peggy}`}
|
||||||
>
|
>
|
||||||
<Heading>Peggy</Heading>
|
<Heading>Peggy</Heading>
|
||||||
<Text>An oracle based stabe coin hook</Text>
|
<Text>An oracle based stable coin hook</Text>
|
||||||
</PanelBox>
|
</PanelBox>
|
||||||
</Flex>
|
</Flex>
|
||||||
</Flex>
|
</Flex>
|
||||||
@@ -391,9 +399,13 @@ const Navigation = () => {
|
|||||||
</Button>
|
</Button>
|
||||||
</Link>
|
</Link>
|
||||||
</ButtonGroup>
|
</ButtonGroup>
|
||||||
<Button outline disabled>
|
<Link href="https://xrpl-hooks.readme.io/" passHref>
|
||||||
<BookOpen size="15px" />
|
<a target="_blank" rel="noreferrer noopener">
|
||||||
</Button>
|
<Button outline>
|
||||||
|
<BookOpen size="15px" />
|
||||||
|
</Button>
|
||||||
|
</a>
|
||||||
|
</Link>
|
||||||
</Stack>
|
</Stack>
|
||||||
</Flex>
|
</Flex>
|
||||||
</Container>
|
</Container>
|
||||||
|
|||||||
@@ -5,8 +5,8 @@ import Text from "./Text";
|
|||||||
const PanelBox = styled("div", {
|
const PanelBox = styled("div", {
|
||||||
display: "flex",
|
display: "flex",
|
||||||
flexDirection: "column",
|
flexDirection: "column",
|
||||||
border: "1px solid $colors$mauve5",
|
border: "1px solid $colors$mauve6",
|
||||||
backgroundColor: "$mauve1",
|
backgroundColor: "$mauve2",
|
||||||
padding: "$3",
|
padding: "$3",
|
||||||
borderRadius: "$sm",
|
borderRadius: "$sm",
|
||||||
fontWeight: "lighter",
|
fontWeight: "lighter",
|
||||||
|
|||||||
@@ -1,4 +1,10 @@
|
|||||||
import React, { useEffect, useState, Fragment, isValidElement, useCallback } from "react";
|
import React, {
|
||||||
|
useEffect,
|
||||||
|
useState,
|
||||||
|
Fragment,
|
||||||
|
isValidElement,
|
||||||
|
useCallback,
|
||||||
|
} from "react";
|
||||||
import type { ReactNode, ReactElement } from "react";
|
import type { ReactNode, ReactElement } from "react";
|
||||||
import { Box, Button, Flex, Input, Stack, Text } from ".";
|
import { Box, Button, Flex, Input, Stack, Text } from ".";
|
||||||
import {
|
import {
|
||||||
@@ -13,7 +19,7 @@ import { Plus, X } from "phosphor-react";
|
|||||||
import { styled } from "../stitches.config";
|
import { styled } from "../stitches.config";
|
||||||
|
|
||||||
const ErrorText = styled(Text, {
|
const ErrorText = styled(Text, {
|
||||||
color: "$red9",
|
color: "$error",
|
||||||
mt: "$1",
|
mt: "$1",
|
||||||
display: "block",
|
display: "block",
|
||||||
});
|
});
|
||||||
@@ -50,7 +56,7 @@ export const Tabs = ({
|
|||||||
forceDefaultExtension,
|
forceDefaultExtension,
|
||||||
}: Props) => {
|
}: Props) => {
|
||||||
const [active, setActive] = useState(activeIndex || 0);
|
const [active, setActive] = useState(activeIndex || 0);
|
||||||
const tabs: TabProps[] = children.map(elem => elem.props);
|
const tabs: TabProps[] = children.map((elem) => elem.props);
|
||||||
|
|
||||||
const [isNewtabDialogOpen, setIsNewtabDialogOpen] = useState(false);
|
const [isNewtabDialogOpen, setIsNewtabDialogOpen] = useState(false);
|
||||||
const [tabname, setTabname] = useState("");
|
const [tabname, setTabname] = useState("");
|
||||||
@@ -62,7 +68,7 @@ export const Tabs = ({
|
|||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (activeHeader) {
|
if (activeHeader) {
|
||||||
const idx = tabs.findIndex(tab => tab.header === activeHeader);
|
const idx = tabs.findIndex((tab) => tab.header === activeHeader);
|
||||||
setActive(idx);
|
setActive(idx);
|
||||||
}
|
}
|
||||||
}, [activeHeader, tabs]);
|
}, [activeHeader, tabs]);
|
||||||
@@ -74,7 +80,7 @@ export const Tabs = ({
|
|||||||
|
|
||||||
const validateTabname = useCallback(
|
const validateTabname = useCallback(
|
||||||
(tabname: string): { error: string | null } => {
|
(tabname: string): { error: string | null } => {
|
||||||
if (tabs.find(tab => tab.header === tabname)) {
|
if (tabs.find((tab) => tab.header === tabname)) {
|
||||||
return { error: "Name already exists." };
|
return { error: "Name already exists." };
|
||||||
}
|
}
|
||||||
return { error: null };
|
return { error: null };
|
||||||
@@ -170,9 +176,16 @@ export const Tabs = ({
|
|||||||
</Button>
|
</Button>
|
||||||
))}
|
))}
|
||||||
{onCreateNewTab && (
|
{onCreateNewTab && (
|
||||||
<Dialog open={isNewtabDialogOpen} onOpenChange={setIsNewtabDialogOpen}>
|
<Dialog
|
||||||
|
open={isNewtabDialogOpen}
|
||||||
|
onOpenChange={setIsNewtabDialogOpen}
|
||||||
|
>
|
||||||
<DialogTrigger asChild>
|
<DialogTrigger asChild>
|
||||||
<Button ghost size="sm" css={{ alignItems: "center", px: "$2", mr: "$3" }}>
|
<Button
|
||||||
|
ghost
|
||||||
|
size="sm"
|
||||||
|
css={{ alignItems: "center", px: "$2", mr: "$3" }}
|
||||||
|
>
|
||||||
<Plus size="16px" /> {tabs.length === 0 && "Add new tab"}
|
<Plus size="16px" /> {tabs.length === 0 && "Add new tab"}
|
||||||
</Button>
|
</Button>
|
||||||
</DialogTrigger>
|
</DialogTrigger>
|
||||||
@@ -182,8 +195,8 @@ export const Tabs = ({
|
|||||||
<label>Tabname</label>
|
<label>Tabname</label>
|
||||||
<Input
|
<Input
|
||||||
value={tabname}
|
value={tabname}
|
||||||
onChange={e => setTabname(e.target.value)}
|
onChange={(e) => setTabname(e.target.value)}
|
||||||
onKeyPress={e => {
|
onKeyPress={(e) => {
|
||||||
if (e.key === "Enter") {
|
if (e.key === "Enter") {
|
||||||
handleCreateTab();
|
handleCreateTab();
|
||||||
}
|
}
|
||||||
@@ -235,7 +248,9 @@ export const Tabs = ({
|
|||||||
);
|
);
|
||||||
})
|
})
|
||||||
) : (
|
) : (
|
||||||
<Fragment key={tabs[active].header || active}>{tabs[active].children}</Fragment>
|
<Fragment key={tabs[active].header || active}>
|
||||||
|
{tabs[active].children}
|
||||||
|
</Fragment>
|
||||||
)}
|
)}
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -1,15 +1,16 @@
|
|||||||
export { default as Flex } from './Flex'
|
export { default as Flex } from "./Flex";
|
||||||
export { default as Container } from './Container'
|
export { default as Link } from "./Link";
|
||||||
export { default as Heading } from './Heading'
|
export { default as Container } from "./Container";
|
||||||
export { default as Stack } from './Stack'
|
export { default as Heading } from "./Heading";
|
||||||
export { default as Text } from './Text'
|
export { default as Stack } from "./Stack";
|
||||||
export { default as Input } from './Input'
|
export { default as Text } from "./Text";
|
||||||
export { default as Select } from './Select'
|
export { default as Input } from "./Input";
|
||||||
export * from './Tabs'
|
export { default as Select } from "./Select";
|
||||||
export * from './AlertDialog'
|
export * from "./Tabs";
|
||||||
export { default as Box } from './Box'
|
export * from "./AlertDialog";
|
||||||
export { default as Button } from './Button'
|
export { default as Box } from "./Box";
|
||||||
export { default as ButtonGroup } from './ButtonGroup'
|
export { default as Button } from "./Button";
|
||||||
export { default as DeployFooter } from './DeployFooter'
|
export { default as ButtonGroup } from "./ButtonGroup";
|
||||||
export * from './Dialog'
|
export { default as DeployFooter } from "./DeployFooter";
|
||||||
export * from './DropdownMenu'
|
export * from "./Dialog";
|
||||||
|
export * from "./DropdownMenu";
|
||||||
|
|||||||
@@ -23,6 +23,8 @@
|
|||||||
"base64-js": "^1.5.1",
|
"base64-js": "^1.5.1",
|
||||||
"dinero.js": "^1.9.1",
|
"dinero.js": "^1.9.1",
|
||||||
"file-saver": "^2.0.5",
|
"file-saver": "^2.0.5",
|
||||||
|
"filesize": "^8.0.7",
|
||||||
|
"javascript-time-ago": "^2.3.11",
|
||||||
"jszip": "^3.7.1",
|
"jszip": "^3.7.1",
|
||||||
"monaco-editor": "^0.30.1",
|
"monaco-editor": "^0.30.1",
|
||||||
"next": "^12.0.4",
|
"next": "^12.0.4",
|
||||||
@@ -43,6 +45,7 @@
|
|||||||
"react-select": "^5.2.1",
|
"react-select": "^5.2.1",
|
||||||
"react-split": "^2.0.14",
|
"react-split": "^2.0.14",
|
||||||
"react-stay-scrolled": "^7.4.0",
|
"react-stay-scrolled": "^7.4.0",
|
||||||
|
"react-time-ago": "^7.1.9",
|
||||||
"reconnecting-websocket": "^4.4.0",
|
"reconnecting-websocket": "^4.4.0",
|
||||||
"valtio": "^1.2.5",
|
"valtio": "^1.2.5",
|
||||||
"vscode-languageserver": "^7.0.0",
|
"vscode-languageserver": "^7.0.0",
|
||||||
|
|||||||
@@ -13,11 +13,18 @@ import Navigation from "../components/Navigation";
|
|||||||
import { fetchFiles } from "../state/actions";
|
import { fetchFiles } from "../state/actions";
|
||||||
import state from "../state";
|
import state from "../state";
|
||||||
|
|
||||||
|
import TimeAgo from "javascript-time-ago";
|
||||||
|
import en from "javascript-time-ago/locale/en.json";
|
||||||
|
TimeAgo.addDefaultLocale(en);
|
||||||
|
|
||||||
function MyApp({ Component, pageProps: { session, ...pageProps } }: AppProps) {
|
function MyApp({ Component, pageProps: { session, ...pageProps } }: AppProps) {
|
||||||
const router = useRouter();
|
const router = useRouter();
|
||||||
const slug = router.query?.slug;
|
const slug = router.query?.slug;
|
||||||
const gistId = (Array.isArray(slug) && slug[0]) ?? null;
|
const gistId = (Array.isArray(slug) && slug[0]) ?? null;
|
||||||
|
|
||||||
|
const origin = "https://xrpl-hooks-ide.vercel.app"; // TODO: Change when site is deployed
|
||||||
|
const shareImg = "/share-image.png";
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (gistId && router.isReady) {
|
if (gistId && router.isReady) {
|
||||||
fetchFiles(gistId);
|
fetchFiles(gistId);
|
||||||
@@ -31,7 +38,73 @@ function MyApp({ Component, pageProps: { session, ...pageProps } }: AppProps) {
|
|||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<Head>
|
<Head>
|
||||||
<title>XRPL Hooks Playground</title>
|
<meta charSet="utf-8" />
|
||||||
|
<meta name="viewport" content="initial-scale=1.0, width=device-width" />
|
||||||
|
<meta name="format-detection" content="telephone=no" />
|
||||||
|
<meta property="og:url" content={`${origin}${router.asPath}`} />
|
||||||
|
|
||||||
|
<title>XRPL Hooks Editor</title>
|
||||||
|
<meta property="og:title" content="XRPL Hooks Editor" />
|
||||||
|
<meta name="twitter:title" content="XRPL Hooks Editor" />
|
||||||
|
<meta name="twitter:card" content="summary_large_image" />
|
||||||
|
<meta name="twitter:site" content="@xrpllabs" />
|
||||||
|
<meta
|
||||||
|
name="description"
|
||||||
|
content="Playground for buildings Hooks, that add smart contract functionality to the XRP Ledger."
|
||||||
|
/>
|
||||||
|
<meta
|
||||||
|
property="og:description"
|
||||||
|
content="Playground for buildings Hooks, that add smart contract functionality to the XRP Ledger."
|
||||||
|
/>
|
||||||
|
<meta
|
||||||
|
name="twitter:description"
|
||||||
|
content="Playground for buildings Hooks, that add smart contract functionality to the XRP Ledger.."
|
||||||
|
/>
|
||||||
|
<meta property="og:image" content={`${origin}${shareImg}`} />
|
||||||
|
<meta property="og:image:width" content="1200" />
|
||||||
|
<meta property="og:image:height" content="630" />
|
||||||
|
<meta name="twitter:image" content={`${origin}${shareImg}`} />
|
||||||
|
<link
|
||||||
|
rel="apple-touch-icon"
|
||||||
|
sizes="180x180"
|
||||||
|
href="/apple-touch-icon.png"
|
||||||
|
/>
|
||||||
|
<link
|
||||||
|
rel="icon"
|
||||||
|
type="image/png"
|
||||||
|
sizes="32x32"
|
||||||
|
href="/favicon-32x32.png"
|
||||||
|
/>
|
||||||
|
<link
|
||||||
|
rel="icon"
|
||||||
|
type="image/png"
|
||||||
|
sizes="16x16"
|
||||||
|
href="/favicon-16x16.png"
|
||||||
|
/>
|
||||||
|
<link rel="manifest" href="/site.webmanifest" />
|
||||||
|
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#161618" />
|
||||||
|
<meta name="application-name" content="XRPL Hooks Editor" />
|
||||||
|
<meta name="msapplication-TileColor" content="#c10ad0" />
|
||||||
|
<meta
|
||||||
|
name="theme-color"
|
||||||
|
content="#161618"
|
||||||
|
media="(prefers-color-scheme: dark)"
|
||||||
|
/>
|
||||||
|
<meta
|
||||||
|
name="theme-color"
|
||||||
|
content="#FDFCFD"
|
||||||
|
media="(prefers-color-scheme: light)"
|
||||||
|
/>
|
||||||
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
||||||
|
<link
|
||||||
|
rel="preconnect"
|
||||||
|
href="https://fonts.gstatic.com"
|
||||||
|
crossOrigin=""
|
||||||
|
/>
|
||||||
|
<link
|
||||||
|
href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital@0;1&family=Work+Sans:wght@400;600;700&display=swap"
|
||||||
|
rel="stylesheet"
|
||||||
|
/>
|
||||||
</Head>
|
</Head>
|
||||||
<IdProvider>
|
<IdProvider>
|
||||||
<SessionProvider session={session}>
|
<SessionProvider session={session}>
|
||||||
|
|||||||
@@ -16,21 +16,10 @@ class MyDocument extends Document {
|
|||||||
}
|
}
|
||||||
render() {
|
render() {
|
||||||
globalStyles();
|
globalStyles();
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Html>
|
<Html>
|
||||||
<Head>
|
<Head>
|
||||||
<meta name="description" content="Playground for XRPL Hooks" />
|
|
||||||
<link rel="icon" href="/favicon.ico" />
|
|
||||||
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
||||||
<link
|
|
||||||
rel="preconnect"
|
|
||||||
href="https://fonts.gstatic.com"
|
|
||||||
crossOrigin=""
|
|
||||||
/>
|
|
||||||
<link
|
|
||||||
href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital@0;1&family=Work+Sans:wght@400;600;700&display=swap"
|
|
||||||
rel="stylesheet"
|
|
||||||
/>
|
|
||||||
<style
|
<style
|
||||||
id="stitches"
|
id="stitches"
|
||||||
dangerouslySetInnerHTML={{ __html: getCssText() }}
|
dangerouslySetInnerHTML={{ __html: getCssText() }}
|
||||||
|
|||||||
BIN
public/android-chrome-192x192.png
Normal file
|
After Width: | Height: | Size: 1.0 KiB |
BIN
public/android-chrome-512x512.png
Normal file
|
After Width: | Height: | Size: 2.6 KiB |
BIN
public/apple-touch-icon.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
9
public/browserconfig.xml
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<browserconfig>
|
||||||
|
<msapplication>
|
||||||
|
<tile>
|
||||||
|
<square150x150logo src="/mstile-150x150.png"/>
|
||||||
|
<TileColor>#161618</TileColor>
|
||||||
|
</tile>
|
||||||
|
</msapplication>
|
||||||
|
</browserconfig>
|
||||||
BIN
public/favicon-16x16.png
Normal file
|
After Width: | Height: | Size: 737 B |
BIN
public/favicon-32x32.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
|
Before Width: | Height: | Size: 25 KiB After Width: | Height: | Size: 15 KiB |
BIN
public/mstile-150x150.png
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
18
public/safari-pinned-tab.svg
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
<?xml version="1.0" standalone="no"?>
|
||||||
|
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
|
||||||
|
"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
|
||||||
|
<svg version="1.0" xmlns="http://www.w3.org/2000/svg"
|
||||||
|
width="588.000000pt" height="588.000000pt" viewBox="0 0 588.000000 588.000000"
|
||||||
|
preserveAspectRatio="xMidYMid meet">
|
||||||
|
<metadata>
|
||||||
|
Created by potrace 1.14, written by Peter Selinger 2001-2017
|
||||||
|
</metadata>
|
||||||
|
<g transform="translate(0.000000,588.000000) scale(0.100000,-0.100000)"
|
||||||
|
fill="#000000" stroke="none">
|
||||||
|
<path d="M3843 4097 c-381 -380 -737 -736 -791 -790 l-99 -99 -940 1 -940 0
|
||||||
|
-204 -211 c-112 -116 -228 -235 -257 -265 -29 -30 -51 -57 -48 -60 2 -3 542
|
||||||
|
-5 1198 -5 l1193 0 799 -799 799 -799 380 0 c209 0 378 2 376 5 -2 2 -422 423
|
||||||
|
-933 934 l-928 929 921 920 c507 507 921 923 921 927 0 3 -170 5 -377 5 l-378
|
||||||
|
0 -692 -693z"/>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 837 B |
BIN
public/share-image.png
Normal file
|
After Width: | Height: | Size: 710 KiB |
19
public/site.webmanifest
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
{
|
||||||
|
"name": "Hooks Builder",
|
||||||
|
"short_name": "Hooks Builder",
|
||||||
|
"icons": [
|
||||||
|
{
|
||||||
|
"src": "/android-chrome-192x192.png",
|
||||||
|
"sizes": "192x192",
|
||||||
|
"type": "image/png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"src": "/android-chrome-512x512.png",
|
||||||
|
"sizes": "512x512",
|
||||||
|
"type": "image/png"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"theme_color": "#161618",
|
||||||
|
"background_color": "#161618",
|
||||||
|
"display": "standalone"
|
||||||
|
}
|
||||||
@@ -1,4 +0,0 @@
|
|||||||
<svg width="283" height="64" viewBox="0 0 283 64" fill="none"
|
|
||||||
xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="M141.04 16c-11.04 0-19 7.2-19 18s8.96 18 20 18c6.67 0 12.55-2.64 16.19-7.09l-7.65-4.42c-2.02 2.21-5.09 3.5-8.54 3.5-4.79 0-8.86-2.5-10.37-6.5h28.02c.22-1.12.35-2.28.35-3.5 0-10.79-7.96-17.99-19-17.99zm-9.46 14.5c1.25-3.99 4.67-6.5 9.45-6.5 4.79 0 8.21 2.51 9.45 6.5h-18.9zM248.72 16c-11.04 0-19 7.2-19 18s8.96 18 20 18c6.67 0 12.55-2.64 16.19-7.09l-7.65-4.42c-2.02 2.21-5.09 3.5-8.54 3.5-4.79 0-8.86-2.5-10.37-6.5h28.02c.22-1.12.35-2.28.35-3.5 0-10.79-7.96-17.99-19-17.99zm-9.45 14.5c1.25-3.99 4.67-6.5 9.45-6.5 4.79 0 8.21 2.51 9.45 6.5h-18.9zM200.24 34c0 6 3.92 10 10 10 4.12 0 7.21-1.87 8.8-4.92l7.68 4.43c-3.18 5.3-9.14 8.49-16.48 8.49-11.05 0-19-7.2-19-18s7.96-18 19-18c7.34 0 13.29 3.19 16.48 8.49l-7.68 4.43c-1.59-3.05-4.68-4.92-8.8-4.92-6.07 0-10 4-10 10zm82.48-29v46h-9V5h9zM36.95 0L73.9 64H0L36.95 0zm92.38 5l-27.71 48L73.91 5H84.3l17.32 30 17.32-30h10.39zm58.91 12v9.69c-1-.29-2.06-.49-3.2-.49-5.81 0-10 4-10 10V51h-9V17h9v9.2c0-5.08 5.91-9.2 13.2-9.2z" fill="#000"/>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 1.1 KiB |
@@ -25,6 +25,7 @@ export const compileCode = async (activeId: number) => {
|
|||||||
}
|
}
|
||||||
// Set loading state to true
|
// Set loading state to true
|
||||||
state.compiling = true;
|
state.compiling = true;
|
||||||
|
state.logs = []
|
||||||
try {
|
try {
|
||||||
const res = await fetch(process.env.NEXT_PUBLIC_COMPILE_API_ENDPOINT, {
|
const res = await fetch(process.env.NEXT_PUBLIC_COMPILE_API_ENDPOINT, {
|
||||||
method: "POST",
|
method: "POST",
|
||||||
@@ -38,7 +39,6 @@ export const compileCode = async (activeId: number) => {
|
|||||||
{
|
{
|
||||||
type: "c",
|
type: "c",
|
||||||
name: state.files[activeId].name,
|
name: state.files[activeId].name,
|
||||||
options: "-O0",
|
|
||||||
src: state.files[activeId].content,
|
src: state.files[activeId].content,
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
@@ -66,6 +66,7 @@ export const compileCode = async (activeId: number) => {
|
|||||||
// Decode base64 encoded wasm that is coming back from the endpoint
|
// Decode base64 encoded wasm that is coming back from the endpoint
|
||||||
const bufferData = await decodeBinary(json.output);
|
const bufferData = await decodeBinary(json.output);
|
||||||
state.files[state.active].compiledContent = ref(bufferData);
|
state.files[state.active].compiledContent = ref(bufferData);
|
||||||
|
state.files[state.active].lastCompiled = new Date();
|
||||||
// Import wabt from and create human readable version of wasm file and
|
// Import wabt from and create human readable version of wasm file and
|
||||||
// put it into state
|
// put it into state
|
||||||
import("wabt").then((wabt) => {
|
import("wabt").then((wabt) => {
|
||||||
|
|||||||
@@ -24,6 +24,10 @@ export const sendTransaction = async (account: IAccount, txOptions: TransactionO
|
|||||||
Fee, // TODO auto-fillable
|
Fee, // TODO auto-fillable
|
||||||
...opts
|
...opts
|
||||||
};
|
};
|
||||||
|
const currAcc = state.accounts.find(acc => acc.address === account.address);
|
||||||
|
if (currAcc) {
|
||||||
|
currAcc.sequence = account.sequence + 1;
|
||||||
|
}
|
||||||
const { logPrefix = '' } = options || {}
|
const { logPrefix = '' } = options || {}
|
||||||
try {
|
try {
|
||||||
const signedAccount = derive.familySeed(account.secret);
|
const signedAccount = derive.familySeed(account.secret);
|
||||||
|
|||||||
@@ -1,6 +1,5 @@
|
|||||||
export const templateFileIds = {
|
export const templateFileIds = {
|
||||||
'starter': '1d14e51e2e02dc0a508cb0733767a914', // TODO currently same as accept
|
'starter': '1d14e51e2e02dc0a508cb0733767a914', // TODO currently same as accept
|
||||||
'accept': '1d14e51e2e02dc0a508cb0733767a914',
|
|
||||||
'firewall': 'bcd6d0c0fcbe52545ddb802481ff9d26',
|
'firewall': 'bcd6d0c0fcbe52545ddb802481ff9d26',
|
||||||
'notary': 'a789c75f591eeab7932fd702ed8cf9ea',
|
'notary': 'a789c75f591eeab7932fd702ed8cf9ea',
|
||||||
'carbon': '43925143fa19735d8c6505c34d3a6a47',
|
'carbon': '43925143fa19735d8c6505c34d3a6a47',
|
||||||
|
|||||||
@@ -9,6 +9,7 @@ export interface IFile {
|
|||||||
content: string;
|
content: string;
|
||||||
compiledContent?: ArrayBuffer | null;
|
compiledContent?: ArrayBuffer | null;
|
||||||
compiledWatContent?: string | null;
|
compiledWatContent?: string | null;
|
||||||
|
lastCompiled?: Date
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface FaucetAccountRes {
|
export interface FaucetAccountRes {
|
||||||
|
|||||||
@@ -1,29 +1,27 @@
|
|||||||
// stitches.config.ts
|
// stitches.config.ts
|
||||||
import type Stitches from '@stitches/react';
|
import type Stitches from "@stitches/react";
|
||||||
import { createStitches } from '@stitches/react';
|
import { createStitches } from "@stitches/react";
|
||||||
|
|
||||||
import {
|
import {
|
||||||
gray,
|
gray,
|
||||||
blue,
|
blue,
|
||||||
red,
|
crimson,
|
||||||
green,
|
grass,
|
||||||
plum,
|
|
||||||
slate,
|
slate,
|
||||||
mauve,
|
mauve,
|
||||||
pink,
|
amber,
|
||||||
yellow,
|
|
||||||
purple,
|
purple,
|
||||||
grayDark,
|
grayDark,
|
||||||
blueDark,
|
blueDark,
|
||||||
redDark,
|
crimsonDark,
|
||||||
greenDark,
|
grassDark,
|
||||||
plumDark,
|
|
||||||
slateDark,
|
slateDark,
|
||||||
mauveDark,
|
mauveDark,
|
||||||
pinkDark,
|
amberDark,
|
||||||
yellowDark,
|
|
||||||
purpleDark,
|
purpleDark,
|
||||||
} from '@radix-ui/colors';
|
red,
|
||||||
|
redDark,
|
||||||
|
} from "@radix-ui/colors";
|
||||||
|
|
||||||
export const {
|
export const {
|
||||||
styled,
|
styled,
|
||||||
@@ -39,26 +37,30 @@ export const {
|
|||||||
colors: {
|
colors: {
|
||||||
...gray,
|
...gray,
|
||||||
...blue,
|
...blue,
|
||||||
...red,
|
...crimson,
|
||||||
...green,
|
...grass,
|
||||||
...plum,
|
|
||||||
...slate,
|
...slate,
|
||||||
...mauve,
|
...mauve,
|
||||||
...pink,
|
...amber,
|
||||||
...yellow,
|
|
||||||
...purple,
|
...purple,
|
||||||
|
...red,
|
||||||
|
accent: "#9D2DFF",
|
||||||
background: "$gray1",
|
background: "$gray1",
|
||||||
backgroundAlt: "$gray4",
|
backgroundAlt: "$gray4",
|
||||||
text: "$gray12",
|
text: "$gray12",
|
||||||
|
textMuted: "$gray10",
|
||||||
primary: "$plum",
|
primary: "$plum",
|
||||||
|
error: '$red9',
|
||||||
|
warning: '$amber11',
|
||||||
|
success: "$grass11",
|
||||||
white: "white",
|
white: "white",
|
||||||
black: "black",
|
black: "black",
|
||||||
'deep': 'rgb(244, 244, 244)'
|
deep: "rgb(244, 244, 244)",
|
||||||
},
|
},
|
||||||
fonts: {
|
fonts: {
|
||||||
body: 'Work Sans, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif',
|
body: 'Work Sans, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif',
|
||||||
heading: 'Work Sans, sans-serif',
|
heading: "Work Sans, sans-serif",
|
||||||
monospace: 'Roboto Mono, monospace',
|
monospace: "Roboto Mono, monospace",
|
||||||
},
|
},
|
||||||
fontSizes: {
|
fontSizes: {
|
||||||
xs: "0.6875rem",
|
xs: "0.6875rem",
|
||||||
@@ -74,7 +76,7 @@ export const {
|
|||||||
"7xl": "4.5rem",
|
"7xl": "4.5rem",
|
||||||
"8xl": "6rem",
|
"8xl": "6rem",
|
||||||
"9xl": "8rem",
|
"9xl": "8rem",
|
||||||
default: '$md'
|
default: "$md",
|
||||||
},
|
},
|
||||||
space: {
|
space: {
|
||||||
px: "1px",
|
px: "1px",
|
||||||
@@ -110,15 +112,15 @@ export const {
|
|||||||
72: "18rem",
|
72: "18rem",
|
||||||
80: "20rem",
|
80: "20rem",
|
||||||
96: "24rem",
|
96: "24rem",
|
||||||
"widePlus": '2048px',
|
widePlus: "2048px",
|
||||||
"wide": '1536px',
|
wide: "1536px",
|
||||||
"layoutPlus": '1260px',
|
layoutPlus: "1260px",
|
||||||
"layout": '1024px',
|
layout: "1024px",
|
||||||
"copyUltra": '980px',
|
copyUltra: "980px",
|
||||||
"copyPlus": '768px',
|
copyPlus: "768px",
|
||||||
"copy": '680px',
|
copy: "680px",
|
||||||
"narrowPlus": '600px',
|
narrowPlus: "600px",
|
||||||
"narrow": '512px',
|
narrow: "512px",
|
||||||
xs: "20rem",
|
xs: "20rem",
|
||||||
sm: "24rem",
|
sm: "24rem",
|
||||||
md: "28rem",
|
md: "28rem",
|
||||||
@@ -218,62 +220,112 @@ export const {
|
|||||||
lg: "(min-width: 62em)",
|
lg: "(min-width: 62em)",
|
||||||
xl: "(min-width: 80em)",
|
xl: "(min-width: 80em)",
|
||||||
"2xl": "(min-width: 96em)",
|
"2xl": "(min-width: 96em)",
|
||||||
hover: '(any-hover: hover)',
|
hover: "(any-hover: hover)",
|
||||||
dark: '(prefers-color-scheme: dark)',
|
dark: "(prefers-color-scheme: dark)",
|
||||||
light: '(prefers-color-scheme: light)',
|
light: "(prefers-color-scheme: light)",
|
||||||
},
|
},
|
||||||
utils: {
|
utils: {
|
||||||
// Abbreviated margin properties
|
// Abbreviated margin properties
|
||||||
m: (value: Stitches.ScaleValue<'space'> | Stitches.PropertyValue<'margin'>) => ({
|
m: (
|
||||||
|
value: Stitches.ScaleValue<"space"> | Stitches.PropertyValue<"margin">
|
||||||
|
) => ({
|
||||||
margin: value,
|
margin: value,
|
||||||
}),
|
}),
|
||||||
mt: (value: Stitches.ScaleValue<'space'> | Stitches.PropertyValue<'marginTop'>) => ({
|
mt: (
|
||||||
|
value: Stitches.ScaleValue<"space"> | Stitches.PropertyValue<"marginTop">
|
||||||
|
) => ({
|
||||||
marginTop: value,
|
marginTop: value,
|
||||||
}),
|
}),
|
||||||
mr: (value: Stitches.ScaleValue<'space'> | Stitches.PropertyValue<'marginRight'>) => ({
|
mr: (
|
||||||
|
value:
|
||||||
|
| Stitches.ScaleValue<"space">
|
||||||
|
| Stitches.PropertyValue<"marginRight">
|
||||||
|
) => ({
|
||||||
marginRight: value,
|
marginRight: value,
|
||||||
}),
|
}),
|
||||||
mb: (value: Stitches.ScaleValue<'space'> | Stitches.PropertyValue<'marginBottom'>) => ({
|
mb: (
|
||||||
|
value:
|
||||||
|
| Stitches.ScaleValue<"space">
|
||||||
|
| Stitches.PropertyValue<"marginBottom">
|
||||||
|
) => ({
|
||||||
marginBottom: value,
|
marginBottom: value,
|
||||||
}),
|
}),
|
||||||
ml: (value: Stitches.ScaleValue<'space'> | Stitches.PropertyValue<'marginLeft'>) => ({
|
ml: (
|
||||||
|
value: Stitches.ScaleValue<"space"> | Stitches.PropertyValue<"marginLeft">
|
||||||
|
) => ({
|
||||||
marginLeft: value,
|
marginLeft: value,
|
||||||
}),
|
}),
|
||||||
mx: (value: Stitches.ScaleValue<'space'> | Stitches.PropertyValue<'marginLeft' | 'marginRight'>) => ({
|
mx: (
|
||||||
|
value:
|
||||||
|
| Stitches.ScaleValue<"space">
|
||||||
|
| Stitches.PropertyValue<"marginLeft" | "marginRight">
|
||||||
|
) => ({
|
||||||
marginLeft: value,
|
marginLeft: value,
|
||||||
marginRight: value,
|
marginRight: value,
|
||||||
}),
|
}),
|
||||||
my: (value: Stitches.ScaleValue<'space'> | Stitches.PropertyValue<'marginTop' | 'marginBottom'>) => ({
|
my: (
|
||||||
|
value:
|
||||||
|
| Stitches.ScaleValue<"space">
|
||||||
|
| Stitches.PropertyValue<"marginTop" | "marginBottom">
|
||||||
|
) => ({
|
||||||
marginTop: value,
|
marginTop: value,
|
||||||
marginBottom: value,
|
marginBottom: value,
|
||||||
}),
|
}),
|
||||||
// Abbreviated margin properties
|
// Abbreviated margin properties
|
||||||
p: (value: Stitches.ScaleValue<'space'> | Stitches.PropertyValue<'padding'>) => ({
|
p: (
|
||||||
|
value: Stitches.ScaleValue<"space"> | Stitches.PropertyValue<"padding">
|
||||||
|
) => ({
|
||||||
padding: value,
|
padding: value,
|
||||||
}),
|
}),
|
||||||
pt: (value: Stitches.ScaleValue<'space'> | Stitches.PropertyValue<'paddingTop'>) => ({
|
pt: (
|
||||||
|
value: Stitches.ScaleValue<"space"> | Stitches.PropertyValue<"paddingTop">
|
||||||
|
) => ({
|
||||||
paddingTop: value,
|
paddingTop: value,
|
||||||
}),
|
}),
|
||||||
pr: (value: Stitches.ScaleValue<'space'> | Stitches.PropertyValue<'paddingRight'>) => ({
|
pr: (
|
||||||
|
value:
|
||||||
|
| Stitches.ScaleValue<"space">
|
||||||
|
| Stitches.PropertyValue<"paddingRight">
|
||||||
|
) => ({
|
||||||
paddingRight: value,
|
paddingRight: value,
|
||||||
}),
|
}),
|
||||||
pb: (value: Stitches.ScaleValue<'space'> | Stitches.PropertyValue<'paddingBottom'>) => ({
|
pb: (
|
||||||
|
value:
|
||||||
|
| Stitches.ScaleValue<"space">
|
||||||
|
| Stitches.PropertyValue<"paddingBottom">
|
||||||
|
) => ({
|
||||||
paddingBottom: value,
|
paddingBottom: value,
|
||||||
}),
|
}),
|
||||||
pl: (value: Stitches.ScaleValue<'space'> | Stitches.PropertyValue<'paddingLeft'>) => ({
|
pl: (
|
||||||
|
value:
|
||||||
|
| Stitches.ScaleValue<"space">
|
||||||
|
| Stitches.PropertyValue<"paddingLeft">
|
||||||
|
) => ({
|
||||||
paddingLeft: value,
|
paddingLeft: value,
|
||||||
}),
|
}),
|
||||||
px: (value: Stitches.ScaleValue<'space'> | Stitches.PropertyValue<'paddingLeft' | 'paddingRight'>) => ({
|
px: (
|
||||||
|
value:
|
||||||
|
| Stitches.ScaleValue<"space">
|
||||||
|
| Stitches.PropertyValue<"paddingLeft" | "paddingRight">
|
||||||
|
) => ({
|
||||||
paddingLeft: value,
|
paddingLeft: value,
|
||||||
paddingRight: value,
|
paddingRight: value,
|
||||||
}),
|
}),
|
||||||
py: (value: Stitches.ScaleValue<'space'> | Stitches.PropertyValue<'paddingTop' | 'paddingBottom'>) => ({
|
py: (
|
||||||
|
value:
|
||||||
|
| Stitches.ScaleValue<"space">
|
||||||
|
| Stitches.PropertyValue<"paddingTop" | "paddingBottom">
|
||||||
|
) => ({
|
||||||
paddingTop: value,
|
paddingTop: value,
|
||||||
paddingBottom: value,
|
paddingBottom: value,
|
||||||
}),
|
}),
|
||||||
|
|
||||||
// A property for applying width/height together
|
// A property for applying width/height together
|
||||||
size: (value: Stitches.ScaleValue<'space'> | Stitches.PropertyValue<'width' | 'height'>) => ({
|
size: (
|
||||||
|
value:
|
||||||
|
| Stitches.ScaleValue<"space">
|
||||||
|
| Stitches.PropertyValue<"width" | "height">
|
||||||
|
) => ({
|
||||||
width: value,
|
width: value,
|
||||||
height: value,
|
height: value,
|
||||||
}),
|
}),
|
||||||
@@ -282,47 +334,45 @@ export const {
|
|||||||
// }),
|
// }),
|
||||||
|
|
||||||
// A property to apply linear gradient
|
// A property to apply linear gradient
|
||||||
linearGradient: (value: Stitches.ScaleValue<'space'>) => ({
|
linearGradient: (value: Stitches.ScaleValue<"space">) => ({
|
||||||
backgroundImage: `linear-gradient(${value})`,
|
backgroundImage: `linear-gradient(${value})`,
|
||||||
}),
|
}),
|
||||||
|
|
||||||
// An abbreviated property for border-radius
|
// An abbreviated property for border-radius
|
||||||
br: (value: Stitches.ScaleValue<'space'>) => ({
|
br: (value: Stitches.ScaleValue<"space">) => ({
|
||||||
borderRadius: value,
|
borderRadius: value,
|
||||||
}),
|
}),
|
||||||
},
|
},
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
export const darkTheme = createTheme('dark', {
|
export const darkTheme = createTheme("dark", {
|
||||||
colors: {
|
colors: {
|
||||||
...grayDark,
|
...grayDark,
|
||||||
...blueDark,
|
...blueDark,
|
||||||
...redDark,
|
...crimsonDark,
|
||||||
...greenDark,
|
...grassDark,
|
||||||
...plumDark,
|
|
||||||
...slateDark,
|
...slateDark,
|
||||||
...mauveDark,
|
...mauveDark,
|
||||||
...pinkDark,
|
...amberDark,
|
||||||
...yellowDark,
|
|
||||||
...purpleDark,
|
...purpleDark,
|
||||||
deep: 'rgb(10, 10, 10)',
|
...redDark,
|
||||||
|
deep: "rgb(10, 10, 10)",
|
||||||
// backgroundA: transparentize(0.1, grayDark.gray1),
|
// backgroundA: transparentize(0.1, grayDark.gray1),
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
export const globalStyles = globalCss({
|
export const globalStyles = globalCss({
|
||||||
// body: { backgroundColor: '$background', color: '$text', fontFamily: 'Helvetica' },
|
// body: { backgroundColor: '$background', color: '$text', fontFamily: 'Helvetica' },
|
||||||
'html, body': {
|
"html, body": {
|
||||||
backgroundColor: '$gray1',
|
backgroundColor: "$mauve2",
|
||||||
color: '$gray12',
|
color: "$mauve12",
|
||||||
fontFamily: '$body',
|
fontFamily: "$body",
|
||||||
fontSize: '$md',
|
fontSize: "$md",
|
||||||
'-webkit-font-smoothing': 'antialiased',
|
"-webkit-font-smoothing": "antialiased",
|
||||||
'-moz-osx-font-smoothing': 'grayscale'
|
"-moz-osx-font-smoothing": "grayscale",
|
||||||
|
},
|
||||||
|
a: {
|
||||||
|
color: "inherit",
|
||||||
|
textDecoration: "none",
|
||||||
},
|
},
|
||||||
'a': {
|
|
||||||
color: 'inherit',
|
|
||||||
textDecoration: 'none'
|
|
||||||
}
|
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -39,3 +39,14 @@ html.light .gutter-vertical:hover {
|
|||||||
html.light .gutter-horizontal:hover {
|
html.light .gutter-horizontal:hover {
|
||||||
background-color: rgba(0, 0, 0, 0.25);
|
background-color: rgba(0, 0, 0, 0.25);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Adjust Monaco tooltip stylings */
|
||||||
|
.markdown-hover h3 {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
.monaco-editor .monaco-hover hr {
|
||||||
|
margin: 8px 0;
|
||||||
|
}
|
||||||
|
.monaco-editor .monaco-hover {
|
||||||
|
z-index: 9999;
|
||||||
|
}
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
"inherit": true,
|
"inherit": true,
|
||||||
"rules": [
|
"rules": [
|
||||||
{
|
{
|
||||||
"background": "1a1d1e",
|
"background": "161618",
|
||||||
"token": ""
|
"token": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -182,7 +182,7 @@
|
|||||||
],
|
],
|
||||||
"colors": {
|
"colors": {
|
||||||
"editor.foreground": "#D0D0FF",
|
"editor.foreground": "#D0D0FF",
|
||||||
"editor.background": "#232326",
|
"editor.background": "#1C1C1F",
|
||||||
"editor.selectionBackground": "#ffffff30",
|
"editor.selectionBackground": "#ffffff30",
|
||||||
"editor.lineHighlightBackground": "#ffffff20",
|
"editor.lineHighlightBackground": "#ffffff20",
|
||||||
"editorCursor.foreground": "#7070FF",
|
"editorCursor.foreground": "#7070FF",
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
"inherit": true,
|
"inherit": true,
|
||||||
"rules": [
|
"rules": [
|
||||||
{
|
{
|
||||||
"background": "FFFFFF",
|
"background": "F4F2F4",
|
||||||
"token": ""
|
"token": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -89,7 +89,7 @@
|
|||||||
],
|
],
|
||||||
"colors": {
|
"colors": {
|
||||||
"editor.foreground": "#000000",
|
"editor.foreground": "#000000",
|
||||||
"editor.background": "#f4f2f4",
|
"editor.background": "#F9F8F9",
|
||||||
"editor.selectionBackground": "#B5D5FF",
|
"editor.selectionBackground": "#B5D5FF",
|
||||||
"editor.lineHighlightBackground": "#00000012",
|
"editor.lineHighlightBackground": "#00000012",
|
||||||
"editorCursor.foreground": "#000000",
|
"editorCursor.foreground": "#000000",
|
||||||
|
|||||||
38
yarn.lock
@@ -2273,6 +2273,11 @@ file-uri-to-path@1.0.0:
|
|||||||
resolved "https://registry.yarnpkg.com/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz#553a7b8446ff6f684359c445f1e37a05dacc33dd"
|
resolved "https://registry.yarnpkg.com/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz#553a7b8446ff6f684359c445f1e37a05dacc33dd"
|
||||||
integrity sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==
|
integrity sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==
|
||||||
|
|
||||||
|
filesize@^8.0.7:
|
||||||
|
version "8.0.7"
|
||||||
|
resolved "https://registry.yarnpkg.com/filesize/-/filesize-8.0.7.tgz#695e70d80f4e47012c132d57a059e80c6b580bd8"
|
||||||
|
integrity sha512-pjmC+bkIF8XI7fWaH8KxHcZL3DPybs1roSKP4rKDvy20tAWwIObE4+JIseG2byfGKhud5ZnM4YSGKBz7Sh0ndQ==
|
||||||
|
|
||||||
fill-range@^7.0.1:
|
fill-range@^7.0.1:
|
||||||
version "7.0.1"
|
version "7.0.1"
|
||||||
resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40"
|
resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40"
|
||||||
@@ -2833,6 +2838,13 @@ isexe@^2.0.0:
|
|||||||
resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
|
resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
|
||||||
integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=
|
integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=
|
||||||
|
|
||||||
|
javascript-time-ago@^2.3.11:
|
||||||
|
version "2.3.11"
|
||||||
|
resolved "https://registry.yarnpkg.com/javascript-time-ago/-/javascript-time-ago-2.3.11.tgz#b488ae765b7f42ff003f3830977a92411ef1fe92"
|
||||||
|
integrity sha512-R6Ux0IGv7RmAZ7vB04r/gevGaLDJeZY7+6jTYyYsPAF5x4PSv6up+dW2hLK99+OUY8xwdeXPItZFiUppIRUaoQ==
|
||||||
|
dependencies:
|
||||||
|
relative-time-format "^1.0.6"
|
||||||
|
|
||||||
jest-worker@27.0.0-next.5:
|
jest-worker@27.0.0-next.5:
|
||||||
version "27.0.0-next.5"
|
version "27.0.0-next.5"
|
||||||
resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-27.0.0-next.5.tgz#5985ee29b12a4e191f4aae4bb73b97971d86ec28"
|
resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-27.0.0-next.5.tgz#5985ee29b12a4e191f4aae4bb73b97971d86ec28"
|
||||||
@@ -3608,6 +3620,11 @@ pbkdf2@^3.0.3, pbkdf2@^3.0.9:
|
|||||||
safe-buffer "^5.0.1"
|
safe-buffer "^5.0.1"
|
||||||
sha.js "^2.4.8"
|
sha.js "^2.4.8"
|
||||||
|
|
||||||
|
performance-now@^2.1.0:
|
||||||
|
version "2.1.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b"
|
||||||
|
integrity sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=
|
||||||
|
|
||||||
phosphor-react@^1.3.1:
|
phosphor-react@^1.3.1:
|
||||||
version "1.3.1"
|
version "1.3.1"
|
||||||
resolved "https://registry.yarnpkg.com/phosphor-react/-/phosphor-react-1.3.1.tgz#96e33f44370d83cda15b60cccc17087ad0060684"
|
resolved "https://registry.yarnpkg.com/phosphor-react/-/phosphor-react-1.3.1.tgz#96e33f44370d83cda15b60cccc17087ad0060684"
|
||||||
@@ -3754,6 +3771,13 @@ queue@6.0.2:
|
|||||||
dependencies:
|
dependencies:
|
||||||
inherits "~2.0.3"
|
inherits "~2.0.3"
|
||||||
|
|
||||||
|
raf@^3.4.1:
|
||||||
|
version "3.4.1"
|
||||||
|
resolved "https://registry.yarnpkg.com/raf/-/raf-3.4.1.tgz#0742e99a4a6552f445d73e3ee0328af0ff1ede39"
|
||||||
|
integrity sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==
|
||||||
|
dependencies:
|
||||||
|
performance-now "^2.1.0"
|
||||||
|
|
||||||
randombytes@^2.0.0, randombytes@^2.0.1, randombytes@^2.0.5:
|
randombytes@^2.0.0, randombytes@^2.0.1, randombytes@^2.0.5:
|
||||||
version "2.1.0"
|
version "2.1.0"
|
||||||
resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a"
|
resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a"
|
||||||
@@ -3889,6 +3913,15 @@ react-style-singleton@^2.1.0:
|
|||||||
invariant "^2.2.4"
|
invariant "^2.2.4"
|
||||||
tslib "^1.0.0"
|
tslib "^1.0.0"
|
||||||
|
|
||||||
|
react-time-ago@^7.1.9:
|
||||||
|
version "7.1.9"
|
||||||
|
resolved "https://registry.yarnpkg.com/react-time-ago/-/react-time-ago-7.1.9.tgz#df3999f1184b71ab09aaf1d05dda2a19b76e0bb8"
|
||||||
|
integrity sha512-jN4EsEgqm3a5eLJV0ZrRpom3iG+w4bullS2NHc2htIucGUIr2FbgHXjU0wIkuN9uWM87aFvIfkUDpS/ju7Mazg==
|
||||||
|
dependencies:
|
||||||
|
memoize-one "^6.0.0"
|
||||||
|
prop-types "^15.7.2"
|
||||||
|
raf "^3.4.1"
|
||||||
|
|
||||||
react-transition-group@^4.3.0:
|
react-transition-group@^4.3.0:
|
||||||
version "4.4.2"
|
version "4.4.2"
|
||||||
resolved "https://registry.yarnpkg.com/react-transition-group/-/react-transition-group-4.4.2.tgz#8b59a56f09ced7b55cbd53c36768b922890d5470"
|
resolved "https://registry.yarnpkg.com/react-transition-group/-/react-transition-group-4.4.2.tgz#8b59a56f09ced7b55cbd53c36768b922890d5470"
|
||||||
@@ -3969,6 +4002,11 @@ regexpp@^3.1.0:
|
|||||||
resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.2.0.tgz#0425a2768d8f23bad70ca4b90461fa2f1213e1b2"
|
resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.2.0.tgz#0425a2768d8f23bad70ca4b90461fa2f1213e1b2"
|
||||||
integrity sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==
|
integrity sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==
|
||||||
|
|
||||||
|
relative-time-format@^1.0.6:
|
||||||
|
version "1.0.6"
|
||||||
|
resolved "https://registry.yarnpkg.com/relative-time-format/-/relative-time-format-1.0.6.tgz#4956f6aa161f63cbab8a7f2d8b2e92d7b6a888a3"
|
||||||
|
integrity sha512-voemOJLxlKun4P1fAo4PEg2WXNGjhqfE/G8Xen4gcy24Hyu/djn5bT5axmhx4MnjynoZ8f0HCOjk3RZpsY6X/g==
|
||||||
|
|
||||||
require-from-string@^2.0.2:
|
require-from-string@^2.0.2:
|
||||||
version "2.0.2"
|
version "2.0.2"
|
||||||
resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909"
|
resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909"
|
||||||
|
|||||||