gradio/js
Yuichiro Tachibana (Tsuchiya) d2314f9442
Fix dev docs (#4132)
* Move .config/README.md to js/README.md

* Link js/README.md from CONTRIBUTING.md

* Update CHANGELOG.md

---------

Co-authored-by: Abubakar Abid <abubakar@huggingface.co>
2023-05-09 16:38:38 -05:00
..
_cdn-test move files (#3605) 2023-03-27 16:12:58 -07:00
accordion Keep hidden Accordion content in DOM (#4073) 2023-05-06 08:00:05 -05:00
app Fixes to view API page (#4112) 2023-05-08 22:35:46 -05:00
atoms UI fixes for themes (#3590) 2023-04-28 14:31:41 -04:00
audio Upload audio ios (#4071) 2023-05-08 20:35:52 -05:00
button move files (#3605) 2023-03-27 16:12:58 -07:00
chart move files (#3605) 2023-03-27 16:12:58 -07:00
chatbot Chatbot code syntax highlighting (#4048) 2023-05-04 03:28:39 -05:00
code fix overflowing gutter and dark mode base color (#4051) 2023-05-03 15:52:52 +01:00
file move files (#3605) 2023-03-27 16:12:58 -07:00
form Fix slider released event not triggering when released on mobile (#4098) 2023-05-08 21:10:26 -05:00
gallery Empty gallery fix (#4072) 2023-05-04 19:03:11 -05:00
highlighted-text HighlightedImage component (#3836) 2023-04-14 13:11:27 -07:00
html move files (#3605) 2023-03-27 16:12:58 -07:00
icons Add Clear Mask button to sketch mode (#3615) 2023-04-28 14:16:14 -04:00
image Add Clear Mask button to sketch mode (#3615) 2023-04-28 14:16:14 -04:00
json move files (#3605) 2023-03-27 16:12:58 -07:00
label node support for js client (#3692) 2023-04-03 14:33:01 +01:00
markdown move files (#3605) 2023-03-27 16:12:58 -07:00
model3D move files (#3605) 2023-03-27 16:12:58 -07:00
plot UI fixes for themes (#3590) 2023-04-28 14:31:41 -04:00
table Fixes data updating invoke the select event (#3861) 2023-04-23 18:33:40 -07:00
tabs move files (#3605) 2023-03-27 16:12:58 -07:00
theme Theme builder (#3664) 2023-03-30 11:20:34 -07:00
tooltip move files (#3605) 2023-03-27 16:12:58 -07:00
tootils move files (#3605) 2023-03-27 16:12:58 -07:00
upload Adding subtitles to gr.Video (#3673) 2023-04-11 16:06:48 -07:00
upload-button move files (#3605) 2023-03-27 16:12:58 -07:00
utils Add styles to gallery component (#3586) 2023-04-06 09:38:25 -07:00
video Fix duplicate play commands in full-screen mode of Vidieo (#3968) 2023-04-26 14:33:53 -04:00
workbench node support for js client (#3692) 2023-04-03 14:33:01 +01:00
.npmrc move files (#3605) 2023-03-27 16:12:58 -07:00
jsx.d.ts move files (#3605) 2023-03-27 16:12:58 -07:00
README.md Fix dev docs (#4132) 2023-05-09 16:38:38 -05: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:

  • Format check (pnpm format:check)
  • Type check (pnpm ts:check)
  • Build as a smoke test (pnpm build)