Compare commits
108 Commits
feature/wo
...
fix/do-not
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3e7c7b1969 | ||
|
|
0c6c60ed29 | ||
|
|
5490e7205a | ||
|
|
052a1e5b60 | ||
|
|
ddb043c104 | ||
|
|
d2ad6537d7 | ||
|
|
8f004ee4da | ||
|
|
b90bf67c20 | ||
|
|
746112e637 | ||
|
|
13bfd42093 | ||
|
|
c1f7d7d51c | ||
|
|
38a097a8f9 | ||
|
|
db0ffe999e | ||
|
|
6d88c4e546 | ||
|
|
e11ddaffb0 | ||
|
|
2e88f568b8 | ||
|
|
237d504f17 | ||
|
|
197fc09e1d | ||
|
|
2c74a93aee | ||
|
|
5209644780 | ||
|
|
ed37427da8 | ||
|
|
daee9de96c | ||
|
|
e4b10d12c2 | ||
|
|
64eabb4502 | ||
|
|
12a24d3d86 | ||
|
|
ce91182c7b | ||
|
|
2e3a0e557e | ||
|
|
395e02343b | ||
|
|
3682dd4946 | ||
|
|
3070ed706e | ||
|
|
4b73687779 | ||
|
|
6b9a9ef978 | ||
|
|
bc5bb5be39 | ||
|
|
0fe83811b9 | ||
|
|
c6359aa853 | ||
|
|
c9c818c8f3 | ||
|
|
c521246393 | ||
|
|
8936b34361 | ||
|
|
5993d2762f | ||
|
|
0a44b5b5d1 | ||
|
|
810d3b2524 | ||
|
|
a3393ded1e | ||
|
|
17ede265b1 | ||
|
|
629070edad | ||
|
|
cc83924c27 | ||
|
|
e3e964f72a | ||
|
|
0def1d30a6 | ||
|
|
bdb2c0cf8f | ||
|
|
3e8dbc9793 | ||
|
|
d735cd3833 | ||
|
|
eddf228283 | ||
|
|
f9d617efdc | ||
|
|
43796021da | ||
|
|
241c21782d | ||
|
|
1a3f5d144c | ||
|
|
66fb68d52e | ||
|
|
aaeb32a576 | ||
|
|
78b5dcceb6 | ||
|
|
ce81c11c29 | ||
|
|
3a98b95e3d | ||
|
|
8bc36655e2 | ||
|
|
b6ab536a60 | ||
|
|
37a3d2b207 | ||
|
|
cd0c5f8a0d | ||
|
|
8dde89fa9a | ||
|
|
ca3d60cfb8 | ||
|
|
1a4d53cfbc | ||
|
|
94e126782b | ||
|
|
cc03c64f0a | ||
|
|
3647aa6274 | ||
|
|
a2a58f0ba9 | ||
|
|
c544a03be4 | ||
|
|
9a09da88ec | ||
|
|
5850551906 | ||
|
|
e35e520d24 | ||
|
|
8077fc5865 | ||
|
|
bff01b4a9f | ||
|
|
de5380d6f3 | ||
|
|
eda2a9596a | ||
|
|
195d33b1db | ||
|
|
4f042ef3b7 | ||
|
|
17c67822a9 | ||
|
|
e6f613ae0b | ||
|
|
9b822cfda4 | ||
|
|
b5b918d877 | ||
|
|
739918647d | ||
|
|
1f334d6253 | ||
|
|
0f15a85c45 | ||
|
|
0c4330e329 | ||
|
|
a9676288ea | ||
|
|
7354474c70 | ||
|
|
ce5b307a8b | ||
|
|
b28bcfdd0a | ||
|
|
7f06876e3e | ||
|
|
fd479d8671 | ||
|
|
938b567256 | ||
|
|
779f5aab0a | ||
|
|
02194d8a98 | ||
|
|
5677fe34dc | ||
|
|
895da89325 | ||
|
|
b138cc8d5b | ||
|
|
027b2c8ed4 | ||
|
|
d85cc71817 | ||
|
|
bac3522078 | ||
|
|
b2c6aa7871 | ||
|
|
b4ca360661 | ||
|
|
ad947be0bc | ||
|
|
f739d4da34 |
1
.prettierignore
Normal file
@@ -0,0 +1 @@
|
|||||||
|
*.md
|
||||||
75
README.md
@@ -26,6 +26,75 @@ You can start editing the page by modifying `pages/index.tsx`. The page auto-upd
|
|||||||
|
|
||||||
The `pages/api` directory is mapped to `/api/*`. Files in this directory are treated as [API routes](https://nextjs.org/docs/api-routes/introduction) instead of React pages.
|
The `pages/api` directory is mapped to `/api/*`. Files in this directory are treated as [API routes](https://nextjs.org/docs/api-routes/introduction) instead of React pages.
|
||||||
|
|
||||||
|
## Github Login
|
||||||
|
|
||||||
|
If you want to use your Github app to provide login, here's the guide to do that.
|
||||||
|
|
||||||
|
- First go to https://github.com/settings/profile -> Developer Settings -> OAuth Apps
|
||||||
|
- Click "New OAuth App" button
|
||||||
|
- Give application some name eg. Xrpl Hooks Development
|
||||||
|
- Give some homepage url eg. localhost:3000
|
||||||
|
- Give some optional description (these values will show up on the popup when you login)
|
||||||
|
- Authorization callback URL should be http://localhost:3000/api/auth/callback (if you're creating the app for local development)
|
||||||
|
- Click register application
|
||||||
|
- Then a page should open up where you can get client id and client secret values. Copy paste those to .env.local to use them:
|
||||||
|
|
||||||
|
```
|
||||||
|
GITHUB_SECRET="client-secret-here"
|
||||||
|
GITHUB_ID="client-id-here"
|
||||||
|
```
|
||||||
|
|
||||||
|
Login should now work through your own Github OAuth app.
|
||||||
|
|
||||||
|
## Styling and Theming
|
||||||
|
|
||||||
|
This project uses Stitches (https://stitches.dev) for theming and styling the components. You should be quite familiar with the API if you have used for example styled-components earlier. Stitches should provide better performance, near zero runtime.
|
||||||
|
|
||||||
|
For components we try to use Radix-UI (https://www.radix-ui.com/) as much as possible. It may not provide all the necessary components so you're free to use other components/libraries if those makes sense. For colors we're using Radix-UI Colors (https://radix-ui.com/colors).
|
||||||
|
|
||||||
|
Theme file can be found under `./stitches.config.ts` file. When you're creating new components remeber to import `styled` from that file and not `@stitches` directly. That way it will provide the correct theme for you automatically.
|
||||||
|
|
||||||
|
Example:
|
||||||
|
|
||||||
|
```tsx
|
||||||
|
// Use our stitches.config instead of @stitches/react
|
||||||
|
import { styled } from "../stitches.config";
|
||||||
|
|
||||||
|
const Box = styled("div", {
|
||||||
|
boxSizing: "border-box",
|
||||||
|
});
|
||||||
|
|
||||||
|
export default Box;
|
||||||
|
```
|
||||||
|
|
||||||
|
Custom components can be found from `./components` folder.
|
||||||
|
|
||||||
|
## Monaco Editor
|
||||||
|
|
||||||
|
Project is relying on Monaco editor heavily. Instead of using Monaco editor directly we're using `@monaco-editor/react` which provides little helpers to use Monaco editor.
|
||||||
|
|
||||||
|
On the Develop page we're using following loader for Monaco editor:
|
||||||
|
|
||||||
|
```js
|
||||||
|
loader.config({
|
||||||
|
paths: {
|
||||||
|
vs: "https://cdn.jsdelivr.net/npm/monaco-editor@0.30.1/min/vs",
|
||||||
|
},
|
||||||
|
});
|
||||||
|
```
|
||||||
|
|
||||||
|
By default `@monaco-editor/react` was using 0.29.? version of Monaco editor. @codingame/monaco-languageclient library (connects to clangd language server) was using API methods that were introduced in Monaco Editor 0.30 so that's why we're loading certain version of it.
|
||||||
|
|
||||||
|
Monaco Languageclient related stuff is found from `./utils/languageClient.ts`. Basically we're connecting the editor to clangd language server which lives on separate backend. That project can be found from https://github.com/eqlabs/xrpl-hooks-compiler/. If you need access to that project ask permissions from @vbar (Vaclav Barta) on GitHub.
|
||||||
|
|
||||||
|
## Global state management
|
||||||
|
|
||||||
|
Global state management is handled with library called Valtio (https://github.com/pmndrs/valtio). Initial state can be found from `./state/index.ts` file. All the actions which updates the state is found under `./state/actions/` folder.
|
||||||
|
|
||||||
|
## Special notes
|
||||||
|
|
||||||
|
Since we are dealing with greenfield tech and one of the dependencies (ripple-binary-codec) doesn't yet support signing `SetHook` transactions we had to monkey patch the library with patch-package (https://www.npmjs.com/package/patch-package). We modified the definitions.json file of the ripple-binary-codec library and then ran `yarn patch-package ripple-binary-codec` which created `patches/ripple-binary-codec+1.2.0.patch` file to this project. This file contains the modifications to `ripple-binary-codec` library. package.json contains postinstall hook which runs patch-package, and it will add the patch on the file mentioned earlier. This happens automatically after running patch package.
|
||||||
|
|
||||||
## Learn More
|
## Learn More
|
||||||
|
|
||||||
To learn more about Next.js, take a look at the following resources:
|
To learn more about Next.js, take a look at the following resources:
|
||||||
@@ -34,9 +103,3 @@ To learn more about Next.js, take a look at the following resources:
|
|||||||
- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.
|
- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.
|
||||||
|
|
||||||
You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome!
|
You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome!
|
||||||
|
|
||||||
## Deploy on Vercel
|
|
||||||
|
|
||||||
The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js.
|
|
||||||
|
|
||||||
Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details.
|
|
||||||
|
|||||||
@@ -1,18 +1,14 @@
|
|||||||
import toast from "react-hot-toast";
|
import toast from "react-hot-toast";
|
||||||
import { useSnapshot } from "valtio";
|
import { useSnapshot } from "valtio";
|
||||||
import { ArrowSquareOut, Copy, Wallet, X } from "phosphor-react";
|
import { ArrowSquareOut, Copy, Wallet, X } from "phosphor-react";
|
||||||
import React, { useEffect, useState } from "react";
|
import React, { useEffect, useState, FC } from "react";
|
||||||
import Dinero from "dinero.js";
|
import Dinero from "dinero.js";
|
||||||
|
|
||||||
import Button from "./Button";
|
import Button from "./Button";
|
||||||
import { addFaucetAccount, deployHook, importAccount } from "../state/actions";
|
import { addFaucetAccount, deployHook, importAccount } from "../state/actions";
|
||||||
import state from "../state";
|
import state from "../state";
|
||||||
import Box from "./Box";
|
import Box from "./Box";
|
||||||
import Container from "./Container";
|
import { Container, Heading, Stack, Text, Flex } from ".";
|
||||||
import Heading from "./Heading";
|
|
||||||
import Stack from "./Stack";
|
|
||||||
import Text from "./Text";
|
|
||||||
import Flex from "./Flex";
|
|
||||||
import {
|
import {
|
||||||
Dialog,
|
Dialog,
|
||||||
DialogContent,
|
DialogContent,
|
||||||
@@ -31,7 +27,7 @@ const labelStyle = css({
|
|||||||
mb: "$0.5",
|
mb: "$0.5",
|
||||||
});
|
});
|
||||||
|
|
||||||
const AccountDialog = ({
|
export const AccountDialog = ({
|
||||||
activeAccountAddress,
|
activeAccountAddress,
|
||||||
setActiveAccountAddress,
|
setActiveAccountAddress,
|
||||||
}: {
|
}: {
|
||||||
@@ -190,7 +186,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>
|
||||||
@@ -205,15 +201,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>
|
||||||
@@ -229,7 +217,13 @@ const AccountDialog = ({
|
|||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
const Accounts = () => {
|
interface AccountProps {
|
||||||
|
card?: boolean;
|
||||||
|
hideDeployBtn?: boolean;
|
||||||
|
showHookStats?: boolean;
|
||||||
|
}
|
||||||
|
|
||||||
|
const Accounts: FC<AccountProps> = (props) => {
|
||||||
const snap = useSnapshot(state);
|
const snap = useSnapshot(state);
|
||||||
const [activeAccountAddress, setActiveAccountAddress] = useState<
|
const [activeAccountAddress, setActiveAccountAddress] = useState<
|
||||||
string | null
|
string | null
|
||||||
@@ -299,16 +293,21 @@ const Accounts = () => {
|
|||||||
as="div"
|
as="div"
|
||||||
css={{
|
css={{
|
||||||
display: "flex",
|
display: "flex",
|
||||||
borderTop: "1px solid $mauve6",
|
backgroundColor: props.card ? "$deep" : "$mauve1",
|
||||||
background: "$mauve1",
|
|
||||||
position: "relative",
|
position: "relative",
|
||||||
width: "50%",
|
flex: "1",
|
||||||
flexShrink: 0,
|
height: "100%",
|
||||||
borderRight: "1px solid $mauve6",
|
border: "1px solid $mauve6",
|
||||||
|
borderRadius: props.card ? "$md" : undefined,
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<Container css={{ px: 0, flexShrink: 1 }}>
|
<Container css={{ p: 0, flexShrink: 1, height: "100%" }}>
|
||||||
<Flex css={{ py: "$3" }}>
|
<Flex
|
||||||
|
css={{
|
||||||
|
py: "$3",
|
||||||
|
borderBottom: props.card ? "1px solid $mauve6" : undefined,
|
||||||
|
}}
|
||||||
|
>
|
||||||
<Heading
|
<Heading
|
||||||
as="h3"
|
as="h3"
|
||||||
css={{
|
css={{
|
||||||
@@ -326,79 +325,108 @@ const Accounts = () => {
|
|||||||
<Wallet size="15px" /> <Text css={{ lineHeight: 1 }}>Accounts</Text>
|
<Wallet size="15px" /> <Text css={{ lineHeight: 1 }}>Accounts</Text>
|
||||||
</Heading>
|
</Heading>
|
||||||
<Flex css={{ ml: "auto", gap: "$3", marginRight: "$3" }}>
|
<Flex css={{ ml: "auto", gap: "$3", marginRight: "$3" }}>
|
||||||
<Button ghost size="xs" onClick={() => addFaucetAccount(true)}>
|
<Button ghost size="sm" onClick={() => addFaucetAccount(true)}>
|
||||||
Create
|
Create
|
||||||
</Button>
|
</Button>
|
||||||
<ImportAccountDialog />
|
<ImportAccountDialog />
|
||||||
</Flex>
|
</Flex>
|
||||||
</Flex>
|
</Flex>
|
||||||
<Box
|
<Stack
|
||||||
as="div"
|
|
||||||
css={{
|
css={{
|
||||||
display: "flex",
|
|
||||||
flexDirection: "column",
|
flexDirection: "column",
|
||||||
width: "100%",
|
width: "100%",
|
||||||
height: "160px",
|
|
||||||
fontSize: "13px",
|
fontSize: "13px",
|
||||||
|
wordWrap: "break-word",
|
||||||
fontWeight: "$body",
|
fontWeight: "$body",
|
||||||
fontFamily: "$monospace",
|
fontFamily: "$monospace",
|
||||||
|
gap: 0,
|
||||||
|
height: "calc(100% - 52px)",
|
||||||
|
flexWrap: "nowrap",
|
||||||
overflowY: "auto",
|
overflowY: "auto",
|
||||||
wordWrap: "break-word",
|
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<Stack css={{ flexDirection: "column", gap: 0 }}>
|
{snap.accounts.map((account) => (
|
||||||
{snap.accounts.map((account) => (
|
<Flex
|
||||||
<Flex
|
column
|
||||||
key={account.address + account.name}
|
key={account.address + account.name}
|
||||||
onClick={() => setActiveAccountAddress(account.address)}
|
onClick={() => setActiveAccountAddress(account.address)}
|
||||||
css={{
|
css={{
|
||||||
gap: "$3",
|
px: "$3",
|
||||||
p: "$2 $3",
|
py: props.card ? "$3" : "$2",
|
||||||
justifyContent: "center",
|
cursor: "pointer",
|
||||||
cursor: "pointer",
|
borderBottom: props.card ? "1px solid $mauve6" : undefined,
|
||||||
"@hover": {
|
"@hover": {
|
||||||
"&:hover": {
|
"&:hover": {
|
||||||
background: "$mauve3",
|
background: "$backgroundAlt",
|
||||||
},
|
|
||||||
},
|
},
|
||||||
|
},
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<Flex
|
||||||
|
row
|
||||||
|
css={{
|
||||||
|
justifyContent: "space-between",
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<Text>{account.name} </Text>
|
<Box>
|
||||||
<Text css={{ color: "$mauve9" }}>
|
<Text>{account.name} </Text>
|
||||||
{account.address} (
|
<Text
|
||||||
{Dinero({
|
css={{
|
||||||
amount: Number(account?.xrp || "0"),
|
color: "$textMuted",
|
||||||
precision: 6,
|
wordBreak: "break-word",
|
||||||
})
|
}}
|
||||||
.toUnit()
|
>
|
||||||
.toLocaleString(undefined, {
|
{account.address} (
|
||||||
style: "currency",
|
{Dinero({
|
||||||
currency: "XRP",
|
amount: Number(account?.xrp || "0"),
|
||||||
currencyDisplay: "name",
|
precision: 6,
|
||||||
})}
|
})
|
||||||
)
|
.toUnit()
|
||||||
</Text>
|
.toLocaleString(undefined, {
|
||||||
<Button
|
style: "currency",
|
||||||
css={{ ml: "auto" }}
|
currency: "XRP",
|
||||||
size="xs"
|
currencyDisplay: "name",
|
||||||
uppercase
|
})}
|
||||||
isLoading={account.isLoading}
|
)
|
||||||
disabled={
|
</Text>
|
||||||
account.isLoading ||
|
</Box>
|
||||||
!snap.files.filter((file) => file.compiledWatContent).length
|
{!props.hideDeployBtn && (
|
||||||
}
|
<div
|
||||||
variant="secondary"
|
onClick={(e) => {
|
||||||
onClick={(e) => {
|
e.preventDefault();
|
||||||
e.stopPropagation();
|
e.stopPropagation();
|
||||||
deployHook(account);
|
}}
|
||||||
}}
|
>
|
||||||
>
|
<Button
|
||||||
Deploy
|
css={{ ml: "auto" }}
|
||||||
</Button>
|
size="xs"
|
||||||
|
uppercase
|
||||||
|
isLoading={account.isLoading}
|
||||||
|
disabled={
|
||||||
|
account.isLoading ||
|
||||||
|
!snap.files.filter((file) => file.compiledWatContent)
|
||||||
|
.length
|
||||||
|
}
|
||||||
|
variant="secondary"
|
||||||
|
onClick={(e) => {
|
||||||
|
e.stopPropagation();
|
||||||
|
deployHook(account);
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
Deploy
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
</Flex>
|
</Flex>
|
||||||
))}
|
{props.showHookStats && (
|
||||||
</Stack>
|
<Text muted small css={{ mt: "$2" }}>
|
||||||
</Box>
|
{account.hooks.length} hook
|
||||||
|
{account.hooks.length === 1 ? "" : "s"} installed
|
||||||
|
</Text>
|
||||||
|
)}
|
||||||
|
</Flex>
|
||||||
|
))}
|
||||||
|
</Stack>
|
||||||
</Container>
|
</Container>
|
||||||
<AccountDialog
|
<AccountDialog
|
||||||
activeAccountAddress={activeAccountAddress}
|
activeAccountAddress={activeAccountAddress}
|
||||||
@@ -413,7 +441,7 @@ const ImportAccountDialog = () => {
|
|||||||
return (
|
return (
|
||||||
<Dialog>
|
<Dialog>
|
||||||
<DialogTrigger asChild>
|
<DialogTrigger asChild>
|
||||||
<Button ghost size="xs">
|
<Button ghost size="sm">
|
||||||
Import
|
Import
|
||||||
</Button>
|
</Button>
|
||||||
</DialogTrigger>
|
</DialogTrigger>
|
||||||
|
|||||||
@@ -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";
|
||||||
|
|
||||||
|
|||||||
138
components/DebugStream.tsx
Normal file
@@ -0,0 +1,138 @@
|
|||||||
|
import { useCallback, useEffect } from "react";
|
||||||
|
import { proxy, ref, useSnapshot } from "valtio";
|
||||||
|
import { Select } from ".";
|
||||||
|
import state, { ILog } from "../state";
|
||||||
|
import { extractJSON } from "../utils/json";
|
||||||
|
import LogBox from "./LogBox";
|
||||||
|
|
||||||
|
interface ISelect<T = string> {
|
||||||
|
label: string;
|
||||||
|
value: T;
|
||||||
|
}
|
||||||
|
|
||||||
|
const streamState = proxy({
|
||||||
|
selectedAccount: null as ISelect | null,
|
||||||
|
logs: [] as ILog[],
|
||||||
|
socket: undefined as WebSocket | undefined,
|
||||||
|
});
|
||||||
|
|
||||||
|
const DebugStream = () => {
|
||||||
|
const { selectedAccount, logs, socket } = useSnapshot(streamState);
|
||||||
|
const { accounts } = useSnapshot(state);
|
||||||
|
|
||||||
|
const accountOptions = accounts.map(acc => ({
|
||||||
|
label: acc.name,
|
||||||
|
value: acc.address,
|
||||||
|
}));
|
||||||
|
|
||||||
|
const renderNav = () => (
|
||||||
|
<>
|
||||||
|
<Select
|
||||||
|
instanceId="DSAccount"
|
||||||
|
placeholder="Select account"
|
||||||
|
options={accountOptions}
|
||||||
|
hideSelectedOptions
|
||||||
|
value={selectedAccount}
|
||||||
|
onChange={acc => (streamState.selectedAccount = acc as any)}
|
||||||
|
css={{ width: "100%" }}
|
||||||
|
/>
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
|
||||||
|
const prepareLog = useCallback((str: any): ILog => {
|
||||||
|
if (typeof str !== "string") throw Error("Unrecognized debug log stream!");
|
||||||
|
|
||||||
|
const match = str.match(/([\s\S]+(?:UTC|ISO|GMT[+|-]\d+))\ ?([\s\S]*)/m);
|
||||||
|
const [_, tm, msg] = match || [];
|
||||||
|
|
||||||
|
const extracted = extractJSON(msg);
|
||||||
|
const timestamp = isNaN(Date.parse(tm || ""))
|
||||||
|
? tm
|
||||||
|
: new Date(tm).toLocaleTimeString();
|
||||||
|
|
||||||
|
const message = !extracted
|
||||||
|
? msg
|
||||||
|
: msg.slice(0, extracted.start) + msg.slice(extracted.end + 1);
|
||||||
|
|
||||||
|
const jsonData = extracted
|
||||||
|
? JSON.stringify(extracted.result, null, 2)
|
||||||
|
: undefined;
|
||||||
|
|
||||||
|
return {
|
||||||
|
type: "log",
|
||||||
|
message,
|
||||||
|
timestamp,
|
||||||
|
jsonData,
|
||||||
|
defaultCollapsed: true,
|
||||||
|
};
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
const account = selectedAccount?.value;
|
||||||
|
if (account && (!socket || !socket.url.endsWith(account))) {
|
||||||
|
socket?.close();
|
||||||
|
streamState.socket = ref(
|
||||||
|
new WebSocket(
|
||||||
|
`wss://hooks-testnet-debugstream.xrpl-labs.com/${account}`
|
||||||
|
)
|
||||||
|
);
|
||||||
|
} else if (!account && socket) {
|
||||||
|
socket.close();
|
||||||
|
streamState.socket = undefined;
|
||||||
|
}
|
||||||
|
}, [selectedAccount?.value, socket]);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
const account = selectedAccount?.value;
|
||||||
|
const socket = streamState.socket;
|
||||||
|
if (!socket) return;
|
||||||
|
|
||||||
|
const onOpen = () => {
|
||||||
|
streamState.logs = [];
|
||||||
|
streamState.logs.push({
|
||||||
|
type: "success",
|
||||||
|
message: `Debug stream opened for account ${account}`,
|
||||||
|
});
|
||||||
|
};
|
||||||
|
const onError = () => {
|
||||||
|
streamState.logs.push({
|
||||||
|
type: "error",
|
||||||
|
message: "Something went wrong! Check your connection and try again.",
|
||||||
|
});
|
||||||
|
};
|
||||||
|
const onClose = (e: CloseEvent) => {
|
||||||
|
streamState.logs.push({
|
||||||
|
type: "error",
|
||||||
|
message: `Connection was closed. [code: ${e.code}]`,
|
||||||
|
});
|
||||||
|
streamState.selectedAccount = null;
|
||||||
|
};
|
||||||
|
const onMessage = (event: any) => {
|
||||||
|
if (!event.data) return;
|
||||||
|
streamState.logs.push(prepareLog(event.data));
|
||||||
|
};
|
||||||
|
|
||||||
|
socket.addEventListener("open", onOpen);
|
||||||
|
socket.addEventListener("close", onClose);
|
||||||
|
socket.addEventListener("error", onError);
|
||||||
|
socket.addEventListener("message", onMessage);
|
||||||
|
|
||||||
|
return () => {
|
||||||
|
socket.removeEventListener("open", onOpen);
|
||||||
|
socket.removeEventListener("close", onClose);
|
||||||
|
socket.removeEventListener("message", onMessage);
|
||||||
|
socket.removeEventListener("error", onError);
|
||||||
|
};
|
||||||
|
}, [prepareLog, selectedAccount?.value, socket]);
|
||||||
|
return (
|
||||||
|
<LogBox
|
||||||
|
enhanced
|
||||||
|
renderNav={renderNav}
|
||||||
|
title="Debug stream"
|
||||||
|
logs={logs}
|
||||||
|
clearLog={() => (streamState.logs = [])}
|
||||||
|
/>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export default DebugStream;
|
||||||
@@ -1,20 +1,22 @@
|
|||||||
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";
|
||||||
import dark from "../theme/editor/amy.json";
|
import dark from "../theme/editor/amy.json";
|
||||||
import light from "../theme/editor/xcode_default.json";
|
import light from "../theme/editor/xcode_default.json";
|
||||||
import state from "../state";
|
import state from "../state";
|
||||||
|
import wat from "../utils/wat-highlight";
|
||||||
|
|
||||||
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 +24,72 @@ 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 +97,53 @@ 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={"wat"}
|
||||||
}
|
language={"wat"}
|
||||||
}}
|
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({
|
monaco.languages.register({ id: "wat" });
|
||||||
glyphMargin: true,
|
monaco.languages.setLanguageConfiguration("wat", wat.config);
|
||||||
readOnly: true,
|
monaco.languages.setMonarchTokensProvider("wat", wat.tokens);
|
||||||
});
|
if (!state.editorCtx) {
|
||||||
}}
|
state.editorCtx = ref(monaco.editor);
|
||||||
theme={theme === "dark" ? "dark" : "light"}
|
// @ts-expect-error
|
||||||
/>
|
monaco.editor.defineTheme("dark", dark);
|
||||||
) : (
|
// @ts-expect-error
|
||||||
<Container
|
monaco.editor.defineTheme("light", light);
|
||||||
css={{
|
}
|
||||||
display: "flex",
|
}}
|
||||||
flex: 1,
|
onMount={(editor, monaco) => {
|
||||||
justifyContent: "center",
|
editorRef.current = editor;
|
||||||
alignItems: "center",
|
editor.updateOptions({
|
||||||
}}
|
glyphMargin: true,
|
||||||
>
|
readOnly: true,
|
||||||
{!snap.loading && router.isReady && (
|
});
|
||||||
<Text
|
}}
|
||||||
css={{
|
theme={theme === "dark" ? "dark" : "light"}
|
||||||
mt: "-60px",
|
/>
|
||||||
fontSize: "14px",
|
)}
|
||||||
fontFamily: "$monospace",
|
</Container>
|
||||||
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";
|
||||||
@@ -54,10 +59,8 @@ import {
|
|||||||
} from "./AlertDialog";
|
} from "./AlertDialog";
|
||||||
import { styled } from "../stitches.config";
|
import { styled } from "../stitches.config";
|
||||||
|
|
||||||
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,25 +88,39 @@ const EditorNavigation = ({ showWat }: { showWat?: boolean }) => {
|
|||||||
|
|
||||||
const validateFilename = useCallback(
|
const validateFilename = useCallback(
|
||||||
(filename: string): { error: string | null } => {
|
(filename: string): { error: string | null } => {
|
||||||
if (snap.files.find(file => file.name === filename)) {
|
// check if filename already exists
|
||||||
|
if (!filename) {
|
||||||
|
return { error: "You need to add filename" };
|
||||||
|
}
|
||||||
|
if (snap.files.find((file) => file.name === filename)) {
|
||||||
return { error: "Filename already exists." };
|
return { error: "Filename already exists." };
|
||||||
}
|
}
|
||||||
// More checks in future
|
|
||||||
|
if (!filename.includes(".") || filename[filename.length - 1] === ".") {
|
||||||
|
return { error: "Filename should include file extension" };
|
||||||
|
}
|
||||||
|
|
||||||
|
// check for illegal characters
|
||||||
|
const ALPHA_NUMERICAL_REGEX = /^[A-Za-z0-9_-]+[.][A-Za-z0-9]{1,4}$/g;
|
||||||
|
if (!filename.match(ALPHA_NUMERICAL_REGEX)) {
|
||||||
|
return {
|
||||||
|
error: `Filename can contain only characters from a-z, A-Z, 0-9, "_" and "-" and it needs to have file extension (e.g. ".c")`,
|
||||||
|
};
|
||||||
|
}
|
||||||
return { error: null };
|
return { error: null };
|
||||||
},
|
},
|
||||||
[snap.files]
|
[snap.files]
|
||||||
);
|
);
|
||||||
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;
|
const chk = validateFilename(filename);
|
||||||
const chk = validateFilename(_filename);
|
if (chk && chk.error) {
|
||||||
if (chk.error) {
|
|
||||||
setNewfileError(`Error: ${chk.error}`);
|
setNewfileError(`Error: ${chk.error}`);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
setIsNewfileDialogOpen(false);
|
setIsNewfileDialogOpen(false);
|
||||||
createNewFile(_filename);
|
createNewFile(filename);
|
||||||
setFilename("");
|
setFilename("");
|
||||||
}, [filename, setIsNewfileDialogOpen, setFilename, validateFilename]);
|
}, [filename, setIsNewfileDialogOpen, setFilename, validateFilename]);
|
||||||
|
|
||||||
@@ -139,7 +156,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 +193,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 +204,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 +224,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 +244,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 +262,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 +301,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 +323,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 +367,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 +381,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 +413,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 +431,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 +459,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 +507,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 +518,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>
|
||||||
|
|||||||
@@ -3,6 +3,51 @@ import Box from "./Box";
|
|||||||
|
|
||||||
const Flex = styled(Box, {
|
const Flex = styled(Box, {
|
||||||
display: "flex",
|
display: "flex",
|
||||||
|
variants: {
|
||||||
|
row: {
|
||||||
|
true: {
|
||||||
|
flexDirection: "row",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
column: {
|
||||||
|
true: {
|
||||||
|
flexDirection: "column",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
fluid: {
|
||||||
|
true: {
|
||||||
|
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",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
export default Flex;
|
export default Flex;
|
||||||
|
|||||||
@@ -5,12 +5,14 @@ import type monaco from "monaco-editor";
|
|||||||
import { ArrowBendLeftUp } from "phosphor-react";
|
import { ArrowBendLeftUp } from "phosphor-react";
|
||||||
import { useTheme } from "next-themes";
|
import { useTheme } from "next-themes";
|
||||||
import { useRouter } from "next/router";
|
import { useRouter } from "next/router";
|
||||||
|
import uniqBy from "lodash.uniqby";
|
||||||
|
|
||||||
import Box from "./Box";
|
import Box from "./Box";
|
||||||
import Container from "./Container";
|
import Container from "./Container";
|
||||||
import dark from "../theme/editor/amy.json";
|
import dark from "../theme/editor/amy.json";
|
||||||
import light from "../theme/editor/xcode_default.json";
|
import light from "../theme/editor/xcode_default.json";
|
||||||
import { saveFile } from "../state/actions";
|
import { saveFile } from "../state/actions";
|
||||||
|
import { apiHeaderFiles } from "../state/constants";
|
||||||
import state from "../state";
|
import state from "../state";
|
||||||
|
|
||||||
import EditorNavigation from "./EditorNavigation";
|
import EditorNavigation from "./EditorNavigation";
|
||||||
@@ -20,23 +22,107 @@ import { createLanguageClient, createWebSocket } from "../utils/languageClient";
|
|||||||
import { listen } from "@codingame/monaco-jsonrpc";
|
import { listen } from "@codingame/monaco-jsonrpc";
|
||||||
import ReconnectingWebSocket from "reconnecting-websocket";
|
import ReconnectingWebSocket from "reconnecting-websocket";
|
||||||
|
|
||||||
|
import docs from "../xrpl-hooks-docs/docs";
|
||||||
|
|
||||||
loader.config({
|
loader.config({
|
||||||
paths: {
|
paths: {
|
||||||
vs: "https://cdn.jsdelivr.net/npm/monaco-editor@0.30.1/min/vs",
|
vs: "https://cdn.jsdelivr.net/npm/monaco-editor@0.30.1/min/vs",
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
|
const validateWritability = (editor: monaco.editor.IStandaloneCodeEditor) => {
|
||||||
|
const currPath = editor.getModel()?.uri.path;
|
||||||
|
if (apiHeaderFiles.find((h) => currPath?.endsWith(h))) {
|
||||||
|
editor.updateOptions({ readOnly: true });
|
||||||
|
} else {
|
||||||
|
editor.updateOptions({ readOnly: false });
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
let decorations: { [key: string]: string[] } = {};
|
||||||
|
|
||||||
|
const setMarkers = (monacoE: typeof monaco) => {
|
||||||
|
// Get all the markers that are active at the moment,
|
||||||
|
// Also if same error is there twice, we can show the content
|
||||||
|
// only once (that's why we're using uniqBy)
|
||||||
|
const markers = uniqBy(
|
||||||
|
monacoE.editor
|
||||||
|
.getModelMarkers({})
|
||||||
|
// Filter out the markers that are hooks specific
|
||||||
|
.filter(
|
||||||
|
(marker) =>
|
||||||
|
typeof marker?.code === "string" &&
|
||||||
|
// Take only markers that starts with "hooks-"
|
||||||
|
marker?.code?.includes("hooks-")
|
||||||
|
),
|
||||||
|
"code"
|
||||||
|
);
|
||||||
|
|
||||||
|
// Get the active model (aka active file you're editing)
|
||||||
|
// const model = monacoE.editor?.getModel(
|
||||||
|
// monacoE.Uri.parse(`file:///work/c/${state.files?.[state.active]?.name}`)
|
||||||
|
// );
|
||||||
|
// console.log(state.active);
|
||||||
|
// Add decoration (aka extra hoverMessages) to markers in the
|
||||||
|
// exact same range (location) where the markers are
|
||||||
|
const models = monacoE.editor.getModels();
|
||||||
|
models.forEach((model) => {
|
||||||
|
decorations[model.id] = model?.deltaDecorations(
|
||||||
|
decorations?.[model.id] || [],
|
||||||
|
markers
|
||||||
|
.filter((marker) =>
|
||||||
|
marker?.resource.path
|
||||||
|
.split("/")
|
||||||
|
.includes(`${state.files?.[state.active]?.name}`)
|
||||||
|
)
|
||||||
|
.map((marker) => ({
|
||||||
|
range: new monacoE.Range(
|
||||||
|
marker.startLineNumber,
|
||||||
|
marker.startColumn,
|
||||||
|
marker.endLineNumber,
|
||||||
|
marker.endColumn
|
||||||
|
),
|
||||||
|
options: {
|
||||||
|
hoverMessage: {
|
||||||
|
value:
|
||||||
|
// Find the related hover message markdown from the
|
||||||
|
// /xrpl-hooks-docs/xrpl-hooks-docs-files.json file
|
||||||
|
// which was generated from rst files
|
||||||
|
|
||||||
|
(typeof marker.code === "string" &&
|
||||||
|
docs[marker?.code]?.toString()) ||
|
||||||
|
"",
|
||||||
|
supportHtml: true,
|
||||||
|
isTrusted: true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}))
|
||||||
|
);
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
const HooksEditor = () => {
|
const HooksEditor = () => {
|
||||||
const editorRef = useRef<monaco.editor.IStandaloneCodeEditor>();
|
const editorRef = useRef<monaco.editor.IStandaloneCodeEditor>();
|
||||||
|
const monacoRef = useRef<typeof monaco>();
|
||||||
const subscriptionRef = useRef<ReconnectingWebSocket | null>(null);
|
const subscriptionRef = useRef<ReconnectingWebSocket | null>(null);
|
||||||
const snap = useSnapshot(state);
|
const snap = useSnapshot(state);
|
||||||
const router = useRouter();
|
const router = useRouter();
|
||||||
const { theme } = useTheme();
|
const { theme } = useTheme();
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
if (editorRef.current) validateWritability(editorRef.current);
|
||||||
|
}, [snap.active]);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
return () => {
|
return () => {
|
||||||
subscriptionRef?.current?.close();
|
subscriptionRef?.current?.close();
|
||||||
};
|
};
|
||||||
}, []);
|
}, []);
|
||||||
|
useEffect(() => {
|
||||||
|
if (monacoRef.current) {
|
||||||
|
setMarkers(monacoRef.current);
|
||||||
|
}
|
||||||
|
}, [snap.active]);
|
||||||
return (
|
return (
|
||||||
<Box
|
<Box
|
||||||
css={{
|
css={{
|
||||||
@@ -45,7 +131,7 @@ const HooksEditor = () => {
|
|||||||
display: "flex",
|
display: "flex",
|
||||||
position: "relative",
|
position: "relative",
|
||||||
flexDirection: "column",
|
flexDirection: "column",
|
||||||
backgroundColor: "$mauve3",
|
backgroundColor: "$mauve2",
|
||||||
width: "100%",
|
width: "100%",
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
@@ -118,6 +204,7 @@ const HooksEditor = () => {
|
|||||||
}}
|
}}
|
||||||
onMount={(editor, monaco) => {
|
onMount={(editor, monaco) => {
|
||||||
editorRef.current = editor;
|
editorRef.current = editor;
|
||||||
|
monacoRef.current = monaco;
|
||||||
editor.updateOptions({
|
editor.updateOptions({
|
||||||
glyphMargin: true,
|
glyphMargin: true,
|
||||||
lightbulb: {
|
lightbulb: {
|
||||||
@@ -130,6 +217,16 @@ const HooksEditor = () => {
|
|||||||
saveFile();
|
saveFile();
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
// When the markers (errors/warnings from clangd language server) change
|
||||||
|
// Lets improve the markers by adding extra content to them from related
|
||||||
|
// md files
|
||||||
|
monaco.editor.onDidChangeMarkers(() => {
|
||||||
|
if (monacoRef.current) {
|
||||||
|
setMarkers(monacoRef.current);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
validateWritability(editor);
|
||||||
}}
|
}}
|
||||||
theme={theme === "dark" ? "dark" : "light"}
|
theme={theme === "dark" ? "dark" : "light"}
|
||||||
/>
|
/>
|
||||||
@@ -157,7 +254,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>
|
||||||
|
|||||||
@@ -110,20 +110,24 @@ export const Input = styled("input", {
|
|||||||
backgroundColor: "transparent",
|
backgroundColor: "transparent",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
deep: {
|
||||||
|
backgroundColor: "$deep",
|
||||||
|
boxShadow: "none",
|
||||||
|
},
|
||||||
},
|
},
|
||||||
state: {
|
state: {
|
||||||
invalid: {
|
invalid: {
|
||||||
boxShadow: "inset 0 0 0 1px $colors$red7",
|
boxShadow: "inset 0 0 0 1px $colors$crimson7",
|
||||||
"&:focus": {
|
"&:focus": {
|
||||||
boxShadow:
|
boxShadow:
|
||||||
"inset 0px 0px 0px 1px $colors$red8, 0px 0px 0px 1px $colors$red8",
|
"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:
|
boxShadow:
|
||||||
"inset 0px 0px 0px 1px $colors$green8, 0px 0px 0px 1px $colors$green8",
|
"inset 0px 0px 0px 1px $colors$grass8, 0px 0px 0px 1px $colors$grass8",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -3,6 +3,14 @@ import { styled } from "../stitches.config";
|
|||||||
const StyledLink = styled("a", {
|
const StyledLink = styled("a", {
|
||||||
color: "CurrentColor",
|
color: "CurrentColor",
|
||||||
textDecoration: "underline",
|
textDecoration: "underline",
|
||||||
|
cursor: 'pointer',
|
||||||
|
variants: {
|
||||||
|
highlighted: {
|
||||||
|
true: {
|
||||||
|
color: '$blue9'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
export default StyledLink;
|
export default StyledLink;
|
||||||
|
|||||||
@@ -1,25 +1,25 @@
|
|||||||
import React, { useRef, useLayoutEffect } from "react";
|
import { useRef, useLayoutEffect, ReactNode, FC, useState, useCallback } from "react";
|
||||||
import { Notepad, Prohibit } from "phosphor-react";
|
import { Notepad, Prohibit } from "phosphor-react";
|
||||||
import useStayScrolled from "react-stay-scrolled";
|
import useStayScrolled from "react-stay-scrolled";
|
||||||
import NextLink from "next/link";
|
import NextLink from "next/link";
|
||||||
|
|
||||||
import Container from "./Container";
|
import Container from "./Container";
|
||||||
import Box from "./Box";
|
|
||||||
import Flex from "./Flex";
|
|
||||||
import LogText from "./LogText";
|
import LogText from "./LogText";
|
||||||
import { ILog } from "../state";
|
import state, { ILog } from "../state";
|
||||||
import Text from "./Text";
|
import { Pre, Link, Heading, Button, Text, Flex, Box } from ".";
|
||||||
import Button from "./Button";
|
import regexifyString from "regexify-string";
|
||||||
import Heading from "./Heading";
|
import { useSnapshot } from "valtio";
|
||||||
import Link from "./Link";
|
import { AccountDialog } from "./Accounts";
|
||||||
|
|
||||||
interface ILogBox {
|
interface ILogBox {
|
||||||
title: string;
|
title: string;
|
||||||
clearLog?: () => void;
|
clearLog?: () => void;
|
||||||
logs: ILog[];
|
logs: ILog[];
|
||||||
|
renderNav?: () => ReactNode;
|
||||||
|
enhanced?: boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
const LogBox: React.FC<ILogBox> = ({ title, clearLog, logs, children }) => {
|
const LogBox: FC<ILogBox> = ({ title, clearLog, logs, children, renderNav, enhanced }) => {
|
||||||
const logRef = useRef<HTMLPreElement>(null);
|
const logRef = useRef<HTMLPreElement>(null);
|
||||||
const { stayScrolled /*, scrollBottom*/ } = useStayScrolled(logRef);
|
const { stayScrolled /*, scrollBottom*/ } = useStayScrolled(logRef);
|
||||||
|
|
||||||
@@ -36,10 +36,24 @@ const LogBox: React.FC<ILogBox> = ({ title, clearLog, logs, children }) => {
|
|||||||
background: "$mauve1",
|
background: "$mauve1",
|
||||||
position: "relative",
|
position: "relative",
|
||||||
flex: 1,
|
flex: 1,
|
||||||
|
height: "100%",
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<Container css={{ px: 0, flexShrink: 1 }}>
|
<Container
|
||||||
<Flex css={{ py: "$3" }}>
|
css={{
|
||||||
|
px: 0,
|
||||||
|
height: "100%",
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<Flex
|
||||||
|
fluid
|
||||||
|
css={{
|
||||||
|
height: "48px",
|
||||||
|
alignItems: "center",
|
||||||
|
fontSize: "$sm",
|
||||||
|
fontWeight: 300,
|
||||||
|
}}
|
||||||
|
>
|
||||||
<Heading
|
<Heading
|
||||||
as="h3"
|
as="h3"
|
||||||
css={{
|
css={{
|
||||||
@@ -56,6 +70,15 @@ const LogBox: React.FC<ILogBox> = ({ title, clearLog, logs, children }) => {
|
|||||||
>
|
>
|
||||||
<Notepad size="15px" /> <Text css={{ lineHeight: 1 }}>{title}</Text>
|
<Notepad size="15px" /> <Text css={{ lineHeight: 1 }}>{title}</Text>
|
||||||
</Heading>
|
</Heading>
|
||||||
|
<Flex
|
||||||
|
row
|
||||||
|
align="center"
|
||||||
|
css={{
|
||||||
|
width: "50%", // TODO make it max without breaking layout!
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
{renderNav?.()}
|
||||||
|
</Flex>
|
||||||
<Flex css={{ ml: "auto", gap: "$3", marginRight: "$3" }}>
|
<Flex css={{ ml: "auto", gap: "$3", marginRight: "$3" }}>
|
||||||
{clearLog && (
|
{clearLog && (
|
||||||
<Button ghost size="xs" onClick={clearLog}>
|
<Button ghost size="xs" onClick={clearLog}>
|
||||||
@@ -64,6 +87,7 @@ const LogBox: React.FC<ILogBox> = ({ title, clearLog, logs, children }) => {
|
|||||||
)}
|
)}
|
||||||
</Flex>
|
</Flex>
|
||||||
</Flex>
|
</Flex>
|
||||||
|
|
||||||
<Box
|
<Box
|
||||||
as="pre"
|
as="pre"
|
||||||
ref={logRef}
|
ref={logRef}
|
||||||
@@ -73,29 +97,31 @@ const LogBox: React.FC<ILogBox> = ({ title, clearLog, logs, children }) => {
|
|||||||
display: "flex",
|
display: "flex",
|
||||||
flexDirection: "column",
|
flexDirection: "column",
|
||||||
width: "100%",
|
width: "100%",
|
||||||
height: "160px",
|
height: "calc(100% - 48px)", // 100% minus the logbox header height
|
||||||
|
overflowY: "auto",
|
||||||
fontSize: "13px",
|
fontSize: "13px",
|
||||||
fontWeight: "$body",
|
fontWeight: "$body",
|
||||||
fontFamily: "$monospace",
|
fontFamily: "$monospace",
|
||||||
px: "$3",
|
px: "$3",
|
||||||
pb: "$2",
|
pb: "$2",
|
||||||
whiteSpace: "normal",
|
whiteSpace: "normal",
|
||||||
overflowY: "auto",
|
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
{logs?.map((log, index) => (
|
{logs?.map((log, index) => (
|
||||||
<Box as="span" key={log.type + index}>
|
<Box
|
||||||
{/* <LogText capitalize variant={log.type}>
|
as="span"
|
||||||
{log.type}:{" "}
|
key={log.type + index}
|
||||||
</LogText> */}
|
css={{
|
||||||
<LogText variant={log.type}>
|
"@hover": {
|
||||||
{log.message}{" "}
|
"&:hover": {
|
||||||
{log.link && (
|
backgroundColor: enhanced ? "$backgroundAlt" : undefined,
|
||||||
<NextLink href={log.link} shallow passHref>
|
},
|
||||||
<Link as="a">{log.linkText}</Link>
|
},
|
||||||
</NextLink>
|
p: enhanced ? "$1" : undefined,
|
||||||
)}
|
my: enhanced ? "$1" : undefined,
|
||||||
</LogText>
|
}}
|
||||||
|
>
|
||||||
|
<Log {...log} />
|
||||||
</Box>
|
</Box>
|
||||||
))}
|
))}
|
||||||
{children}
|
{children}
|
||||||
@@ -105,4 +131,74 @@ const LogBox: React.FC<ILogBox> = ({ title, clearLog, logs, children }) => {
|
|||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
export const Log: FC<ILog> = ({
|
||||||
|
type,
|
||||||
|
timestamp: timestamp,
|
||||||
|
message: _message,
|
||||||
|
link,
|
||||||
|
linkText,
|
||||||
|
defaultCollapsed,
|
||||||
|
jsonData: _jsonData,
|
||||||
|
}) => {
|
||||||
|
const [expanded, setExpanded] = useState(!defaultCollapsed);
|
||||||
|
const { accounts } = useSnapshot(state);
|
||||||
|
const [dialogAccount, setDialogAccount] = useState<string | null>(null);
|
||||||
|
|
||||||
|
const enrichAccounts = useCallback(
|
||||||
|
(str?: string): ReactNode => {
|
||||||
|
if (!str || !accounts.length) return null;
|
||||||
|
|
||||||
|
const pattern = `(${accounts.map(acc => acc.address).join("|")})`;
|
||||||
|
const res = regexifyString({
|
||||||
|
pattern: new RegExp(pattern, "gim"),
|
||||||
|
decorator: (match, idx) => {
|
||||||
|
const name = accounts.find(acc => acc.address === match)?.name;
|
||||||
|
return (
|
||||||
|
<Link
|
||||||
|
key={match + idx}
|
||||||
|
as="a"
|
||||||
|
onClick={() => setDialogAccount(match)}
|
||||||
|
title={match}
|
||||||
|
highlighted
|
||||||
|
>
|
||||||
|
{name || match}
|
||||||
|
</Link>
|
||||||
|
);
|
||||||
|
},
|
||||||
|
input: str,
|
||||||
|
});
|
||||||
|
|
||||||
|
return <>{res}</>;
|
||||||
|
},
|
||||||
|
[accounts]
|
||||||
|
);
|
||||||
|
_message = _message.trim().replace(/\n /gi, "\n");
|
||||||
|
const message = enrichAccounts(_message);
|
||||||
|
const jsonData = enrichAccounts(_jsonData);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<AccountDialog
|
||||||
|
setActiveAccountAddress={setDialogAccount}
|
||||||
|
activeAccountAddress={dialogAccount}
|
||||||
|
/>
|
||||||
|
<LogText variant={type}>
|
||||||
|
{timestamp && <Text muted monospace>{timestamp} </Text>}
|
||||||
|
<Pre>{message} </Pre>
|
||||||
|
{link && (
|
||||||
|
<NextLink href={link} shallow passHref>
|
||||||
|
<Link as="a">{linkText}</Link>
|
||||||
|
</NextLink>
|
||||||
|
)}
|
||||||
|
{jsonData && (
|
||||||
|
<Link onClick={() => setExpanded(!expanded)} as="a">
|
||||||
|
{expanded ? "Collapse" : "Expand"}
|
||||||
|
</Link>
|
||||||
|
)}
|
||||||
|
{expanded && jsonData && <Pre block>{jsonData}</Pre>}
|
||||||
|
</LogText>
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
export default LogBox;
|
export default LogBox;
|
||||||
|
|||||||
@@ -4,19 +4,20 @@ const Text = styled("span", {
|
|||||||
fontFamily: "$monospace",
|
fontFamily: "$monospace",
|
||||||
lineHeight: "$body",
|
lineHeight: "$body",
|
||||||
color: "$text",
|
color: "$text",
|
||||||
|
wordWrap: "break-word",
|
||||||
variants: {
|
variants: {
|
||||||
variant: {
|
variant: {
|
||||||
log: {
|
log: {
|
||||||
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>
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -27,6 +27,7 @@ import {
|
|||||||
DialogTrigger,
|
DialogTrigger,
|
||||||
} from "./Dialog";
|
} from "./Dialog";
|
||||||
import PanelBox from "./PanelBox";
|
import PanelBox from "./PanelBox";
|
||||||
|
import { templateFileIds } from "../state/constants";
|
||||||
|
|
||||||
const Navigation = () => {
|
const Navigation = () => {
|
||||||
const router = useRouter();
|
const router = useRouter();
|
||||||
@@ -39,9 +40,11 @@ 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,
|
||||||
|
height: "60px",
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<Container
|
<Container
|
||||||
@@ -59,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={{
|
||||||
@@ -68,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
|
||||||
@@ -89,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>
|
||||||
</>
|
</>
|
||||||
)}
|
)}
|
||||||
@@ -136,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",
|
||||||
},
|
},
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
@@ -150,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
|
||||||
@@ -174,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,
|
||||||
@@ -187,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
|
||||||
@@ -195,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,
|
||||||
@@ -215,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,
|
||||||
@@ -244,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",
|
||||||
@@ -255,16 +275,16 @@ const Navigation = () => {
|
|||||||
>
|
>
|
||||||
<PanelBox
|
<PanelBox
|
||||||
as="a"
|
as="a"
|
||||||
href="/develop/be088224fb37c0075e84491da0e602c1"
|
href={`/develop/${templateFileIds.starter}`}
|
||||||
>
|
>
|
||||||
<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/be088224fb37c0075e84491da0e602c1"
|
href={`/develop/${templateFileIds.firewall}`}
|
||||||
>
|
>
|
||||||
<Heading>Firewall</Heading>
|
<Heading>Firewall</Heading>
|
||||||
<Text>
|
<Text>
|
||||||
@@ -273,23 +293,26 @@ const Navigation = () => {
|
|||||||
</PanelBox>
|
</PanelBox>
|
||||||
<PanelBox
|
<PanelBox
|
||||||
as="a"
|
as="a"
|
||||||
href="/develop/be088224fb37c0075e84491da0e602c1"
|
href={`/develop/${templateFileIds.notary}`}
|
||||||
>
|
>
|
||||||
<Heading>Accept</Heading>
|
<Heading>Notary</Heading>
|
||||||
<Text>
|
<Text>
|
||||||
This hook just accepts any transaction coming through
|
Collecting signatures for multi-sign transactions
|
||||||
it
|
|
||||||
</Text>
|
</Text>
|
||||||
</PanelBox>
|
</PanelBox>
|
||||||
<PanelBox
|
<PanelBox
|
||||||
as="a"
|
as="a"
|
||||||
href="/develop/be088224fb37c0075e84491da0e602c1"
|
href={`/develop/${templateFileIds.carbon}`}
|
||||||
>
|
>
|
||||||
<Heading>Accept</Heading>
|
<Heading>Carbon</Heading>
|
||||||
<Text>
|
<Text>Send a percentage of sum to an address</Text>
|
||||||
This hook just accepts any transaction coming through
|
</PanelBox>
|
||||||
it
|
<PanelBox
|
||||||
</Text>
|
as="a"
|
||||||
|
href={`/develop/${templateFileIds.peggy}`}
|
||||||
|
>
|
||||||
|
<Heading>Peggy</Heading>
|
||||||
|
<Text>An oracle based stable coin hook</Text>
|
||||||
</PanelBox>
|
</PanelBox>
|
||||||
</Flex>
|
</Flex>
|
||||||
</Flex>
|
</Flex>
|
||||||
@@ -376,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",
|
||||||
|
|||||||
27
components/Pre.tsx
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
import { styled } from "../stitches.config";
|
||||||
|
|
||||||
|
const Pre = styled("span", {
|
||||||
|
m: 0,
|
||||||
|
wordBreak: "break-all",
|
||||||
|
fontFamily: '$monospace',
|
||||||
|
whiteSpace: 'pre-wrap',
|
||||||
|
variants: {
|
||||||
|
fluid: {
|
||||||
|
true: {
|
||||||
|
width: "100%",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
line: {
|
||||||
|
true: {
|
||||||
|
whiteSpace: 'pre-line'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
block: {
|
||||||
|
true: {
|
||||||
|
display: 'block'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
export default Pre;
|
||||||
56
components/Select.tsx
Normal file
@@ -0,0 +1,56 @@
|
|||||||
|
import { FC } from "react";
|
||||||
|
import { mauve, mauveDark } from "@radix-ui/colors";
|
||||||
|
import { useTheme } from "next-themes";
|
||||||
|
import { styled } from '../stitches.config';
|
||||||
|
import dynamic from 'next/dynamic';
|
||||||
|
import type { Props } from "react-select";
|
||||||
|
const SelectInput = dynamic(() => import("react-select"), { ssr: false });
|
||||||
|
|
||||||
|
const Select: FC<Props> = props => {
|
||||||
|
const { theme } = useTheme();
|
||||||
|
const isDark = theme === "dark";
|
||||||
|
const colors: any = {
|
||||||
|
// primary: pink.pink9,
|
||||||
|
primary: isDark ? mauveDark.mauve4 : mauve.mauve4,
|
||||||
|
secondary: isDark ? mauveDark.mauve8 : mauve.mauve8,
|
||||||
|
background: isDark ? "rgb(10, 10, 10)" : "rgb(245, 245, 245)",
|
||||||
|
searchText: isDark ? mauveDark.mauve12 : mauve.mauve12,
|
||||||
|
placeholder: isDark ? mauveDark.mauve11 : mauve.mauve11,
|
||||||
|
};
|
||||||
|
colors.outline = colors.background;
|
||||||
|
colors.selected = colors.secondary;
|
||||||
|
return (
|
||||||
|
<SelectInput
|
||||||
|
menuPosition="fixed"
|
||||||
|
theme={theme => ({
|
||||||
|
...theme,
|
||||||
|
spacing: {
|
||||||
|
...theme.spacing,
|
||||||
|
controlHeight: 30
|
||||||
|
},
|
||||||
|
colors: {
|
||||||
|
primary: colors.selected,
|
||||||
|
primary25: colors.primary,
|
||||||
|
primary50: colors.primary,
|
||||||
|
primary75: colors.primary,
|
||||||
|
danger: colors.primary,
|
||||||
|
dangerLight: colors.primary,
|
||||||
|
neutral0: colors.background,
|
||||||
|
neutral5: colors.primary,
|
||||||
|
neutral10: colors.primary,
|
||||||
|
neutral20: colors.outline,
|
||||||
|
neutral30: colors.primary,
|
||||||
|
neutral40: colors.primary,
|
||||||
|
neutral50: colors.placeholder,
|
||||||
|
neutral60: colors.primary,
|
||||||
|
neutral70: colors.primary,
|
||||||
|
neutral80: colors.searchText,
|
||||||
|
neutral90: colors.primary,
|
||||||
|
},
|
||||||
|
})}
|
||||||
|
{...props}
|
||||||
|
/>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export default styled(Select, {});
|
||||||
257
components/Tabs.tsx
Normal file
@@ -0,0 +1,257 @@
|
|||||||
|
import React, {
|
||||||
|
useEffect,
|
||||||
|
useState,
|
||||||
|
Fragment,
|
||||||
|
isValidElement,
|
||||||
|
useCallback,
|
||||||
|
} from "react";
|
||||||
|
import type { ReactNode, ReactElement } from "react";
|
||||||
|
import { Box, Button, Flex, Input, Stack, Text } from ".";
|
||||||
|
import {
|
||||||
|
Dialog,
|
||||||
|
DialogTrigger,
|
||||||
|
DialogContent,
|
||||||
|
DialogTitle,
|
||||||
|
DialogDescription,
|
||||||
|
DialogClose,
|
||||||
|
} from "./Dialog";
|
||||||
|
import { Plus, X } from "phosphor-react";
|
||||||
|
import { styled } from "../stitches.config";
|
||||||
|
|
||||||
|
const ErrorText = styled(Text, {
|
||||||
|
color: "$error",
|
||||||
|
mt: "$1",
|
||||||
|
display: "block",
|
||||||
|
});
|
||||||
|
|
||||||
|
interface TabProps {
|
||||||
|
header?: string;
|
||||||
|
children: ReactNode;
|
||||||
|
}
|
||||||
|
|
||||||
|
// TODO customise strings shown
|
||||||
|
interface Props {
|
||||||
|
activeIndex?: number;
|
||||||
|
activeHeader?: string;
|
||||||
|
headless?: boolean;
|
||||||
|
children: ReactElement<TabProps>[];
|
||||||
|
keepAllAlive?: boolean;
|
||||||
|
defaultExtension?: string;
|
||||||
|
forceDefaultExtension?: boolean;
|
||||||
|
onCreateNewTab?: (name: string) => any;
|
||||||
|
onCloseTab?: (index: number, header?: string) => any;
|
||||||
|
}
|
||||||
|
|
||||||
|
export const Tab = (props: TabProps) => null;
|
||||||
|
|
||||||
|
export const Tabs = ({
|
||||||
|
children,
|
||||||
|
activeIndex,
|
||||||
|
activeHeader,
|
||||||
|
headless,
|
||||||
|
keepAllAlive = false,
|
||||||
|
onCreateNewTab,
|
||||||
|
onCloseTab,
|
||||||
|
defaultExtension = "",
|
||||||
|
forceDefaultExtension,
|
||||||
|
}: Props) => {
|
||||||
|
const [active, setActive] = useState(activeIndex || 0);
|
||||||
|
const tabs: TabProps[] = children.map((elem) => elem.props);
|
||||||
|
|
||||||
|
const [isNewtabDialogOpen, setIsNewtabDialogOpen] = useState(false);
|
||||||
|
const [tabname, setTabname] = useState("");
|
||||||
|
const [newtabError, setNewtabError] = useState<string | null>(null);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
if (activeIndex) setActive(activeIndex);
|
||||||
|
}, [activeIndex]);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
if (activeHeader) {
|
||||||
|
const idx = tabs.findIndex((tab) => tab.header === activeHeader);
|
||||||
|
setActive(idx);
|
||||||
|
}
|
||||||
|
}, [activeHeader, tabs]);
|
||||||
|
|
||||||
|
// when filename changes, reset error
|
||||||
|
useEffect(() => {
|
||||||
|
setNewtabError(null);
|
||||||
|
}, [tabname, setNewtabError]);
|
||||||
|
|
||||||
|
const validateTabname = useCallback(
|
||||||
|
(tabname: string): { error: string | null } => {
|
||||||
|
if (tabs.find((tab) => tab.header === tabname)) {
|
||||||
|
return { error: "Name already exists." };
|
||||||
|
}
|
||||||
|
return { error: null };
|
||||||
|
},
|
||||||
|
[tabs]
|
||||||
|
);
|
||||||
|
|
||||||
|
const handleCreateTab = useCallback(() => {
|
||||||
|
// add default extension in case omitted
|
||||||
|
let _tabname = tabname.includes(".") ? tabname : tabname + defaultExtension;
|
||||||
|
if (forceDefaultExtension && !_tabname.endsWith(defaultExtension)) {
|
||||||
|
_tabname = _tabname + defaultExtension;
|
||||||
|
}
|
||||||
|
|
||||||
|
const chk = validateTabname(_tabname);
|
||||||
|
if (chk.error) {
|
||||||
|
setNewtabError(`Error: ${chk.error}`);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
setIsNewtabDialogOpen(false);
|
||||||
|
setTabname("");
|
||||||
|
// switch to new tab?
|
||||||
|
setActive(tabs.length);
|
||||||
|
|
||||||
|
onCreateNewTab?.(_tabname);
|
||||||
|
}, [tabname, defaultExtension, validateTabname, onCreateNewTab, tabs.length]);
|
||||||
|
|
||||||
|
const handleCloseTab = useCallback(
|
||||||
|
(idx: number) => {
|
||||||
|
if (idx <= active && active !== 0) {
|
||||||
|
setActive(active - 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
onCloseTab?.(idx, tabs[idx].header);
|
||||||
|
},
|
||||||
|
[active, onCloseTab, tabs]
|
||||||
|
);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
{!headless && (
|
||||||
|
<Stack
|
||||||
|
css={{
|
||||||
|
gap: "$3",
|
||||||
|
flex: 1,
|
||||||
|
flexWrap: "nowrap",
|
||||||
|
marginBottom: "-1px",
|
||||||
|
width: "100%",
|
||||||
|
overflow: "auto",
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
{tabs.map((tab, idx) => (
|
||||||
|
<Button
|
||||||
|
key={tab.header}
|
||||||
|
role="tab"
|
||||||
|
tabIndex={idx}
|
||||||
|
onClick={() => setActive(idx)}
|
||||||
|
onKeyPress={() => setActive(idx)}
|
||||||
|
outline={active !== idx}
|
||||||
|
size="sm"
|
||||||
|
css={{
|
||||||
|
"&:hover": {
|
||||||
|
span: {
|
||||||
|
visibility: "visible",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
{tab.header || idx}
|
||||||
|
{onCloseTab && (
|
||||||
|
<Box
|
||||||
|
as="span"
|
||||||
|
css={{
|
||||||
|
display: "flex",
|
||||||
|
p: "2px",
|
||||||
|
borderRadius: "$full",
|
||||||
|
mr: "-4px",
|
||||||
|
"&:hover": {
|
||||||
|
// boxSizing: "0px 0px 1px",
|
||||||
|
backgroundColor: "$mauve2",
|
||||||
|
color: "$mauve12",
|
||||||
|
},
|
||||||
|
}}
|
||||||
|
onClick={(ev: React.MouseEvent<HTMLElement>) => {
|
||||||
|
ev.stopPropagation();
|
||||||
|
handleCloseTab(idx);
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<X size="9px" weight="bold" />
|
||||||
|
</Box>
|
||||||
|
)}
|
||||||
|
</Button>
|
||||||
|
))}
|
||||||
|
{onCreateNewTab && (
|
||||||
|
<Dialog
|
||||||
|
open={isNewtabDialogOpen}
|
||||||
|
onOpenChange={setIsNewtabDialogOpen}
|
||||||
|
>
|
||||||
|
<DialogTrigger asChild>
|
||||||
|
<Button
|
||||||
|
ghost
|
||||||
|
size="sm"
|
||||||
|
css={{ alignItems: "center", px: "$2", mr: "$3" }}
|
||||||
|
>
|
||||||
|
<Plus size="16px" /> {tabs.length === 0 && "Add new tab"}
|
||||||
|
</Button>
|
||||||
|
</DialogTrigger>
|
||||||
|
<DialogContent>
|
||||||
|
<DialogTitle>Create new tab</DialogTitle>
|
||||||
|
<DialogDescription>
|
||||||
|
<label>Tabname</label>
|
||||||
|
<Input
|
||||||
|
value={tabname}
|
||||||
|
onChange={(e) => setTabname(e.target.value)}
|
||||||
|
onKeyPress={(e) => {
|
||||||
|
if (e.key === "Enter") {
|
||||||
|
handleCreateTab();
|
||||||
|
}
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
<ErrorText>{newtabError}</ErrorText>
|
||||||
|
</DialogDescription>
|
||||||
|
|
||||||
|
<Flex
|
||||||
|
css={{
|
||||||
|
marginTop: 25,
|
||||||
|
justifyContent: "flex-end",
|
||||||
|
gap: "$3",
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<DialogClose asChild>
|
||||||
|
<Button outline>Cancel</Button>
|
||||||
|
</DialogClose>
|
||||||
|
<Button variant="primary" onClick={handleCreateTab}>
|
||||||
|
Create
|
||||||
|
</Button>
|
||||||
|
</Flex>
|
||||||
|
<DialogClose asChild>
|
||||||
|
<Box css={{ position: "absolute", top: "$3", right: "$3" }}>
|
||||||
|
<X size="20px" />
|
||||||
|
</Box>
|
||||||
|
</DialogClose>
|
||||||
|
</DialogContent>
|
||||||
|
</Dialog>
|
||||||
|
)}
|
||||||
|
</Stack>
|
||||||
|
)}
|
||||||
|
{keepAllAlive ? (
|
||||||
|
tabs.map((tab, idx) => {
|
||||||
|
// TODO Maybe rule out fragments as children
|
||||||
|
if (!isValidElement(tab.children)) {
|
||||||
|
if (active !== idx) return null;
|
||||||
|
return tab.children;
|
||||||
|
}
|
||||||
|
let key = tab.children.key || tab.header || idx;
|
||||||
|
let { children } = tab;
|
||||||
|
let { style, ...props } = children.props;
|
||||||
|
return (
|
||||||
|
<children.type
|
||||||
|
key={key}
|
||||||
|
{...props}
|
||||||
|
style={{ ...style, display: active !== idx ? "none" : undefined }}
|
||||||
|
/>
|
||||||
|
);
|
||||||
|
})
|
||||||
|
) : (
|
||||||
|
<Fragment key={tabs[active].header || active}>
|
||||||
|
{tabs[active].children}
|
||||||
|
</Fragment>
|
||||||
|
)}
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
};
|
||||||
@@ -4,6 +4,23 @@ const Text = styled("span", {
|
|||||||
fontFamily: "$body",
|
fontFamily: "$body",
|
||||||
lineHeight: "$body",
|
lineHeight: "$body",
|
||||||
color: "$text",
|
color: "$text",
|
||||||
|
variants: {
|
||||||
|
small: {
|
||||||
|
true: {
|
||||||
|
fontSize: '$xs'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
muted: {
|
||||||
|
true: {
|
||||||
|
color: '$mauve9'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
monospace: {
|
||||||
|
true: {
|
||||||
|
fontFamily: '$monospace'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
export default Text;
|
export default Text;
|
||||||
|
|||||||
17
components/index.tsx
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
export { default as Flex } from "./Flex";
|
||||||
|
export { default as Link } from "./Link";
|
||||||
|
export { default as Container } from "./Container";
|
||||||
|
export { default as Heading } from "./Heading";
|
||||||
|
export { default as Stack } from "./Stack";
|
||||||
|
export { default as Text } from "./Text";
|
||||||
|
export { default as Input } from "./Input";
|
||||||
|
export { default as Select } from "./Select";
|
||||||
|
export * from "./Tabs";
|
||||||
|
export * from "./AlertDialog";
|
||||||
|
export { default as Box } from "./Box";
|
||||||
|
export { default as Button } from "./Button";
|
||||||
|
export { default as Pre } from "./Pre";
|
||||||
|
export { default as ButtonGroup } from "./ButtonGroup";
|
||||||
|
export { default as DeployFooter } from "./DeployFooter";
|
||||||
|
export * from "./Dialog";
|
||||||
|
export * from "./DropdownMenu";
|
||||||
221
content/transactions.json
Normal file
@@ -0,0 +1,221 @@
|
|||||||
|
[
|
||||||
|
{
|
||||||
|
"TransactionType": "AccountDelete",
|
||||||
|
"Account": "rWYkbWkCeg8dP6rXALnjgZSjjLyih5NXm",
|
||||||
|
"Destination": "rPT1Sjq2YGrBMTttX4GZHjKu9dyfzbpAYe",
|
||||||
|
"DestinationTag": 13,
|
||||||
|
"Fee": "2000000",
|
||||||
|
"Sequence": 2470665,
|
||||||
|
"Flags": 2147483648
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"TransactionType": "AccountSet",
|
||||||
|
"Account": "rf1BiGeXwwQoi8Z2ueFYTEXSwuJYfV2Jpn",
|
||||||
|
"Fee": "12",
|
||||||
|
"Sequence": 5,
|
||||||
|
"Domain": "6578616D706C652E636F6D",
|
||||||
|
"SetFlag": 5,
|
||||||
|
"MessageKey": "03AB40A0490F9B7ED8DF29D246BF2D6269820A0EE7742ACDD457BEA7C7D0931EDB"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Account": "rUn84CUYbNjRoTQ6mSW7BVJPSVJNLb1QLo",
|
||||||
|
"TransactionType": "CheckCancel",
|
||||||
|
"CheckID": "49647F0D748DC3FE26BDACBC57F251AADEFFF391403EC9BF87C97F67E9977FB0",
|
||||||
|
"Fee": "12"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Account": "rfkE1aSy9G8Upk4JssnwBxhEv5p4mn2KTy",
|
||||||
|
"TransactionType": "CheckCash",
|
||||||
|
"Amount": {
|
||||||
|
"value": "100",
|
||||||
|
"type": "currency"
|
||||||
|
},
|
||||||
|
"CheckID": "838766BA2B995C00744175F69A1B11E32C3DBC40E64801A4056FCBD657F57334",
|
||||||
|
"Fee": "12"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"TransactionType": "CheckCreate",
|
||||||
|
"Account": "rUn84CUYbNjRoTQ6mSW7BVJPSVJNLb1QLo",
|
||||||
|
"Destination": "rfkE1aSy9G8Upk4JssnwBxhEv5p4mn2KTy",
|
||||||
|
"SendMax": "100000000",
|
||||||
|
"Expiration": 570113521,
|
||||||
|
"InvoiceID": "6F1DFD1D0FE8A32E40E1F2C05CF1C15545BAB56B617F9C6C2D63A6B704BEF59B",
|
||||||
|
"DestinationTag": 1,
|
||||||
|
"Fee": "12"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"TransactionType": "DepositPreauth",
|
||||||
|
"Account": "rsUiUMpnrgxQp24dJYZDhmV4bE3aBtQyt8",
|
||||||
|
"Authorize": "rEhxGqkqPPSxQ3P25J66ft5TwpzV14k2de",
|
||||||
|
"Fee": "10",
|
||||||
|
"Flags": 2147483648,
|
||||||
|
"Sequence": 2
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Account": "rf1BiGeXwwQoi8Z2ueFYTEXSwuJYfV2Jpn",
|
||||||
|
"TransactionType": "EscrowCancel",
|
||||||
|
"Owner": "rf1BiGeXwwQoi8Z2ueFYTEXSwuJYfV2Jpn",
|
||||||
|
"OfferSequence": 7
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Account": "rf1BiGeXwwQoi8Z2ueFYTEXSwuJYfV2Jpn",
|
||||||
|
"TransactionType": "EscrowCreate",
|
||||||
|
"Amount": {
|
||||||
|
"value": "100",
|
||||||
|
"type": "currency"
|
||||||
|
},
|
||||||
|
"Destination": "rsA2LpzuawewSBQXkiju3YQTMzW13pAAdW",
|
||||||
|
"CancelAfter": 533257958,
|
||||||
|
"FinishAfter": 533171558,
|
||||||
|
"Condition": "A0258020E3B0C44298FC1C149AFBF4C8996FB92427AE41E4649B934CA495991B7852B855810100",
|
||||||
|
"DestinationTag": 23480,
|
||||||
|
"SourceTag": 11747
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Account": "rf1BiGeXwwQoi8Z2ueFYTEXSwuJYfV2Jpn",
|
||||||
|
"TransactionType": "EscrowFinish",
|
||||||
|
"Owner": "rf1BiGeXwwQoi8Z2ueFYTEXSwuJYfV2Jpn",
|
||||||
|
"OfferSequence": 7,
|
||||||
|
"Condition": "A0258020E3B0C44298FC1C149AFBF4C8996FB92427AE41E4649B934CA495991B7852B855810100",
|
||||||
|
"Fulfillment": "A0028000"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"TransactionType": "NFTokenBurn",
|
||||||
|
"Account": "rvYAfWj5gh67oV6fW32ZzP3Aw4Eubs59B",
|
||||||
|
"Fee": "10",
|
||||||
|
"TokenID": "000B013A95F14B0044F78A264E41713C64B5F89242540EE208C3098E00000D65"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"TransactionType": "NFTokenAcceptOffer",
|
||||||
|
"Fee": "10"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"TransactionType": "NFTokenCancelOffer",
|
||||||
|
"Account": "ra5nK24KXen9AHvsdFTKHSANinZseWnPcX",
|
||||||
|
"TokenIDs": "000100001E962F495F07A990F4ED55ACCFEEF365DBAA76B6A048C0A200000007"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"TransactionType": "NFTokenCreateOffer",
|
||||||
|
"Account": "rs8jBmmfpwgmrSPgwMsh7CvKRmRt1JTVSX",
|
||||||
|
"TokenID": "000100001E962F495F07A990F4ED55ACCFEEF365DBAA76B6A048C0A200000007",
|
||||||
|
"Amount": {
|
||||||
|
"value": "100",
|
||||||
|
"type": "currency"
|
||||||
|
},
|
||||||
|
"Flags": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"TransactionType": "OfferCancel",
|
||||||
|
"Account": "ra5nK24KXen9AHvsdFTKHSANinZseWnPcX",
|
||||||
|
"Fee": "12",
|
||||||
|
"Flags": 0,
|
||||||
|
"LastLedgerSequence": 7108629,
|
||||||
|
"OfferSequence": 6,
|
||||||
|
"Sequence": 7
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"TransactionType": "OfferCreate",
|
||||||
|
"Account": "ra5nK24KXen9AHvsdFTKHSANinZseWnPcX",
|
||||||
|
"Fee": "12",
|
||||||
|
"Flags": 0,
|
||||||
|
"LastLedgerSequence": 7108682,
|
||||||
|
"Sequence": 8,
|
||||||
|
"TakerGets": "6000000",
|
||||||
|
"Amount": {
|
||||||
|
"value": "100",
|
||||||
|
"type": "currency"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"TransactionType": "Payment",
|
||||||
|
"Account": "rf1BiGeXwwQoi8Z2ueFYTEXSwuJYfV2Jpn",
|
||||||
|
"Destination": "ra5nK24KXen9AHvsdFTKHSANinZseWnPcX",
|
||||||
|
"Amount": {
|
||||||
|
"value": "100",
|
||||||
|
"type": "currency"
|
||||||
|
},
|
||||||
|
"Fee": "12",
|
||||||
|
"Flags": 2147483648,
|
||||||
|
"Sequence": 2
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Account": "rf1BiGeXwwQoi8Z2ueFYTEXSwuJYfV2Jpn",
|
||||||
|
"TransactionType": "PaymentChannelCreate",
|
||||||
|
"Amount": {
|
||||||
|
"value": "100",
|
||||||
|
"type": "currency"
|
||||||
|
},
|
||||||
|
"Destination": "rsA2LpzuawewSBQXkiju3YQTMzW13pAAdW",
|
||||||
|
"SettleDelay": 86400,
|
||||||
|
"PublicKey": "32D2471DB72B27E3310F355BB33E339BF26F8392D5A93D3BC0FC3B566612DA0F0A",
|
||||||
|
"CancelAfter": 533171558,
|
||||||
|
"DestinationTag": 23480,
|
||||||
|
"SourceTag": 11747
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Account": "rf1BiGeXwwQoi8Z2ueFYTEXSwuJYfV2Jpn",
|
||||||
|
"TransactionType": "PaymentChannelFund",
|
||||||
|
"Channel": "C1AE6DDDEEC05CF2978C0BAD6FE302948E9533691DC749DCDD3B9E5992CA6198",
|
||||||
|
"Amount": {
|
||||||
|
"value": "200",
|
||||||
|
"type": "currency"
|
||||||
|
},
|
||||||
|
"Expiration": 543171558
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Flags": 0,
|
||||||
|
"TransactionType": "SetRegularKey",
|
||||||
|
"Account": "rf1BiGeXwwQoi8Z2ueFYTEXSwuJYfV2Jpn",
|
||||||
|
"Fee": "12",
|
||||||
|
"RegularKey": "rAR8rR8sUkBoCZFawhkWzY4Y5YoyuznwD"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Flags": 0,
|
||||||
|
"TransactionType": "SignerListSet",
|
||||||
|
"Account": "rf1BiGeXwwQoi8Z2ueFYTEXSwuJYfV2Jpn",
|
||||||
|
"Fee": "12",
|
||||||
|
"SignerQuorum": 3,
|
||||||
|
"SignerEntries": {
|
||||||
|
"type": "json",
|
||||||
|
"value": [
|
||||||
|
{
|
||||||
|
"SignerEntry": {
|
||||||
|
"Account": "rsA2LpzuawewSBQXkiju3YQTMzW13pAAdW",
|
||||||
|
"SignerWeight": 2
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"SignerEntry": {
|
||||||
|
"Account": "rUpy3eEg8rqjqfUoLeBnZkscbKbFsKXC3v",
|
||||||
|
"SignerWeight": 1
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"SignerEntry": {
|
||||||
|
"Account": "raKEEVSGnKSD9Zyvxu4z6Pqpm4ABH8FS6n",
|
||||||
|
"SignerWeight": 1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"TransactionType": "TicketCreate",
|
||||||
|
"Account": "rf1BiGeXwwQoi8Z2ueFYTEXSwuJYfV2Jpn",
|
||||||
|
"Fee": "10",
|
||||||
|
"Sequence": 381,
|
||||||
|
"TicketCount": 10
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"TransactionType": "TrustSet",
|
||||||
|
"Account": "ra5nK24KXen9AHvsdFTKHSANinZseWnPcX",
|
||||||
|
"Fee": "12",
|
||||||
|
"Flags": 262144,
|
||||||
|
"LastLedgerSequence": 8007750,
|
||||||
|
"Amount": {
|
||||||
|
"value": "100",
|
||||||
|
"type": "currency"
|
||||||
|
},
|
||||||
|
"Sequence": 12
|
||||||
|
}
|
||||||
|
]
|
||||||
@@ -11,6 +11,10 @@ module.exports = {
|
|||||||
if (!isServer) {
|
if (!isServer) {
|
||||||
config.resolve.fallback.fs = false;
|
config.resolve.fallback.fs = false;
|
||||||
}
|
}
|
||||||
|
config.module.rules.push({
|
||||||
|
test: /\.md$/,
|
||||||
|
use: "raw-loader",
|
||||||
|
});
|
||||||
return config;
|
return config;
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|||||||
17
package.json
@@ -20,10 +20,13 @@
|
|||||||
"@radix-ui/react-dropdown-menu": "^0.1.1",
|
"@radix-ui/react-dropdown-menu": "^0.1.1",
|
||||||
"@radix-ui/react-id": "^0.1.1",
|
"@radix-ui/react-id": "^0.1.1",
|
||||||
"@stitches/react": "^1.2.6-0",
|
"@stitches/react": "^1.2.6-0",
|
||||||
"file-saver": "^2.0.5",
|
|
||||||
"jszip": "^3.7.1",
|
|
||||||
"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",
|
||||||
|
"filesize": "^8.0.7",
|
||||||
|
"javascript-time-ago": "^2.3.11",
|
||||||
|
"jszip": "^3.7.1",
|
||||||
|
"lodash.uniqby": "^4.7.0",
|
||||||
"monaco-editor": "^0.30.1",
|
"monaco-editor": "^0.30.1",
|
||||||
"next": "^12.0.4",
|
"next": "^12.0.4",
|
||||||
"next-auth": "^4.0.0-beta.5",
|
"next-auth": "^4.0.0-beta.5",
|
||||||
@@ -40,8 +43,12 @@
|
|||||||
"react-hot-keys": "^2.7.1",
|
"react-hot-keys": "^2.7.1",
|
||||||
"react-hot-toast": "^2.1.1",
|
"react-hot-toast": "^2.1.1",
|
||||||
"react-new-window": "^0.2.1",
|
"react-new-window": "^0.2.1",
|
||||||
|
"react-select": "^5.2.1",
|
||||||
|
"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",
|
||||||
|
"regexify-string": "^1.0.17",
|
||||||
"valtio": "^1.2.5",
|
"valtio": "^1.2.5",
|
||||||
"vscode-languageserver": "^7.0.0",
|
"vscode-languageserver": "^7.0.0",
|
||||||
"vscode-uri": "^3.0.2",
|
"vscode-uri": "^3.0.2",
|
||||||
@@ -50,12 +57,14 @@
|
|||||||
"xrpl-client": "^1.9.3"
|
"xrpl-client": "^1.9.3"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@types/file-saver": "^2.0.4",
|
|
||||||
"@types/dinero.js": "^1.9.0",
|
"@types/dinero.js": "^1.9.0",
|
||||||
|
"@types/file-saver": "^2.0.4",
|
||||||
|
"@types/lodash.uniqby": "^4.7.6",
|
||||||
"@types/pako": "^1.0.2",
|
"@types/pako": "^1.0.2",
|
||||||
"@types/react": "17.0.31",
|
"@types/react": "17.0.31",
|
||||||
"eslint": "7.32.0",
|
"eslint": "7.32.0",
|
||||||
"eslint-config-next": "11.1.2",
|
"eslint-config-next": "11.1.2",
|
||||||
|
"raw-loader": "^4.0.2",
|
||||||
"typescript": "4.4.4"
|
"typescript": "4.4.4"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -13,10 +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);
|
||||||
@@ -30,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() }}
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
import React from "react";
|
|
||||||
import dynamic from "next/dynamic";
|
import dynamic from "next/dynamic";
|
||||||
import Flex from "../../components/Flex";
|
import React from "react";
|
||||||
|
import Split from "react-split";
|
||||||
import { useSnapshot } from "valtio";
|
import { useSnapshot } from "valtio";
|
||||||
import state from "../../state";
|
import state from "../../state";
|
||||||
|
import { getSplit, saveSplit } from "../../state/actions/persistSplits";
|
||||||
|
|
||||||
const DeployEditor = dynamic(() => import("../../components/DeployEditor"), {
|
const DeployEditor = dynamic(() => import("../../components/DeployEditor"), {
|
||||||
ssr: false,
|
ssr: false,
|
||||||
@@ -17,21 +18,45 @@ const LogBox = dynamic(() => import("../../components/LogBox"), {
|
|||||||
});
|
});
|
||||||
|
|
||||||
const Deploy = () => {
|
const Deploy = () => {
|
||||||
const snap = useSnapshot(state);
|
const { deployLogs } = useSnapshot(state);
|
||||||
return (
|
return (
|
||||||
<>
|
<Split
|
||||||
<main style={{ display: "flex", flex: 1 }}>
|
direction="vertical"
|
||||||
|
gutterSize={4}
|
||||||
|
gutterAlign="center"
|
||||||
|
sizes={getSplit("deployVertical") || [40, 60]}
|
||||||
|
style={{ height: "calc(100vh - 60px)" }}
|
||||||
|
onDragEnd={(e) => saveSplit("deployVertical", e)}
|
||||||
|
>
|
||||||
|
<main style={{ display: "flex", flex: 1, position: "relative" }}>
|
||||||
<DeployEditor />
|
<DeployEditor />
|
||||||
</main>
|
</main>
|
||||||
<Flex css={{ flexDirection: "row", width: "100%" }}>
|
<Split
|
||||||
<Accounts />
|
direction="horizontal"
|
||||||
<LogBox
|
sizes={getSplit("deployHorizontal") || [50, 50]}
|
||||||
title="Deploy Log"
|
minSize={[320, 160]}
|
||||||
logs={snap.deployLogs}
|
gutterSize={4}
|
||||||
clearLog={() => (state.deployLogs = [])}
|
gutterAlign="center"
|
||||||
/>
|
style={{
|
||||||
</Flex>
|
display: "flex",
|
||||||
</>
|
flexDirection: "row",
|
||||||
|
width: "100%",
|
||||||
|
height: "100%",
|
||||||
|
}}
|
||||||
|
onDragEnd={(e) => saveSplit("deployHorizontal", e)}
|
||||||
|
>
|
||||||
|
<div style={{ alignItems: "stretch", display: "flex" }}>
|
||||||
|
<Accounts />
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<LogBox
|
||||||
|
title="Deploy Log"
|
||||||
|
logs={deployLogs}
|
||||||
|
clearLog={() => (state.deployLogs = [])}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</Split>
|
||||||
|
</Split>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -1,13 +1,15 @@
|
|||||||
import dynamic from "next/dynamic";
|
|
||||||
import { useSnapshot } from "valtio";
|
|
||||||
import Hotkeys from "react-hot-keys";
|
|
||||||
import { Play } from "phosphor-react";
|
|
||||||
|
|
||||||
import type { NextPage } from "next";
|
import type { NextPage } from "next";
|
||||||
import { compileCode } from "../../state/actions";
|
import dynamic from "next/dynamic";
|
||||||
import state from "../../state";
|
import { Play } from "phosphor-react";
|
||||||
import Button from "../../components/Button";
|
import Hotkeys from "react-hot-keys";
|
||||||
|
import Split from "react-split";
|
||||||
|
import { useSnapshot } from "valtio";
|
||||||
import Box from "../../components/Box";
|
import Box from "../../components/Box";
|
||||||
|
import Button from "../../components/Button";
|
||||||
|
import state from "../../state";
|
||||||
|
import { compileCode } from "../../state/actions";
|
||||||
|
import { getSplit, saveSplit } from "../../state/actions/persistSplits";
|
||||||
|
|
||||||
|
|
||||||
const HooksEditor = dynamic(() => import("../../components/HooksEditor"), {
|
const HooksEditor = dynamic(() => import("../../components/HooksEditor"), {
|
||||||
ssr: false,
|
ssr: false,
|
||||||
@@ -19,8 +21,17 @@ const LogBox = dynamic(() => import("../../components/LogBox"), {
|
|||||||
|
|
||||||
const Home: NextPage = () => {
|
const Home: NextPage = () => {
|
||||||
const snap = useSnapshot(state);
|
const snap = useSnapshot(state);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<Split
|
||||||
|
direction="vertical"
|
||||||
|
sizes={getSplit("developVertical") || [70, 30]}
|
||||||
|
minSize={[100, 100]}
|
||||||
|
gutterAlign="center"
|
||||||
|
gutterSize={4}
|
||||||
|
style={{ height: "calc(100vh - 60px)" }}
|
||||||
|
onDragEnd={(e) => saveSplit("developVertical", e)}
|
||||||
|
>
|
||||||
<main style={{ display: "flex", flex: 1, position: "relative" }}>
|
<main style={{ display: "flex", flex: 1, position: "relative" }}>
|
||||||
<HooksEditor />
|
<HooksEditor />
|
||||||
{snap.files[snap.active]?.name?.split(".")?.[1].toLowerCase() ===
|
{snap.files[snap.active]?.name?.split(".")?.[1].toLowerCase() ===
|
||||||
@@ -65,7 +76,7 @@ const Home: NextPage = () => {
|
|||||||
logs={snap.logs}
|
logs={snap.logs}
|
||||||
/>
|
/>
|
||||||
</Box>
|
</Box>
|
||||||
</>
|
</Split>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,442 @@
|
|||||||
import Container from "../../components/Container";
|
import dynamic from "next/dynamic";
|
||||||
|
import { Play } from "phosphor-react";
|
||||||
|
import { FC, useCallback, useEffect, useState } from "react";
|
||||||
|
import Split from "react-split";
|
||||||
|
import { useSnapshot } from "valtio";
|
||||||
|
import {
|
||||||
|
Box, Button, Container,
|
||||||
|
Flex, Input,
|
||||||
|
Select, Tab, Tabs, Text
|
||||||
|
} from "../../components";
|
||||||
|
import transactionsData from "../../content/transactions.json";
|
||||||
|
import state from "../../state";
|
||||||
|
import { sendTransaction } from "../../state/actions";
|
||||||
|
import { getSplit, saveSplit } from "../../state/actions/persistSplits";
|
||||||
|
|
||||||
|
const DebugStream = dynamic(() => import("../../components/DebugStream"), {
|
||||||
|
ssr: false,
|
||||||
|
});
|
||||||
|
|
||||||
|
const LogBox = dynamic(() => import("../../components/LogBox"), {
|
||||||
|
ssr: false,
|
||||||
|
});
|
||||||
|
const Accounts = dynamic(() => import("../../components/Accounts"), {
|
||||||
|
ssr: false,
|
||||||
|
});
|
||||||
|
|
||||||
|
// type SelectOption<T> = { value: T, label: string };
|
||||||
|
type TxFields = Omit<
|
||||||
|
typeof transactionsData[0],
|
||||||
|
"Account" | "Sequence" | "TransactionType"
|
||||||
|
>;
|
||||||
|
type OtherFields = (keyof Omit<TxFields, "Destination">)[];
|
||||||
|
|
||||||
|
interface Props {
|
||||||
|
header?: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
const Transaction: FC<Props> = ({ header, ...props }) => {
|
||||||
|
const snap = useSnapshot(state);
|
||||||
|
|
||||||
|
const transactionsOptions = transactionsData.map((tx) => ({
|
||||||
|
value: tx.TransactionType,
|
||||||
|
label: tx.TransactionType,
|
||||||
|
}));
|
||||||
|
const [selectedTransaction, setSelectedTransaction] = useState<
|
||||||
|
typeof transactionsOptions[0] | null
|
||||||
|
>(null);
|
||||||
|
|
||||||
|
const accountOptions = snap.accounts.map((acc) => ({
|
||||||
|
label: acc.name,
|
||||||
|
value: acc.address,
|
||||||
|
}));
|
||||||
|
const [selectedAccount, setSelectedAccount] = useState<
|
||||||
|
typeof accountOptions[0] | null
|
||||||
|
>(null);
|
||||||
|
|
||||||
|
const destAccountOptions = snap.accounts
|
||||||
|
.map((acc) => ({
|
||||||
|
label: acc.name,
|
||||||
|
value: acc.address,
|
||||||
|
}))
|
||||||
|
.filter((acc) => acc.value !== selectedAccount?.value);
|
||||||
|
const [selectedDestAccount, setSelectedDestAccount] = useState<
|
||||||
|
typeof destAccountOptions[0] | null
|
||||||
|
>(null);
|
||||||
|
|
||||||
|
const [txIsLoading, setTxIsLoading] = useState(false);
|
||||||
|
const [txIsDisabled, setTxIsDisabled] = useState(false);
|
||||||
|
const [txFields, setTxFields] = useState<TxFields>({});
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
const transactionType = selectedTransaction?.value;
|
||||||
|
const account = snap.accounts.find(
|
||||||
|
(acc) => acc.address === selectedAccount?.value
|
||||||
|
);
|
||||||
|
if (!account || !transactionType || txIsLoading) {
|
||||||
|
setTxIsDisabled(true);
|
||||||
|
} else {
|
||||||
|
setTxIsDisabled(false);
|
||||||
|
}
|
||||||
|
}, [txIsLoading, selectedTransaction, selectedAccount, snap.accounts]);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
let _txFields: TxFields | undefined = transactionsData.find(
|
||||||
|
(tx) => tx.TransactionType === selectedTransaction?.value
|
||||||
|
);
|
||||||
|
if (!_txFields) return setTxFields({});
|
||||||
|
_txFields = { ..._txFields } as TxFields;
|
||||||
|
|
||||||
|
setSelectedDestAccount(null);
|
||||||
|
// @ts-ignore
|
||||||
|
delete _txFields.TransactionType;
|
||||||
|
// @ts-ignore
|
||||||
|
delete _txFields.Account;
|
||||||
|
// @ts-ignore
|
||||||
|
delete _txFields.Sequence;
|
||||||
|
setTxFields(_txFields);
|
||||||
|
}, [selectedTransaction, setSelectedDestAccount]);
|
||||||
|
|
||||||
|
const submitTest = useCallback(async () => {
|
||||||
|
const account = snap.accounts.find(
|
||||||
|
(acc) => acc.address === selectedAccount?.value
|
||||||
|
);
|
||||||
|
const TransactionType = selectedTransaction?.value;
|
||||||
|
if (!account || !TransactionType || txIsDisabled) return;
|
||||||
|
|
||||||
|
setTxIsLoading(true);
|
||||||
|
// setTxIsError(null)
|
||||||
|
try {
|
||||||
|
let options = { ...txFields };
|
||||||
|
|
||||||
|
options.Destination = selectedDestAccount?.value;
|
||||||
|
(Object.keys(options) as (keyof TxFields)[]).forEach((field) => {
|
||||||
|
let _value = options[field];
|
||||||
|
// convert currency
|
||||||
|
if (typeof _value === "object" && _value.type === "currency") {
|
||||||
|
if (+_value.value) {
|
||||||
|
options[field] = (+_value.value * 1000000 + "") as any;
|
||||||
|
} else {
|
||||||
|
options[field] = undefined; // 👇 💀
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// handle type: `json`
|
||||||
|
if (typeof _value === "object" && _value.type === "json") {
|
||||||
|
if (typeof _value.value === "object") {
|
||||||
|
options[field] = _value.value as any;
|
||||||
|
} else {
|
||||||
|
try {
|
||||||
|
options[field] = JSON.parse(_value.value);
|
||||||
|
} catch (error) {
|
||||||
|
const message = `Input error for json field '${field}': ${
|
||||||
|
error instanceof Error ? error.message : ""
|
||||||
|
}`;
|
||||||
|
throw Error(message);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// delete unneccesary fields
|
||||||
|
if (!options[field]) {
|
||||||
|
delete options[field];
|
||||||
|
}
|
||||||
|
});
|
||||||
|
const logPrefix = header ? `${header.split(".")[0]}: ` : undefined;
|
||||||
|
await sendTransaction(
|
||||||
|
account,
|
||||||
|
{
|
||||||
|
TransactionType,
|
||||||
|
...options,
|
||||||
|
},
|
||||||
|
{ logPrefix }
|
||||||
|
);
|
||||||
|
} catch (error) {
|
||||||
|
console.error(error);
|
||||||
|
if (error instanceof Error) {
|
||||||
|
state.transactionLogs.push({ type: "error", message: error.message });
|
||||||
|
}
|
||||||
|
}
|
||||||
|
setTxIsLoading(false);
|
||||||
|
}, [
|
||||||
|
header,
|
||||||
|
selectedAccount?.value,
|
||||||
|
selectedDestAccount?.value,
|
||||||
|
selectedTransaction?.value,
|
||||||
|
snap.accounts,
|
||||||
|
txFields,
|
||||||
|
txIsDisabled,
|
||||||
|
]);
|
||||||
|
|
||||||
|
const resetState = useCallback(() => {
|
||||||
|
setSelectedAccount(null);
|
||||||
|
setSelectedDestAccount(null);
|
||||||
|
setSelectedTransaction(null);
|
||||||
|
setTxFields({});
|
||||||
|
setTxIsDisabled(false);
|
||||||
|
setTxIsLoading(false);
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
const usualFields = ["TransactionType", "Amount", "Account", "Destination"];
|
||||||
|
const otherFields = Object.keys(txFields).filter(
|
||||||
|
(k) => !usualFields.includes(k)
|
||||||
|
) as OtherFields;
|
||||||
|
return (
|
||||||
|
<Box css={{ position: "relative", height: "calc(100% - 28px)" }} {...props}>
|
||||||
|
<Container
|
||||||
|
css={{ p: "$3 0", fontSize: "$sm", height: "calc(100% - 28px)" }}
|
||||||
|
>
|
||||||
|
<Flex column fluid css={{ height: "100%", overflowY: "auto" }}>
|
||||||
|
<Flex
|
||||||
|
row
|
||||||
|
fluid
|
||||||
|
css={{ justifyContent: "flex-end", alignItems: "center", mb: "$3" }}
|
||||||
|
>
|
||||||
|
<Text muted css={{ mr: "$3" }}>
|
||||||
|
Transaction type:{" "}
|
||||||
|
</Text>
|
||||||
|
<Select
|
||||||
|
instanceId="transactionsType"
|
||||||
|
placeholder="Select transaction type"
|
||||||
|
options={transactionsOptions}
|
||||||
|
hideSelectedOptions
|
||||||
|
css={{ width: "70%" }}
|
||||||
|
value={selectedTransaction}
|
||||||
|
onChange={(tt) => setSelectedTransaction(tt as any)}
|
||||||
|
/>
|
||||||
|
</Flex>
|
||||||
|
<Flex
|
||||||
|
row
|
||||||
|
fluid
|
||||||
|
css={{ justifyContent: "flex-end", alignItems: "center", mb: "$3" }}
|
||||||
|
>
|
||||||
|
<Text muted css={{ mr: "$3" }}>
|
||||||
|
Account:{" "}
|
||||||
|
</Text>
|
||||||
|
<Select
|
||||||
|
instanceId="from-account"
|
||||||
|
placeholder="Select your account"
|
||||||
|
css={{ width: "70%" }}
|
||||||
|
options={accountOptions}
|
||||||
|
value={selectedAccount}
|
||||||
|
onChange={(acc) => setSelectedAccount(acc as any)}
|
||||||
|
/>
|
||||||
|
</Flex>
|
||||||
|
{txFields.Amount !== undefined && (
|
||||||
|
<Flex
|
||||||
|
row
|
||||||
|
fluid
|
||||||
|
css={{
|
||||||
|
justifyContent: "flex-end",
|
||||||
|
alignItems: "center",
|
||||||
|
mb: "$3",
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<Text muted css={{ mr: "$3" }}>
|
||||||
|
Amount (XRP):{" "}
|
||||||
|
</Text>
|
||||||
|
<Input
|
||||||
|
value={txFields.Amount.value}
|
||||||
|
onChange={(e) =>
|
||||||
|
setTxFields({
|
||||||
|
...txFields,
|
||||||
|
Amount: { type: "currency", value: e.target.value },
|
||||||
|
})
|
||||||
|
}
|
||||||
|
variant="deep"
|
||||||
|
css={{ width: "70%", flex: "inherit", height: "$9" }}
|
||||||
|
/>
|
||||||
|
</Flex>
|
||||||
|
)}
|
||||||
|
{txFields.Destination !== undefined && (
|
||||||
|
<Flex
|
||||||
|
row
|
||||||
|
fluid
|
||||||
|
css={{
|
||||||
|
justifyContent: "flex-end",
|
||||||
|
alignItems: "center",
|
||||||
|
mb: "$3",
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<Text muted css={{ mr: "$3" }}>
|
||||||
|
Destination account:{" "}
|
||||||
|
</Text>
|
||||||
|
<Select
|
||||||
|
instanceId="to-account"
|
||||||
|
placeholder="Select the destination account"
|
||||||
|
css={{ width: "70%" }}
|
||||||
|
options={destAccountOptions}
|
||||||
|
value={selectedDestAccount}
|
||||||
|
isClearable
|
||||||
|
onChange={(acc) => setSelectedDestAccount(acc as any)}
|
||||||
|
/>
|
||||||
|
</Flex>
|
||||||
|
)}
|
||||||
|
{otherFields.map((field) => {
|
||||||
|
let _value = txFields[field];
|
||||||
|
let value = typeof _value === "object" ? _value.value : _value;
|
||||||
|
value =
|
||||||
|
typeof value === "object"
|
||||||
|
? JSON.stringify(value)
|
||||||
|
: value?.toLocaleString();
|
||||||
|
let isCurrency =
|
||||||
|
typeof _value === "object" && _value.type === "currency";
|
||||||
|
return (
|
||||||
|
<Flex
|
||||||
|
key={field}
|
||||||
|
row
|
||||||
|
fluid
|
||||||
|
css={{
|
||||||
|
justifyContent: "flex-end",
|
||||||
|
alignItems: "center",
|
||||||
|
mb: "$3",
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<Text muted css={{ mr: "$3" }}>
|
||||||
|
{field + (isCurrency ? " (XRP)" : "")}:{" "}
|
||||||
|
</Text>
|
||||||
|
<Input
|
||||||
|
value={value}
|
||||||
|
onChange={(e) =>
|
||||||
|
setTxFields({
|
||||||
|
...txFields,
|
||||||
|
[field]:
|
||||||
|
typeof _value === "object"
|
||||||
|
? { ..._value, value: e.target.value }
|
||||||
|
: e.target.value,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
variant="deep"
|
||||||
|
css={{ width: "70%", flex: "inherit", height: "$9" }}
|
||||||
|
/>
|
||||||
|
</Flex>
|
||||||
|
);
|
||||||
|
})}
|
||||||
|
</Flex>
|
||||||
|
</Container>
|
||||||
|
<Flex
|
||||||
|
row
|
||||||
|
css={{
|
||||||
|
justifyContent: "space-between",
|
||||||
|
position: "absolute",
|
||||||
|
left: 0,
|
||||||
|
bottom: 0,
|
||||||
|
width: "100%",
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<Button outline>VIEW AS JSON</Button>
|
||||||
|
<Flex row>
|
||||||
|
<Button onClick={resetState} outline css={{ mr: "$3" }}>
|
||||||
|
RESET
|
||||||
|
</Button>
|
||||||
|
<Button
|
||||||
|
variant="primary"
|
||||||
|
onClick={submitTest}
|
||||||
|
isLoading={txIsLoading}
|
||||||
|
disabled={txIsDisabled}
|
||||||
|
>
|
||||||
|
<Play weight="bold" size="16px" />
|
||||||
|
RUN TEST
|
||||||
|
</Button>
|
||||||
|
</Flex>
|
||||||
|
</Flex>
|
||||||
|
</Box>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
const Test = () => {
|
const Test = () => {
|
||||||
return <Container css={{ py: "$10" }}>This will be the test page</Container>;
|
const { transactionLogs } = useSnapshot(state);
|
||||||
|
const [tabHeaders, setTabHeaders] = useState<string[]>(["test1.json"]);
|
||||||
|
return (
|
||||||
|
<Container css={{ px: 0 }}>
|
||||||
|
<Split
|
||||||
|
direction="vertical"
|
||||||
|
sizes={getSplit("testVertical") || [50, 50]}
|
||||||
|
gutterSize={4}
|
||||||
|
gutterAlign="center"
|
||||||
|
style={{ height: "calc(100vh - 60px)" }}
|
||||||
|
onDragEnd={(e) => saveSplit("testVertical", e)}
|
||||||
|
>
|
||||||
|
<Flex
|
||||||
|
row
|
||||||
|
fluid
|
||||||
|
css={{
|
||||||
|
justifyContent: "center",
|
||||||
|
p: "$3 $2",
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<Split
|
||||||
|
direction="horizontal"
|
||||||
|
sizes={getSplit("testHorizontal") || [50, 50]}
|
||||||
|
minSize={[180, 320]}
|
||||||
|
gutterSize={4}
|
||||||
|
gutterAlign="center"
|
||||||
|
style={{
|
||||||
|
display: "flex",
|
||||||
|
flexDirection: "row",
|
||||||
|
width: "100%",
|
||||||
|
height: "100%",
|
||||||
|
}}
|
||||||
|
onDragEnd={(e) => saveSplit("testHorizontal", e)}
|
||||||
|
>
|
||||||
|
<Box css={{ width: "55%", px: "$2" }}>
|
||||||
|
<Tabs
|
||||||
|
keepAllAlive
|
||||||
|
forceDefaultExtension
|
||||||
|
defaultExtension=".json"
|
||||||
|
onCreateNewTab={(name) =>
|
||||||
|
setTabHeaders(tabHeaders.concat(name))
|
||||||
|
}
|
||||||
|
onCloseTab={(index) =>
|
||||||
|
setTabHeaders(tabHeaders.filter((_, idx) => idx !== index))
|
||||||
|
}
|
||||||
|
>
|
||||||
|
{tabHeaders.map((header) => (
|
||||||
|
<Tab key={header} header={header}>
|
||||||
|
<Transaction header={header} />
|
||||||
|
</Tab>
|
||||||
|
))}
|
||||||
|
</Tabs>
|
||||||
|
</Box>
|
||||||
|
<Box css={{ width: "45%", mx: "$2", height: "100%" }}>
|
||||||
|
<Accounts card hideDeployBtn showHookStats />
|
||||||
|
</Box>
|
||||||
|
</Split>
|
||||||
|
</Flex>
|
||||||
|
|
||||||
|
<Flex row fluid>
|
||||||
|
<Split
|
||||||
|
direction="horizontal"
|
||||||
|
sizes={[50, 50]}
|
||||||
|
minSize={[320, 160]}
|
||||||
|
gutterSize={4}
|
||||||
|
gutterAlign="center"
|
||||||
|
style={{
|
||||||
|
display: "flex",
|
||||||
|
flexDirection: "row",
|
||||||
|
width: "100%",
|
||||||
|
height: "100%",
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<Box
|
||||||
|
css={{
|
||||||
|
borderRight: "1px solid $mauve8",
|
||||||
|
height: "100%",
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<LogBox
|
||||||
|
title="Development Log"
|
||||||
|
logs={transactionLogs}
|
||||||
|
clearLog={() => (state.transactionLogs = [])}
|
||||||
|
/>
|
||||||
|
</Box>
|
||||||
|
<Box css={{ height: "100%" }}>
|
||||||
|
<DebugStream />
|
||||||
|
</Box>
|
||||||
|
</Split>
|
||||||
|
</Flex>
|
||||||
|
</Split>
|
||||||
|
</Container>
|
||||||
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
export default Test;
|
export default Test;
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
diff --git a/node_modules/ripple-binary-codec/dist/enums/definitions.json b/node_modules/ripple-binary-codec/dist/enums/definitions.json
|
diff --git a/node_modules/ripple-binary-codec/dist/enums/definitions.json b/node_modules/ripple-binary-codec/dist/enums/definitions.json
|
||||||
index 2333c42..99557cb 100644
|
index 2333c42..b8f8eab 100644
|
||||||
--- a/node_modules/ripple-binary-codec/dist/enums/definitions.json
|
--- a/node_modules/ripple-binary-codec/dist/enums/definitions.json
|
||||||
+++ b/node_modules/ripple-binary-codec/dist/enums/definitions.json
|
+++ b/node_modules/ripple-binary-codec/dist/enums/definitions.json
|
||||||
@@ -1,3 +1,4 @@
|
@@ -1,3 +1,4 @@
|
||||||
@@ -7,17 +7,18 @@ index 2333c42..99557cb 100644
|
|||||||
{
|
{
|
||||||
"TYPES": {
|
"TYPES": {
|
||||||
"Validation": 10003,
|
"Validation": 10003,
|
||||||
@@ -40,8 +41,7 @@
|
@@ -40,9 +41,7 @@
|
||||||
"Check": 67,
|
"Check": 67,
|
||||||
"Nickname": 110,
|
"Nickname": 110,
|
||||||
"Contract": 99,
|
"Contract": 99,
|
||||||
- "NFTokenPage": 80,
|
- "NFTokenPage": 80,
|
||||||
- "NFTokenOffer": 55,
|
- "NFTokenOffer": 55,
|
||||||
+ "GeneratorMap": 103,
|
- "NegativeUNL": 78
|
||||||
"NegativeUNL": 78
|
+ "GeneratorMap": 103
|
||||||
},
|
},
|
||||||
"FIELDS": [
|
"FIELDS": [
|
||||||
@@ -95,16 +95,6 @@
|
[
|
||||||
|
@@ -95,16 +94,6 @@
|
||||||
"type": "UInt16"
|
"type": "UInt16"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
@@ -34,7 +35,7 @@ index 2333c42..99557cb 100644
|
|||||||
[
|
[
|
||||||
"Flags",
|
"Flags",
|
||||||
{
|
{
|
||||||
@@ -455,6 +445,16 @@
|
@@ -455,6 +444,16 @@
|
||||||
"type": "UInt32"
|
"type": "UInt32"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
@@ -51,7 +52,7 @@ index 2333c42..99557cb 100644
|
|||||||
[
|
[
|
||||||
"IndexNext",
|
"IndexNext",
|
||||||
{
|
{
|
||||||
@@ -635,16 +635,6 @@
|
@@ -635,16 +634,6 @@
|
||||||
"type": "Hash256"
|
"type": "Hash256"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
@@ -68,7 +69,7 @@ index 2333c42..99557cb 100644
|
|||||||
[
|
[
|
||||||
"BookDirectory",
|
"BookDirectory",
|
||||||
{
|
{
|
||||||
@@ -916,7 +906,7 @@
|
@@ -916,7 +905,7 @@
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
@@ -77,7 +78,44 @@ index 2333c42..99557cb 100644
|
|||||||
{
|
{
|
||||||
"nth": 5,
|
"nth": 5,
|
||||||
"isVLEncoded": true,
|
"isVLEncoded": true,
|
||||||
@@ -1156,7 +1146,7 @@
|
@@ -1045,36 +1034,6 @@
|
||||||
|
"type": "Blob"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
- [
|
||||||
|
- "UNLModifyValidator",
|
||||||
|
- {
|
||||||
|
- "nth": 19,
|
||||||
|
- "isVLEncoded": true,
|
||||||
|
- "isSerialized": true,
|
||||||
|
- "isSigningField": true,
|
||||||
|
- "type": "Blob"
|
||||||
|
- }
|
||||||
|
- ],
|
||||||
|
- [
|
||||||
|
- "ValidatorToDisable",
|
||||||
|
- {
|
||||||
|
- "nth": 20,
|
||||||
|
- "isVLEncoded": true,
|
||||||
|
- "isSerialized": true,
|
||||||
|
- "isSigningField": true,
|
||||||
|
- "type": "Blob"
|
||||||
|
- }
|
||||||
|
- ],
|
||||||
|
- [
|
||||||
|
- "ValidatorToReEnable",
|
||||||
|
- {
|
||||||
|
- "nth": 21,
|
||||||
|
- "isVLEncoded": true,
|
||||||
|
- "isSerialized": true,
|
||||||
|
- "isSigningField": true,
|
||||||
|
- "type": "Blob"
|
||||||
|
- }
|
||||||
|
- ],
|
||||||
|
[
|
||||||
|
"Account",
|
||||||
|
{
|
||||||
|
@@ -1156,7 +1115,7 @@
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
@@ -86,7 +124,7 @@ index 2333c42..99557cb 100644
|
|||||||
{
|
{
|
||||||
"nth": 9,
|
"nth": 9,
|
||||||
"isVLEncoded": true,
|
"isVLEncoded": true,
|
||||||
@@ -1276,9 +1266,9 @@
|
@@ -1276,9 +1235,9 @@
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
@@ -98,7 +136,7 @@ index 2333c42..99557cb 100644
|
|||||||
"isVLEncoded": false,
|
"isVLEncoded": false,
|
||||||
"isSerialized": true,
|
"isSerialized": true,
|
||||||
"isSigningField": true,
|
"isSigningField": true,
|
||||||
@@ -1286,9 +1276,9 @@
|
@@ -1286,9 +1245,9 @@
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
@@ -110,7 +148,7 @@ index 2333c42..99557cb 100644
|
|||||||
"isVLEncoded": false,
|
"isVLEncoded": false,
|
||||||
"isSerialized": true,
|
"isSerialized": true,
|
||||||
"isSigningField": true,
|
"isSigningField": true,
|
||||||
@@ -1296,9 +1286,9 @@
|
@@ -1296,9 +1255,9 @@
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
@@ -122,7 +160,7 @@ index 2333c42..99557cb 100644
|
|||||||
"isVLEncoded": false,
|
"isVLEncoded": false,
|
||||||
"isSerialized": true,
|
"isSerialized": true,
|
||||||
"isSigningField": true,
|
"isSigningField": true,
|
||||||
@@ -1306,9 +1296,9 @@
|
@@ -1306,9 +1265,9 @@
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
@@ -134,7 +172,7 @@ index 2333c42..99557cb 100644
|
|||||||
"isVLEncoded": false,
|
"isVLEncoded": false,
|
||||||
"isSerialized": true,
|
"isSerialized": true,
|
||||||
"isSigningField": true,
|
"isSigningField": true,
|
||||||
@@ -1395,16 +1385,6 @@
|
@@ -1395,16 +1354,6 @@
|
||||||
"type": "STArray"
|
"type": "STArray"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
@@ -151,7 +189,24 @@ index 2333c42..99557cb 100644
|
|||||||
[
|
[
|
||||||
"Majorities",
|
"Majorities",
|
||||||
{
|
{
|
||||||
@@ -1535,16 +1515,6 @@
|
@@ -1415,16 +1364,6 @@
|
||||||
|
"type": "STArray"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
- [
|
||||||
|
- "DisabledValidators",
|
||||||
|
- {
|
||||||
|
- "nth": 17,
|
||||||
|
- "isVLEncoded": false,
|
||||||
|
- "isSerialized": true,
|
||||||
|
- "isSigningField": true,
|
||||||
|
- "type": "STArray"
|
||||||
|
- }
|
||||||
|
- ],
|
||||||
|
[
|
||||||
|
"CloseResolution",
|
||||||
|
{
|
||||||
|
@@ -1535,16 +1474,6 @@
|
||||||
"type": "Vector256"
|
"type": "Vector256"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
@@ -168,129 +223,96 @@ index 2333c42..99557cb 100644
|
|||||||
[
|
[
|
||||||
"Transaction",
|
"Transaction",
|
||||||
{
|
{
|
||||||
@@ -1616,9 +1586,9 @@
|
@@ -1596,7 +1525,7 @@
|
||||||
|
}
|
||||||
|
],
|
||||||
|
[
|
||||||
|
- "TicketCount",
|
||||||
|
+ "HookStateCount",
|
||||||
|
{
|
||||||
|
"nth": 40,
|
||||||
|
"isVLEncoded": false,
|
||||||
|
@@ -1606,7 +1535,7 @@
|
||||||
|
}
|
||||||
|
],
|
||||||
|
[
|
||||||
|
- "TicketSequence",
|
||||||
|
+ "HookReserveCount",
|
||||||
|
{
|
||||||
|
"nth": 41,
|
||||||
|
"isVLEncoded": false,
|
||||||
|
@@ -1616,7 +1545,7 @@
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
- "TokenTaxon",
|
- "TokenTaxon",
|
||||||
+ "HookStateCount",
|
+ "HookDataMaxSize",
|
||||||
{
|
{
|
||||||
- "nth": 42,
|
"nth": 42,
|
||||||
+ "nth": 40,
|
|
||||||
"isVLEncoded": false,
|
"isVLEncoded": false,
|
||||||
"isSerialized": true,
|
@@ -1626,23 +1555,23 @@
|
||||||
"isSigningField": true,
|
|
||||||
@@ -1626,9 +1596,9 @@
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
- "MintedTokens",
|
- "MintedTokens",
|
||||||
+ "HookReserveCount",
|
|
||||||
{
|
|
||||||
- "nth": 43,
|
|
||||||
+ "nth": 41,
|
|
||||||
"isVLEncoded": false,
|
|
||||||
"isSerialized": true,
|
|
||||||
"isSigningField": true,
|
|
||||||
@@ -1636,9 +1606,9 @@
|
|
||||||
}
|
|
||||||
],
|
|
||||||
[
|
|
||||||
- "BurnedTokens",
|
|
||||||
+ "HookDataMaxSize",
|
|
||||||
{
|
|
||||||
- "nth": 44,
|
|
||||||
+ "nth": 42,
|
|
||||||
"isVLEncoded": false,
|
|
||||||
"isSerialized": true,
|
|
||||||
"isSigningField": true,
|
|
||||||
@@ -1646,29 +1616,29 @@
|
|
||||||
}
|
|
||||||
],
|
|
||||||
[
|
|
||||||
- "Channel",
|
|
||||||
+ "HookOn",
|
+ "HookOn",
|
||||||
{
|
{
|
||||||
- "nth": 22,
|
- "nth": 43,
|
||||||
+ "nth": 16,
|
+ "nth": 16,
|
||||||
"isVLEncoded": false,
|
"isVLEncoded": false,
|
||||||
"isSerialized": true,
|
"isSerialized": true,
|
||||||
"isSigningField": true,
|
"isSigningField": true,
|
||||||
- "type": "Hash256"
|
- "type": "UInt32"
|
||||||
+ "type": "UInt64"
|
+ "type": "UInt64"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
- "ConsensusHash",
|
- "BurnedTokens",
|
||||||
+ "EmitBurden",
|
+ "EmitBurden",
|
||||||
{
|
{
|
||||||
- "nth": 23,
|
- "nth": 44,
|
||||||
+ "nth": 12,
|
+ "nth": 12,
|
||||||
"isVLEncoded": false,
|
"isVLEncoded": false,
|
||||||
"isSerialized": true,
|
"isSerialized": true,
|
||||||
"isSigningField": true,
|
"isSigningField": true,
|
||||||
- "type": "Hash256"
|
- "type": "UInt32"
|
||||||
+ "type": "UInt64"
|
+ "type": "UInt64"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
- "CheckID",
|
@@ -1686,29 +1615,9 @@
|
||||||
+ "Channel",
|
|
||||||
{
|
|
||||||
- "nth": 24,
|
|
||||||
+ "nth": 22,
|
|
||||||
"isVLEncoded": false,
|
|
||||||
"isSerialized": true,
|
|
||||||
"isSigningField": true,
|
|
||||||
@@ -1676,9 +1646,9 @@
|
|
||||||
}
|
|
||||||
],
|
|
||||||
[
|
|
||||||
- "ValidatedHash",
|
|
||||||
+ "ConsensusHash",
|
|
||||||
{
|
|
||||||
- "nth": 25,
|
|
||||||
+ "nth": 23,
|
|
||||||
"isVLEncoded": false,
|
|
||||||
"isSerialized": true,
|
|
||||||
"isSigningField": true,
|
|
||||||
@@ -1686,9 +1656,9 @@
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
- "PreviousPageMin",
|
- "PreviousPageMin",
|
||||||
+ "CheckID",
|
|
||||||
{
|
|
||||||
- "nth": 26,
|
|
||||||
+ "nth": 24,
|
|
||||||
"isVLEncoded": false,
|
|
||||||
"isSerialized": true,
|
|
||||||
"isSigningField": true,
|
|
||||||
@@ -1696,9 +1666,9 @@
|
|
||||||
}
|
|
||||||
],
|
|
||||||
[
|
|
||||||
- "NextPageMin",
|
|
||||||
+ "ValidatedHash",
|
|
||||||
{
|
|
||||||
- "nth": 27,
|
|
||||||
+ "nth": 25,
|
|
||||||
"isVLEncoded": false,
|
|
||||||
"isSerialized": true,
|
|
||||||
"isSigningField": true,
|
|
||||||
@@ -1706,9 +1676,9 @@
|
|
||||||
}
|
|
||||||
],
|
|
||||||
[
|
|
||||||
- "BuyOffer",
|
|
||||||
+ "EmitParentTxnID",
|
+ "EmitParentTxnID",
|
||||||
{
|
{
|
||||||
|
- "nth": 26,
|
||||||
|
- "isVLEncoded": false,
|
||||||
|
- "isSerialized": true,
|
||||||
|
- "isSigningField": true,
|
||||||
|
- "type": "Hash256"
|
||||||
|
- }
|
||||||
|
- ],
|
||||||
|
- [
|
||||||
|
- "NextPageMin",
|
||||||
|
- {
|
||||||
|
- "nth": 27,
|
||||||
|
- "isVLEncoded": false,
|
||||||
|
- "isSerialized": true,
|
||||||
|
- "isSigningField": true,
|
||||||
|
- "type": "Hash256"
|
||||||
|
- }
|
||||||
|
- ],
|
||||||
|
- [
|
||||||
|
- "BuyOffer",
|
||||||
|
- {
|
||||||
- "nth": 28,
|
- "nth": 28,
|
||||||
+ "nth": 10,
|
+ "nth": 10,
|
||||||
"isVLEncoded": false,
|
"isVLEncoded": false,
|
||||||
"isSerialized": true,
|
"isSerialized": true,
|
||||||
"isSigningField": true,
|
"isSigningField": true,
|
||||||
@@ -1716,9 +1686,9 @@
|
@@ -1716,9 +1625,9 @@
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
@@ -302,7 +324,24 @@ index 2333c42..99557cb 100644
|
|||||||
"isVLEncoded": false,
|
"isVLEncoded": false,
|
||||||
"isSerialized": true,
|
"isSerialized": true,
|
||||||
"isSigningField": true,
|
"isSigningField": true,
|
||||||
@@ -1754,36 +1724,6 @@
|
@@ -1735,16 +1644,6 @@
|
||||||
|
"type": "UInt8"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
- [
|
||||||
|
- "UNLModifyDisabling",
|
||||||
|
- {
|
||||||
|
- "nth": 17,
|
||||||
|
- "isVLEncoded": false,
|
||||||
|
- "isSerialized": true,
|
||||||
|
- "isSigningField": true,
|
||||||
|
- "type": "UInt8"
|
||||||
|
- }
|
||||||
|
- ],
|
||||||
|
[
|
||||||
|
"DestinationNode",
|
||||||
|
{
|
||||||
|
@@ -1754,36 +1653,6 @@
|
||||||
"isSigningField": true,
|
"isSigningField": true,
|
||||||
"type": "UInt64"
|
"type": "UInt64"
|
||||||
}
|
}
|
||||||
@@ -339,7 +378,7 @@ index 2333c42..99557cb 100644
|
|||||||
]
|
]
|
||||||
],
|
],
|
||||||
"TRANSACTION_RESULTS": {
|
"TRANSACTION_RESULTS": {
|
||||||
@@ -1908,18 +1848,7 @@
|
@@ -1908,18 +1777,7 @@
|
||||||
"tecDUPLICATE": 149,
|
"tecDUPLICATE": 149,
|
||||||
"tecKILLED": 150,
|
"tecKILLED": 150,
|
||||||
"tecHAS_OBLIGATIONS": 151,
|
"tecHAS_OBLIGATIONS": 151,
|
||||||
@@ -359,7 +398,7 @@ index 2333c42..99557cb 100644
|
|||||||
},
|
},
|
||||||
"TRANSACTION_TYPES": {
|
"TRANSACTION_TYPES": {
|
||||||
"Invalid": -1,
|
"Invalid": -1,
|
||||||
@@ -1946,11 +1875,10 @@
|
@@ -1946,13 +1804,11 @@
|
||||||
"DepositPreauth": 19,
|
"DepositPreauth": 19,
|
||||||
"TrustSet": 20,
|
"TrustSet": 20,
|
||||||
"AccountDelete": 21,
|
"AccountDelete": 21,
|
||||||
@@ -373,5 +412,8 @@ index 2333c42..99557cb 100644
|
|||||||
+ "Batch": 24,
|
+ "Batch": 24,
|
||||||
+
|
+
|
||||||
"EnableAmendment": 100,
|
"EnableAmendment": 100,
|
||||||
"SetFee": 101,
|
- "SetFee": 101,
|
||||||
"UNLModify": 102
|
- "UNLModify": 102
|
||||||
|
+ "SetFee": 101
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
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 |
4
raw-loader.d.ts
vendored
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
declare module "*.md" {
|
||||||
|
const content: string;
|
||||||
|
export default content;
|
||||||
|
};
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
import Router from "next/router";
|
|
||||||
import toast from "react-hot-toast";
|
import toast from "react-hot-toast";
|
||||||
import state, { FaucetAccountRes } from '../index';
|
import state, { FaucetAccountRes } from '../index';
|
||||||
|
|
||||||
@@ -36,7 +36,6 @@ export const addFaucetAccount = async (showToast: boolean = false) => {
|
|||||||
|
|
||||||
|
|
||||||
const toastId = showToast ? toast.loading("Creating account") : "";
|
const toastId = showToast ? toast.loading("Creating account") : "";
|
||||||
console.log(Router)
|
|
||||||
const res = await fetch(`${window.location.origin}/api/faucet`, {
|
const res = await fetch(`${window.location.origin}/api/faucet`, {
|
||||||
method: "POST",
|
method: "POST",
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -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) => {
|
||||||
@@ -87,4 +88,4 @@ export const compileCode = async (activeId: number) => {
|
|||||||
});
|
});
|
||||||
state.compiling = false;
|
state.compiling = false;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -1,8 +1,17 @@
|
|||||||
import state, { IFile } from '../index';
|
import state, { IFile } from '../index';
|
||||||
|
|
||||||
/* Initializes empty file to global state */
|
const languageMapping = {
|
||||||
|
'ts': 'typescript',
|
||||||
|
'js': 'javascript',
|
||||||
|
'md': 'markdown',
|
||||||
|
'c': 'c',
|
||||||
|
'h': 'c',
|
||||||
|
'other': ''
|
||||||
|
} /* Initializes empty file to global state */
|
||||||
export const createNewFile = (name: string) => {
|
export const createNewFile = (name: string) => {
|
||||||
const emptyFile: IFile = { name, language: "c", content: "" };
|
const tempName = name.split('.');
|
||||||
|
const fileExt = tempName[tempName.length - 1] || 'other';
|
||||||
|
const emptyFile: IFile = { name, language: languageMapping[fileExt as 'ts' | 'js' | 'md' | 'c' | 'h' | 'other'], content: "" };
|
||||||
state.files.push(emptyFile);
|
state.files.push(emptyFile);
|
||||||
state.active = state.files.length - 1;
|
state.active = state.files.length - 1;
|
||||||
};
|
};
|
||||||
@@ -1,6 +1,8 @@
|
|||||||
import { Octokit } from "@octokit/core";
|
import { Octokit } from "@octokit/core";
|
||||||
import Router from "next/router";
|
import Router from "next/router";
|
||||||
import state from '../index';
|
import state from '../index';
|
||||||
|
import { templateFileIds } from '../constants';
|
||||||
|
|
||||||
|
|
||||||
const octokit = new Octokit();
|
const octokit = new Octokit();
|
||||||
|
|
||||||
@@ -17,6 +19,17 @@ export const fetchFiles = (gistId: string) => {
|
|||||||
|
|
||||||
octokit
|
octokit
|
||||||
.request("GET /gists/{gist_id}", { gist_id: gistId })
|
.request("GET /gists/{gist_id}", { gist_id: gistId })
|
||||||
|
.then(res => {
|
||||||
|
if (!Object.values(templateFileIds).includes(gistId)) {
|
||||||
|
return res
|
||||||
|
}
|
||||||
|
// in case of templates, fetch header file(s) and append to res
|
||||||
|
return octokit.request("GET /gists/{gist_id}", { gist_id: templateFileIds.headers }).then(({ data: { files: headerFiles } }) => {
|
||||||
|
const files = { ...res.data.files, ...headerFiles }
|
||||||
|
res.data.files = files
|
||||||
|
return res
|
||||||
|
})
|
||||||
|
})
|
||||||
.then((res) => {
|
.then((res) => {
|
||||||
if (res.data.files && Object.keys(res.data.files).length > 0) {
|
if (res.data.files && Object.keys(res.data.files).length > 0) {
|
||||||
const files = Object.keys(res.data.files).map((filename) => ({
|
const files = Object.keys(res.data.files).map((filename) => ({
|
||||||
@@ -44,6 +57,7 @@ export const fetchFiles = (gistId: string) => {
|
|||||||
state.loading = false;
|
state.loading = false;
|
||||||
})
|
})
|
||||||
.catch((err) => {
|
.catch((err) => {
|
||||||
|
// console.error(err)
|
||||||
state.loading = false;
|
state.loading = false;
|
||||||
state.logs.push({
|
state.logs.push({
|
||||||
type: "error",
|
type: "error",
|
||||||
|
|||||||
@@ -8,6 +8,7 @@ import { saveFile } from "./saveFile";
|
|||||||
import { syncToGist } from "./syncToGist";
|
import { syncToGist } from "./syncToGist";
|
||||||
import { updateEditorSettings } from "./updateEditorSettings";
|
import { updateEditorSettings } from "./updateEditorSettings";
|
||||||
import { downloadAsZip } from "./downloadAsZip";
|
import { downloadAsZip } from "./downloadAsZip";
|
||||||
|
import { sendTransaction } from "./sendTransaction";
|
||||||
|
|
||||||
export {
|
export {
|
||||||
addFaucetAccount,
|
addFaucetAccount,
|
||||||
@@ -19,5 +20,6 @@ export {
|
|||||||
saveFile,
|
saveFile,
|
||||||
syncToGist,
|
syncToGist,
|
||||||
updateEditorSettings,
|
updateEditorSettings,
|
||||||
downloadAsZip
|
downloadAsZip,
|
||||||
|
sendTransaction
|
||||||
};
|
};
|
||||||
15
state/actions/persistSplits.ts
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
import { snapshot } from "valtio"
|
||||||
|
import state from ".."
|
||||||
|
|
||||||
|
export type SplitSize = number[]
|
||||||
|
|
||||||
|
export const saveSplit = (splitId: string, event: SplitSize) => {
|
||||||
|
state.splits[splitId] = event
|
||||||
|
}
|
||||||
|
|
||||||
|
export const getSplit = (splitId: string): SplitSize | null => {
|
||||||
|
const { splits } = snapshot(state)
|
||||||
|
const split = splits[splitId]
|
||||||
|
return split ? split : null
|
||||||
|
}
|
||||||
|
|
||||||
@@ -4,8 +4,9 @@ import state from '../index';
|
|||||||
// Saves the current editor content to global state
|
// Saves the current editor content to global state
|
||||||
export const saveFile = (showToast: boolean = true) => {
|
export const saveFile = (showToast: boolean = true) => {
|
||||||
const editorModels = state.editorCtx?.getModels();
|
const editorModels = state.editorCtx?.getModels();
|
||||||
|
const sought = '/' + state.files[state.active].name;
|
||||||
const currentModel = editorModels?.find((editorModel) => {
|
const currentModel = editorModels?.find((editorModel) => {
|
||||||
return editorModel.uri.path === `/c/${state.files[state.active].name}`;
|
return editorModel.uri.path.endsWith(sought);
|
||||||
});
|
});
|
||||||
if (state.files.length > 0) {
|
if (state.files.length > 0) {
|
||||||
state.files[state.active].content = currentModel?.getValue() || "";
|
state.files[state.active].content = currentModel?.getValue() || "";
|
||||||
@@ -13,4 +14,4 @@ export const saveFile = (showToast: boolean = true) => {
|
|||||||
if (showToast) {
|
if (showToast) {
|
||||||
toast.success("Saved successfully", { position: "bottom-center" });
|
toast.success("Saved successfully", { position: "bottom-center" });
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|||||||
53
state/actions/sendTransaction.ts
Normal file
@@ -0,0 +1,53 @@
|
|||||||
|
import { derive, sign } from "xrpl-accountlib";
|
||||||
|
|
||||||
|
import state from '..'
|
||||||
|
import type { IAccount } from "..";
|
||||||
|
|
||||||
|
interface TransactionOptions {
|
||||||
|
TransactionType: string,
|
||||||
|
Account?: string,
|
||||||
|
Fee?: string,
|
||||||
|
Destination?: string
|
||||||
|
[index: string]: any
|
||||||
|
}
|
||||||
|
interface OtherOptions {
|
||||||
|
logPrefix?: string
|
||||||
|
}
|
||||||
|
|
||||||
|
export const sendTransaction = async (account: IAccount, txOptions: TransactionOptions, options?: OtherOptions) => {
|
||||||
|
if (!state.client) throw Error('XRPL client not initalized')
|
||||||
|
|
||||||
|
const { Fee = "1000", ...opts } = txOptions
|
||||||
|
const tx: TransactionOptions = {
|
||||||
|
Account: account.address,
|
||||||
|
Sequence: account.sequence, // TODO auto-fillable
|
||||||
|
Fee, // TODO auto-fillable
|
||||||
|
...opts
|
||||||
|
};
|
||||||
|
const { logPrefix = '' } = options || {}
|
||||||
|
try {
|
||||||
|
const signedAccount = derive.familySeed(account.secret);
|
||||||
|
const { signedTransaction } = sign(tx, signedAccount);
|
||||||
|
const response = await state.client.send({
|
||||||
|
command: "submit",
|
||||||
|
tx_blob: signedTransaction,
|
||||||
|
});
|
||||||
|
if (response.engine_result === "tesSUCCESS") {
|
||||||
|
state.transactionLogs.push({
|
||||||
|
type: 'success',
|
||||||
|
message: `${logPrefix}[${response.engine_result}] ${response.engine_result_message}`
|
||||||
|
})
|
||||||
|
} else {
|
||||||
|
state.transactionLogs.push({
|
||||||
|
type: "error",
|
||||||
|
message: `${logPrefix}[${response.error || response.engine_result}] ${response.error_exception || response.engine_result_message}`,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
} catch (err) {
|
||||||
|
console.error(err);
|
||||||
|
state.transactionLogs.push({
|
||||||
|
type: "error",
|
||||||
|
message: err instanceof Error ? `${logPrefix}Error: ${err.message}` : `${logPrefix}Something went wrong, try again later`,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
};
|
||||||
1
state/constants/index.ts
Normal file
@@ -0,0 +1 @@
|
|||||||
|
export * from './templates'
|
||||||
10
state/constants/templates.ts
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
export const templateFileIds = {
|
||||||
|
'starter': '1d14e51e2e02dc0a508cb0733767a914', // TODO currently same as accept
|
||||||
|
'firewall': 'bcd6d0c0fcbe52545ddb802481ff9d26',
|
||||||
|
'notary': 'a789c75f591eeab7932fd702ed8cf9ea',
|
||||||
|
'carbon': '43925143fa19735d8c6505c34d3a6a47',
|
||||||
|
'peggy': 'ceaf352e2a65741341033ab7ef05c448',
|
||||||
|
'headers': '9b448e8a55fab11ef5d1274cb59f9cf3'
|
||||||
|
}
|
||||||
|
|
||||||
|
export const apiHeaderFiles = ['hookapi.h', 'sfcodes.h', 'hookmacro.h']
|
||||||
@@ -1,7 +1,8 @@
|
|||||||
import { proxy, ref, subscribe } from "valtio";
|
|
||||||
import { devtools } from 'valtio/utils'
|
|
||||||
import type monaco from "monaco-editor";
|
import type monaco from "monaco-editor";
|
||||||
|
import { proxy, ref, subscribe } from "valtio";
|
||||||
|
import { devtools } from 'valtio/utils';
|
||||||
import { XrplClient } from "xrpl-client";
|
import { XrplClient } from "xrpl-client";
|
||||||
|
import { SplitSize } from "./actions/persistSplits";
|
||||||
|
|
||||||
export interface IFile {
|
export interface IFile {
|
||||||
name: string;
|
name: string;
|
||||||
@@ -9,6 +10,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 {
|
||||||
@@ -32,8 +34,11 @@ export interface IAccount {
|
|||||||
export interface ILog {
|
export interface ILog {
|
||||||
type: "error" | "warning" | "log" | "success";
|
type: "error" | "warning" | "log" | "success";
|
||||||
message: string;
|
message: string;
|
||||||
|
jsonData?: any,
|
||||||
|
timestamp?: string;
|
||||||
link?: string;
|
link?: string;
|
||||||
linkText?: string;
|
linkText?: string;
|
||||||
|
defaultCollapsed?: boolean
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface IState {
|
export interface IState {
|
||||||
@@ -49,10 +54,14 @@ export interface IState {
|
|||||||
compiling: boolean;
|
compiling: boolean;
|
||||||
logs: ILog[];
|
logs: ILog[];
|
||||||
deployLogs: ILog[];
|
deployLogs: ILog[];
|
||||||
|
transactionLogs: ILog[];
|
||||||
editorCtx?: typeof monaco.editor;
|
editorCtx?: typeof monaco.editor;
|
||||||
editorSettings: {
|
editorSettings: {
|
||||||
tabSize: number;
|
tabSize: number;
|
||||||
};
|
};
|
||||||
|
splits: {
|
||||||
|
[id: string]: SplitSize
|
||||||
|
};
|
||||||
client: XrplClient | null;
|
client: XrplClient | null;
|
||||||
clientStatus: "offline" | "online";
|
clientStatus: "offline" | "online";
|
||||||
mainModalOpen: boolean;
|
mainModalOpen: boolean;
|
||||||
@@ -62,12 +71,15 @@ export interface IState {
|
|||||||
// let localStorageState: null | string = null;
|
// let localStorageState: null | string = null;
|
||||||
let initialState: IState = {
|
let initialState: IState = {
|
||||||
files: [],
|
files: [],
|
||||||
|
// active file index on the Develop page editor
|
||||||
active: 0,
|
active: 0,
|
||||||
|
// Active file index on the Deploy page editor
|
||||||
activeWat: 0,
|
activeWat: 0,
|
||||||
loading: false,
|
loading: false,
|
||||||
compiling: false,
|
compiling: false,
|
||||||
logs: [],
|
logs: [],
|
||||||
deployLogs: [],
|
deployLogs: [],
|
||||||
|
transactionLogs: [],
|
||||||
editorCtx: undefined,
|
editorCtx: undefined,
|
||||||
gistId: undefined,
|
gistId: undefined,
|
||||||
gistOwner: undefined,
|
gistOwner: undefined,
|
||||||
@@ -77,6 +89,7 @@ let initialState: IState = {
|
|||||||
editorSettings: {
|
editorSettings: {
|
||||||
tabSize: 2,
|
tabSize: 2,
|
||||||
},
|
},
|
||||||
|
splits: {},
|
||||||
client: null,
|
client: null,
|
||||||
clientStatus: "offline" as "offline",
|
clientStatus: "offline" as "offline",
|
||||||
mainModalOpen: false,
|
mainModalOpen: false,
|
||||||
@@ -85,6 +98,9 @@ let initialState: IState = {
|
|||||||
|
|
||||||
let localStorageAccounts: string | null = null;
|
let localStorageAccounts: string | null = null;
|
||||||
let initialAccounts: IAccount[] = [];
|
let initialAccounts: IAccount[] = [];
|
||||||
|
|
||||||
|
// TODO: What exactly should we store in localStorage? editorSettings, splits, accounts?
|
||||||
|
|
||||||
// Check if there's a persited accounts in localStorage
|
// Check if there's a persited accounts in localStorage
|
||||||
if (typeof window !== "undefined") {
|
if (typeof window !== "undefined") {
|
||||||
try {
|
try {
|
||||||
@@ -133,4 +149,4 @@ if (typeof window !== "undefined") {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
export default state
|
export default state
|
||||||
|
|||||||
@@ -1,28 +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,
|
||||||
@@ -38,24 +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",
|
||||||
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)",
|
||||||
},
|
},
|
||||||
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",
|
||||||
@@ -71,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",
|
||||||
@@ -107,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",
|
||||||
@@ -215,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,
|
||||||
}),
|
}),
|
||||||
@@ -279,45 +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,
|
||||||
|
...redDark,
|
||||||
|
deep: "rgb(10, 10, 10)",
|
||||||
|
// 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'
|
|
||||||
}
|
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -6,8 +6,51 @@ body,
|
|||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
|
overflow-y: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
* {
|
* {
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.monaco-hover p {
|
||||||
|
margin-bottom: 10px !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.gutter {
|
||||||
|
position: relative;
|
||||||
|
transition: border-color 0.3s, background-color 0.3s;
|
||||||
|
}
|
||||||
|
|
||||||
|
.gutter-vertical {
|
||||||
|
margin-top: -4px;
|
||||||
|
}
|
||||||
|
.gutter-horizontal {
|
||||||
|
margin-left: -4px;
|
||||||
|
}
|
||||||
|
.gutter-vertical:hover {
|
||||||
|
cursor: row-resize;
|
||||||
|
background-color: rgba(255, 255, 255, 0.25);
|
||||||
|
}
|
||||||
|
html.light .gutter-vertical:hover {
|
||||||
|
background-color: rgba(0, 0, 0, 0.25);
|
||||||
|
}
|
||||||
|
.gutter-horizontal:hover {
|
||||||
|
cursor: col-resize;
|
||||||
|
background-color: rgba(255, 255, 255, 0.25);
|
||||||
|
}
|
||||||
|
|
||||||
|
html.light .gutter-horizontal:hover {
|
||||||
|
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,10 +182,10 @@
|
|||||||
],
|
],
|
||||||
"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",
|
||||||
"editorWhitespace.foreground": "#BFBFBF"
|
"editorWhitespace.foreground": "#BFBFBF"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
"inherit": true,
|
"inherit": true,
|
||||||
"rules": [
|
"rules": [
|
||||||
{
|
{
|
||||||
"background": "FFFFFF",
|
"background": "F4F2F4",
|
||||||
"token": ""
|
"token": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -89,10 +89,10 @@
|
|||||||
],
|
],
|
||||||
"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",
|
||||||
"editorWhitespace.foreground": "#BFBFBF"
|
"editorWhitespace.foreground": "#BFBFBF"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -26,6 +26,7 @@
|
|||||||
"**/*.tsx"
|
"**/*.tsx"
|
||||||
],
|
],
|
||||||
"exclude": [
|
"exclude": [
|
||||||
"node_modules"
|
"node_modules",
|
||||||
|
"*.md"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
21
utils/json.ts
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
export const extractJSON = (str?: string) => {
|
||||||
|
if (!str) return
|
||||||
|
let firstOpen = 0, firstClose = 0, candidate = '';
|
||||||
|
firstOpen = str.indexOf('{', firstOpen + 1);
|
||||||
|
do {
|
||||||
|
firstClose = str.lastIndexOf('}');
|
||||||
|
if (firstClose <= firstOpen) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
do {
|
||||||
|
candidate = str.substring(firstOpen, firstClose + 1);
|
||||||
|
try {
|
||||||
|
let result = JSON.parse(candidate);
|
||||||
|
return { result, start: firstOpen < 0 ? 0 : firstOpen, end: firstClose }
|
||||||
|
}
|
||||||
|
catch (e) { }
|
||||||
|
firstClose = str.substring(0, firstClose).lastIndexOf('}');
|
||||||
|
} while (firstClose > firstOpen);
|
||||||
|
firstOpen = str.indexOf('{', firstOpen + 1);
|
||||||
|
} while (firstOpen != -1);
|
||||||
|
}
|
||||||
714
utils/wat-highlight.ts
Normal file
@@ -0,0 +1,714 @@
|
|||||||
|
// 'WebAssembly Text Format' Monarch language
|
||||||
|
|
||||||
|
import type monaco from 'monaco-editor';
|
||||||
|
|
||||||
|
const WebAssemblyTextLanguage: { config: monaco.languages.LanguageConfiguration, tokens: monaco.languages.IMonarchLanguage } = {
|
||||||
|
config: {
|
||||||
|
brackets: [
|
||||||
|
["(", ")"],
|
||||||
|
["if", "end"],
|
||||||
|
["loop", "end"],
|
||||||
|
["block", "end"],
|
||||||
|
],
|
||||||
|
autoClosingPairs: [
|
||||||
|
{ open: "(", close: ")" },
|
||||||
|
{ open: "if", close: "end" },
|
||||||
|
{ open: "loop", close: "end" },
|
||||||
|
{ open: "block", close: "end" },
|
||||||
|
],
|
||||||
|
surroundingPairs: [
|
||||||
|
{ open: "(", close: ")" },
|
||||||
|
{ open: "if", close: "end" },
|
||||||
|
{ open: "loop", close: "end" },
|
||||||
|
{ open: "block", close: "end" },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
tokens: {
|
||||||
|
keywords: [
|
||||||
|
"module",
|
||||||
|
"import",
|
||||||
|
"export",
|
||||||
|
"memory",
|
||||||
|
"data",
|
||||||
|
"table",
|
||||||
|
"elem",
|
||||||
|
"start",
|
||||||
|
"func",
|
||||||
|
"tag",
|
||||||
|
"type",
|
||||||
|
"param",
|
||||||
|
"result",
|
||||||
|
"global",
|
||||||
|
"local",
|
||||||
|
"mut",
|
||||||
|
"struct",
|
||||||
|
"array",
|
||||||
|
"field",
|
||||||
|
],
|
||||||
|
types: [
|
||||||
|
"i8",
|
||||||
|
"i16",
|
||||||
|
"i32",
|
||||||
|
"i64",
|
||||||
|
"f32",
|
||||||
|
"f64",
|
||||||
|
"v128",
|
||||||
|
"i31ref",
|
||||||
|
"eqref",
|
||||||
|
"anyref",
|
||||||
|
"dataref",
|
||||||
|
"externref",
|
||||||
|
"funcref",
|
||||||
|
"exnref",
|
||||||
|
"extern",
|
||||||
|
"null",
|
||||||
|
"any",
|
||||||
|
"eq",
|
||||||
|
],
|
||||||
|
instructions: [
|
||||||
|
"pop",
|
||||||
|
"nop",
|
||||||
|
"drop",
|
||||||
|
"data.drop",
|
||||||
|
"elem.drop",
|
||||||
|
"local.get",
|
||||||
|
"local.set",
|
||||||
|
"local.tee",
|
||||||
|
"global.get",
|
||||||
|
"global.set",
|
||||||
|
"tuple.make",
|
||||||
|
"tuple.extract",
|
||||||
|
"select",
|
||||||
|
"v128.const",
|
||||||
|
"v128.and",
|
||||||
|
"v128.or",
|
||||||
|
"v128.xor",
|
||||||
|
"v128.not",
|
||||||
|
"v128.andnot",
|
||||||
|
"v128.bitselect",
|
||||||
|
"v128.load",
|
||||||
|
"v128.load8x8_s",
|
||||||
|
"v128.load8x8_u",
|
||||||
|
"v128.load16x4_s",
|
||||||
|
"v128.load16x4_u",
|
||||||
|
"v128.load32x2_s",
|
||||||
|
"v128.load32x2_u",
|
||||||
|
"v128.load8_lane",
|
||||||
|
"v128.load16_lane",
|
||||||
|
"v128.load32_lane",
|
||||||
|
"v128.load64_lane",
|
||||||
|
"v128.load8_splat",
|
||||||
|
"v128.load16_splat",
|
||||||
|
"v128.load32_splat",
|
||||||
|
"v128.load64_splat",
|
||||||
|
"v128.load32_zero",
|
||||||
|
"v128.load64_zero",
|
||||||
|
"v128.store",
|
||||||
|
"v128.store8_lane",
|
||||||
|
"v128.store16_lane",
|
||||||
|
"v128.store32_lane",
|
||||||
|
"v128.store64_lane",
|
||||||
|
"v128.any_true",
|
||||||
|
"i8x16.shuffle",
|
||||||
|
"i8x16.swizzle",
|
||||||
|
"i8x16.bitmask",
|
||||||
|
"i8x16.splat",
|
||||||
|
"i8x16.popcnt",
|
||||||
|
"i8x16.replace_lane",
|
||||||
|
"i8x16.extract_lane_s",
|
||||||
|
"i8x16.extract_lane_u",
|
||||||
|
"i8x16.all_true",
|
||||||
|
"i8x16.abs",
|
||||||
|
"i8x16.add",
|
||||||
|
"i8x16.add_sat_s",
|
||||||
|
"i8x16.add_sat_u",
|
||||||
|
"i8x16.sub",
|
||||||
|
"i8x16.sub_sat_s",
|
||||||
|
"i8x16.sub_sat_u",
|
||||||
|
"i8x16.mul",
|
||||||
|
"i8x16.neg",
|
||||||
|
"i8x16.shl",
|
||||||
|
"i8x16.shr_s",
|
||||||
|
"i8x16.shr_u",
|
||||||
|
"i8x16.eq",
|
||||||
|
"i8x16.ne",
|
||||||
|
"i8x16.lt_s",
|
||||||
|
"i8x16.lt_u",
|
||||||
|
"i8x16.le_s",
|
||||||
|
"i8x16.le_u",
|
||||||
|
"i8x16.gt_s",
|
||||||
|
"i8x16.gt_u",
|
||||||
|
"i8x16.ge_s",
|
||||||
|
"i8x16.ge_u",
|
||||||
|
"i8x16.min_s",
|
||||||
|
"i8x16.min_u",
|
||||||
|
"i8x16.max_s",
|
||||||
|
"i8x16.max_u",
|
||||||
|
"i8x16.avgr_u",
|
||||||
|
"i8x16.narrow_i16x8_s",
|
||||||
|
"i8x16.narrow_i16x8_u",
|
||||||
|
"i16x8.bitmask",
|
||||||
|
"i16x8.splat",
|
||||||
|
"i16x8.load_8x8_s",
|
||||||
|
"i16x8.load_8x8_u",
|
||||||
|
"i16x8.replace_lane",
|
||||||
|
"i16x8.extract_lane_s",
|
||||||
|
"i16x8.extract_lane_u",
|
||||||
|
"i16x8.extend_low_i8x16_s",
|
||||||
|
"i16x8.extend_high_i8x16_s",
|
||||||
|
"i16x8.extend_low_i8x16_u",
|
||||||
|
"i16x8.extend_high_i8x16_u",
|
||||||
|
"i16x8.all_true",
|
||||||
|
"i16x8.abs",
|
||||||
|
"i16x8.add",
|
||||||
|
"i16x8.add_sat_s",
|
||||||
|
"i16x8.add_sat_u",
|
||||||
|
"i16x8.extadd_pairwise_i8x16_s",
|
||||||
|
"i16x8.extadd_pairwise_i8x16_u",
|
||||||
|
"i16x8.sub",
|
||||||
|
"i16x8.sub_sat_s",
|
||||||
|
"i16x8.sub_sat_u",
|
||||||
|
"i16x8.q15mulr_sat_s",
|
||||||
|
"i16x8.mul",
|
||||||
|
"i16x8.extmul_low_i8x16_s",
|
||||||
|
"i16x8.extmul_high_i8x16_s",
|
||||||
|
"i16x8.extmul_low_i8x16_u",
|
||||||
|
"i16x8.extmul_high_i8x16_u",
|
||||||
|
"i16x8.neg",
|
||||||
|
"i16x8.shl",
|
||||||
|
"i16x8.shr_s",
|
||||||
|
"i16x8.shr_u",
|
||||||
|
"i16x8.eq",
|
||||||
|
"i16x8.ne",
|
||||||
|
"i16x8.lt_s",
|
||||||
|
"i16x8.lt_u",
|
||||||
|
"i16x8.le_s",
|
||||||
|
"i16x8.le_u",
|
||||||
|
"i16x8.gt_s",
|
||||||
|
"i16x8.gt_u",
|
||||||
|
"i16x8.ge_s",
|
||||||
|
"i16x8.ge_u",
|
||||||
|
"i16x8.min_s",
|
||||||
|
"i16x8.min_u",
|
||||||
|
"i16x8.max_s",
|
||||||
|
"i16x8.max_u",
|
||||||
|
"i16x8.avgr_u",
|
||||||
|
"i16x8.narrow_i32x4_s",
|
||||||
|
"i16x8.narrow_i32x4_u",
|
||||||
|
"i32x4.bitmask",
|
||||||
|
"i32x4.splat",
|
||||||
|
"i32x4.load_16x4_s",
|
||||||
|
"i32x4.load_16x4_u",
|
||||||
|
"i32x4.replace_lane",
|
||||||
|
"i32x4.extract_lane",
|
||||||
|
"i32x4.extend_low_i16x8_s",
|
||||||
|
"i32x4.extend_high_i16x8_s",
|
||||||
|
"i32x4.extend_low_i16x8_u",
|
||||||
|
"i32x4.extend_high_i16x8_u",
|
||||||
|
"i32x4.all_true",
|
||||||
|
"i32x4.abs",
|
||||||
|
"i32x4.add",
|
||||||
|
"i32x4.extadd_pairwise_i16x8_s",
|
||||||
|
"i32x4.extadd_pairwise_i16x8_u",
|
||||||
|
"i32x4.sub",
|
||||||
|
"i32x4.mul",
|
||||||
|
"i32x4.extmul_low_i16x8_s",
|
||||||
|
"i32x4.extmul_high_i16x8_s",
|
||||||
|
"i32x4.extmul_low_i16x8_u",
|
||||||
|
"i32x4.extmul_high_i16x8_u",
|
||||||
|
"i32x4.neg",
|
||||||
|
"i32x4.shl",
|
||||||
|
"i32x4.shr_s",
|
||||||
|
"i32x4.shr_u",
|
||||||
|
"i32x4.eq",
|
||||||
|
"i32x4.ne",
|
||||||
|
"i32x4.lt_s",
|
||||||
|
"i32x4.lt_u",
|
||||||
|
"i32x4.le_s",
|
||||||
|
"i32x4.le_u",
|
||||||
|
"i32x4.gt_s",
|
||||||
|
"i32x4.gt_u",
|
||||||
|
"i32x4.ge_s",
|
||||||
|
"i32x4.ge_u",
|
||||||
|
"i32x4.min_s",
|
||||||
|
"i32x4.min_u",
|
||||||
|
"i32x4.max_s",
|
||||||
|
"i32x4.max_u",
|
||||||
|
"i32x4.trunc_sat_f32x4_s",
|
||||||
|
"i32x4.trunc_sat_f32x4_u",
|
||||||
|
"i32x4.trunc_sat_f64x2_s_zero",
|
||||||
|
"i32x4.trunc_sat_f64x2_u_zero",
|
||||||
|
"i32x4.dot_i16x8_s",
|
||||||
|
"i64x2.bitmask",
|
||||||
|
"i64x2.splat",
|
||||||
|
"i64x2.load32x2_s",
|
||||||
|
"i64x2.load32x2_u",
|
||||||
|
"i64x2.replace_lane",
|
||||||
|
"i64x2.extract_lane",
|
||||||
|
"i64x2.extend_low_i32x4_s",
|
||||||
|
"i64x2.extend_high_i32x4_s",
|
||||||
|
"i64x2.extend_low_i32x4_u",
|
||||||
|
"i64x2.extend_high_i32x4_u",
|
||||||
|
"i64x2.all_true",
|
||||||
|
"i64x2.abs",
|
||||||
|
"i64x2.add",
|
||||||
|
"i64x2.sub",
|
||||||
|
"i64x2.mul",
|
||||||
|
"i64x2.neg",
|
||||||
|
"i64x2.shl",
|
||||||
|
"i64x2.shr_s",
|
||||||
|
"i64x2.shr_u",
|
||||||
|
"f32x4.splat",
|
||||||
|
"f32x4.replace_lane",
|
||||||
|
"f32x4.extract_lane",
|
||||||
|
"f32x4.add",
|
||||||
|
"f32x4.sub",
|
||||||
|
"f32x4.mul",
|
||||||
|
"i64x2.extmul_low_i32x4_s",
|
||||||
|
"i64x2.extmul_high_i32x4_s",
|
||||||
|
"i64x2.extmul_low_i32x4_u",
|
||||||
|
"i64x2.extmul_high_i32x4_u",
|
||||||
|
"i64x2.eq",
|
||||||
|
"i64x2.ne",
|
||||||
|
"i64x2.lt_s",
|
||||||
|
"i64x2.le_s",
|
||||||
|
"i64x2.gt_s",
|
||||||
|
"i64x2.ge_s",
|
||||||
|
"f32x4.neg",
|
||||||
|
"f32x4.eq",
|
||||||
|
"f32x4.ne",
|
||||||
|
"f32x4.lt",
|
||||||
|
"f32x4.le",
|
||||||
|
"f32x4.gt",
|
||||||
|
"f32x4.ge",
|
||||||
|
"f32x4.abs",
|
||||||
|
"f32x4.min",
|
||||||
|
"f32x4.pmin",
|
||||||
|
"f32x4.max",
|
||||||
|
"f32x4.pmax",
|
||||||
|
"f32x4.div",
|
||||||
|
"f32x4.sqrt",
|
||||||
|
"f32x4.ceil",
|
||||||
|
"f32x4.floor",
|
||||||
|
"f32x4.trunc",
|
||||||
|
"f32x4.nearest",
|
||||||
|
"f32x4.demote_f64x2_zero",
|
||||||
|
"f32x4.convert_i32x4_s",
|
||||||
|
"f32x4.convert_i32x4_u",
|
||||||
|
"f64x2.splat",
|
||||||
|
"f64x2.replace_lane",
|
||||||
|
"f64x2.extract_lane",
|
||||||
|
"f64x2.add",
|
||||||
|
"f64x2.sub",
|
||||||
|
"f64x2.mul",
|
||||||
|
"f64x2.neg",
|
||||||
|
"f64x2.eq",
|
||||||
|
"f64x2.ne",
|
||||||
|
"f64x2.lt",
|
||||||
|
"f64x2.le",
|
||||||
|
"f64x2.gt",
|
||||||
|
"f64x2.ge",
|
||||||
|
"f64x2.abs",
|
||||||
|
"f64x2.min",
|
||||||
|
"f64x2.max",
|
||||||
|
"f64x2.pmin",
|
||||||
|
"f64x2.pmax",
|
||||||
|
"f64x2.div",
|
||||||
|
"f64x2.sqrt",
|
||||||
|
"f64x2.ceil",
|
||||||
|
"f64x2.floor",
|
||||||
|
"f64x2.trunc",
|
||||||
|
"f64x2.nearest",
|
||||||
|
"f64x2.promote_low_f32x4",
|
||||||
|
"f64x2.convert_low_i32x4_s",
|
||||||
|
"f64x2.convert_low_i32x4_u",
|
||||||
|
"i32.atomic.load",
|
||||||
|
"i32.atomic.load8_u",
|
||||||
|
"i32.atomic.load16_u",
|
||||||
|
"i32.atomic.store",
|
||||||
|
"i32.atomic.store8",
|
||||||
|
"i32.atomic.store16",
|
||||||
|
"i32.atomic.rmw.add",
|
||||||
|
"i32.atomic.rmw.sub",
|
||||||
|
"i32.atomic.rmw.and",
|
||||||
|
"i32.atomic.rmw.or",
|
||||||
|
"i32.atomic.rmw.xor",
|
||||||
|
"i32.atomic.rmw.xchg",
|
||||||
|
"i32.atomic.rmw.cmpxchg",
|
||||||
|
"i32.atomic.rmw8.add_u",
|
||||||
|
"i32.atomic.rmw8.sub_u",
|
||||||
|
"i32.atomic.rmw8.and_u",
|
||||||
|
"i32.atomic.rmw8.or_u",
|
||||||
|
"i32.atomic.rmw8.xor_u",
|
||||||
|
"i32.atomic.rmw8.xchg_u",
|
||||||
|
"i32.atomic.rmw8.cmpxchg_u",
|
||||||
|
"i32.atomic.rmw16.add_u",
|
||||||
|
"i32.atomic.rmw16.sub_u",
|
||||||
|
"i32.atomic.rmw16.and_u",
|
||||||
|
"i32.atomic.rmw16.or_u",
|
||||||
|
"i32.atomic.rmw16.xor_u",
|
||||||
|
"i32.atomic.rmw16.xchg_u",
|
||||||
|
"i32.atomic.rmw16.cmpxchg_u",
|
||||||
|
"i64.atomic.load",
|
||||||
|
"i64.atomic.load8_u",
|
||||||
|
"i64.atomic.load16_u",
|
||||||
|
"i64.atomic.load32_u",
|
||||||
|
"i64.atomic.store",
|
||||||
|
"i64.atomic.store8",
|
||||||
|
"i64.atomic.store16",
|
||||||
|
"i64.atomic.store32",
|
||||||
|
"i64.atomic.rmw.add",
|
||||||
|
"i64.atomic.rmw.sub",
|
||||||
|
"i64.atomic.rmw.and",
|
||||||
|
"i64.atomic.rmw.or",
|
||||||
|
"i64.atomic.rmw.xor",
|
||||||
|
"i64.atomic.rmw.xchg",
|
||||||
|
"i64.atomic.rmw.cmpxchg",
|
||||||
|
"i64.atomic.rmw8.add_u",
|
||||||
|
"i64.atomic.rmw8.sub_u",
|
||||||
|
"i64.atomic.rmw8.and_u",
|
||||||
|
"i64.atomic.rmw8.or_u",
|
||||||
|
"i64.atomic.rmw8.xor_u",
|
||||||
|
"i64.atomic.rmw8.xchg_u",
|
||||||
|
"i64.atomic.rmw8.cmpxchg_u",
|
||||||
|
"i64.atomic.rmw16.add_u",
|
||||||
|
"i64.atomic.rmw16.sub_u",
|
||||||
|
"i64.atomic.rmw16.and_u",
|
||||||
|
"i64.atomic.rmw16.or_u",
|
||||||
|
"i64.atomic.rmw16.xor_u",
|
||||||
|
"i64.atomic.rmw16.xchg_u",
|
||||||
|
"i64.atomic.rmw16.cmpxchg_u",
|
||||||
|
"i64.atomic.rmw32.add_u",
|
||||||
|
"i64.atomic.rmw32.sub_u",
|
||||||
|
"i64.atomic.rmw32.and_u",
|
||||||
|
"i64.atomic.rmw32.or_u",
|
||||||
|
"i64.atomic.rmw32.xor_u",
|
||||||
|
"i64.atomic.rmw32.xchg_u",
|
||||||
|
"i64.atomic.rmw32.cmpxchg_u",
|
||||||
|
"atomic.fence",
|
||||||
|
"func.bind",
|
||||||
|
"ref",
|
||||||
|
"ref.eq",
|
||||||
|
"ref.null",
|
||||||
|
"ref.is_null",
|
||||||
|
"ref.is_func",
|
||||||
|
"ref.is_data",
|
||||||
|
"ref.is_i31",
|
||||||
|
"ref.as_func",
|
||||||
|
"ref.as_non_null",
|
||||||
|
"ref.as_data",
|
||||||
|
"ref.as_i31",
|
||||||
|
"ref.func",
|
||||||
|
"ref.cast",
|
||||||
|
"ref.cast_static",
|
||||||
|
"ref.test",
|
||||||
|
"ref.test_static",
|
||||||
|
"table.get",
|
||||||
|
"table.set",
|
||||||
|
"table.size",
|
||||||
|
"table.grow",
|
||||||
|
"table.fill",
|
||||||
|
"table.init",
|
||||||
|
"table.copy",
|
||||||
|
"throw",
|
||||||
|
"rethrow",
|
||||||
|
"i32.load",
|
||||||
|
"i32.load8_s",
|
||||||
|
"i32.load8_u",
|
||||||
|
"i32.load16_s",
|
||||||
|
"i32.load16_u",
|
||||||
|
"i32.store",
|
||||||
|
"i32.store8",
|
||||||
|
"i32.store16",
|
||||||
|
"i32.const",
|
||||||
|
"i32.eqz",
|
||||||
|
"i32.eq",
|
||||||
|
"i32.ne",
|
||||||
|
"i32.lt_s",
|
||||||
|
"i32.lt_u",
|
||||||
|
"i32.le_s",
|
||||||
|
"i32.le_u",
|
||||||
|
"i32.gt_s",
|
||||||
|
"i32.gt_u",
|
||||||
|
"i32.ge_s",
|
||||||
|
"i32.ge_u",
|
||||||
|
"i32.clz",
|
||||||
|
"i32.ctz",
|
||||||
|
"i32.popcnt",
|
||||||
|
"i32.add",
|
||||||
|
"i32.sub",
|
||||||
|
"i32.mul",
|
||||||
|
"i32.div_s",
|
||||||
|
"i32.div_u",
|
||||||
|
"i32.rem_s",
|
||||||
|
"i32.rem_u",
|
||||||
|
"i32.and",
|
||||||
|
"i32.or",
|
||||||
|
"i32.xor",
|
||||||
|
"i32.shl",
|
||||||
|
"i32.shr_s",
|
||||||
|
"i32.shr_u",
|
||||||
|
"i32.rotl",
|
||||||
|
"i32.rotr",
|
||||||
|
"i32.wrap_i64",
|
||||||
|
"i32.trunc_f32_s",
|
||||||
|
"i32.trunc_f32_u",
|
||||||
|
"i32.trunc_f64_s",
|
||||||
|
"i32.trunc_f64_u",
|
||||||
|
"i32.reinterpret_f32",
|
||||||
|
"i64.load",
|
||||||
|
"i64.load8_s",
|
||||||
|
"i64.load8_u",
|
||||||
|
"i64.load16_s",
|
||||||
|
"i64.load16_u",
|
||||||
|
"i64.load32_s",
|
||||||
|
"i64.load32_u",
|
||||||
|
"i64.store",
|
||||||
|
"i64.store8",
|
||||||
|
"i64.store16",
|
||||||
|
"i64.store32",
|
||||||
|
"i64.const",
|
||||||
|
"i64.eqz",
|
||||||
|
"i64.eq",
|
||||||
|
"i64.ne",
|
||||||
|
"i64.lt_s",
|
||||||
|
"i64.lt_u",
|
||||||
|
"i64.le_s",
|
||||||
|
"i64.le_u",
|
||||||
|
"i64.gt_s",
|
||||||
|
"i64.gt_u",
|
||||||
|
"i64.ge_s",
|
||||||
|
"i64.ge_u",
|
||||||
|
"i64.clz",
|
||||||
|
"i64.ctz",
|
||||||
|
"i64.popcnt",
|
||||||
|
"i64.add",
|
||||||
|
"i64.sub",
|
||||||
|
"i64.mul",
|
||||||
|
"i64.div_s",
|
||||||
|
"i64.div_u",
|
||||||
|
"i64.rem_s",
|
||||||
|
"i64.rem_u",
|
||||||
|
"i64.and",
|
||||||
|
"i64.or",
|
||||||
|
"i64.xor",
|
||||||
|
"i64.shl",
|
||||||
|
"i64.shr_s",
|
||||||
|
"i64.shr_u",
|
||||||
|
"i64.rotl",
|
||||||
|
"i64.rotr",
|
||||||
|
"i64.extend_i32_s",
|
||||||
|
"i64.extend_i32_u",
|
||||||
|
"i64.trunc_f32_s",
|
||||||
|
"i64.trunc_f32_u",
|
||||||
|
"i64.trunc_f64_s",
|
||||||
|
"i64.trunc_f64_u",
|
||||||
|
"i64.reinterpret_f64",
|
||||||
|
"f32.load",
|
||||||
|
"f32.store",
|
||||||
|
"f32.const",
|
||||||
|
"f32.eq",
|
||||||
|
"f32.ne",
|
||||||
|
"f32.lt",
|
||||||
|
"f32.le",
|
||||||
|
"f32.gt",
|
||||||
|
"f32.ge",
|
||||||
|
"f32.abs",
|
||||||
|
"f32.neg",
|
||||||
|
"f32.ceil",
|
||||||
|
"f32.floor",
|
||||||
|
"f32.trunc",
|
||||||
|
"f32.nearest",
|
||||||
|
"f32.sqrt",
|
||||||
|
"f32.add",
|
||||||
|
"f32.sub",
|
||||||
|
"f32.mul",
|
||||||
|
"f32.div",
|
||||||
|
"f32.min",
|
||||||
|
"f32.max",
|
||||||
|
"f32.copysign",
|
||||||
|
"f32.convert_i32_s",
|
||||||
|
"f32.convert_i32_u",
|
||||||
|
"f32.convert_i64_s",
|
||||||
|
"f32.convert_i64_u",
|
||||||
|
"f32.demote_f64",
|
||||||
|
"f32.reinterpret_i32",
|
||||||
|
"f64.load",
|
||||||
|
"f64.store",
|
||||||
|
"f64.const",
|
||||||
|
"f64.eq",
|
||||||
|
"f64.ne",
|
||||||
|
"f64.lt",
|
||||||
|
"f64.le",
|
||||||
|
"f64.gt",
|
||||||
|
"f64.ge",
|
||||||
|
"f64.abs",
|
||||||
|
"f64.neg",
|
||||||
|
"f64.ceil",
|
||||||
|
"f64.floor",
|
||||||
|
"f64.trunc",
|
||||||
|
"f64.nearest",
|
||||||
|
"f64.sqrt",
|
||||||
|
"f64.add",
|
||||||
|
"f64.sub",
|
||||||
|
"f64.mul",
|
||||||
|
"f64.div",
|
||||||
|
"f64.min",
|
||||||
|
"f64.max",
|
||||||
|
"f64.copysign",
|
||||||
|
"f64.convert_i32_s",
|
||||||
|
"f64.convert_i32_u",
|
||||||
|
"f64.convert_i64_s",
|
||||||
|
"f64.convert_i64_u",
|
||||||
|
"f64.promote_f32",
|
||||||
|
"f64.reinterpret_i64",
|
||||||
|
"i32.extend8_s",
|
||||||
|
"i32.extend16_s",
|
||||||
|
"i64.extend8_s",
|
||||||
|
"i64.extend16_s",
|
||||||
|
"i64.extend32_s",
|
||||||
|
"i32.trunc_sat_f32_s",
|
||||||
|
"i32.trunc_sat_f32_u",
|
||||||
|
"i32.trunc_sat_f64_s",
|
||||||
|
"i32.trunc_sat_f64_u",
|
||||||
|
"i64.trunc_sat_f32_s",
|
||||||
|
"i64.trunc_sat_f32_u",
|
||||||
|
"i64.trunc_sat_f64_s",
|
||||||
|
"i64.trunc_sat_f64_u",
|
||||||
|
"memory.size",
|
||||||
|
"memory.grow",
|
||||||
|
"memory.copy",
|
||||||
|
"memory.fill",
|
||||||
|
"memory.init",
|
||||||
|
"memory.atomic.notify",
|
||||||
|
"memory.atomic.wait32",
|
||||||
|
"memory.atomic.wait64",
|
||||||
|
"i31.new",
|
||||||
|
"i31.get_u",
|
||||||
|
"i31.get_s",
|
||||||
|
"array.new",
|
||||||
|
"array.new_default",
|
||||||
|
"array.init",
|
||||||
|
"array.init_static",
|
||||||
|
"array.get",
|
||||||
|
"array.get_s",
|
||||||
|
"array.get_u",
|
||||||
|
"array.set",
|
||||||
|
"array.len",
|
||||||
|
"array.copy",
|
||||||
|
"struct.new",
|
||||||
|
"struct.new_default",
|
||||||
|
"struct.new_with_rtt",
|
||||||
|
"struct.new_default_with_rtt",
|
||||||
|
"struct.get",
|
||||||
|
"struct.get_s",
|
||||||
|
"struct.get_u",
|
||||||
|
"struct.set",
|
||||||
|
"rtt.canon",
|
||||||
|
"rtt.sub",
|
||||||
|
"rtt.fresh_sub",
|
||||||
|
],
|
||||||
|
controlInstructions: [
|
||||||
|
"block",
|
||||||
|
"loop",
|
||||||
|
"if",
|
||||||
|
"else",
|
||||||
|
"then",
|
||||||
|
"end",
|
||||||
|
"do",
|
||||||
|
"let",
|
||||||
|
"br",
|
||||||
|
"br_if",
|
||||||
|
"br_table",
|
||||||
|
"br_on_exn",
|
||||||
|
"br_on_null",
|
||||||
|
"br_on_non_null",
|
||||||
|
"br_on_cast",
|
||||||
|
"br_on_cast_static",
|
||||||
|
"br_on_cast_fail",
|
||||||
|
"br_on_cast_static_fail",
|
||||||
|
"br_on_func",
|
||||||
|
"br_on_non_func",
|
||||||
|
"br_on_data",
|
||||||
|
"br_on_non_data",
|
||||||
|
"br_on_i31",
|
||||||
|
"br_on_non_i31",
|
||||||
|
"call",
|
||||||
|
"call_indirect",
|
||||||
|
"call_ref",
|
||||||
|
"return",
|
||||||
|
"return_call",
|
||||||
|
"return_call_indirect",
|
||||||
|
"return_call_ref",
|
||||||
|
"try",
|
||||||
|
"catch",
|
||||||
|
"catch_all",
|
||||||
|
"delegate",
|
||||||
|
"unreachable",
|
||||||
|
],
|
||||||
|
|
||||||
|
escapes:
|
||||||
|
/\\(?:[abfnrtv\\"']|x[0-9A-Fa-f]{1,4}|u[0-9A-Fa-f]{4}|U[0-9A-Fa-f]{8})/,
|
||||||
|
digits: /\d+(_+\d+)*/,
|
||||||
|
octaldigits: /[0-7]+(_+[0-7]+)*/,
|
||||||
|
binarydigits: /[0-1]+(_+[0-1]+)*/,
|
||||||
|
hexdigits: /[[0-9a-fA-F]+(_+[0-9a-fA-F]+)*/,
|
||||||
|
|
||||||
|
tokenizer: {
|
||||||
|
root: [
|
||||||
|
// whitespace
|
||||||
|
{ include: "@whitespace" },
|
||||||
|
|
||||||
|
// strings
|
||||||
|
[/"([^"\\]|\\.)*$/, "string.invalid"], // non-teminated string
|
||||||
|
[/"/, "string", "@string"],
|
||||||
|
|
||||||
|
// numbers (not all of these are generated, but here to be sure)
|
||||||
|
[/(@digits)[eE]([\-+]?(@digits))?[fFdD]?/, "number.float"],
|
||||||
|
[/(@digits)\.(@digits)([eE][\-+]?(@digits))?[fFdD]?/, "number.float"],
|
||||||
|
[/0[xX](@hexdigits)[Ll]?/, "number.hex"],
|
||||||
|
[/0(@octaldigits)[Ll]?/, "number.octal"],
|
||||||
|
[/0[bB](@binarydigits)[Ll]?/, "number.binary"],
|
||||||
|
[/(@digits)[fFdD]/, "number.float"],
|
||||||
|
[/(@digits)[lL]?/, "number"],
|
||||||
|
|
||||||
|
// variable names
|
||||||
|
[/\$[^\s\)]*/, { token: "identifier" }],
|
||||||
|
|
||||||
|
// instructions and types
|
||||||
|
[
|
||||||
|
/[a-z0-9_]+(?:\.[a-z0-9_]+)*/,
|
||||||
|
{
|
||||||
|
cases: {
|
||||||
|
"@types": { token: "type.$0" },
|
||||||
|
"@keywords": { token: "keyword.$0" },
|
||||||
|
"@controlInstructions": { token: "controlInstruction.$0" },
|
||||||
|
"@instructions": { token: "instruction.$0" },
|
||||||
|
"@default": "identifier",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
],
|
||||||
|
|
||||||
|
string: [
|
||||||
|
[/[^\\"]+/, "string"],
|
||||||
|
[/@escapes/, "string.escape"],
|
||||||
|
[/\\./, "string.escape.invalid"],
|
||||||
|
[/"/, "string", "@pop"],
|
||||||
|
],
|
||||||
|
|
||||||
|
whitespace: [
|
||||||
|
[/[ \t\r\n]+/, ""],
|
||||||
|
[/(;; )(ERROR |FAILURE )([^\n]*)/, ["comment", "error", ""]],
|
||||||
|
[/(;; )(WARNING )([^\n]*)/, ["comment", "warning", ""]],
|
||||||
|
[/(;; )(INFO )([^\n]*)/, ["comment", "info", ""]],
|
||||||
|
[/(;; )(PEDANTIC )([^\n]*)/, ["comment", "pedantic", ""]],
|
||||||
|
[/(;; +)(~+|\^)$/, ["comment", "underline"]],
|
||||||
|
[/(;; )([^\n]*)/, ["comment", ""]],
|
||||||
|
[/;;[^\n]*/, "comment"],
|
||||||
|
],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
export default WebAssemblyTextLanguage;
|
||||||
87
xrpl-hooks-docs/docs.ts
Normal file
@@ -0,0 +1,87 @@
|
|||||||
|
import hooksAccountBufLen from "./md/hooks-account-buf-len.md";
|
||||||
|
import hooksAccountConvBufLen from "./md/hooks-account-conv-buf-len.md";
|
||||||
|
import hooksAccountConvPure from "./md/hooks-account-conv-pure.md";
|
||||||
|
import hooksArrayBufLen from "./md/hooks-array-buf-len.md";
|
||||||
|
import hooksBurdenPrereq from "./md/hooks-burden-prereq.md";
|
||||||
|
import hooksDetailBufLen from "./md/hooks-detail-buf-len.md";
|
||||||
|
import hooksDetailPrereq from "./md/hooks-detail-prereq.md";
|
||||||
|
import hooksEmitBufLen from "./md/hooks-emit-buf-len.md";
|
||||||
|
import hooksEmitPrereq from "./md/hooks-emit-prereq.md";
|
||||||
|
import hooksEntryPointRecursion from "./md/hooks-entry-point-recursion.md";
|
||||||
|
import hooksEntryPointsNeg from "./md/hooks-entry-points-neg.md";
|
||||||
|
import hooksEntryPoints from "./md/hooks-entry-points.md";
|
||||||
|
import hooksFeePrereq from "./md/hooks-fee-prereq.md";
|
||||||
|
import hooksFieldAddBufLen from "./md/hooks-field-add-buf-len.md";
|
||||||
|
import hooksFieldBufLen from "./md/hooks-field-buf-len.md";
|
||||||
|
import hooksFieldDelBufLen from "./md/hooks-field-del-buf-len.md";
|
||||||
|
import hooksFloatArithPure from "./md/hooks-float-arith-pure.md";
|
||||||
|
import hooksFloatComparePure from "./md/hooks-float-compare-pure.md";
|
||||||
|
import hooksFloatIntPure from "./md/hooks-float-int-pure.md";
|
||||||
|
import hooksFloatManipPure from "./md/hooks-float-manip-pure.md";
|
||||||
|
import hooksFloatOnePure from "./md/hooks-float-one-pure.md";
|
||||||
|
import hooksFloatPure from "./md/hooks-float-pure.md";
|
||||||
|
import hooksGuardCalled from "./md/hooks-guard-called.md";
|
||||||
|
import hooksGuardInFor from "./md/hooks-guard-in-for.md";
|
||||||
|
import hooksGuardInWhile from "./md/hooks-guard-in-while.md";
|
||||||
|
import hooksHashBufLen from "./md/hooks-hash-buf-len.md";
|
||||||
|
import hooksKeyletBufLen from "./md/hooks-keylet-buf-len.md";
|
||||||
|
import hooksRaddrConvBufLen from "./md/hooks-raddr-conv-buf-len.md";
|
||||||
|
import hooksRaddrConvPure from "./md/hooks-raddr-conv-pure.md";
|
||||||
|
import hooksReserveLimit from "./md/hooks-reserve-limit.md";
|
||||||
|
import hooksSlotHashBufLen from "./md/hooks-slot-hash-buf-len.md";
|
||||||
|
import hooksSlotKeyletBufLen from "./md/hooks-slot-keylet-buf-len.md";
|
||||||
|
import hooksSlotLimit from "./md/hooks-slot-limit.md";
|
||||||
|
import hooksSlotSubLimit from "./md/hooks-slot-sub-limit.md";
|
||||||
|
import hooksSlotTypeLimit from "./md/hooks-slot-type-limit.md";
|
||||||
|
import hooksStateBufLen from "./md/hooks-state-buf-len.md";
|
||||||
|
import hooksTransactionHashBufLen from "./md/hooks-transaction-hash-buf-len.md";
|
||||||
|
import hooksTransactionSlotLimit from "./md/hooks-transaction-slot-limit.md";
|
||||||
|
import hooksValidateBufLen from "./md/hooks-validate-buf-len.md";
|
||||||
|
import hooksVerifyBufLen from "./md/hooks-verify-buf-len.md";
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
const docs: { [key: string]: string; } = {
|
||||||
|
"hooks-account-buf-len": hooksAccountBufLen,
|
||||||
|
"hooks-account-conv-buf-len": hooksAccountConvBufLen,
|
||||||
|
"hooks-account-conv-pure": hooksAccountConvPure,
|
||||||
|
"hooks-array-buf-len": hooksArrayBufLen,
|
||||||
|
"hooks-burden-prereq": hooksBurdenPrereq,
|
||||||
|
"hooks-detail-buf-len": hooksDetailBufLen,
|
||||||
|
"hooks-detail-prereq": hooksDetailPrereq,
|
||||||
|
"hooks-emit-buf-len": hooksEmitBufLen,
|
||||||
|
"hooks-emit-prereq": hooksEmitPrereq,
|
||||||
|
"hooks-entry-point-recursion": hooksEntryPointRecursion,
|
||||||
|
"hooks-entry-points-neg": hooksEntryPointsNeg,
|
||||||
|
"hooks-entry-points": hooksEntryPoints,
|
||||||
|
"hooks-fee-prereq": hooksFeePrereq,
|
||||||
|
"hooks-field-add-buf-len": hooksFieldAddBufLen,
|
||||||
|
"hooks-field-buf-len": hooksFieldBufLen,
|
||||||
|
"hooks-field-del-buf-len": hooksFieldDelBufLen,
|
||||||
|
"hooks-float-arith-pure": hooksFloatArithPure,
|
||||||
|
"hooks-float-compare-pure": hooksFloatComparePure,
|
||||||
|
"hooks-float-int-pure": hooksFloatIntPure,
|
||||||
|
"hooks-float-manip-pure": hooksFloatManipPure,
|
||||||
|
"hooks-float-one-pure": hooksFloatOnePure,
|
||||||
|
"hooks-float-pure": hooksFloatPure,
|
||||||
|
"hooks-guard-called": hooksGuardCalled,
|
||||||
|
"hooks-guard-in-for": hooksGuardInFor,
|
||||||
|
"hooks-guard-in-while": hooksGuardInWhile,
|
||||||
|
"hooks-hash-buf-len": hooksHashBufLen,
|
||||||
|
"hooks-keylet-buf-len": hooksKeyletBufLen,
|
||||||
|
"hooks-raddr-conv-buf-len": hooksRaddrConvBufLen,
|
||||||
|
"hooks-raddr-conv-pure": hooksRaddrConvPure,
|
||||||
|
"hooks-reserve-limit": hooksReserveLimit,
|
||||||
|
"hooks-slot-hash-buf-len": hooksSlotHashBufLen,
|
||||||
|
"hooks-slot-keylet-buf-len": hooksSlotKeyletBufLen,
|
||||||
|
"hooks-slot-limit": hooksSlotLimit,
|
||||||
|
"hooks-slot-sub-limit": hooksSlotSubLimit,
|
||||||
|
"hooks-slot-type-limit": hooksSlotTypeLimit,
|
||||||
|
"hooks-state-buf-len": hooksStateBufLen,
|
||||||
|
"hooks-transaction-hash-buf-len": hooksTransactionHashBufLen,
|
||||||
|
"hooks-transaction-slot-limit": hooksTransactionSlotLimit,
|
||||||
|
"hooks-validate-buf-len": hooksValidateBufLen,
|
||||||
|
"hooks-verify-buf-len": hooksVerifyBufLen,
|
||||||
|
};
|
||||||
|
|
||||||
|
export default docs;
|
||||||
6
xrpl-hooks-docs/md/hooks-account-buf-len.md
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
# hooks-account-buf-len
|
||||||
|
|
||||||
|
Function `hook_account` has fixed-size account ID output.
|
||||||
|
|
||||||
|
This check warns about too-small size of its output buffer (if it's
|
||||||
|
specified by a constant - variable parameter is ignored).
|
||||||
7
xrpl-hooks-docs/md/hooks-account-conv-buf-len.md
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
# hooks-account-conv-buf-len
|
||||||
|
|
||||||
|
Function `util_raddr` has fixed-size account ID input.
|
||||||
|
|
||||||
|
This check warns unless the correct size is passed in the input size
|
||||||
|
parameter (if it's specified by a constant - variable parameter is
|
||||||
|
ignored).
|
||||||
10
xrpl-hooks-docs/md/hooks-account-conv-pure.md
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
# hooks-account-conv-pure
|
||||||
|
|
||||||
|
Hooks identify accounts by the 20 byte account ID, which can be
|
||||||
|
converted to an raddr using the `util_raddr` function. If the account
|
||||||
|
ID never changes, a more efficient way to do this is precompute the
|
||||||
|
raddr from the account ID.
|
||||||
|
|
||||||
|
This check warns about calls of `util_raddr` with constant input and
|
||||||
|
proposes to add a tracing statement showing the computed value (so
|
||||||
|
that the user can use it to replace the call).
|
||||||
9
xrpl-hooks-docs/md/hooks-array-buf-len.md
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
# hooks-array-buf-len
|
||||||
|
|
||||||
|
Hook API `sto_subarray` requires non-empty input buffer and takes a
|
||||||
|
parameter specifying the array index, whose value is limited - the
|
||||||
|
sought object cannot be found if the limit is exceeded.
|
||||||
|
|
||||||
|
This check warns about empty input as well as too-large values of the
|
||||||
|
index specified in calls to `sto_subarray` (if they're specified by
|
||||||
|
constants - variable parameters are ignored).
|
||||||
5
xrpl-hooks-docs/md/hooks-burden-prereq.md
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
# hooks-burden-prereq
|
||||||
|
|
||||||
|
Hook API `etxn_burden` computes transaction burden, based on (i.a.)
|
||||||
|
the number of reserved transactions, so a call to it must be preceded
|
||||||
|
by a call to `etxn_reserve`.
|
||||||
6
xrpl-hooks-docs/md/hooks-detail-buf-len.md
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
# hooks-detail-buf-len
|
||||||
|
|
||||||
|
Function `etxn_details` has fixed-size sfEmitDetails output.
|
||||||
|
|
||||||
|
This check warns about too-small size of its output buffer (if it's
|
||||||
|
specified by a constant - variable parameter is ignored).
|
||||||
5
xrpl-hooks-docs/md/hooks-detail-prereq.md
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
# hooks-detail-prereq
|
||||||
|
|
||||||
|
Hook API `etxn_details` serializes emit details, based on (i.a.) the
|
||||||
|
number of reserved transactions, so a call to it must be preceded by a
|
||||||
|
call to `etxn_reserve`.
|
||||||
6
xrpl-hooks-docs/md/hooks-emit-buf-len.md
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
# hooks-emit-buf-len
|
||||||
|
|
||||||
|
Function `emit` has fixed-size transaction hash output.
|
||||||
|
|
||||||
|
This check warns about too-small size of its output buffer (if it's
|
||||||
|
specified by a constant - variable parameter is ignored).
|
||||||
5
xrpl-hooks-docs/md/hooks-emit-prereq.md
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
# hooks-emit-prereq
|
||||||
|
|
||||||
|
Before emitting a transaction using `emit` Hook API, a hook must set a
|
||||||
|
maximal count of transactions it plans to emit, by calling
|
||||||
|
`etxn_reserve`.
|
||||||
4
xrpl-hooks-docs/md/hooks-entry-point-recursion.md
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
# hooks-entry-point-recursion
|
||||||
|
|
||||||
|
Recursive calls are disallowed in the implementation of hook entry
|
||||||
|
points.
|
||||||
4
xrpl-hooks-docs/md/hooks-entry-points-neg.md
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
# hooks-entry-points-neg
|
||||||
|
|
||||||
|
Shows error on function definitions with unexpected (that is, neither
|
||||||
|
`hook` nor `cbak`) names.
|
||||||
6
xrpl-hooks-docs/md/hooks-entry-points.md
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
# hooks-entry-points
|
||||||
|
|
||||||
|
A Hook always implements and exports exactly two functions: `cbak` and
|
||||||
|
`hook`.
|
||||||
|
|
||||||
|
This check shows error on translation units that do not have them.
|
||||||
5
xrpl-hooks-docs/md/hooks-fee-prereq.md
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
# hooks-fee-prereq
|
||||||
|
|
||||||
|
Hook API `etxn_fee_base` estimates a transaction fee, based on (i.a.)
|
||||||
|
the number of reserved transactions, so a call to it must be preceded
|
||||||
|
by a call to `etxn_reserve`.
|
||||||
9
xrpl-hooks-docs/md/hooks-field-add-buf-len.md
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
# hooks-field-add-buf-len
|
||||||
|
|
||||||
|
Emplacing a new field into STObject by calling `sto_emplace` requires
|
||||||
|
enough space to serialize the new STObject into; the API also limits
|
||||||
|
sizes of the old object and field.
|
||||||
|
|
||||||
|
This check warns about insufficient output buffer space as well as
|
||||||
|
too-large values of the inputs in calls to `sto_emplace` (if they're
|
||||||
|
specified by constants - variable parameters are ignored).
|
||||||
6
xrpl-hooks-docs/md/hooks-field-buf-len.md
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
# hooks-field-buf-len
|
||||||
|
|
||||||
|
Hook API `sto_subfield` requires non-empty input buffer.
|
||||||
|
|
||||||
|
This check warns about empty input in calls to `sto_subfield` (if it's
|
||||||
|
specified by a constant - variable parameter is ignored).
|
||||||
9
xrpl-hooks-docs/md/hooks-field-del-buf-len.md
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
# hooks-field-del-buf-len
|
||||||
|
|
||||||
|
Erasing a field from STObject by calling `sto_erase` requires enough
|
||||||
|
space to serialize the new STObject into; the API also limits size of
|
||||||
|
the old object.
|
||||||
|
|
||||||
|
This check warns about insufficient output buffer space as well as
|
||||||
|
too-large value of the input STObject in calls to `sto_erase` (if
|
||||||
|
they're specified by constants - variable parameters are ignored).
|
||||||
15
xrpl-hooks-docs/md/hooks-float-arith-pure.md
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
# hooks-float-arith-pure
|
||||||
|
|
||||||
|
Hooks can compute floating-point values in XFL format by calling
|
||||||
|
functions `float_multiply`, `float_mulratio`, `float_negate`,
|
||||||
|
`float_sum`, `float_invert` and `float_divide` and access their
|
||||||
|
constituent parts by calling `float_exponent`, `float_mantissa` and
|
||||||
|
`float_sign`. If the inputs of the computation never change, a more
|
||||||
|
efficient way to do this is to precompute it.
|
||||||
|
|
||||||
|
This check warns about calls of the aforementioned functions with
|
||||||
|
constant inputs and in simple cases proposes to add a tracing
|
||||||
|
statement showing the computed value (so that the user can use it to
|
||||||
|
replace the call). It also checks that the divisor passed to
|
||||||
|
`float_divide`, `float_mulratio` and `float_invert` is not 0 (if it's
|
||||||
|
specified by a constant - variable parameters are ignored).
|
||||||
9
xrpl-hooks-docs/md/hooks-float-compare-pure.md
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
# hooks-float-compare-pure
|
||||||
|
|
||||||
|
Hooks can compare floating-point values in XFL format by calling the
|
||||||
|
`float_compare` function. If the inputs of the comparison never
|
||||||
|
change, its result is fixed and the function need not be called.
|
||||||
|
|
||||||
|
This check warns about calls of `float_compare` with constant inputs
|
||||||
|
as well as invalid values of the comparison mode parameter (if it's
|
||||||
|
specified by a constant - variable parameter is ignored).
|
||||||
10
xrpl-hooks-docs/md/hooks-float-int-pure.md
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
# hooks-float-int-pure
|
||||||
|
|
||||||
|
Hooks can convert floating-point values in XFL format to integers by
|
||||||
|
calling the `float_int` function. If the inputs of this function never
|
||||||
|
change, a more efficient way to do this is to precompute the integer
|
||||||
|
value.
|
||||||
|
|
||||||
|
This check warns about calls of `float_int` with constant inputs as
|
||||||
|
well as invalid values of the decimal places parameter (if it's
|
||||||
|
specified by a constant - variable parameter is ignored).
|
||||||
13
xrpl-hooks-docs/md/hooks-float-manip-pure.md
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
# hooks-float-manip-pure
|
||||||
|
|
||||||
|
Hooks can directly manipulate floating-point values in XFL format by
|
||||||
|
calling functions `float_exponent_set`, `float_mantissa_set` and
|
||||||
|
`float_sign_set`. If the inputs of the update never change, a more
|
||||||
|
efficient way to do this is to precompute it.
|
||||||
|
|
||||||
|
This check warns about calls of the aforementioned functions with
|
||||||
|
constant inputs and in simple cases proposes to add a tracing
|
||||||
|
statement showing the computed value (so that the user can use it to
|
||||||
|
replace the call). It also checks documented bounds of the second
|
||||||
|
parameter of these functions (if it's specified by a constant -
|
||||||
|
variable parameter is ignored).
|
||||||
5
xrpl-hooks-docs/md/hooks-float-one-pure.md
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
# hooks-float-one-pure
|
||||||
|
|
||||||
|
Hooks can obtain XFL enclosing number 1 by calling the float_one
|
||||||
|
function. Since the number never changes, a more efficient way is to
|
||||||
|
use its precomputed value.
|
||||||
12
xrpl-hooks-docs/md/hooks-float-pure.md
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
# hooks-float-pure
|
||||||
|
|
||||||
|
Hooks can use floating-point values in XFL format, creating them from
|
||||||
|
mantissa and exponent by calling the `float_set` function. If the
|
||||||
|
mantissa and exponent never change, a more efficient way to do this is
|
||||||
|
to precompute the floating-point value.
|
||||||
|
|
||||||
|
This check warns about calls of `float_set` with constant inputs and
|
||||||
|
proposes to add a tracing statement showing the computed value (so
|
||||||
|
that the user can use it to replace the call). In the special case of
|
||||||
|
0 mantissa and 0 exponent ("canonical 0"), a replacement value of 0 is
|
||||||
|
proposed directly, with no need to trace it.
|
||||||
5
xrpl-hooks-docs/md/hooks-guard-called.md
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
# hooks-guard-called
|
||||||
|
|
||||||
|
Every hook needs to import the guard function `_g` and use it at least once.
|
||||||
|
|
||||||
|
[Read documentation](https://xrpl-hooks.readme.io/docs/loops-and-guarding)
|
||||||
12
xrpl-hooks-docs/md/hooks-guard-in-for.md
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
# hooks-guard-in-for
|
||||||
|
|
||||||
|
Consider the following for-loop in C:
|
||||||
|
|
||||||
|
```c
|
||||||
|
#define GUARD(maxiter) _g(__LINE__, (maxiter)+1)
|
||||||
|
|
||||||
|
for (int i = 0; GUARD(3), i < 3; ++i)
|
||||||
|
```
|
||||||
|
|
||||||
|
This is the only way to satisfy the guard rule when using a for-loop
|
||||||
|
in C.
|
||||||
11
xrpl-hooks-docs/md/hooks-guard-in-while.md
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
# hooks-guard-in-while
|
||||||
|
|
||||||
|
Like for loops, while loops must have a guard in their condition:
|
||||||
|
|
||||||
|
```c
|
||||||
|
|
||||||
|
#define GUARD(maxiter) _g(__LINE__, (maxiter)+1)
|
||||||
|
|
||||||
|
int i = 0;
|
||||||
|
while (GUARD(3), i < 3)
|
||||||
|
```
|
||||||
7
xrpl-hooks-docs/md/hooks-hash-buf-len.md
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
# hooks-hash-buf-len
|
||||||
|
|
||||||
|
Functions `util_sha512h`, `hook_hash`, `ledger_last_hash` and `nonce`
|
||||||
|
have fixed-size hash output.
|
||||||
|
|
||||||
|
This check warns about too-small size of their output buffer (if it's
|
||||||
|
specified by a constant - variable parameter is ignored).
|
||||||
8
xrpl-hooks-docs/md/hooks-keylet-buf-len.md
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
# hooks-keylet-buf-len
|
||||||
|
|
||||||
|
Computing a ripple keylet by calling `util_keylet` requires valid
|
||||||
|
parameters dependent on the keylet type.
|
||||||
|
|
||||||
|
This check does not fully parse these parameters, but warns about
|
||||||
|
invalid keylet type as well as buffer sizes that cannot be valid (if
|
||||||
|
they're specified by constants - variable parameters are ignored).
|
||||||
8
xrpl-hooks-docs/md/hooks-raddr-conv-buf-len.md
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
# hooks-raddr-conv-buf-len
|
||||||
|
|
||||||
|
Hook API `util_accid` has upper limit on the length of its input
|
||||||
|
(because it expects it to be a raddr) and fixed-size account ID
|
||||||
|
output.
|
||||||
|
|
||||||
|
This check warns about invalid sizes of input and output parameters
|
||||||
|
(if they're specified by constants - variable parameters are ignored).
|
||||||
10
xrpl-hooks-docs/md/hooks-raddr-conv-pure.md
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
# hooks-raddr-conv-pure
|
||||||
|
|
||||||
|
Hooks identify accounts by the 20 byte account ID, which can be
|
||||||
|
converted from a raddr using the `util_accid` function. If the raddr
|
||||||
|
never changes, a more efficient way to do this is precompute the
|
||||||
|
account-id from the raddr.
|
||||||
|
|
||||||
|
This check warns about calls of `util_accid` with constant input and
|
||||||
|
proposes to add a tracing statement showing the computed value (so
|
||||||
|
that the user can use it to replace the call).
|
||||||
9
xrpl-hooks-docs/md/hooks-reserve-limit.md
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
# hooks-reserve-limit
|
||||||
|
|
||||||
|
Hook API `etxn_reserve` takes a parameter specifying the number of
|
||||||
|
transactions intended to emit from the calling hook. Value of this
|
||||||
|
parameter is limited, and the function fails if the limit is exceeded.
|
||||||
|
|
||||||
|
This check warns about too-large values of the number of reserved
|
||||||
|
transactions (if they're specified by a constant - variable parameter
|
||||||
|
is ignored).
|
||||||
7
xrpl-hooks-docs/md/hooks-slot-hash-buf-len.md
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
# hooks-slot-hash-buf-len
|
||||||
|
|
||||||
|
Function `slot_id` has fixed-size canonical hash output.
|
||||||
|
|
||||||
|
This check warns about too-small size of its output buffer as well as
|
||||||
|
invalid values of the slot number parameter (if they're specified by
|
||||||
|
constants - variable parameters are ignored).
|
||||||
7
xrpl-hooks-docs/md/hooks-slot-keylet-buf-len.md
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
# hooks-slot-keylet-buf-len
|
||||||
|
|
||||||
|
Function `slot_set` has structured keylet input.
|
||||||
|
|
||||||
|
This check does not parse the input, but warns about its sizes that
|
||||||
|
cannot be valid as well as invalid values of the slot number parameter
|
||||||
|
(if they're specified by constants - variable parameters are ignored).
|
||||||
9
xrpl-hooks-docs/md/hooks-slot-limit.md
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
# hooks-slot-limit
|
||||||
|
|
||||||
|
Hook APIs `slot`, `slot_count`, `slot_clear`, `slot_size`,
|
||||||
|
`slot_float` and `trace_slot` take a parameter specifying the accessed
|
||||||
|
slot number. Value of this parameter is limited, and the functions
|
||||||
|
fail if the limit is exceeded.
|
||||||
|
|
||||||
|
This check warns about too-large values of the slot number (if it's
|
||||||
|
specified by a constant - variable parameter is ignored).
|
||||||
8
xrpl-hooks-docs/md/hooks-slot-sub-limit.md
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
# hooks-slot-sub-limit
|
||||||
|
|
||||||
|
Hook APIs `slot_subarray` and `slot_subfield` take parameters
|
||||||
|
specifying parent and child slot numbers. Values of these parameters
|
||||||
|
are limited, and the functions fail if the limit is exceeded.
|
||||||
|
|
||||||
|
This check warns about too-large values of the slot numbers (if
|
||||||
|
they're specified by a constant - variable parameters are ignored).
|
||||||
9
xrpl-hooks-docs/md/hooks-slot-type-limit.md
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
# hooks-slot-type-limit
|
||||||
|
|
||||||
|
Hook API `slot_type` takes a parameter specifying the accessed slot
|
||||||
|
number. Value of this parameter is limited, and the function fails if
|
||||||
|
the limit is exceeded.
|
||||||
|
|
||||||
|
This check warns about too-large values of the slot number as well as
|
||||||
|
invalid values of the flags parameter (if they're specified by
|
||||||
|
constants - variable parameters are ignored).
|
||||||
6
xrpl-hooks-docs/md/hooks-state-buf-len.md
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
# hooks-state-buf-len
|
||||||
|
|
||||||
|
Functions state and state_set accept fixed-size Hook State key.
|
||||||
|
|
||||||
|
This check warns about invalid size of its input buffer (if it's
|
||||||
|
specified by a constant - variable parameter is ignored).
|
||||||
6
xrpl-hooks-docs/md/hooks-transaction-hash-buf-len.md
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
# hooks-transaction-hash-buf-len
|
||||||
|
|
||||||
|
Function `otxn_id` has fixed-size canonical hash output.
|
||||||
|
|
||||||
|
This check warns about too-small size of its output buffer (if it's
|
||||||
|
specified by a constant - variable parameter is ignored).
|
||||||