-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: Add tabs component to shared/ui (#11) * Create tabs component * Integrate new tabs component to HomePage * Integrate new tabs component to ProfilePage * feat(shared/ui): add tabs component * refactor(pages/home): update tabs logic with shared/tabs * refactor(pages/profile): update tabs logic with shared/tabs --------- Co-authored-by: Yuri <118747540+sldk-yuri@users.noreply.github.com> * build: upgrade package dependencies * refactor: update session logic * refactor: forms * refactor: profile * refactor: article * refactor: article api * refactor: articles features * refactor: comments * refactor: tags * refactor: article filter * refactor: features * refactor: profile page * refactor: pages * refactor: session * refactor: profile-page * refactor: comment * fix: typo * fix: remove delete comment button for guest * refactor: update logout logic * chore: graph * chore: readme --------- Co-authored-by: Yakov-Botov <55227000+Yakov-Botov@users.noreply.github.com>
- Loading branch information
1 parent
b199275
commit 881a4d3
Showing
305 changed files
with
7,650 additions
and
15,165 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<!DOCTYPE html> | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,73 +1,68 @@ | ||
{ | ||
"name": "template-vite-react-ts-fsd", | ||
"name": "realworld-react-fsd", | ||
"private": true, | ||
"version": "0.0.0", | ||
"type": "module", | ||
"scripts": { | ||
"dev": "vite", | ||
"build": "tsc && vite build", | ||
"preview": "vite preview", | ||
"generate:api": "npx swagger-typescript-api -p ./swagger.json -o ./src/shared/api/realworld -n Api.ts --type-suffix Dto", | ||
"lint": "eslint src --ext ts,tsx --cache --report-unused-disable-directives --max-warnings 0", | ||
"lint:perf": "set TIMING=1 && eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0", | ||
"prettier": "pretty-quick --ignore-path .gitignore", | ||
"prettier:all": "prettier --write . --ignore-path .gitignore", | ||
"test:watch": "vitest watch", | ||
"test:run": "vitest run", | ||
"test:run": "set NODE_OPTIONS=--trace-deprecation&& vitest run", | ||
"test:coverage": "vitest run --coverage", | ||
"coverage:open": "npx vite preview --outDir ./coverage", | ||
"test:coverage:open": "yarn run test:coverage && yarn run coverage:open", | ||
"dep-cruiser:preview": "npx depcruise src --include-only \"^src\" --output-type dot | dot -T svg > dependency-graph-preview.svg" | ||
}, | ||
"dependencies": { | ||
"@tanstack/react-query": "^4.29.11", | ||
"@tanstack/react-query-devtools": "^4.29.11", | ||
"classnames": "^2.3.2", | ||
"dayjs": "^1.11.7", | ||
"formik": "^2.4.0", | ||
"@tanstack/react-query": "^5.17.9", | ||
"@tanstack/react-query-devtools": "^5.17.9", | ||
"classnames": "^2.5.1", | ||
"dayjs": "^1.11.10", | ||
"formik": "^2.4.5", | ||
"react": "^18.2.0", | ||
"react-dom": "^18.2.0", | ||
"react-error-boundary": "^4.0.10", | ||
"react-icons": "^4.9.0", | ||
"react-error-boundary": "^4.0.12", | ||
"react-icons": "^5.0.0", | ||
"react-query": "^3.39.3", | ||
"react-router-dom": "^6.11.2", | ||
"yup": "^1.2.0", | ||
"zustand": "^4.3.8" | ||
"react-router-dom": "^6.21.1", | ||
"zod": "^3.22.4", | ||
"zustand": "^4.4.7" | ||
}, | ||
"devDependencies": { | ||
"@mswjs/data": "^0.13.0", | ||
"@testing-library/jest-dom": "^5.16.5", | ||
"@testing-library/react": "^14.0.0", | ||
"@testing-library/user-event": "^14.4.3", | ||
"@types/react": "^18.0.28", | ||
"@types/react-dom": "^18.0.11", | ||
"@typescript-eslint/eslint-plugin": "^5.57.1", | ||
"@typescript-eslint/parser": "^5.57.1", | ||
"@vitejs/plugin-react": "^4.0.0", | ||
"@vitest/coverage-v8": "^0.32.0", | ||
"dependency-cruiser": "^13.0.5", | ||
"eslint": "8.2.0", | ||
"@testing-library/react": "^14.1.2", | ||
"@testing-library/user-event": "^14.5.2", | ||
"@types/react": "^18.2.47", | ||
"@types/react-dom": "^18.2.18", | ||
"@typescript-eslint/eslint-plugin": "^6.18.1", | ||
"@typescript-eslint/parser": "^6.18.1", | ||
"@vitejs/plugin-react": "^4.2.1", | ||
"@vitest/coverage-v8": "^1.1.3", | ||
"dependency-cruiser": "^16.0.0", | ||
"eslint": "8.56.0", | ||
"eslint-config-airbnb": "19.0.4", | ||
"eslint-config-airbnb-typescript": "^17.0.0", | ||
"eslint-config-prettier": "^8.8.0", | ||
"eslint-import-resolver-typescript": "^3.5.5", | ||
"eslint-plugin-import": "2.25.3", | ||
"eslint-plugin-jest-dom": "^5.0.1", | ||
"eslint-plugin-jsx-a11y": "6.5.1", | ||
"eslint-plugin-react": "7.28.0", | ||
"eslint-plugin-react-hooks": "4.3.0", | ||
"eslint-plugin-react-refresh": "^0.3.4", | ||
"eslint-plugin-testing-library": "^5.11.0", | ||
"jsdom": "^22.1.0", | ||
"msw": "^1.2.1", | ||
"eslint-config-airbnb-typescript": "^17.1.0", | ||
"eslint-config-prettier": "^9.1.0", | ||
"eslint-import-resolver-typescript": "^3.6.1", | ||
"eslint-plugin-import": "2.29.1", | ||
"eslint-plugin-jsx-a11y": "6.8.0", | ||
"eslint-plugin-react": "7.33.2", | ||
"eslint-plugin-react-hooks": "4.6.0", | ||
"eslint-plugin-react-refresh": "^0.4.5", | ||
"eslint-plugin-testing-library": "^6.2.0", | ||
"jsdom": "^23.2.0", | ||
"path": "^0.12.7", | ||
"prettier": "^2.8.8", | ||
"prettier": "^3.1.1", | ||
"pretty-quick": "^3.1.3", | ||
"typescript": "^5.0.2", | ||
"unplugin-fonts": "^1.0.3", | ||
"vite": "^4.3.2", | ||
"vite-plugin-checker": "^0.6.0", | ||
"typescript": "^5.3.3", | ||
"unplugin-fonts": "^1.1.1", | ||
"vite": "^5.0.11", | ||
"vite-plugin-checker": "^0.6.2", | ||
"vite-plugin-eslint": "^1.8.1", | ||
"vitest": "^0.32.0" | ||
"vitest": "^1.1.3" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.