Compare commits
31 Commits
beba067305
...
main
Author | SHA1 | Date | |
---|---|---|---|
70414baac0
|
|||
2edc5171d9
|
|||
f78c9cd655
|
|||
b01a3696a0
|
|||
68fa9f64d7
|
|||
52660afcba
|
|||
2fc8269442
|
|||
05ff8493e4
|
|||
a22ea56b50
|
|||
8214b7807c
|
|||
2f400f5e48
|
|||
d0cf9e65b9
|
|||
dea7b2cd20
|
|||
c9ddfbc9b8
|
|||
6e82e10cbb | |||
c56390050d
|
|||
735284416a
|
|||
ba76193d33
|
|||
b843facac6
|
|||
145aa06095
|
|||
1bff66232d
|
|||
e184b43a6f
|
|||
f73b1a7e0b
|
|||
1a936aa112
|
|||
2f6b56d55b
|
|||
76fe3e8083
|
|||
314e0e76f8
|
|||
248880aa9a
|
|||
4ac92e5fa2
|
|||
5bd0bf1a95
|
|||
87a35aeffc
|
@ -5,14 +5,13 @@ on:
|
||||
jobs:
|
||||
deploy_site:
|
||||
runs-on: ubuntu-latest
|
||||
container:
|
||||
image: src.pmh.codes/build-tools/react2minio:latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- run: |
|
||||
curl -fsSL https://deb.nodesource.com/setup_20.x | sudo bash -
|
||||
apt-get install -y nodejs
|
||||
- run: npm i
|
||||
- run: wget https://dl.min.io/client/mc/release/linux-arm64/mc -O /tmp/mc
|
||||
- run: chmod +x /tmp/mc
|
||||
- run: /tmp/mc alias set minio http://minio-service.minio.svc.cluster.local:9000 ${{ secrets.MINIO_ACCESS_KEY }} ${{ secrets.MINIO_SECRET_KEY }}
|
||||
- run: /tmp/mc mirror $PWD/ minio/ptools --exclude '.git/*' --exclude '.gitea/*' --overwrite
|
||||
- run: mc alias set minio http://minio-service.minio.svc.cluster.local:9000 ${{ secrets.MINIO_ACCESS_KEY }} ${{ secrets.MINIO_SECRET_KEY }}
|
||||
- run: echo "export const VERSION = '$(git rev-parse --short HEAD)'" > src/version.ts
|
||||
- run: pnpm i
|
||||
- run: pnpm build
|
||||
- run: mc mirror $PWD/dist/ minio/ptools --overwrite
|
||||
|
||||
|
7
.prettierrc
Normal file
7
.prettierrc
Normal file
@ -0,0 +1,7 @@
|
||||
{
|
||||
"semi": false,
|
||||
"singleQuote": true,
|
||||
"tabWidth": 2,
|
||||
"useTabs": false,
|
||||
"trailingComma": "none"
|
||||
}
|
63
README.md
63
README.md
@ -1,50 +1,17 @@
|
||||
# React + TypeScript + Vite
|
||||
# PTools
|
||||
A collection of tools for string conversions
|
||||
|
||||
This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.
|
||||
## Demo
|
||||
* https://ptools.pmh.codes
|
||||
|
||||
Currently, two official plugins are available:
|
||||
|
||||
- [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/README.md) uses [Babel](https://babeljs.io/) for Fast Refresh
|
||||
- [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh
|
||||
|
||||
## Expanding the ESLint configuration
|
||||
|
||||
If you are developing a production application, we recommend updating the configuration to enable type aware lint rules:
|
||||
|
||||
- Configure the top-level `parserOptions` property like this:
|
||||
|
||||
```js
|
||||
export default tseslint.config({
|
||||
languageOptions: {
|
||||
// other options...
|
||||
parserOptions: {
|
||||
project: ['./tsconfig.node.json', './tsconfig.app.json'],
|
||||
tsconfigRootDir: import.meta.dirname,
|
||||
},
|
||||
},
|
||||
})
|
||||
```
|
||||
|
||||
- Replace `tseslint.configs.recommended` to `tseslint.configs.recommendedTypeChecked` or `tseslint.configs.strictTypeChecked`
|
||||
- Optionally add `...tseslint.configs.stylisticTypeChecked`
|
||||
- Install [eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react) and update the config:
|
||||
|
||||
```js
|
||||
// eslint.config.js
|
||||
import react from 'eslint-plugin-react'
|
||||
|
||||
export default tseslint.config({
|
||||
// Set the react version
|
||||
settings: { react: { version: '18.3' } },
|
||||
plugins: {
|
||||
// Add the react plugin
|
||||
react,
|
||||
},
|
||||
rules: {
|
||||
// other rules...
|
||||
// Enable its recommended rules
|
||||
...react.configs.recommended.rules,
|
||||
...react.configs['jsx-runtime'].rules,
|
||||
},
|
||||
})
|
||||
```
|
||||
## Transforms
|
||||
* Regular Expression Parser (for parsing logs)
|
||||
* Datetime Parser
|
||||
* Base64 Encoder/Decoder
|
||||
* URI Encoding Encoder/Decoder
|
||||
* JSON Beautifier/Simplifier
|
||||
* String Escaper/Unescaper
|
||||
* JSON2YAML / YAML2JSON
|
||||
* GZIP Zipped Base64 Unzipper
|
||||
* Python Dictionary to JSON
|
||||
* JSON to Python Dictionary
|
||||
|
@ -3,6 +3,8 @@ import globals from 'globals'
|
||||
import reactHooks from 'eslint-plugin-react-hooks'
|
||||
import reactRefresh from 'eslint-plugin-react-refresh'
|
||||
import tseslint from 'typescript-eslint'
|
||||
import eslintConfigPrettier from 'eslint-config-prettier'
|
||||
import eslintPluginPrettierRecommended from 'eslint-plugin-prettier/recommended'
|
||||
|
||||
export default tseslint.config(
|
||||
{ ignores: ['dist'] },
|
||||
@ -11,18 +13,20 @@ export default tseslint.config(
|
||||
files: ['**/*.{ts,tsx}'],
|
||||
languageOptions: {
|
||||
ecmaVersion: 2020,
|
||||
globals: globals.browser,
|
||||
globals: globals.browser
|
||||
},
|
||||
plugins: {
|
||||
'react-hooks': reactHooks,
|
||||
'react-refresh': reactRefresh,
|
||||
'react-refresh': reactRefresh
|
||||
},
|
||||
rules: {
|
||||
...reactHooks.configs.recommended.rules,
|
||||
'react-refresh/only-export-components': [
|
||||
'warn',
|
||||
{ allowConstantExport: true },
|
||||
],
|
||||
},
|
||||
{ allowConstantExport: true }
|
||||
]
|
||||
}
|
||||
},
|
||||
eslintConfigPrettier,
|
||||
eslintPluginPrettierRecommended
|
||||
)
|
||||
|
42
package.json
42
package.json
@ -10,29 +10,39 @@
|
||||
"preview": "vite preview"
|
||||
},
|
||||
"dependencies": {
|
||||
"@fontsource-variable/jetbrains-mono": "^5.1.1",
|
||||
"@monaco-editor/react": "^4.6.0",
|
||||
"framer-motion": "^11.11.10",
|
||||
"@fontsource-variable/jetbrains-mono": "^5.2.5",
|
||||
"@monaco-editor/react": "^4.7.0",
|
||||
"@uidotdev/usehooks": "^2.4.1",
|
||||
"clsx": "^2.1.1",
|
||||
"framer-motion": "^11.18.2",
|
||||
"json5": "^2.2.3",
|
||||
"moment": "^2.30.1",
|
||||
"normalize.css": "^8.0.1",
|
||||
"react": "^18.3.1",
|
||||
"react-dom": "^18.3.1",
|
||||
"react-tooltip": "^5.28.0",
|
||||
"recoil": "^0.7.7",
|
||||
"styled-components": "^6.1.13"
|
||||
"strtime": "^1.1.2",
|
||||
"styled-components": "^6.1.16",
|
||||
"yaml": "^2.7.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@eslint/js": "^9.13.0",
|
||||
"@types/react": "^18.3.11",
|
||||
"@types/react-dom": "^18.3.1",
|
||||
"@vitejs/plugin-react-swc": "^3.5.0",
|
||||
"eslint": "^9.13.0",
|
||||
"eslint-plugin-react-hooks": "^5.0.0",
|
||||
"eslint-plugin-react-refresh": "^0.4.13",
|
||||
"globals": "^15.11.0",
|
||||
"sass-embedded": "^1.80.4",
|
||||
"@eslint/js": "^9.22.0",
|
||||
"@types/react": "^18.3.18",
|
||||
"@types/react-dom": "^18.3.5",
|
||||
"@vitejs/plugin-react-swc": "^3.8.0",
|
||||
"eslint": "^9.22.0",
|
||||
"eslint-config-prettier": "^10.1.1",
|
||||
"eslint-plugin-prettier": "^5.2.3",
|
||||
"eslint-plugin-react-hooks": "^5.2.0",
|
||||
"eslint-plugin-react-refresh": "^0.4.19",
|
||||
"globals": "^15.15.0",
|
||||
"monaco-editor": "^0.52.2",
|
||||
"sass-embedded": "^1.86.0",
|
||||
"sharp": "^0.33.5",
|
||||
"typescript": "~5.6.2",
|
||||
"typescript-eslint": "^8.10.0",
|
||||
"vite": "^5.4.9",
|
||||
"typescript": "~5.6.3",
|
||||
"typescript-eslint": "^8.26.1",
|
||||
"vite": "^5.4.14",
|
||||
"vite-plugin-image-optimizer": "^1.1.8"
|
||||
}
|
||||
}
|
||||
|
1290
pnpm-lock.yaml
generated
1290
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
BIN
public/suika.webp
Normal file
BIN
public/suika.webp
Normal file
Binary file not shown.
After Width: | Height: | Size: 15 KiB |
@ -1,4 +1,4 @@
|
||||
import { FC, ReactNode } from "react";
|
||||
import { FC, ReactNode } from 'react'
|
||||
|
||||
import style from './style.module.scss'
|
||||
|
||||
@ -6,7 +6,6 @@ interface AppLayoutProp {
|
||||
children?: ReactNode
|
||||
}
|
||||
|
||||
export const AppLayout: FC<AppLayoutProp> = ({ children }) =>
|
||||
<div className={style.container}>
|
||||
{children}
|
||||
</div>
|
||||
export const AppLayout: FC<AppLayoutProp> = ({ children }) => (
|
||||
<div className={style.container}>{children}</div>
|
||||
)
|
||||
|
@ -1,11 +1,11 @@
|
||||
import { FC } from "react";
|
||||
import { AppLayout } from "./AppLayout";
|
||||
import { Editor } from "../Editor";
|
||||
import { TransformGrid } from "../TransformGrid";
|
||||
import { FC } from 'react'
|
||||
import { AppLayout } from './AppLayout'
|
||||
import { Editor } from '../Editor'
|
||||
import { TransformGrid } from '../TransformGrid'
|
||||
|
||||
export const App: FC = () =>
|
||||
export const App: FC = () => (
|
||||
<AppLayout>
|
||||
<Editor />
|
||||
<TransformGrid />
|
||||
</AppLayout>
|
||||
|
||||
)
|
||||
|
@ -1,4 +1,4 @@
|
||||
import styled from "styled-components";
|
||||
import styled from 'styled-components'
|
||||
|
||||
export const Button = styled.button`
|
||||
border: none;
|
||||
@ -8,11 +8,14 @@ export const Button = styled.button`
|
||||
background-color: #ff1696;
|
||||
color: white;
|
||||
|
||||
&:hover {
|
||||
transition: background-color 0.25s ease-out;
|
||||
|
||||
&:hover {
|
||||
background-color: #da1c9b;
|
||||
}
|
||||
|
||||
&:placeholder {
|
||||
color: gray;
|
||||
&:disabled {
|
||||
background-color: gray;
|
||||
cursor: inherit;
|
||||
}
|
||||
`
|
||||
|
@ -1,4 +1,4 @@
|
||||
import styled from "styled-components";
|
||||
import styled from 'styled-components'
|
||||
|
||||
export const Input = styled.input`
|
||||
background-color: transparent;
|
||||
@ -9,10 +9,10 @@ export const Input = styled.input`
|
||||
accent-color: #ff1696;
|
||||
box-sizing: border-box;
|
||||
font-size: 12px;
|
||||
|
||||
|
||||
width: 24px;
|
||||
|
||||
&[type=checkbox] {
|
||||
&[type='checkbox'] {
|
||||
width: auto;
|
||||
}
|
||||
|
||||
|
@ -1,12 +1,14 @@
|
||||
import styled from "styled-components";
|
||||
import styled from 'styled-components'
|
||||
|
||||
export const TextArea = styled.textarea`
|
||||
flex: 1;
|
||||
border: none;
|
||||
resize: none;
|
||||
background-color: transparent;
|
||||
color: #fafafa;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
padding: 10px;
|
||||
box-sizing: border-box;
|
||||
|
||||
&:focus {
|
||||
outline: none;
|
||||
|
@ -1,39 +1,74 @@
|
||||
import { FC } from "react";
|
||||
import { Editor as MonacoEditor } from "@monaco-editor/react";
|
||||
import { useRecoilState } from "recoil";
|
||||
import { EditorValueState } from "../GlobalStates/EditorValueState";
|
||||
import { motion } from "framer-motion";
|
||||
import { createRef, FC, useEffect, useRef } from 'react'
|
||||
import { Editor as MonacoEditor } from '@monaco-editor/react'
|
||||
import { useRecoilState } from 'recoil'
|
||||
import { EditorValueState } from '../GlobalStates/EditorValueState'
|
||||
import { motion } from 'framer-motion'
|
||||
import { VERSION } from '../version'
|
||||
import { editor } from 'monaco-editor'
|
||||
|
||||
import style from './style.module.scss'
|
||||
|
||||
export const Editor: FC = () => {
|
||||
const [value, setValue] = useRecoilState(EditorValueState)
|
||||
const ref = useRef<editor.IStandaloneCodeEditor>()
|
||||
const containerRef = createRef<HTMLDivElement>()
|
||||
|
||||
useEffect(() => {
|
||||
window.addEventListener('resize', () => {
|
||||
ref.current?.layout({ width: 0, height: 0 })
|
||||
|
||||
window.requestAnimationFrame(() => {
|
||||
const rect = containerRef.current?.getBoundingClientRect()
|
||||
ref.current?.layout({
|
||||
width: rect?.width ?? 0,
|
||||
height: rect?.height ?? 0
|
||||
})
|
||||
})
|
||||
})
|
||||
}, [containerRef])
|
||||
|
||||
return (
|
||||
<motion.div
|
||||
className={style.container}
|
||||
ref={containerRef}
|
||||
transition={{ delay: 1.5 }}
|
||||
initial={{ opacity: 0 }}
|
||||
animate={{ opacity: 1 }}>
|
||||
animate={{ opacity: 1 }}
|
||||
>
|
||||
<MonacoEditor
|
||||
loading={<></>}
|
||||
value={value}
|
||||
language="yaml"
|
||||
onMount={(v) => (ref.current = v)}
|
||||
onChange={(v) => setValue(v ?? '')}
|
||||
options={{
|
||||
automaticLayout: true,
|
||||
lineNumbersMinChars: 3,
|
||||
minimap: { enabled: false },
|
||||
theme: "vs-dark",
|
||||
theme: 'vs-dark',
|
||||
fontSize: 24,
|
||||
scrollBeyondLastLine: false,
|
||||
fontFamily: 'JetBrains Mono Variable',
|
||||
fontLigatures: true,
|
||||
wordWrap: "on",
|
||||
wordWrap: 'on',
|
||||
mouseWheelZoom: true,
|
||||
smoothScrolling: true,
|
||||
cursorSmoothCaretAnimation: 'on',
|
||||
cursorBlinking: 'smooth',
|
||||
cursorStyle: 'block'
|
||||
cursorStyle: 'line'
|
||||
}}
|
||||
theme="vs-dark" />
|
||||
theme="vs-dark"
|
||||
/>
|
||||
|
||||
<div className={style.credit}>
|
||||
<div className={style.creditstr}>
|
||||
<p>
|
||||
<b>The PTOOLS</b>
|
||||
</p>
|
||||
<p>v2-{VERSION}</p>
|
||||
<p>© Minhyeok Park</p>
|
||||
</div>
|
||||
<img className={style.suika} src="/suika.webp" />
|
||||
</div>
|
||||
</motion.div>
|
||||
)
|
||||
}
|
||||
|
26
src/Editor/style.module.scss
Normal file
26
src/Editor/style.module.scss
Normal file
@ -0,0 +1,26 @@
|
||||
.container {
|
||||
position: relative;
|
||||
|
||||
.credit {
|
||||
padding: 1px 0px;
|
||||
position: absolute;
|
||||
z-index: 99999;
|
||||
bottom: 0;
|
||||
right: 0;
|
||||
box-sizing: border-box;
|
||||
display: flex;
|
||||
align-items: flex-end;
|
||||
text-align: right;
|
||||
opacity: 0.25;
|
||||
pointer-events: none;
|
||||
|
||||
b {
|
||||
font-weight: 900;
|
||||
}
|
||||
|
||||
.suika {
|
||||
width: 140px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1,8 +1,12 @@
|
||||
import { atom } from "recoil";
|
||||
import { atom } from 'recoil'
|
||||
|
||||
export const EditorValueState = atom({
|
||||
key: 'editor_value',
|
||||
default: JSON.stringify({
|
||||
Hello: 'world!'
|
||||
}, null, 2)
|
||||
default: JSON.stringify(
|
||||
{
|
||||
Hello: 'world!'
|
||||
},
|
||||
null,
|
||||
2
|
||||
)
|
||||
})
|
||||
|
@ -1,4 +1,4 @@
|
||||
import { FC, useEffect, useState } from "react";
|
||||
import { FC, useEffect, useState } from 'react'
|
||||
import { AnimatePresence, motion, TargetAndTransition } from 'framer-motion'
|
||||
|
||||
import style from './style.module.scss'
|
||||
|
@ -1,22 +1,21 @@
|
||||
import { FC } from "react";
|
||||
import { motion } from "framer-motion";
|
||||
import { FC } from 'react'
|
||||
import { motion } from 'framer-motion'
|
||||
|
||||
import style from './style.module.scss'
|
||||
import { TransformGridItem } from "../TransformGridItem";
|
||||
import { transforms } from "../Transforms/Transform";
|
||||
import { TransformGridItem } from '../TransformGridItem'
|
||||
import { transforms, wrapTransform } from '../Transforms/Transform'
|
||||
|
||||
export const TransformGrid: FC = () =>
|
||||
export const TransformGrid: FC = () => (
|
||||
<ul className={style.grid}>
|
||||
{transforms.map((v, i) =>
|
||||
{transforms.map((transform, i) => (
|
||||
<motion.li
|
||||
key={i}
|
||||
initial={{ opacity: 0 }}
|
||||
animate={{ opacity: 1 }}
|
||||
transition={{ delay: i * 0.1 + 1.5 }} >
|
||||
|
||||
<TransformGridItem
|
||||
transform={v}/>
|
||||
|
||||
transition={{ delay: i * 0.1 + 1.5 }}
|
||||
>
|
||||
<TransformGridItem transform={wrapTransform(transform)} />
|
||||
</motion.li>
|
||||
)}
|
||||
))}
|
||||
</ul>
|
||||
)
|
||||
|
@ -1,7 +1,9 @@
|
||||
.grid {
|
||||
padding: 10px;
|
||||
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
|
||||
align-content: flex-start;
|
||||
|
||||
gap: 10px;
|
||||
height: 100%;
|
||||
|
@ -1,30 +1,262 @@
|
||||
import { FC } from "react";
|
||||
// src/components/TransformGridItem.tsx
|
||||
|
||||
import { ChangeEvent, FC, useEffect, useState } from 'react'
|
||||
import style from './style.module.scss'
|
||||
import { Button } from "../Components/Button";
|
||||
import { Input } from "../Components/Input";
|
||||
import { TextArea } from "../Components/TextArea";
|
||||
import { Transform } from "../Transforms/Transform";
|
||||
import { Button } from '../Components/Button'
|
||||
import { Input } from '../Components/Input'
|
||||
// Remove TextArea import as it's no longer used
|
||||
import clsx from 'clsx'
|
||||
import { useRecoilState } from 'recoil'
|
||||
import { EditorValueState } from '../GlobalStates/EditorValueState'
|
||||
import {
|
||||
TransformCheckboxOption,
|
||||
TransformIntboxOption,
|
||||
TransformRadioOption,
|
||||
TransformTextboxOption,
|
||||
WrappedTransform,
|
||||
WrappedTransformResult
|
||||
} from '../Transforms/Transform'
|
||||
import { useLocalStorage } from '@uidotdev/usehooks'
|
||||
import { AnimatePresence, motion } from 'framer-motion'
|
||||
import { Tooltip } from 'react-tooltip'
|
||||
import { TextArea } from '../Components/TextArea'
|
||||
|
||||
interface TransformGridItemProp {
|
||||
transform: Transform
|
||||
transform: WrappedTransform
|
||||
}
|
||||
|
||||
export const TransformGridItem: FC<TransformGridItemProp> = ({ transform }) => {
|
||||
const [value, setValue] = useRecoilState(EditorValueState)
|
||||
const [options, setOptions] = useState(transform.options)
|
||||
const [closedToggle, setClosedToggle] = useLocalStorage(
|
||||
`transform_closed__${transform.name}`,
|
||||
false
|
||||
)
|
||||
const [result, setResult] = useState<WrappedTransformResult>({
|
||||
error: false,
|
||||
value: ''
|
||||
})
|
||||
|
||||
const previewDisabled = value.length > 30000
|
||||
const closed = previewDisabled || closedToggle
|
||||
|
||||
const triggerTransform = async () =>
|
||||
await transform
|
||||
.fn(value, options)
|
||||
.then((result) => {
|
||||
setResult(result)
|
||||
return result
|
||||
})
|
||||
.catch((error) => {
|
||||
setResult({ error: true, value: error.toString() })
|
||||
return { error: true, value: error.toString() }
|
||||
})
|
||||
|
||||
// Trigger transform when value, option or closed state changes
|
||||
useEffect(() => {
|
||||
if (previewDisabled) return
|
||||
|
||||
transform
|
||||
.fn(value, options)
|
||||
.then(setResult.bind(this))
|
||||
.catch((error) => setResult({ error: true, value: error.toString() }))
|
||||
}, [value, options, closed, previewDisabled, transform])
|
||||
|
||||
// Reset error state when options change
|
||||
useEffect(() => {
|
||||
if (!previewDisabled) return
|
||||
|
||||
setResult({
|
||||
error: false,
|
||||
value: ''
|
||||
})
|
||||
}, [options, previewDisabled])
|
||||
|
||||
// Force disable preview when value is longer than 30,000 chars
|
||||
useEffect(() => {
|
||||
if (previewDisabled) {
|
||||
setResult({
|
||||
error: false,
|
||||
value: ''
|
||||
})
|
||||
return
|
||||
}
|
||||
|
||||
transform
|
||||
.fn(value, options)
|
||||
.then(setResult.bind(this))
|
||||
.catch((error) => setResult({ error: true, value: error.toString() }))
|
||||
}, [value, previewDisabled, transform, options])
|
||||
|
||||
const onCheckboxOptionChanged =
|
||||
(option: TransformCheckboxOption) =>
|
||||
(event: ChangeEvent<HTMLInputElement>) => {
|
||||
options.set(option.key, {
|
||||
...option,
|
||||
value: event.target.checked
|
||||
})
|
||||
|
||||
setOptions(new Map(options))
|
||||
}
|
||||
|
||||
const onTextboxOptionChanged =
|
||||
(option: TransformTextboxOption) =>
|
||||
(event: ChangeEvent<HTMLInputElement>) => {
|
||||
options.set(option.key, {
|
||||
...option,
|
||||
value: event.target.value
|
||||
})
|
||||
|
||||
setOptions(new Map(options))
|
||||
}
|
||||
|
||||
const onIntboxOptionChanged =
|
||||
(option: TransformIntboxOption) =>
|
||||
(event: ChangeEvent<HTMLInputElement>) => {
|
||||
options.set(option.key, {
|
||||
...option,
|
||||
value: parseInt(event.target.value)
|
||||
})
|
||||
|
||||
setOptions(new Map(options))
|
||||
}
|
||||
|
||||
const onRadioOptionChanged =
|
||||
(option: TransformRadioOption) =>
|
||||
(event: ChangeEvent<HTMLInputElement>) => {
|
||||
options.set(option.key, {
|
||||
...option,
|
||||
value: event.target.value
|
||||
})
|
||||
|
||||
setOptions(new Map(options))
|
||||
}
|
||||
|
||||
const onForwardButtonPressed = async () => {
|
||||
const result = await triggerTransform()
|
||||
|
||||
if (result.error) return
|
||||
|
||||
setValue(result.value)
|
||||
}
|
||||
|
||||
const onLabelClicked = async () => {
|
||||
if (previewDisabled) return
|
||||
|
||||
setClosedToggle(!closed)
|
||||
}
|
||||
|
||||
return (
|
||||
<div className={style.item}>
|
||||
<div className={clsx(style.item, closed && style.closed)}>
|
||||
<div className={style.toolbar}>
|
||||
<Button><<<</Button>
|
||||
<h2 className={style.name}>{transform.name}</h2>
|
||||
|
||||
<div data-tooltip-id={`${transform.name}-tooltip`}>
|
||||
<Button disabled={result.error} onClick={onForwardButtonPressed}>
|
||||
<<<
|
||||
</Button>
|
||||
</div>
|
||||
|
||||
<Tooltip
|
||||
className={style.error}
|
||||
id={`${transform.name}-tooltip`}
|
||||
place="bottom"
|
||||
>
|
||||
{previewDisabled && result.error && result.value}
|
||||
</Tooltip>
|
||||
|
||||
<h2
|
||||
onClick={onLabelClicked}
|
||||
className={clsx(style.name, previewDisabled && style.previewDisabled)}
|
||||
>
|
||||
{transform.name}
|
||||
</h2>
|
||||
|
||||
<div className={style.options}>
|
||||
<label className={style.optionItem}>hello: <Input type="checkbox" /></label>
|
||||
<label className={style.optionItem}>hello: <Input type="text" /></label>
|
||||
<label className={style.optionItem}>hello: <Input type="checkbox" /></label>
|
||||
<label className={style.optionItem}>hello: <Input type="checkbox" /></label>
|
||||
{[...options.values()]
|
||||
?.filter((v) => v.type === 'CHECKBOX')
|
||||
.map((option, i) => (
|
||||
<label key={i} className={style.optionItem}>
|
||||
<p>{option.label ?? option.key}:</p>
|
||||
|
||||
<Input
|
||||
checked={option.value}
|
||||
onChange={onCheckboxOptionChanged(option)}
|
||||
type="checkbox"
|
||||
/>
|
||||
</label>
|
||||
))}
|
||||
|
||||
{[...options.values()]
|
||||
?.filter((v) => v.type === 'TEXTBOX')
|
||||
.map((option, i) => (
|
||||
<label key={i} className={style.optionItem}>
|
||||
<p>{option.label ?? option.key}:</p>
|
||||
|
||||
<Input
|
||||
value={option.value}
|
||||
onChange={onTextboxOptionChanged(option)}
|
||||
type="text"
|
||||
/>
|
||||
</label>
|
||||
))}
|
||||
|
||||
{[...options.values()]
|
||||
?.filter((v) => v.type === 'INTBOX')
|
||||
.map((option, i) => (
|
||||
<label key={i} className={style.optionItem}>
|
||||
<p>{option.label ?? option.key}:</p>
|
||||
|
||||
<Input
|
||||
min={1}
|
||||
value={option.value}
|
||||
onChange={onIntboxOptionChanged(option)}
|
||||
type="number"
|
||||
/>
|
||||
</label>
|
||||
))}
|
||||
|
||||
{[...options.values()]
|
||||
?.filter((v) => v.type === 'RADIO')
|
||||
.map((option, i) => (
|
||||
<div
|
||||
key={i}
|
||||
onChange={onRadioOptionChanged(option)}
|
||||
className={style.optionItem}
|
||||
>
|
||||
{option.radios.map((radio, i2) => (
|
||||
<label key={i2}>
|
||||
<p>{radio.label ?? radio.value}:</p>
|
||||
|
||||
<Input
|
||||
min={1}
|
||||
name={option.key}
|
||||
defaultChecked={radio.value === option.value}
|
||||
value={radio.value}
|
||||
type="radio"
|
||||
/>
|
||||
</label>
|
||||
))}
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<TextArea placeholder="(empty)" className={style.input} />
|
||||
<AnimatePresence>
|
||||
{!closed && (
|
||||
<motion.div
|
||||
initial={{ height: 0 }}
|
||||
animate={{ height: 200 }}
|
||||
exit={{ height: 0 }}
|
||||
className={style.output}
|
||||
>
|
||||
<TextArea
|
||||
readOnly
|
||||
value={result.value}
|
||||
placeholder="(empty)"
|
||||
className={clsx(result.error && style.error)}
|
||||
/>
|
||||
</motion.div>
|
||||
)}
|
||||
</AnimatePresence>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
@ -4,7 +4,6 @@
|
||||
display: flex;
|
||||
padding: 10px;
|
||||
flex-direction: column;
|
||||
min-height: 300px;
|
||||
|
||||
.toolbar {
|
||||
display: flex;
|
||||
@ -14,9 +13,18 @@
|
||||
background-color: #323232;
|
||||
border-radius: 4px;
|
||||
|
||||
.error {
|
||||
color: #ffcaca;
|
||||
}
|
||||
|
||||
.name {
|
||||
font-size: inherit;
|
||||
padding: 14px 0px;
|
||||
padding: 14px 6px;
|
||||
|
||||
&:hover:not(.previewDisabled) {
|
||||
cursor: pointer;
|
||||
text-decoration: underline dotted;
|
||||
}
|
||||
}
|
||||
|
||||
.options {
|
||||
@ -25,14 +33,24 @@
|
||||
padding: 14px 2px;
|
||||
gap: 10px;
|
||||
height: 100%;
|
||||
overflow-x: scroll;
|
||||
overflow-x: auto;
|
||||
scrollbar-width: thin;
|
||||
scrollbar-color: gray #323232;
|
||||
align-items: center;
|
||||
|
||||
.optionItem {
|
||||
* {
|
||||
display: flex;
|
||||
gap: 6px;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
.output {
|
||||
height: 200px;
|
||||
}
|
||||
|
||||
.error {
|
||||
color: #ffcaca;
|
||||
}
|
||||
}
|
||||
|
@ -1,6 +0,0 @@
|
||||
import { Transform } from "./Transform";
|
||||
|
||||
export const Base64DecodeTransform: Transform = {
|
||||
name: 'base64d',
|
||||
fn: () => 'Hello, world!'
|
||||
}
|
11
src/Transforms/Base64Transforms.ts
Normal file
11
src/Transforms/Base64Transforms.ts
Normal file
@ -0,0 +1,11 @@
|
||||
import { Transform } from './Transform'
|
||||
|
||||
export const Base64DecodeTransform: Transform = {
|
||||
name: 'base64d',
|
||||
fn: async (v) => atob(v)
|
||||
}
|
||||
|
||||
export const Base64EncodeTransform: Transform = {
|
||||
name: 'base64e',
|
||||
fn: async (v) => btoa(v)
|
||||
}
|
49
src/Transforms/CurlTransform.ts
Normal file
49
src/Transforms/CurlTransform.ts
Normal file
@ -0,0 +1,49 @@
|
||||
import { Transform } from './Transform'
|
||||
|
||||
export const CurlTransform: Transform = {
|
||||
name: 'curle',
|
||||
fn: async (v: string) => {
|
||||
// Split the input into sections using blank lines as delimiters.
|
||||
// The first section contains the request line and headers,
|
||||
// and the remaining section(s) (if any) form the body.
|
||||
const sections = v
|
||||
.split(/\n\s*\n/)
|
||||
.map((s) => s.trim())
|
||||
.filter(Boolean)
|
||||
if (sections.length === 0) return ''
|
||||
|
||||
// Process the first section (request line and headers)
|
||||
const headerLines = sections[0]
|
||||
.split('\n')
|
||||
.map((line) => line.trim())
|
||||
.filter(Boolean)
|
||||
if (headerLines.length === 0) return ''
|
||||
|
||||
// The first line is expected to be the request line, e.g., "POST https://test.example.com"
|
||||
const [method, url] = headerLines[0].split(' ')
|
||||
const curlParts: string[] = [`curl -X ${method.toUpperCase()} ${url}`]
|
||||
|
||||
// Process each header line (if any exist)
|
||||
for (let i = 1; i < headerLines.length; i++) {
|
||||
const line = headerLines[i]
|
||||
// Find the first colon to split header name and value.
|
||||
const colonIndex = line.indexOf(':')
|
||||
if (colonIndex === -1) continue // Skip any lines that are not valid headers
|
||||
const headerName = line.substring(0, colonIndex).trim()
|
||||
const headerValue = line.substring(colonIndex + 1).trim()
|
||||
curlParts.push(` -H "${headerName}: ${headerValue}"`)
|
||||
}
|
||||
|
||||
// Process the body if one is provided (all sections after the first)
|
||||
if (sections.length > 1) {
|
||||
// Join remaining sections (in case there are multiple blank-line separations)
|
||||
const body = sections.slice(1).join('\n\n').trim()
|
||||
if (body) {
|
||||
curlParts.push(` -d '${body}'`)
|
||||
}
|
||||
}
|
||||
|
||||
// Join the parts using backslashes to create a multi-line curl command.
|
||||
return curlParts.join(' \\\n')
|
||||
}
|
||||
}
|
47
src/Transforms/DatetimeTransforms.ts
Normal file
47
src/Transforms/DatetimeTransforms.ts
Normal file
@ -0,0 +1,47 @@
|
||||
import { Transform } from './Transform'
|
||||
import { strptime } from 'strtime'
|
||||
import moment from 'moment'
|
||||
|
||||
export const DatetimeTransform: Transform = {
|
||||
name: 'datetime',
|
||||
|
||||
fn: async (v, o) => {
|
||||
const [expression, samples] = v.split('\n\n')
|
||||
const format = o.get('f')?.value
|
||||
|
||||
const parsedSamples = samples
|
||||
.split('\n')
|
||||
.map((sample) => {
|
||||
if (format === 'c')
|
||||
return strptime(sample, expression.replace(/'/g, ''))
|
||||
|
||||
if (format === 'java')
|
||||
return moment(sample, expression.replace(/'/g, '')).toDate()
|
||||
|
||||
throw new Error('Unknown Format')
|
||||
})
|
||||
.map((date) =>
|
||||
JSON.stringify({
|
||||
year: date.getFullYear(),
|
||||
month: date.getMonth() + 1,
|
||||
date: date.getDate(),
|
||||
hour: date.getHours(),
|
||||
minute: date.getMinutes(),
|
||||
second: date.getSeconds(),
|
||||
milli: date.getMilliseconds()
|
||||
})
|
||||
)
|
||||
.join('\n')
|
||||
|
||||
return [expression, samples, parsedSamples].join('\n\n')
|
||||
},
|
||||
|
||||
options: [
|
||||
{
|
||||
type: 'RADIO',
|
||||
key: 'f',
|
||||
value: 'c',
|
||||
radios: [{ value: 'c' }, { value: 'java' }]
|
||||
}
|
||||
]
|
||||
}
|
83
src/Transforms/GzipTransform.ts
Normal file
83
src/Transforms/GzipTransform.ts
Normal file
@ -0,0 +1,83 @@
|
||||
import { Transform } from './Transform'
|
||||
|
||||
const decompressGzip = async (base64: string) => {
|
||||
const byteCharacters = atob(base64)
|
||||
const byteNumbers = new Array(byteCharacters.length)
|
||||
|
||||
for (let i = 0; i < byteCharacters.length; i++)
|
||||
byteNumbers[i] = byteCharacters.charCodeAt(i)
|
||||
|
||||
const decompressedStream = new Blob([new Uint8Array(byteNumbers)])
|
||||
.stream()
|
||||
.pipeThrough(new DecompressionStream('gzip'))
|
||||
|
||||
return await new Response(decompressedStream).text()
|
||||
}
|
||||
|
||||
export const GzipDecompressTransform: Transform = {
|
||||
name: 'gzipd',
|
||||
|
||||
fn: (v) => decompressGzip(v)
|
||||
}
|
||||
|
||||
const compressGzip = async (input: string): Promise<string> => {
|
||||
if (typeof CompressionStream === 'undefined') {
|
||||
throw new Error(
|
||||
'CompressionStream API is not supported in this environment.'
|
||||
)
|
||||
}
|
||||
|
||||
const encoder = new TextEncoder()
|
||||
const encoded = encoder.encode(input)
|
||||
|
||||
const readable = new ReadableStream<Uint8Array>({
|
||||
start(controller) {
|
||||
controller.enqueue(encoded)
|
||||
controller.close()
|
||||
}
|
||||
})
|
||||
|
||||
const compressionStream = new CompressionStream('gzip')
|
||||
|
||||
const compressedStream = readable.pipeThrough(compressionStream)
|
||||
|
||||
const reader = compressedStream.getReader()
|
||||
const chunks: Uint8Array[] = []
|
||||
let done = false
|
||||
|
||||
while (!done) {
|
||||
const { value, done: doneReading } = await reader.read()
|
||||
if (value) {
|
||||
chunks.push(value)
|
||||
}
|
||||
done = doneReading
|
||||
}
|
||||
|
||||
const totalLength = chunks.reduce((acc, chunk) => acc + chunk.length, 0)
|
||||
const compressedData = new Uint8Array(totalLength)
|
||||
let offset = 0
|
||||
for (const chunk of chunks) {
|
||||
compressedData.set(chunk, offset)
|
||||
offset += chunk.length
|
||||
}
|
||||
|
||||
const base64String = arrayBufferToBase64(compressedData)
|
||||
|
||||
return base64String
|
||||
}
|
||||
|
||||
const arrayBufferToBase64 = (buffer: Uint8Array): string => {
|
||||
let binary = ''
|
||||
for (let i = 0; i < buffer.length; i++) {
|
||||
binary += String.fromCharCode(buffer[i])
|
||||
}
|
||||
return btoa(binary)
|
||||
}
|
||||
|
||||
export const GzipCompressTransform: Transform = {
|
||||
name: 'gzipc', // Unique identifier for the transform
|
||||
|
||||
fn: (v: string) => compressGzip(v),
|
||||
|
||||
options: [] // Add any options if needed
|
||||
}
|
58
src/Transforms/IWRTransform.ts
Normal file
58
src/Transforms/IWRTransform.ts
Normal file
@ -0,0 +1,58 @@
|
||||
import { Transform } from './Transform'
|
||||
|
||||
export const IWRETransform: Transform = {
|
||||
name: 'iwre',
|
||||
fn: async (v: string) => {
|
||||
// Split the input into sections using blank lines as delimiters.
|
||||
const sections = v
|
||||
.split(/\n\s*\n/)
|
||||
.map((s) => s.trim())
|
||||
.filter(Boolean)
|
||||
if (sections.length === 0) return ''
|
||||
|
||||
// Process the first section (request line and headers)
|
||||
const headerLines = sections[0]
|
||||
.split('\n')
|
||||
.map((line) => line.trim())
|
||||
.filter(Boolean)
|
||||
if (headerLines.length === 0) return ''
|
||||
|
||||
// The first line should be something like "POST https://test.example.com"
|
||||
const [method, url] = headerLines[0].split(' ')
|
||||
const psParts: string[] = [
|
||||
`Invoke-WebRequest -Uri "${url}" -Method ${method.toUpperCase()}`
|
||||
]
|
||||
|
||||
// Build a headers object
|
||||
const headers: { [key: string]: string } = {}
|
||||
for (let i = 1; i < headerLines.length; i++) {
|
||||
const line = headerLines[i]
|
||||
const colonIndex = line.indexOf(':')
|
||||
if (colonIndex === -1) continue // Skip lines that aren't valid headers
|
||||
const headerName = line.substring(0, colonIndex).trim()
|
||||
const headerValue = line.substring(colonIndex + 1).trim()
|
||||
headers[headerName] = headerValue
|
||||
}
|
||||
|
||||
if (Object.keys(headers).length > 0) {
|
||||
// Build the header hashtable string for PowerShell using actual newlines.
|
||||
const headerStr = Object.entries(headers)
|
||||
.map(([key, value]) => ` "${key}" = "${value}"`)
|
||||
.join('\n')
|
||||
psParts.push(`-Headers @{\n${headerStr}\n}`)
|
||||
}
|
||||
|
||||
// Process the body (if any)
|
||||
if (sections.length > 1) {
|
||||
const body = sections.slice(1).join('\n\n').trim()
|
||||
if (body) {
|
||||
// Escape single quotes by doubling them.
|
||||
const escapedBody = body.replace(/'/g, "''")
|
||||
psParts.push(`-Body '${escapedBody}'`)
|
||||
}
|
||||
}
|
||||
|
||||
// Join parts with PowerShell's line continuation character (backtick) and an actual newline.
|
||||
return psParts.join(' `\n')
|
||||
}
|
||||
}
|
60
src/Transforms/JSONTransforms.ts
Normal file
60
src/Transforms/JSONTransforms.ts
Normal file
@ -0,0 +1,60 @@
|
||||
import JSON5 from 'json5'
|
||||
import { Transform } from './Transform'
|
||||
|
||||
export const JSONBeautifyTransform: Transform = {
|
||||
name: 'jsonbtf',
|
||||
|
||||
fn: async (v, o) =>
|
||||
o.get('multiline')?.value === true
|
||||
? JSON.stringify(
|
||||
JSON5.parse(v),
|
||||
null,
|
||||
(o.get('tab')?.value as number) ?? 2
|
||||
)
|
||||
: v
|
||||
.split('\n')
|
||||
.map((v2) =>
|
||||
JSON.stringify(
|
||||
JSON5.parse(v2),
|
||||
null,
|
||||
(o.get('tab')?.value as number) ?? 2
|
||||
)
|
||||
)
|
||||
.join('\n'),
|
||||
|
||||
options: [
|
||||
{
|
||||
type: 'CHECKBOX',
|
||||
key: 'multiline'
|
||||
},
|
||||
{
|
||||
type: 'INTBOX',
|
||||
key: 'tab',
|
||||
value: 2
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
export const JSONSimplifyTransform: Transform = {
|
||||
name: 'jsonsmp',
|
||||
|
||||
fn: async (v) => JSON.stringify(JSON5.parse(v))
|
||||
}
|
||||
|
||||
export const JSONEscapeTransform: Transform = {
|
||||
name: 'jsonesc',
|
||||
|
||||
fn: async (v) => JSON.stringify(v)
|
||||
}
|
||||
|
||||
export const JSONUnescapeTransform: Transform = {
|
||||
name: 'jsonunesc',
|
||||
|
||||
fn: async (v) => {
|
||||
const result = JSON5.parse(v)
|
||||
|
||||
if (typeof result !== 'string') throw new Error('Not JSON escaped')
|
||||
|
||||
return result
|
||||
}
|
||||
}
|
64
src/Transforms/PythonTransforms.ts
Normal file
64
src/Transforms/PythonTransforms.ts
Normal file
@ -0,0 +1,64 @@
|
||||
import { Transform } from './Transform'
|
||||
|
||||
const pythonToJSON = (pythonStr: string): string => {
|
||||
// Validate basic structure first before any replacements
|
||||
if (!/^\s*(?:\{[\s\S]*\}|\[[\s\S]*\])\s*$/.test(pythonStr)) {
|
||||
throw new Error('Invalid Python dictionary or array format')
|
||||
}
|
||||
|
||||
// Perform all replacements in a single pass
|
||||
return pythonStr.replace(/('|None\b|True\b|False\b)/g, (match) => {
|
||||
switch (match) {
|
||||
case "'":
|
||||
return '"'
|
||||
case 'None':
|
||||
return 'null'
|
||||
case 'True':
|
||||
return 'true'
|
||||
case 'False':
|
||||
return 'false'
|
||||
default:
|
||||
return match
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
export const PythonDictToJSONTransform: Transform = {
|
||||
name: 'py2json',
|
||||
fn: async (v) => {
|
||||
try {
|
||||
// Validate the result is actually valid JSON
|
||||
return JSON.stringify(JSON.parse(pythonToJSON(v)))
|
||||
} catch {
|
||||
throw new Error('Invalid Python dictionary or array format')
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
export const JSONToPythonDictTransform: Transform = {
|
||||
name: 'json2py',
|
||||
fn: async (v) => {
|
||||
try {
|
||||
// Validate and format in one step
|
||||
return JSON.stringify(JSON.parse(v), null, 2).replace(
|
||||
/("|\bnull\b|\btrue\b|\bfalse\b)/g,
|
||||
(match) => {
|
||||
switch (match) {
|
||||
case '"':
|
||||
return "'"
|
||||
case 'null':
|
||||
return 'None'
|
||||
case 'true':
|
||||
return 'True'
|
||||
case 'false':
|
||||
return 'False'
|
||||
default:
|
||||
return match
|
||||
}
|
||||
}
|
||||
)
|
||||
} catch {
|
||||
throw new Error('Invalid JSON format')
|
||||
}
|
||||
}
|
||||
}
|
19
src/Transforms/RegexpTransform.ts
Normal file
19
src/Transforms/RegexpTransform.ts
Normal file
@ -0,0 +1,19 @@
|
||||
import { Transform } from './Transform'
|
||||
|
||||
export const RegexpTransform: Transform = {
|
||||
name: 'regexp',
|
||||
fn: async (v) => {
|
||||
const [expression, samples] = v.split('\n\n')
|
||||
const regexp = new RegExp(expression)
|
||||
|
||||
const parsedSamples = samples
|
||||
.split('\n')
|
||||
.map((sample) => regexp.exec(sample))
|
||||
.map((sample, i) =>
|
||||
`${i + 3}(${sample === null ? 'x' : 'o'}) ${JSON.stringify(sample?.groups) ?? ''}`.trimEnd()
|
||||
)
|
||||
.join('\n')
|
||||
|
||||
return [expression, samples, parsedSamples].join('\n\n')
|
||||
}
|
||||
}
|
@ -1,12 +1,117 @@
|
||||
import { Base64DecodeTransform } from "./Base64DecodeTransform"
|
||||
import {
|
||||
Base64DecodeTransform,
|
||||
Base64EncodeTransform
|
||||
} from './Base64Transforms'
|
||||
import { DatetimeTransform } from './DatetimeTransforms'
|
||||
import { GzipCompressTransform, GzipDecompressTransform } from './GzipTransform'
|
||||
import {
|
||||
JSONBeautifyTransform,
|
||||
JSONEscapeTransform,
|
||||
JSONSimplifyTransform,
|
||||
JSONUnescapeTransform
|
||||
} from './JSONTransforms'
|
||||
import { RegexpTransform } from './RegexpTransform'
|
||||
import { URIDecodeTransform, URIEncodeTransform } from './URITransforms'
|
||||
import { JSON2YAMLTransform, YAML2JSONTransform } from './YAMLTransforms'
|
||||
import {
|
||||
PythonDictToJSONTransform,
|
||||
JSONToPythonDictTransform
|
||||
} from './PythonTransforms'
|
||||
import { CurlTransform } from './CurlTransform'
|
||||
import { IWRETransform } from './IWRTransform'
|
||||
|
||||
export interface TransformCheckboxOption {
|
||||
type: 'CHECKBOX'
|
||||
key: string
|
||||
label?: string
|
||||
value?: boolean
|
||||
}
|
||||
|
||||
export interface TransformTextboxOption {
|
||||
type: 'TEXTBOX'
|
||||
key: string
|
||||
label?: string
|
||||
value?: string
|
||||
}
|
||||
|
||||
export interface TransformIntboxOption {
|
||||
type: 'INTBOX'
|
||||
key: string
|
||||
label?: string
|
||||
value?: number
|
||||
}
|
||||
|
||||
export interface TransformRadioOption {
|
||||
type: 'RADIO'
|
||||
key: string
|
||||
label?: string
|
||||
value?: string
|
||||
radios: {
|
||||
label?: string
|
||||
value: string
|
||||
}[]
|
||||
}
|
||||
|
||||
export type TransformOption =
|
||||
| TransformCheckboxOption
|
||||
| TransformTextboxOption
|
||||
| TransformIntboxOption
|
||||
| TransformRadioOption
|
||||
|
||||
export interface Transform {
|
||||
name: string
|
||||
fn: () => string
|
||||
fn: (value: string, options: Map<string, TransformOption>) => Promise<string>
|
||||
options?: TransformOption[]
|
||||
}
|
||||
|
||||
export interface WrappedTransformResult {
|
||||
error: boolean
|
||||
value: string
|
||||
}
|
||||
|
||||
export interface WrappedTransform extends Omit<Transform, 'fn' | 'options'> {
|
||||
wrapped: true
|
||||
|
||||
fn: (
|
||||
value: string,
|
||||
options: Map<string, TransformOption>
|
||||
) => Promise<WrappedTransformResult>
|
||||
|
||||
options: Map<string, TransformOption>
|
||||
}
|
||||
|
||||
export const wrapTransform = (transform: Transform): WrappedTransform => ({
|
||||
...transform,
|
||||
|
||||
fn: async (...args) =>
|
||||
await transform
|
||||
.fn(...args)
|
||||
.then((value) => ({ error: false, value: value.toString() }))
|
||||
.catch((error) => ({ error: true, value: error.toString() })),
|
||||
|
||||
options: new Map<string, TransformOption>(
|
||||
(transform.options ?? []).map((v) => [v.key, v])
|
||||
),
|
||||
wrapped: true
|
||||
})
|
||||
|
||||
export const transforms: Transform[] = [
|
||||
RegexpTransform,
|
||||
DatetimeTransform,
|
||||
Base64DecodeTransform,
|
||||
Base64DecodeTransform,
|
||||
Base64DecodeTransform,
|
||||
Base64EncodeTransform,
|
||||
URIDecodeTransform,
|
||||
URIEncodeTransform,
|
||||
JSONBeautifyTransform,
|
||||
JSONSimplifyTransform,
|
||||
JSONEscapeTransform,
|
||||
JSONUnescapeTransform,
|
||||
JSON2YAMLTransform,
|
||||
YAML2JSONTransform,
|
||||
PythonDictToJSONTransform,
|
||||
JSONToPythonDictTransform,
|
||||
GzipCompressTransform,
|
||||
GzipDecompressTransform,
|
||||
CurlTransform,
|
||||
IWRETransform
|
||||
]
|
||||
|
29
src/Transforms/URITransforms.ts
Normal file
29
src/Transforms/URITransforms.ts
Normal file
@ -0,0 +1,29 @@
|
||||
import { Transform } from './Transform'
|
||||
|
||||
export const URIDecodeTransform: Transform = {
|
||||
name: 'urid',
|
||||
|
||||
fn: async (v, o) =>
|
||||
o.get('cmp')?.value === true ? decodeURIComponent(v) : decodeURI(v),
|
||||
|
||||
options: [
|
||||
{
|
||||
type: 'CHECKBOX',
|
||||
key: 'cmp'
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
export const URIEncodeTransform: Transform = {
|
||||
name: 'urie',
|
||||
|
||||
fn: async (v, o) =>
|
||||
o.get('cmp')?.value === true ? encodeURIComponent(v) : encodeURI(v),
|
||||
|
||||
options: [
|
||||
{
|
||||
type: 'CHECKBOX',
|
||||
key: 'cmp'
|
||||
}
|
||||
]
|
||||
}
|
15
src/Transforms/YAMLTransforms.ts
Normal file
15
src/Transforms/YAMLTransforms.ts
Normal file
@ -0,0 +1,15 @@
|
||||
import { Transform } from './Transform'
|
||||
import YAML from 'yaml'
|
||||
import JSON5 from 'json5'
|
||||
|
||||
export const YAML2JSONTransform: Transform = {
|
||||
name: 'yaml2json',
|
||||
|
||||
fn: async (v) => JSON.stringify(YAML.parse(v))
|
||||
}
|
||||
|
||||
export const JSON2YAMLTransform: Transform = {
|
||||
name: 'json2yaml',
|
||||
|
||||
fn: async (v) => YAML.stringify(JSON5.parse(v))
|
||||
}
|
16
src/main.css
16
src/main.css
@ -10,3 +10,19 @@ h1, h2, h3, h4, h5, h6, p, pre, textarea, input, button, li, ul, ol {
|
||||
margin: 0;
|
||||
list-style-type: none;
|
||||
}
|
||||
|
||||
input::-webkit-outer-spin-button,
|
||||
input::-webkit-inner-spin-button {
|
||||
-webkit-appearance: none;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
input[type=number] {
|
||||
appearance: textfield;
|
||||
-moz-appearance: textfield;
|
||||
}
|
||||
|
||||
*::selection {
|
||||
color: #212121;
|
||||
background-color: #ff1696;
|
||||
}
|
||||
|
@ -1,7 +1,9 @@
|
||||
import { StrictMode } from 'react'
|
||||
import { RecoilRoot } from 'recoil'
|
||||
import { createRoot } from 'react-dom/client'
|
||||
|
||||
import 'normalize.css/normalize.css'
|
||||
import 'react-tooltip/dist/react-tooltip.css'
|
||||
import '@fontsource-variable/jetbrains-mono/index.css'
|
||||
|
||||
// ---
|
||||
@ -9,7 +11,6 @@ import '@fontsource-variable/jetbrains-mono/index.css'
|
||||
import './main.css'
|
||||
import { App } from './App'
|
||||
import { LandingAnimation } from './LandingAnimation'
|
||||
import { RecoilRoot } from 'recoil'
|
||||
|
||||
createRoot(document.getElementById('root')!).render(
|
||||
<StrictMode>
|
||||
@ -18,5 +19,5 @@ createRoot(document.getElementById('root')!).render(
|
||||
|
||||
<LandingAnimation />
|
||||
</RecoilRoot>
|
||||
</StrictMode>,
|
||||
</StrictMode>
|
||||
)
|
||||
|
1
src/version.ts
Normal file
1
src/version.ts
Normal file
@ -0,0 +1 @@
|
||||
export const VERSION = 'deadbeef'
|
4
src/vite-env.d.ts
vendored
4
src/vite-env.d.ts
vendored
@ -1 +1,5 @@
|
||||
/// <reference types="vite/client" />
|
||||
|
||||
module 'strtime' {
|
||||
function strptime(string, string): Date
|
||||
}
|
||||
|
1
tsconfig.app.tsbuildinfo
Normal file
1
tsconfig.app.tsbuildinfo
Normal file
@ -0,0 +1 @@
|
||||
{"root":["./src/main.tsx","./src/vite-env.d.ts","./src/App/index.tsx","./src/App/AppLayout/index.tsx","./src/Components/Button.tsx","./src/Components/Input.tsx","./src/Components/TextArea.tsx","./src/Editor/index.tsx","./src/GlobalStates/EditorValueState.ts","./src/LandingAnimation/index.tsx","./src/TransformGrid/index.tsx","./src/TransformGridItem/index.tsx","./src/Transforms/Base64Transforms.ts","./src/Transforms/Transform.ts","./src/Transforms/URITransforms.ts"],"version":"5.6.3"}
|
1
tsconfig.node.tsbuildinfo
Normal file
1
tsconfig.node.tsbuildinfo
Normal file
@ -0,0 +1 @@
|
||||
{"root":["./vite.config.ts"],"version":"5.6.3"}
|
@ -4,4 +4,11 @@ import react from '@vitejs/plugin-react-swc'
|
||||
// https://vite.dev/config/
|
||||
export default defineConfig({
|
||||
plugins: [react()],
|
||||
css: {
|
||||
preprocessorOptions: {
|
||||
scss: {
|
||||
api: 'modern-compiler' // or "modern"
|
||||
}
|
||||
}
|
||||
}
|
||||
})
|
||||
|
Reference in New Issue
Block a user