gradio/js
Aarni Koskela 1068371b9f
Load iframe resizer asynchronously (#4336)
Refs #4332

Co-authored-by: pngwn <hello@pngwn.io>
Co-authored-by: Abubakar Abid <abubakar@huggingface.co>
2023-06-19 21:11:51 +01:00
..
_cdn-test Support PAUSED Space status when embedding (#4438) 2023-06-09 02:20:16 -05:00
_spaces-test implement autoplay for Video and Audio (#4453) 2023-06-09 08:27:58 +09:00
accordion Keep hidden Accordion content in DOM (#4073) 2023-05-06 08:00:05 -05:00
app Load iframe resizer asynchronously (#4336) 2023-06-19 21:11:51 +01:00
atoms UI fix (#4447) 2023-06-08 21:24:13 +09:00
audio implement autoplay for Video and Audio (#4453) 2023-06-09 08:27:58 +09:00
button Remove style parameter (#4374) 2023-06-07 18:35:31 -07:00
chart
chatbot Fix chatbot height (#4540) 2023-06-15 14:58:31 -07: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 Add a gr.ClearButton (#4456) 2023-06-13 19:18:14 -05:00
gallery Fix gallery select event with custom height and allow_preview=False (#4551) 2023-06-17 14:11:14 -05:00
highlighted-text Remove a bunch of unused frontend code (#4275) 2023-05-30 12:02:04 +09:00
html
icons Add Clear Mask button to sketch mode (#3615) 2023-04-28 14:16:14 -04:00
image UI fix (#4447) 2023-06-08 21:24:13 +09:00
json
label UI fix (#4447) 2023-06-08 21:24:13 +09:00
markdown
model3D Remove a bunch of unused frontend code (#4275) 2023-05-30 12:02:04 +09:00
plot Some BarPlot Fixes (#4531) 2023-06-15 14:29:40 -04: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 4614 chatbot (#4527) 2023-06-15 16:24:17 +01:00
tooltip
tootils Remove mocks (#4550) 2023-06-19 21:02:03 +01:00
upload Fix loading private Spaces (#4430) 2023-06-07 13:55:05 -05:00
upload-button Remove style parameter (#4374) 2023-06-07 18:35:31 -07:00
utils Remove style parameter (#4374) 2023-06-07 18:35:31 -07:00
video implement autoplay for Video and Audio (#4453) 2023-06-09 08:27:58 +09:00
workbench make workbench private (#4247) 2023-05-17 11:10:54 +01:00
.npmrc
jsx.d.ts
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