Skip to content

Commit

Permalink
Adding react demo
Browse files Browse the repository at this point in the history
  • Loading branch information
arsen3d committed Dec 24, 2024
1 parent 11dde92 commit 4184a96
Show file tree
Hide file tree
Showing 17 changed files with 5,595 additions and 32 deletions.
2 changes: 1 addition & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"type":"node-terminal",
"request": "launch",
"preLaunchTask": "docker-compose: up",
"command": "./stack browser http://localhost:7860",
"command": "./stack browser http://localhost:7860 & ./stack browser http://localhost:5173",
}
]
}
31 changes: 1 addition & 30 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -1,27 +1,6 @@
{
"version": "2.0.0",
"tasks": [
//{
// "type": "docker-build",
// "label": "docker-build",
// "platform": "python",
// "dockerBuild": {
// "tag": "jscliwrapper:latest",
// "dockerfile": "${workspaceFolder}/examples/gradio/Dockerfile",
// "context": ".",
// "pull": true
// }
// },
// {
// "type": "docker-run",
// "label": "docker-run: debug",
// "dependsOn": [
// "docker-build"
// ],
// "python": {
// "file": "examples/gradio/app.py"
// }
// }
{
"label": "ensure-env-file",
"type": "shell",
Expand All @@ -37,23 +16,15 @@
{
"label": "docker-compose: up",
"type": "docker-compose",
// "command": "docker-compose",
"dockerCompose": {
"up": {
"detached": true,
"build": true
},
"files": [
"${workspaceFolder}/examples/gradio/docker-compose.yml"
"${workspaceFolder}/examples/gradio-react-demo/docker-compose.yml"
]
},
// "args": [
// "-d",
// "-f",
// "${workspaceFolder}/examples/gradio/docker-compose.yml",
// "up",
// "--build"
// ],
"group": {
"kind": "build",
"isDefault": true
Expand Down
24 changes: 24 additions & 0 deletions examples/gradio-react-demo/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

node_modules
dist
dist-ssr
*.local

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
8 changes: 8 additions & 0 deletions examples/gradio-react-demo/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# React + Vite

This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.

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
17 changes: 17 additions & 0 deletions examples/gradio-react-demo/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
services:
app:
image: node:22
working_dir: /usr/src/app
volumes:
- .:/usr/src/app
ports:
- "5173:5173"
command: npm run dev
gradio:
extends:
file: ../gradio/docker-compose.yml
service: gradio
cli-wrapper:
extends:
file: ../gradio/docker-compose.yml
service: cli-wrapper
38 changes: 38 additions & 0 deletions examples/gradio-react-demo/eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
import js from '@eslint/js'
import globals from 'globals'
import react from 'eslint-plugin-react'
import reactHooks from 'eslint-plugin-react-hooks'
import reactRefresh from 'eslint-plugin-react-refresh'

export default [
{ ignores: ['dist'] },
{
files: ['**/*.{js,jsx}'],
languageOptions: {
ecmaVersion: 2020,
globals: globals.browser,
parserOptions: {
ecmaVersion: 'latest',
ecmaFeatures: { jsx: true },
sourceType: 'module',
},
},
settings: { react: { version: '18.3' } },
plugins: {
react,
'react-hooks': reactHooks,
'react-refresh': reactRefresh,
},
rules: {
...js.configs.recommended.rules,
...react.configs.recommended.rules,
...react.configs['jsx-runtime'].rules,
...reactHooks.configs.recommended.rules,
'react/jsx-no-target-blank': 'off',
'react-refresh/only-export-components': [
'warn',
{ allowConstantExport: true },
],
},
},
]
13 changes: 13 additions & 0 deletions examples/gradio-react-demo/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + React</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>
Loading

0 comments on commit 4184a96

Please sign in to comment.