├── 6 ├── .env ├── .env.development ├── .gitignore ├── .husky ├── .gitignore ├── commit-msg └── pre-commit ├── .prettierignore ├── .prettierrc.json ├── README.md ├── __json_server_mock__ ├── db.json └── middleware.js ├── commitlint.config.js ├── craco.config.js ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json ├── mockServiceWorker.js └── robots.txt ├── src ├── App.css ├── App.test.tsx ├── App.tsx ├── assets │ ├── left.svg │ ├── logo.svg │ └── right.svg ├── auth-provider.ts ├── authenticated-app.tsx ├── context │ ├── auth-context.tsx │ └── index.tsx ├── index.css ├── index.tsx ├── logo.svg ├── react-app-env.d.ts ├── reportWebVitals.ts ├── screens │ ├── project-list │ │ ├── index.tsx │ │ ├── list.tsx │ │ └── search-panel.tsx │ └── try-use-array │ │ └── index.tsx ├── setupTests.ts ├── unauthenticated-app │ ├── index.tsx │ ├── login.tsx │ └── register.tsx └── utils │ ├── http.ts │ └── index.ts ├── tsconfig.json └── yarn.lock /6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefuns/jira/HEAD/6 -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- 1 | REACT_APP_API_URL=http://online -------------------------------------------------------------------------------- /.env.development: -------------------------------------------------------------------------------- 1 | REACT_APP_API_URL=http://localhost:3001 -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefuns/jira/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefuns/jira/HEAD/.husky/commit-msg -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | npx lint-staged 5 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | # Ignore artifacts: 2 | build 3 | coverage -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefuns/jira/HEAD/README.md -------------------------------------------------------------------------------- /__json_server_mock__/db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefuns/jira/HEAD/__json_server_mock__/db.json -------------------------------------------------------------------------------- /__json_server_mock__/middleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefuns/jira/HEAD/__json_server_mock__/middleware.js -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { extends: ["@commitlint/config-conventional"] }; 2 | -------------------------------------------------------------------------------- /craco.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefuns/jira/HEAD/craco.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefuns/jira/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefuns/jira/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefuns/jira/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefuns/jira/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefuns/jira/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefuns/jira/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/mockServiceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefuns/jira/HEAD/public/mockServiceWorker.js -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefuns/jira/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefuns/jira/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefuns/jira/HEAD/src/App.test.tsx -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefuns/jira/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/assets/left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefuns/jira/HEAD/src/assets/left.svg -------------------------------------------------------------------------------- /src/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefuns/jira/HEAD/src/assets/logo.svg -------------------------------------------------------------------------------- /src/assets/right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefuns/jira/HEAD/src/assets/right.svg -------------------------------------------------------------------------------- /src/auth-provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefuns/jira/HEAD/src/auth-provider.ts -------------------------------------------------------------------------------- /src/authenticated-app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefuns/jira/HEAD/src/authenticated-app.tsx -------------------------------------------------------------------------------- /src/context/auth-context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefuns/jira/HEAD/src/context/auth-context.tsx -------------------------------------------------------------------------------- /src/context/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefuns/jira/HEAD/src/context/index.tsx -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefuns/jira/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefuns/jira/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefuns/jira/HEAD/src/logo.svg -------------------------------------------------------------------------------- /src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /src/reportWebVitals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefuns/jira/HEAD/src/reportWebVitals.ts -------------------------------------------------------------------------------- /src/screens/project-list/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefuns/jira/HEAD/src/screens/project-list/index.tsx -------------------------------------------------------------------------------- /src/screens/project-list/list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefuns/jira/HEAD/src/screens/project-list/list.tsx -------------------------------------------------------------------------------- /src/screens/project-list/search-panel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefuns/jira/HEAD/src/screens/project-list/search-panel.tsx -------------------------------------------------------------------------------- /src/screens/try-use-array/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefuns/jira/HEAD/src/screens/try-use-array/index.tsx -------------------------------------------------------------------------------- /src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefuns/jira/HEAD/src/setupTests.ts -------------------------------------------------------------------------------- /src/unauthenticated-app/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefuns/jira/HEAD/src/unauthenticated-app/index.tsx -------------------------------------------------------------------------------- /src/unauthenticated-app/login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefuns/jira/HEAD/src/unauthenticated-app/login.tsx -------------------------------------------------------------------------------- /src/unauthenticated-app/register.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefuns/jira/HEAD/src/unauthenticated-app/register.tsx -------------------------------------------------------------------------------- /src/utils/http.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefuns/jira/HEAD/src/utils/http.ts -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefuns/jira/HEAD/src/utils/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefuns/jira/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fefuns/jira/HEAD/yarn.lock --------------------------------------------------------------------------------