gradio/js
Freddy Boulton 9e13cf3890
Audio Unit Tests (#4650)
* Add code

* Add better mocks

* Add tests

* Remove unnecessary import

* Remove unnecessary import

* unused import

* Check mocks

* Remove comment
2023-06-23 18:45:28 -04:00
..
_cdn-test chore(deps): update dependency vite to v4 (#4639) 2023-06-22 12:07:34 +01:00
_spaces-test chore: update versions (#4358) 2023-06-20 14:23:01 +01:00
accordion
app Audio Unit Tests (#4650) 2023-06-23 18:45:28 -04:00
atoms
audio Audio Unit Tests (#4650) 2023-06-23 18:45:28 -04:00
button Fix scale issues within Dropdown (#4584) 2023-06-21 12:34:12 -07:00
chart
chatbot chore(deps): update dependency @types/marked to v5 (#4618) 2023-06-22 10:34:54 +01:00
code
file
form Add a gr.ClearButton (#4456) 2023-06-13 19:18:14 -05:00
gallery switch unit test env to jsdom (#4657) 2023-06-23 13:22:12 +01:00
highlighted-text
html
icons
image Send component data on stop_recording event (#4554) 2023-06-20 10:44:25 -04:00
json
label
markdown
model3D
plot chore(deps): update dependency svelte-vega to v2 (#4637) 2023-06-22 11:46:52 +01:00
table
tabs
theme chore(deps): update dependency postcss-custom-media to v9 (#4630) 2023-06-22 13:43:34 +01:00
tooltip
tootils Audio Unit Tests (#4650) 2023-06-23 18:45:28 -04:00
upload Eslint (#4593) 2023-06-22 11:25:27 +01:00
upload-button Fix scale issues within Dropdown (#4584) 2023-06-21 12:34:12 -07:00
utils
video implement autoplay for Video and Audio (#4453) 2023-06-09 08:27:58 +09:00
.npmrc
jsx.d.ts
README.md

gradio-ui

This folder contains all of the Gradio UI and component source code.

setup

This folder is managed as 'monorepo' a multi-package repository which make dependency management very simple. In order to do this we use pnpm as our package manager.

Make sure pnpm is installed by following the installation instructions for your system.

You will also need node which you probably already have

running the application

Install all dependencies:

pnpm i

This will install the dependencies for all packages and link any local packages

local development

To develop locally, open two terminal tabs from the root of the repository.

Run the python test server, from the root directory:

cd demo/kitchen_sink
python run.py

This will start a development server on port 7860 that the web app is expecting.

Run the web app:

pnpm dev

building for production

Run the build:

pnpm build

This will create the necessary files in js/app/public and also in gradio/templates/frontend.

quality checks

The repos currently has two quality checks that can be run locally and are run in CI.

formatting

Formatting is handled by prettier to ensure consistent formatting and prevent style-focused conversations. Formatting failures will fails CI and should be reoslve before merging.

To check formatting:

pnpm format:check

If you have formatting failures then you can run the following command to fix them:

pnpm format:write

type checking

We use TypeScript to provide static types to javascript code. These checks are also run in CI.

to typecheck the code:

pnpm ts:check

ci checks

Currently the following checks are run in CI:

static checks

  • Format check (pnpm format:check)
  • Build css (pnpm css)
  • Build client (pnpm build)
  • Type check (pnpm ts:check)
  • Unit tests (pnpm test:run)

functional test

pip install -r demo/outbreak_forecast/requirements.txt
pnpm exec playwright install chromium
pnpm exec playwright install-deps chromium
pnpm test:browser:full