├── README.md ├── example_webapp.jpg ├── example_webapp ├── images │ └── appstart.png ├── index.html └── static │ ├── css │ └── main.css │ └── js │ └── main.js ├── react_webapp ├── .eslintrc.json ├── .gitignore ├── .prettierrc ├── README.md ├── package.json ├── public │ ├── favicon.ico │ ├── images │ │ └── appstart.png │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt ├── src │ ├── App.css │ ├── App.test.tsx │ ├── App.tsx │ ├── helpers │ │ ├── ButtonHelper.ts │ │ └── ControlWebsocketHelper.ts │ ├── hooks │ │ └── useTime.ts │ ├── index.css │ ├── index.tsx │ ├── react-app-env.d.ts │ └── setupTests.ts ├── tsconfig.json └── yarn.lock └── scripts ├── load_react_webapp.sh ├── load_webapp.sh └── restore.sh /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pajowu/superbird-custom-webapp/HEAD/README.md -------------------------------------------------------------------------------- /example_webapp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pajowu/superbird-custom-webapp/HEAD/example_webapp.jpg -------------------------------------------------------------------------------- /example_webapp/images/appstart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pajowu/superbird-custom-webapp/HEAD/example_webapp/images/appstart.png -------------------------------------------------------------------------------- /example_webapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pajowu/superbird-custom-webapp/HEAD/example_webapp/index.html -------------------------------------------------------------------------------- /example_webapp/static/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pajowu/superbird-custom-webapp/HEAD/example_webapp/static/css/main.css -------------------------------------------------------------------------------- /example_webapp/static/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pajowu/superbird-custom-webapp/HEAD/example_webapp/static/js/main.js -------------------------------------------------------------------------------- /react_webapp/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pajowu/superbird-custom-webapp/HEAD/react_webapp/.eslintrc.json -------------------------------------------------------------------------------- /react_webapp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pajowu/superbird-custom-webapp/HEAD/react_webapp/.gitignore -------------------------------------------------------------------------------- /react_webapp/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pajowu/superbird-custom-webapp/HEAD/react_webapp/.prettierrc -------------------------------------------------------------------------------- /react_webapp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pajowu/superbird-custom-webapp/HEAD/react_webapp/README.md -------------------------------------------------------------------------------- /react_webapp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pajowu/superbird-custom-webapp/HEAD/react_webapp/package.json -------------------------------------------------------------------------------- /react_webapp/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pajowu/superbird-custom-webapp/HEAD/react_webapp/public/favicon.ico -------------------------------------------------------------------------------- /react_webapp/public/images/appstart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pajowu/superbird-custom-webapp/HEAD/react_webapp/public/images/appstart.png -------------------------------------------------------------------------------- /react_webapp/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pajowu/superbird-custom-webapp/HEAD/react_webapp/public/index.html -------------------------------------------------------------------------------- /react_webapp/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pajowu/superbird-custom-webapp/HEAD/react_webapp/public/logo192.png -------------------------------------------------------------------------------- /react_webapp/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pajowu/superbird-custom-webapp/HEAD/react_webapp/public/logo512.png -------------------------------------------------------------------------------- /react_webapp/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pajowu/superbird-custom-webapp/HEAD/react_webapp/public/manifest.json -------------------------------------------------------------------------------- /react_webapp/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pajowu/superbird-custom-webapp/HEAD/react_webapp/public/robots.txt -------------------------------------------------------------------------------- /react_webapp/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pajowu/superbird-custom-webapp/HEAD/react_webapp/src/App.css -------------------------------------------------------------------------------- /react_webapp/src/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pajowu/superbird-custom-webapp/HEAD/react_webapp/src/App.test.tsx -------------------------------------------------------------------------------- /react_webapp/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pajowu/superbird-custom-webapp/HEAD/react_webapp/src/App.tsx -------------------------------------------------------------------------------- /react_webapp/src/helpers/ButtonHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pajowu/superbird-custom-webapp/HEAD/react_webapp/src/helpers/ButtonHelper.ts -------------------------------------------------------------------------------- /react_webapp/src/helpers/ControlWebsocketHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pajowu/superbird-custom-webapp/HEAD/react_webapp/src/helpers/ControlWebsocketHelper.ts -------------------------------------------------------------------------------- /react_webapp/src/hooks/useTime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pajowu/superbird-custom-webapp/HEAD/react_webapp/src/hooks/useTime.ts -------------------------------------------------------------------------------- /react_webapp/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pajowu/superbird-custom-webapp/HEAD/react_webapp/src/index.css -------------------------------------------------------------------------------- /react_webapp/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pajowu/superbird-custom-webapp/HEAD/react_webapp/src/index.tsx -------------------------------------------------------------------------------- /react_webapp/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /react_webapp/src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pajowu/superbird-custom-webapp/HEAD/react_webapp/src/setupTests.ts -------------------------------------------------------------------------------- /react_webapp/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pajowu/superbird-custom-webapp/HEAD/react_webapp/tsconfig.json -------------------------------------------------------------------------------- /react_webapp/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pajowu/superbird-custom-webapp/HEAD/react_webapp/yarn.lock -------------------------------------------------------------------------------- /scripts/load_react_webapp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pajowu/superbird-custom-webapp/HEAD/scripts/load_react_webapp.sh -------------------------------------------------------------------------------- /scripts/load_webapp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pajowu/superbird-custom-webapp/HEAD/scripts/load_webapp.sh -------------------------------------------------------------------------------- /scripts/restore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pajowu/superbird-custom-webapp/HEAD/scripts/restore.sh --------------------------------------------------------------------------------