Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
98bf6bc
init: create react-app
Vadim-Bykov Feb 17, 2021
e244c58
refactor: udate package.json
Vadim-Bykov Feb 17, 2021
721072c
refactor: update structure
Vadim-Bykov Feb 17, 2021
07b2e1f
feat: create cards
Vadim-Bykov Feb 17, 2021
faed889
feat: create board and add logc for cards
Vadim-Bykov Feb 18, 2021
40edc54
refactor: update styles for board
Vadim-Bykov Feb 18, 2021
53c8a05
feat: start creating main reducer
Vadim-Bykov Feb 18, 2021
cc2c080
feat: add reset board
Vadim-Bykov Feb 19, 2021
14a1753
feat: add select for size
Vadim-Bykov Feb 19, 2021
536db97
feat: save game data and add button new game
Vadim-Bykov Feb 20, 2021
efd4457
feat: add burger menu
Vadim-Bykov Feb 21, 2021
8d4ef1e
refactor: update classnames in menu
Vadim-Bykov Feb 21, 2021
e2475ec
feat: start creating music
Vadim-Bykov Feb 22, 2021
f0f5849
feat: add music with settings
Vadim-Bykov Feb 22, 2021
7558ef4
feat: add sound settings
Vadim-Bykov Feb 23, 2021
5ab2e0a
feat: add bacgromd and opacity for cards
Vadim-Bykov Feb 23, 2021
015b33d
feat: start creating stats
Vadim-Bykov Feb 24, 2021
2193452
feat: add game time on the screen
Vadim-Bykov Feb 25, 2021
0cd5b76
feat: add statistic page
Vadim-Bykov Feb 25, 2021
e146d98
feat: update statsPage and add Route to home
Vadim-Bykov Feb 26, 2021
72c8782
feat: add autoplay option
Vadim-Bykov Feb 27, 2021
f238ebf
feractor: update styles and folder store
Vadim-Bykov Feb 27, 2021
3e75ccd
feat: add loginForm and finish sound
Vadim-Bykov Feb 28, 2021
f2376a4
fix: add withRouter to deploy to gh-pages
Vadim-Bykov Feb 28, 2021
b96e14d
reafactor: replace component Footer
Vadim-Bykov Mar 1, 2021
15fab80
fix: fix the problem with refreshing the page on gh-pages
Vadim-Bykov Mar 8, 2021
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
1 change: 1 addition & 0 deletions .eslintcache

Large diffs are not rendered by default.

23 changes: 23 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js

# testing
/coverage

# production
/build

# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*
17,747 changes: 17,747 additions & 0 deletions package-lock.json

Large diffs are not rendered by default.

56 changes: 56 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
{
"name": "react-1",
"version": "0.1.0",
"private": true,
"homepage": "http://Vadim-Bykov.github.io/react-game",
"dependencies": {
"@testing-library/jest-dom": "^5.11.6",
"@testing-library/react": "^11.2.2",
"@testing-library/user-event": "^12.6.0",
"axios": "^0.21.1",
"classnames": "^2.2.6",
"node-sass": "^4.14.1",
"node-sass-install": "^1.0.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-hotkeys-hook": "^3.1.0",
"react-redux": "^7.2.2",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.1",
"redux": "^4.0.5",
"redux-form": "^8.3.7",
"redux-thunk": "^2.3.0",
"use-sound": "^2.0.1",
"web-vitals": "^0.2.4"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"gh-pages": "^3.1.0",
"react-test-renderer": "^17.0.1"
}
}
Binary file added public/favicon.ico
Binary file not shown.
24 changes: 24 additions & 0 deletions public/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />

<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta
name="description"
content="Web site created using create-react-app"
/>
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />

<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />

<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BmbxuPwQa2lc/FVzBcNJ7UAyJxM6wuqIj61tLrc4wSX0szH/Ev+nYRRuWlolflfl" crossorigin="anonymous">
<title>React App</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
</body>
</html>
Binary file added public/logo192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/logo512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
25 changes: 25 additions & 0 deletions public/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"short_name": "React App",
"name": "Create React App Sample",
"icons": [
{
"src": "favicon.ico",
"sizes": "64x64 32x32 24x24 16x16",
"type": "image/x-icon"
},
{
"src": "logo192.png",
"type": "image/png",
"sizes": "192x192"
},
{
"src": "logo512.png",
"type": "image/png",
"sizes": "512x512"
}
],
"start_url": ".",
"display": "standalone",
"theme_color": "#000000",
"background_color": "#ffffff"
}
3 changes: 3 additions & 0 deletions public/robots.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# https://www.robotstxt.org/robotstxt.html
User-agent: *
Disallow:
5 changes: 5 additions & 0 deletions src/assets/img/angular.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
43 changes: 43 additions & 0 deletions src/assets/img/aurelia.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 8 additions & 0 deletions src/assets/img/backbone.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading