Skip to content

Commit

Permalink
Merge pull request #1030 from Kalivarapubindusree/pig
Browse files Browse the repository at this point in the history
Pig_Game added
  • Loading branch information
panwar8279 authored Aug 9, 2023
2 parents 4871917 + 2324be7 commit 9d630aa
Show file tree
Hide file tree
Showing 24 changed files with 14,682 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/Games/Pig_Game/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<h2 align="center">A React Pig Game </h2>
13,827 changes: 13,827 additions & 0 deletions src/Games/Pig_Game/package-lock.json

Large diffs are not rendered by default.

34 changes: 34 additions & 0 deletions src/Games/Pig_Game/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
{
"name": "react-pig-game",
"version": "0.1.0",
"private": true,
"dependencies": {
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.5.0",
"@testing-library/user-event": "^7.2.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-scripts": "3.4.1"
},
"scripts": {
"start": "react-scripts start",
"build": "CI= react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}
Binary file added src/Games/Pig_Game/public/favicon.ico
Binary file not shown.
47 changes: 47 additions & 0 deletions src/Games/Pig_Game/public/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
<!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="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<!--
manifest.json provides metadata used when your web app is installed on a
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
-->
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
<!--
Notice the use of %PUBLIC_URL% in the tags above.
It will be replaced with the URL of the `public` folder during the build.
Only files inside the `public` folder can be referenced from the HTML.
Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will
work correctly both with client-side routing and a non-root public URL.
Learn how to configure a non-root public URL by running `npm run build`.
-->
<title>React App</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<!--
This HTML file is a template.
If you open it directly in the browser, you will see an empty page.
You can add webfonts, meta tags, or analytics to this file.
The build step will place the bundled scripts into the <body> tag.
To begin the development, run `npm start` or `yarn start`.
To create a production bundle, use `npm run build` or `yarn build`.
-->
</body>
</html>
Binary file added src/Games/Pig_Game/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 src/Games/Pig_Game/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 src/Games/Pig_Game/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 src/Games/Pig_Game/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:
Empty file added src/Games/Pig_Game/src/App.css
Empty file.
13 changes: 13 additions & 0 deletions src/Games/Pig_Game/src/App.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import React from "react";
import ReactPigGame from "./Component/ReactPigGame";
import "./App.css";

function App() {
return (
<div className="App">
<ReactPigGame />
</div>
);
}

export default App;
9 changes: 9 additions & 0 deletions src/Games/Pig_Game/src/App.test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import React from 'react';
import { render } from '@testing-library/react';
import App from './App';

test('renders learn react link', () => {
const { getByText } = render(<App />);
const linkElement = getByText(/learn react/i);
expect(linkElement).toBeInTheDocument();
});
42 changes: 42 additions & 0 deletions src/Games/Pig_Game/src/Component/CommonPlayer.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
import React, { useState, useEffect } from "react";
import "./style.css";

function CommonPlayer({
playerName,
finalScore,
children,
roundScore,
passstyle,
win,
}) {
return (
<div style={passstyle}>
<div className="player">
<div className="box">
<div className="winner2">
<div
className="playerName"
style={{
color: win ? "green" : "",
fontWeight: win ? "600" : "",
textShadow: win ? "1px 1px green" : "",
}}
>
{playerName} {win}
</div>
<div className="redCircle"></div>
</div>
<div className="final_score">{finalScore}</div>
</div>
<div className="current-score-box">
<div>CURRENT</div>
<div className="current-score-2">{roundScore}</div>
</div>

{children}
</div>
</div>
);
}

export default CommonPlayer;
42 changes: 42 additions & 0 deletions src/Games/Pig_Game/src/Component/Dice.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
import React, { useState, useEffect } from "react";
import SingleDice from "./SingleDice";
import "./style.css";

const divStyle = {
margin: "40px",
border: "5px solid pink",
};

function Dice({ rollDiceFun, showDice, holdFun, resetGameFun }) {
return (
<div>
<div className="new-game" onClick={() => resetGameFun()}>
<i className="fa fa-plus-circle"></i>
New Game
</div>

<div
className="roll-dice"
onClick={(e) => {
rollDiceFun();
}}
>
<i className="fa fa-circle"></i> ROLL DICE
</div>
<div
className="hold"
onClick={(e) => {
holdFun();
}}
>
<i className="fa fa-pause"></i>
HOLD
</div>
<div>
<SingleDice showDice={showDice} />
</div>
</div>
);
}

export default Dice;
21 changes: 21 additions & 0 deletions src/Games/Pig_Game/src/Component/InputBox.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
import React, { useState, useEffect } from "react";
import "./style.css";

function InputBox({ onChangeInput, inputValue }) {
console.log(inputValue, "inputValue i m from input box");

return (
<div className="">
<div className="no_Text">Enter Winning Score</div>
<input
type="number"
id="inputType"
placeholder="Enter Winning Score"
value={inputValue}
onChange={(e) => onChangeInput(e)}
></input>
</div>
);
}

export default InputBox;
Loading

0 comments on commit 9d630aa

Please sign in to comment.