Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
49c242f
init: start react-app task
IrynaKolh Mar 13, 2023
025b0d5
refactor: add eslint and prettier
IrynaKolh Mar 13, 2023
618f55a
feat: implement base structure and react router
IrynaKolh Mar 13, 2023
ea9967a
feat: implement all needed react components + fetch data
IrynaKolh Mar 13, 2023
db6c1d0
feat: add css styles to component
IrynaKolh Mar 13, 2023
0979740
feat: add saving in localStorage
IrynaKolh Mar 13, 2023
fcbf03e
fix: add search btn
IrynaKolh Mar 13, 2023
d433f74
fix: saving search to localStorage
IrynaKolh Mar 13, 2023
e5ddc7c
feat: implemented tests
IrynaKolh Mar 18, 2023
1c83a70
feat: add form and formRoute
IrynaKolh Mar 22, 2023
63e08c3
fefactor: migrate app to vite accoding to dependency error
IrynaKolh Mar 23, 2023
f9c57bb
fix: route after migrate to vite
IrynaKolh Mar 23, 2023
38742e9
feat: implemented form validation and add new card
IrynaKolh Mar 23, 2023
3459b92
fit: setup vitest
IrynaKolh Mar 23, 2023
d88a53c
feat: add test
IrynaKolh Mar 24, 2023
98a1aa7
fix: delete unused import
IrynaKolh Mar 24, 2023
c4535c4
refactor: renaming
IrynaKolh Mar 28, 2023
ad4abf9
fix: renaming
IrynaKolh Mar 28, 2023
d262619
fix: cards test
IrynaKolh Mar 29, 2023
1f9d1f8
feat: changed home page, search and render cards using hooks
IrynaKolh Apr 1, 2023
5c3cbfb
feat: changed form page and form using hooks
IrynaKolh Apr 1, 2023
5fea863
feat: add test
IrynaKolh Apr 2, 2023
c7ac6f6
fix: form test coverage
IrynaKolh Apr 2, 2023
80d8c2c
fix: card img style
IrynaKolh Apr 2, 2023
8965716
fix: vite config
IrynaKolh Apr 2, 2023
7f421b6
fix: home page + search
IrynaKolh Apr 4, 2023
33e34de
fix: save to LS
IrynaKolh Apr 4, 2023
d007a49
feat: pagitation
IrynaKolh Apr 6, 2023
8219327
feat: implemented modal card
IrynaKolh Apr 9, 2023
343e2d4
feat: add tests
IrynaKolh Apr 10, 2023
ee3b2bf
fix: modal window
IrynaKolh Apr 10, 2023
5f8e029
fix: pagination
IrynaKolh Apr 10, 2023
0db2e34
refactor: form cards
IrynaKolh Apr 10, 2023
92a93bc
feat: implement cards and search store
IrynaKolh Apr 16, 2023
6b3e4a0
feat: implement form store
IrynaKolh Apr 16, 2023
0d64f91
feat: add tests
IrynaKolh Apr 17, 2023
1eab390
fix: pagination button
IrynaKolh Apr 17, 2023
365f373
feat: add ssr to app
IrynaKolh Apr 24, 2023
5ef9d46
fix: ssr small bugs
IrynaKolh Apr 24, 2023
e2e9084
fix: redux import, server.ts
IrynaKolh Apr 25, 2023
2c04628
feat: ssr add Suspense
IrynaKolh Apr 27, 2023
551ff81
fix: ssr pipe error
IrynaKolh Apr 27, 2023
15e8b13
feat: add cypress
IrynaKolh Apr 27, 2023
f339545
feat: tuned cypress coverage
IrynaKolh May 1, 2023
d51f98f
feat: 80% coverrage
IrynaKolh May 1, 2023
b1ab315
feat: more than 80% coverrage
IrynaKolh May 1, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
49 changes: 49 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
{
"parser": "@typescript-eslint/parser",
"extends": [
"plugin:react/recommended",
"plugin:@typescript-eslint/recommended",
"prettier",
"plugin:react-hooks/recommended",
"plugin:prettier/recommended"
],
"env": {
"browser": true,
"es6": true,
"jest": true,
"node": true
},
"root": true,
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": "latest",
"sourceType": "module"
},
"plugins": ["@typescript-eslint", "react", "prettier", "react-hooks"],
"rules": {
"react-hooks/rules-of-hooks": "error",
"react-hooks/exhaustive-deps": "warn",
"comma-dangle": ["error", "only-multiline"],
"react/prop-types": "off",
"react/display-name": "off",
"@typescript-eslint/explicit-function-return-type": "off",
"prettier/prettier": ["error", { "endOfLine": "auto" }],
"@typescript-eslint/interface-name-prefix": "off",
"@typescript-eslint/ban-ts-comment": "error",
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/no-empty-function": "off",
"@typescript-eslint/no-explicit-any": "error",
"@typescript-eslint/no-var-reqiures": "off",
"react/jsx-uses-react": "off",
"react/react-in-jsx-scope": "off"
},
"settings": {
"react": {
"pragma": "React",
"version": "detect"
}
}
}
25 changes: 25 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

node_modules
dist
dist-ssr
*.local
coverage

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
Loading