Skip to content

Commit

Permalink
init 🎉
Browse files Browse the repository at this point in the history
  • Loading branch information
zeoxisca committed Feb 3, 2023
0 parents commit ad5f1c4
Show file tree
Hide file tree
Showing 25 changed files with 1,556 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
node_modules/
.idea
31 changes: 31 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# GAMMA-GUI

## 描述
本项目开源网页版代码,试用:https://poc.xray.cool

https://stack.chaitin.com/tool/detail?id=91

release 中有 本地版本

### 技术内容

使用 react + antdesign 开发

本人业余前端,前端业余,本项目只为降低 poc 编写的入门成本

## 运行

安装依赖:`npm i`

编译:`npm run build`

开发调试: `npm start`

## 配置

项目中使用 proxy, 在package.json中配置

项目检查规则请求可以自行修改为自定义的接口

## view
![img.png](img.png)
Binary file added img.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
47 changes: 47 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
{
"name": "poc-form",
"version": "0.1.0",
"private": true,
"dependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@uiw/react-codemirror": "^4.15.1",
"antd": "^5.0.1",
"axios": "^1.2.0",
"js-yaml": "^4.1.0",
"prismjs": "^1.29.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.6.2",
"react-scripts": "5.0.1",
"react-simple-code-editor": "^0.13.1",
"react-web-code-editor": "^1.1.1",
"web-vitals": "^2.1.4"
},
"proxy": "http://checker:8088",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}
Binary file added public/favicon.ico
Binary file not shown.
43 changes: 43 additions & 0 deletions public/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta
name="description"
content="An app help you write a beautiful Yaml POC!"
/>
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
<!--
manifest.json provides metadata used when your web app is installed on a
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
-->
<!-- <link rel="manifest" href="%PUBLIC_URL%/manifest.json" /> -->
<!--
Notice the use of %PUBLIC_URL% in the tags above.
It will be replaced with the URL of the `public` folder during the build.
Only files inside the `public` folder can be referenced from the HTML.
Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will
work correctly both with client-side routing and a non-root public URL.
Learn how to configure a non-root public URL by running `npm run build`.
-->
<title>规则实验室 - XRAY</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<!--
This HTML file is a template.
If you open it directly in the browser, you will see an empty page.
You can add webfonts, meta tags, or analytics to this file.
The build step will place the bundled scripts into the <body> tag.
To begin the development, run `npm start` or `yarn start`.
To create a production bundle, use `npm run build` or `yarn build`.
-->
</body>
</html>
25 changes: 25 additions & 0 deletions public/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"short_name": "XRAY POC ",
"name": "help you write poc easily",
"icons": [
{
"src": "favicon.ico",
"sizes": "64x64 32x32 24x24 16x16",
"type": "image/x-icon"
},
{
"src": "logo192.png",
"type": "image/png",
"sizes": "192x192"
},
{
"src": "logo512.png",
"type": "image/png",
"sizes": "512x512"
}
],
"start_url": ".",
"display": "standalone",
"theme_color": "#000000",
"background_color": "#ffffff"
}
3 changes: 3 additions & 0 deletions public/robots.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# https://www.robotstxt.org/robotstxt.html
User-agent: *
Disallow:
41 changes: 41 additions & 0 deletions src/App.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
.App {
text-align: center;
position: absolute;
width: 100%;
height: 100%;
}

.App-logo {
height: 40vmin;
pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
.App-logo {
animation: App-logo-spin infinite 20s linear;
}
}

.App-header {
background-color: #282c34;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
font-size: calc(10px + 2vmin);
color: white;
}

.App-link {
color: #61dafb;
}

@keyframes App-logo-spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
38 changes: 38 additions & 0 deletions src/App.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
import './App.css';
import 'antd/dist/reset.css';
import './App.css';
import Home from './components/home'
import React from 'react';


import { notification } from 'antd';

const Context = React.createContext({
name: 'Default',
});

const App = () => {
const [api, contextHolder] = notification.useNotification();
const openNotification = (placement, description,type="info") => {
api[type]({
message: placement,
description: description,
placement: "bottomRight",
});
};

const contextValue = React.useMemo(
() => ({
name: 'BigBigForm',
}),
[],
);
return (
<Context.Provider value={contextValue}>
{contextHolder}
<div className="App">
<Home notify={(msg, desc, type)=>openNotification(msg, desc, type)}/>
</div>
</Context.Provider>)
};
export default App;
49 changes: 49 additions & 0 deletions src/components/editor.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
import React, { useEffect, useState } from 'react';
import Editor from 'react-simple-code-editor';
import { highlight, languages } from 'prismjs/components/prism-core';
import 'prismjs/components/prism-clike';
import 'prismjs/components/prism-yaml';
import 'prismjs/themes/prism-funky.css'; //Example style, you can use another

const Edit = (props) => {
const [code, setCode] = useState(props.code)
const [edited, setEdited] = useState(false)

useEffect(() => {
if (props.code != code) {
setCode(props.code);
}
}, [props.code]);

const codeChange = (_code) => {
setEdited(true)
setCode(_code);
}

const codeFinish = () => {
if (!edited) {
return
}
setEdited(false)
props.finishYaml(code)
}


return <Editor
value={code}
onValueChange={(code) => codeChange(code)}
onBlur={() => codeFinish()}
highlight={code => highlight(code, languages.yaml, "yaml")}
padding={10}
style={{
fontFamily: '"consolas", "Fira Mono", monospace',
fontSize: 14,
minHeight: "100%",
backgroundColor: '#001529',
color: "white",
borderRadius: '10px 10px',
}}
/>
}

export default Edit;
45 changes: 45 additions & 0 deletions src/components/form-base.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
import { Button, Checkbox, Form, Input } from 'antd';
import React from 'react';
const BaseForm = (props) => {
const onFinish = (values) => {
console.log('Success:', values);
};
const onFinishFailed = (errorInfo) => {
console.log('Failed:', errorInfo);
};
const onValuesChange = (values) => {
props.onName(values[props.labelName])
}
return (
<Form
name="basic"
labelCol={{
span: 4,
}}
wrapperCol={{
span: 20,
}}
initialValues={{"Name":"poc-yaml-"}}
onFinish={onFinish}
onFinishFailed={onFinishFailed}
autoComplete="off"
onValuesChange={onValuesChange}
labelAlign="left"
>
<Form.Item
label={props.labelName}
name={props.labelName}
rules={[
{
required: true,
message: 'Please input!',
},
]}

>
<Input />
</Form.Item>
</Form>
);
};
export default BaseForm;
Loading

0 comments on commit ad5f1c4

Please sign in to comment.