gradio/js
pngwn ea889fa8c4
unit tests for shared component functionality (#4794)
* add more tests

* fixes

* fixes

* fixes

* fix testmatch
2023-07-06 10:55:45 +01:00
..
_cdn-test Converting the website into sveltekit (#3437) 2023-07-04 16:33:22 +03:00
_spaces-test chore(deps): update dependency prettier to v3 (#4792) 2023-07-06 09:22:09 +01:00
_website Share button (#4651) 2023-07-05 19:50:17 -05:00
accordion Keep hidden Accordion content in DOM (#4073) 2023-05-06 08:00:05 -05:00
app unit tests for shared component functionality (#4794) 2023-07-06 10:55:45 +01:00
atoms Share button (#4651) 2023-07-05 19:50:17 -05:00
audio Share button (#4651) 2023-07-05 19:50:17 -05:00
button unit tests for shared component functionality (#4794) 2023-07-06 10:55:45 +01:00
chart
chatbot Share button (#4651) 2023-07-05 19:50:17 -05:00
code UI fix (#4447) 2023-06-08 21:24:13 +09:00
file UI fix (#4447) 2023-06-08 21:24:13 +09:00
form update deps + fix tests (#4675) 2023-06-28 22:40:53 +01:00
gallery Share button (#4651) 2023-07-05 19:50:17 -05:00
highlighted-text update deps + fix tests (#4675) 2023-06-28 22:40:53 +01:00
html
icons Share button (#4651) 2023-07-05 19:50:17 -05:00
image Share button (#4651) 2023-07-05 19:50:17 -05:00
json
label Fix show_label for Label component (#4713) 2023-06-29 11:42:26 -04:00
lite chore: update versions (#4741) 2023-06-30 10:38:58 +01:00
markdown
model3D Remove a bunch of unused frontend code (#4275) 2023-05-30 12:02:04 +09:00
plot Adds more tests to outbreak_forecast.spec.ts (#4752) 2023-07-04 15:23:50 -04:00
storybook Improve chromatic workflow (#4770) 2023-07-05 15:18:21 +02:00
table UI hotfixes for Examples and Dataframe (#4455) 2023-06-08 15:33:43 -07:00
tabs fix tab layout (#4419) 2023-06-09 01:07:04 +09:00
theme chore(deps): update dependency postcss-custom-media to v9 (#4630) 2023-06-22 13:43:34 +01:00
tooltip
tootils update deps + fix tests (#4675) 2023-06-28 22:40:53 +01:00
upload update deps + fix tests (#4675) 2023-06-28 22:40:53 +01:00
upload-button 4701 upload button unit tests (#4744) 2023-07-04 19:47:31 +01:00
utils Share button (#4651) 2023-07-05 19:50:17 -05:00
video Share button (#4651) 2023-07-05 19:50:17 -05:00
wasm unit tests for shared component functionality (#4794) 2023-07-06 10:55:45 +01:00
.npmrc
jsx.d.ts update deps + fix tests (#4675) 2023-06-28 22:40:53 +01:00
README.md Updated CI info in contributing docs (#4415) 2023-06-06 08:52:29 -04:00

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