├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── pull_request_template.md └── workflows │ ├── sonarcloud.yml │ └── workflow.yml ├── .gitignore ├── .nvmrc ├── .vscode ├── extensions.json └── settings.json ├── LICENSE ├── README.md ├── index.html ├── jest.config.js ├── package.json ├── postcss.config.cjs ├── public ├── chepo.ico └── images │ ├── chepo-loog.png │ └── logo.png ├── setupTests.ts ├── sonar-project.properties ├── src ├── App.css ├── App.tsx ├── assets │ └── react.svg ├── components │ ├── features │ │ ├── HeaderPanel │ │ │ └── HeaderPanel.tsx │ │ └── SearchPanel │ │ │ └── SearchPanel.tsx │ ├── utils │ │ ├── DataEntity.tsx │ │ ├── copy │ │ │ ├── Copy.test.tsx │ │ │ └── Copy.tsx │ │ ├── header │ │ │ ├── Header.tsx │ │ │ └── header.css │ │ ├── jsonViewer │ │ │ ├── JsonViewer.css │ │ │ └── JsonViewer.tsx │ │ └── themes │ │ │ └── HeroSections.tsx │ └── views │ │ └── landing │ │ ├── Landing.css │ │ ├── Landing.test.tsx │ │ └── Landing.tsx ├── context │ └── index.ts ├── index.css ├── main.tsx ├── mock │ ├── github.user.json │ └── repo.json ├── model │ ├── index.ts │ ├── misc │ │ ├── accounts.ts │ │ ├── countries.ts │ │ ├── index.ts │ │ ├── languages.ts │ │ ├── marketing.ts │ │ ├── media.ts │ │ ├── months.ts │ │ ├── products.ts │ │ ├── settings.ts │ │ ├── shopping.ts │ │ └── week.ts │ ├── ui │ │ ├── index.ts │ │ └── layout.ts │ └── user │ │ ├── types.ts │ │ └── users.ts ├── utils │ ├── index.test.ts │ ├── index.ts │ └── search.utils.ts └── vite-env.d.ts ├── tailwind.config.cjs ├── tsconfig.json ├── tsconfig.node.json ├── vite.config.ts └── yarn.lock /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidaytrahman/chepo/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidaytrahman/chepo/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidaytrahman/chepo/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/sonarcloud.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidaytrahman/chepo/HEAD/.github/workflows/sonarcloud.yml -------------------------------------------------------------------------------- /.github/workflows/workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidaytrahman/chepo/HEAD/.github/workflows/workflow.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidaytrahman/chepo/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v22.14.0 -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidaytrahman/chepo/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidaytrahman/chepo/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidaytrahman/chepo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidaytrahman/chepo/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidaytrahman/chepo/HEAD/index.html -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidaytrahman/chepo/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidaytrahman/chepo/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidaytrahman/chepo/HEAD/postcss.config.cjs -------------------------------------------------------------------------------- /public/chepo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidaytrahman/chepo/HEAD/public/chepo.ico -------------------------------------------------------------------------------- /public/images/chepo-loog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidaytrahman/chepo/HEAD/public/images/chepo-loog.png -------------------------------------------------------------------------------- /public/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidaytrahman/chepo/HEAD/public/images/logo.png -------------------------------------------------------------------------------- /setupTests.ts: -------------------------------------------------------------------------------- 1 | import '@testing-library/jest-dom'; 2 | -------------------------------------------------------------------------------- /sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidaytrahman/chepo/HEAD/sonar-project.properties -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- 1 | img.responsive { 2 | width: 100%; 3 | } 4 | -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidaytrahman/chepo/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidaytrahman/chepo/HEAD/src/assets/react.svg -------------------------------------------------------------------------------- /src/components/features/HeaderPanel/HeaderPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidaytrahman/chepo/HEAD/src/components/features/HeaderPanel/HeaderPanel.tsx -------------------------------------------------------------------------------- /src/components/features/SearchPanel/SearchPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidaytrahman/chepo/HEAD/src/components/features/SearchPanel/SearchPanel.tsx -------------------------------------------------------------------------------- /src/components/utils/DataEntity.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidaytrahman/chepo/HEAD/src/components/utils/DataEntity.tsx -------------------------------------------------------------------------------- /src/components/utils/copy/Copy.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidaytrahman/chepo/HEAD/src/components/utils/copy/Copy.test.tsx -------------------------------------------------------------------------------- /src/components/utils/copy/Copy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidaytrahman/chepo/HEAD/src/components/utils/copy/Copy.tsx -------------------------------------------------------------------------------- /src/components/utils/header/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidaytrahman/chepo/HEAD/src/components/utils/header/Header.tsx -------------------------------------------------------------------------------- /src/components/utils/header/header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidaytrahman/chepo/HEAD/src/components/utils/header/header.css -------------------------------------------------------------------------------- /src/components/utils/jsonViewer/JsonViewer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidaytrahman/chepo/HEAD/src/components/utils/jsonViewer/JsonViewer.css -------------------------------------------------------------------------------- /src/components/utils/jsonViewer/JsonViewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidaytrahman/chepo/HEAD/src/components/utils/jsonViewer/JsonViewer.tsx -------------------------------------------------------------------------------- /src/components/utils/themes/HeroSections.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidaytrahman/chepo/HEAD/src/components/utils/themes/HeroSections.tsx -------------------------------------------------------------------------------- /src/components/views/landing/Landing.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidaytrahman/chepo/HEAD/src/components/views/landing/Landing.css -------------------------------------------------------------------------------- /src/components/views/landing/Landing.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidaytrahman/chepo/HEAD/src/components/views/landing/Landing.test.tsx -------------------------------------------------------------------------------- /src/components/views/landing/Landing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidaytrahman/chepo/HEAD/src/components/views/landing/Landing.tsx -------------------------------------------------------------------------------- /src/context/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidaytrahman/chepo/HEAD/src/context/index.ts -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidaytrahman/chepo/HEAD/src/index.css -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidaytrahman/chepo/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/mock/github.user.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidaytrahman/chepo/HEAD/src/mock/github.user.json -------------------------------------------------------------------------------- /src/mock/repo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidaytrahman/chepo/HEAD/src/mock/repo.json -------------------------------------------------------------------------------- /src/model/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidaytrahman/chepo/HEAD/src/model/index.ts -------------------------------------------------------------------------------- /src/model/misc/accounts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidaytrahman/chepo/HEAD/src/model/misc/accounts.ts -------------------------------------------------------------------------------- /src/model/misc/countries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidaytrahman/chepo/HEAD/src/model/misc/countries.ts -------------------------------------------------------------------------------- /src/model/misc/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidaytrahman/chepo/HEAD/src/model/misc/index.ts -------------------------------------------------------------------------------- /src/model/misc/languages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidaytrahman/chepo/HEAD/src/model/misc/languages.ts -------------------------------------------------------------------------------- /src/model/misc/marketing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidaytrahman/chepo/HEAD/src/model/misc/marketing.ts -------------------------------------------------------------------------------- /src/model/misc/media.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidaytrahman/chepo/HEAD/src/model/misc/media.ts -------------------------------------------------------------------------------- /src/model/misc/months.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidaytrahman/chepo/HEAD/src/model/misc/months.ts -------------------------------------------------------------------------------- /src/model/misc/products.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidaytrahman/chepo/HEAD/src/model/misc/products.ts -------------------------------------------------------------------------------- /src/model/misc/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidaytrahman/chepo/HEAD/src/model/misc/settings.ts -------------------------------------------------------------------------------- /src/model/misc/shopping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidaytrahman/chepo/HEAD/src/model/misc/shopping.ts -------------------------------------------------------------------------------- /src/model/misc/week.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidaytrahman/chepo/HEAD/src/model/misc/week.ts -------------------------------------------------------------------------------- /src/model/ui/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidaytrahman/chepo/HEAD/src/model/ui/index.ts -------------------------------------------------------------------------------- /src/model/ui/layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidaytrahman/chepo/HEAD/src/model/ui/layout.ts -------------------------------------------------------------------------------- /src/model/user/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidaytrahman/chepo/HEAD/src/model/user/types.ts -------------------------------------------------------------------------------- /src/model/user/users.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidaytrahman/chepo/HEAD/src/model/user/users.ts -------------------------------------------------------------------------------- /src/utils/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidaytrahman/chepo/HEAD/src/utils/index.test.ts -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidaytrahman/chepo/HEAD/src/utils/index.ts -------------------------------------------------------------------------------- /src/utils/search.utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidaytrahman/chepo/HEAD/src/utils/search.utils.ts -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidaytrahman/chepo/HEAD/tailwind.config.cjs -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidaytrahman/chepo/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidaytrahman/chepo/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidaytrahman/chepo/HEAD/vite.config.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidaytrahman/chepo/HEAD/yarn.lock --------------------------------------------------------------------------------