-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintcache
1 lines (1 loc) · 51.1 KB
/
.eslintcache
1
[{"D:\\react JS\\dummy\\my-app\\src\\index.js":"1","D:\\react JS\\dummy\\my-app\\src\\reportWebVitals.js":"2","D:\\react JS\\dummy\\my-app\\src\\app\\App.js":"3","D:\\react JS\\dummy\\my-app\\src\\app\\layout\\DashboardLayout.js":"4","D:\\react JS\\dummy\\my-app\\src\\app\\component\\Login\\LoginPage.js":"5","D:\\react JS\\dummy\\my-app\\src\\app\\layout\\LoginLayout.js":"6","D:\\react JS\\dummy\\my-app\\src\\app\\component\\UserPage\\UserPage.js":"7","D:\\react JS\\dummy\\my-app\\src\\app\\component\\header\\header.js":"8","D:\\react JS\\dummy\\my-app\\src\\app\\component\\sidebar\\sidebar.js":"9","D:\\react JS\\dummy\\my-app\\src\\app\\component\\skillListUi\\skillListUi.js":"10","D:\\react JS\\dummy\\my-app\\src\\app\\constants\\content.js":"11","D:\\react JS\\dummy\\my-app\\src\\app\\component\\verticalTimeLine\\verticalTimeline.js":"12","D:\\react JS\\dummy\\my-app\\src\\app\\component\\projectTab\\projectTab.js":"13"},{"size":1125,"mtime":1614019800425,"results":"14","hashOfConfig":"15"},{"size":362,"mtime":499162500000,"results":"16","hashOfConfig":"15"},{"size":840,"mtime":1612897685263,"results":"17","hashOfConfig":"15"},{"size":1411,"mtime":1614418836976,"results":"18","hashOfConfig":"15"},{"size":2270,"mtime":1613069291466,"results":"19","hashOfConfig":"15"},{"size":925,"mtime":1613585944483,"results":"20","hashOfConfig":"15"},{"size":6879,"mtime":1614194336470,"results":"21","hashOfConfig":"15"},{"size":2782,"mtime":1614418876008,"results":"22","hashOfConfig":"15"},{"size":3261,"mtime":1612989328614,"results":"23","hashOfConfig":"15"},{"size":1470,"mtime":1614021252329,"results":"24","hashOfConfig":"15"},{"size":7915,"mtime":1614198778543,"results":"25","hashOfConfig":"15"},{"size":2721,"mtime":1614017815220,"results":"26","hashOfConfig":"15"},{"size":5332,"mtime":1614355978271,"results":"27","hashOfConfig":"15"},{"filePath":"28","messages":"29","errorCount":0,"warningCount":1,"fixableErrorCount":0,"fixableWarningCount":0,"source":"30","usedDeprecatedRules":"31"},"45fuat",{"filePath":"32","messages":"33","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"31"},{"filePath":"34","messages":"35","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"31"},{"filePath":"36","messages":"37","errorCount":0,"warningCount":13,"fixableErrorCount":0,"fixableWarningCount":0,"source":"38","usedDeprecatedRules":"31"},{"filePath":"39","messages":"40","errorCount":0,"warningCount":10,"fixableErrorCount":0,"fixableWarningCount":0,"source":"41","usedDeprecatedRules":"31"},{"filePath":"42","messages":"43","errorCount":0,"warningCount":3,"fixableErrorCount":0,"fixableWarningCount":0,"source":"44","usedDeprecatedRules":"31"},{"filePath":"45","messages":"46","errorCount":0,"warningCount":27,"fixableErrorCount":0,"fixableWarningCount":0,"source":"47","usedDeprecatedRules":"31"},{"filePath":"48","messages":"49","errorCount":0,"warningCount":2,"fixableErrorCount":0,"fixableWarningCount":0,"source":"50","usedDeprecatedRules":"31"},{"filePath":"51","messages":"52","errorCount":0,"warningCount":3,"fixableErrorCount":0,"fixableWarningCount":0,"source":"53","usedDeprecatedRules":"54"},{"filePath":"55","messages":"56","errorCount":0,"warningCount":17,"fixableErrorCount":0,"fixableWarningCount":0,"source":"57","usedDeprecatedRules":"31"},{"filePath":"58","messages":"59","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0,"usedDeprecatedRules":"31"},{"filePath":"60","messages":"61","errorCount":0,"warningCount":20,"fixableErrorCount":0,"fixableWarningCount":0,"source":"62","usedDeprecatedRules":"31"},{"filePath":"63","messages":"64","errorCount":0,"warningCount":12,"fixableErrorCount":0,"fixableWarningCount":0,"source":"65","usedDeprecatedRules":"31"},"D:\\react JS\\dummy\\my-app\\src\\index.js",["66"],"import React from 'react';\nimport ReactDOM from 'react-dom';\nimport './index.css';\nimport App from './app/App';\nimport reportWebVitals from './reportWebVitals';\nimport { ThemeProvider, createMuiTheme } from '@material-ui/core/styles';\nimport CssBaseline from '@material-ui/core/CssBaseline';\n\nconst theme = createMuiTheme({\n palette: {\n type: \"dark\",\n primary: {\n main: \"#12c2e9\", // This is an orange looking color\n light: '#fff',\n mainGradient: \"linear-gradient(to right top, #370528, #801f3a, #c14f36, #e8921d, #ebe012);\",\n },\n secondary: {\n main: \"#fff\" //Another orange-ish color\n },\n typography: {\n color: \"#fff\",\n },\n dividerColor:{\n backgroundColor:'#848484'\n }\n },\n});\n\nReactDOM.render(\n <React.StrictMode>\n <ThemeProvider theme={theme}><App /></ThemeProvider> \n </React.StrictMode>,\n document.getElementById('root')\n);\n\n// If you want to start measuring performance in your app, pass a function\n// to log results (for example: reportWebVitals(console.log))\n// or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals\nreportWebVitals();\n",["67","68"],"D:\\react JS\\dummy\\my-app\\src\\reportWebVitals.js",[],"D:\\react JS\\dummy\\my-app\\src\\app\\App.js",[],"D:\\react JS\\dummy\\my-app\\src\\app\\layout\\DashboardLayout.js",["69","70","71","72","73","74","75","76","77","78","79","80","81"],"import React, { Component } from 'react'; \r\nimport { Route } from 'react-router-dom'; \r\nimport clsx from 'clsx';\r\nimport { makeStyles } from '@material-ui/core/styles';\r\nimport SwipeableDrawer from '@material-ui/core/SwipeableDrawer';\r\nimport Button from '@material-ui/core/Button';\r\nimport List from '@material-ui/core/List';\r\nimport Divider from '@material-ui/core/Divider';\r\nimport ListItem from '@material-ui/core/ListItem';\r\nimport ListItemIcon from '@material-ui/core/ListItemIcon';\r\nimport ListItemText from '@material-ui/core/ListItemText';\r\nimport InboxIcon from '@material-ui/icons/MoveToInbox';\r\nimport MailIcon from '@material-ui/icons/Mail';\r\nimport Header from '../component/header/header';\r\nimport Grid from '@material-ui/core/Grid';\r\nimport Box from '@material-ui/core/Box';\r\n\r\nconst DashboardLayout = ({children, ...rest}) => { \r\n return ( \r\n <div className=\"page page-dashboard\"> \r\n <div className=\"main\">{children}</div> \r\n </div> \r\n ) \r\n} \r\n \r\nconst DashboardLayoutRoute = ({component: Component, ...rest}) => { \r\n \r\n console.log(\"Component---->\",Component);\r\n console.log(\"...rest---->\",rest);\r\n return ( \r\n <Route {...rest} render={matchProps => (\r\n <DashboardLayout>\r\n <Header />\r\n <Box m={10} />\r\n <Component {...matchProps} />\r\n </DashboardLayout>\r\n )} /> \r\n ) \r\n}; \r\n\r\n\r\n\r\n \r\nexport default DashboardLayoutRoute; ","D:\\react JS\\dummy\\my-app\\src\\app\\component\\Login\\LoginPage.js",["82","83","84","85","86","87","88","89","90","91"],"import React, { Component } from 'react';\r\nimport Grid from '@material-ui/core/Grid';\r\nimport { makeStyles } from '@material-ui/core/styles';\r\nimport Card from '@material-ui/core/Card';\r\nimport CardActionArea from '@material-ui/core/CardActionArea';\r\nimport CardActions from '@material-ui/core/CardActions';\r\nimport CardContent from '@material-ui/core/CardContent';\r\nimport CardMedia from '@material-ui/core/CardMedia';\r\nimport Button from '@material-ui/core/Button';\r\nimport Typography from '@material-ui/core/Typography';\r\nimport TextField from '@material-ui/core/TextField';\r\nimport Box from '@material-ui/core/Box';\r\nimport Paper from '@material-ui/core/Paper';\r\nimport AppBar from '@material-ui/core/Paper';\r\nimport Toolbar from '@material-ui/core/Paper';\r\nimport logo from '../../../assets/image/spacebox.png';\r\nimport { useHistory } from 'react-router-dom';\r\n\r\nconst useStyles = makeStyles({\r\n root: {\r\n maxWidth: '100%',\r\n },\r\n media: {\r\n height: '100%',\r\n },\r\n logo: {\r\n },\r\n cardSizing: {\r\n padding: '40px 30px'\r\n } \r\n});\r\n\r\n\r\nconst LoginPage = ({ matchProps }) => {\r\n const classes = useStyles();\r\n const history = useHistory()\r\n\r\n return (\r\n <Card elevation={4} style={{padding: '40px 30px'}}>\r\n <Grid container direction=\"column\"\r\n justify=\"center\"\r\n alignItems=\"center\"\r\n spacing={7}>\r\n <Grid container item xs={12} spacing={3}>\r\n <img src={logo} alt=\"logo\" className={classes.logo} />\r\n </Grid>\r\n <Grid container item xs={12} spacing={3}>\r\n <TextField fullWidth id=\"outlined-basic\" label=\"User Id\" variant=\"outlined\" />\r\n </Grid>\r\n <Grid container item xs={12} spacing={3}>\r\n <TextField id=\"outlined-basic\" label=\"Password\" type=\"password\" variant=\"outlined\" />\r\n </Grid>\r\n <Grid container item xs={12} spacing={3}>\r\n <Button variant=\"contained\" color=\"primary\" style={{background: 'linear-gradient(to right, #12c2e9, #c471ed, #f64f59)'}} fullWidth onClick={() => {history.push('/home')}}>\r\n Log In</Button>\r\n </Grid>\r\n </Grid></Card>\r\n );\r\n};\r\n\r\nexport default LoginPage ","D:\\react JS\\dummy\\my-app\\src\\app\\layout\\LoginLayout.js",["92","93","94"],"import React, { Component } from 'react'; \r\nimport { makeStyles } from '@material-ui/core/styles';\r\nimport { Route } from 'react-router-dom'; \r\nimport Grid from '@material-ui/core/Grid';\r\nimport Paper from '@material-ui/core/Paper';\r\nconst LoginLayout = ({ children }) => ( \r\n <div> \r\n {/* <p>This is the First Layout</p> */}\r\n {children} \r\n </div> \r\n ); \r\n \r\n const LoginLayoutRoute = ({component: Component, ...rest}) => { \r\n return ( \r\n <Route {...rest} render={matchProps => ( \r\n <Grid\r\n container\r\n spacing={0}\r\n alignItems=\"center\"\r\n justify=\"center\"\r\n style={{ minHeight: '100vh' }}\r\n >\r\n <LoginLayout>\r\n <Component {...matchProps} />\r\n </LoginLayout>\r\n </Grid> \r\n )} /> \r\n ) \r\n }; \r\n \r\nexport default LoginLayoutRoute; ","D:\\react JS\\dummy\\my-app\\src\\app\\component\\UserPage\\UserPage.js",["95","96","97","98","99","100","101","102","103","104","105","106","107","108","109","110","111","112","113","114","115","116","117","118","119","120","121"],"import React, { useState } from 'react';\r\nimport { makeStyles } from '@material-ui/core/styles';\r\nimport clsx from 'clsx';\r\nimport { red } from '@material-ui/core/colors';\r\nimport FavoriteIcon from '@material-ui/icons/Favorite';\r\nimport ShareIcon from '@material-ui/icons/Share';\r\nimport ExpandMoreIcon from '@material-ui/icons/ExpandMore';\r\nimport MoreVertIcon from '@material-ui/icons/MoreVert';\r\nimport AvatarIcon from '../../../assets/image/avatar.png';\r\nimport BackgroundImage from '../../../assets/image/background-03.jpg';\r\nimport ReactCardFlip from 'react-card-flip';\r\nimport { content } from '../../constants/content';\r\n\r\nimport { Box, Button, Switch, Container, Zoom, Slide, Paper, AppBar, Toolbar, Avatar, Divider, Collapse, CardContent,Tabs, Tab,\r\n CardActions, CardMedia, CardHeader, Grid, Card, Typography, IconButton } from '@material-ui/core';\r\n\r\n//================Child Components========================= \r\nimport SkillListUi from '../../component/skillListUi/skillListUi';\r\nimport VerticalTimeline from '../../component/verticalTimeLine/verticalTimeline';\r\nimport ProjectTabs from '../../component/projectTab/projectTab';\r\n\r\nimport { Timeline,TimelineItem,TimelineSeparator,TimelineConnector,TimelineContent,TimelineOppositeContent,TimelineDot} from '@material-ui/lab';\r\n\r\nimport { bounce, tada, bounceIn, lightSpeedIn } from 'react-animations';\r\nimport Radium, { StyleRoot } from 'radium';\r\nimport { useMediaQuery } from 'react-responsive'\r\n\r\nlet IsMobile = () => {\r\nconst isTabletOrMobile = useMediaQuery({ query: '(max-width: 1224px)' });\r\nreturn isTabletOrMobile;\r\n}\r\n\r\nconst animationStyle = {\r\n lightSpeedIn: {\r\n animation: 'x 1s',\r\n animationName: Radium.keyframes(lightSpeedIn, 'bounce')\r\n }\r\n}\r\n\r\nconst useStyles = makeStyles((theme) => ({\r\n root: {\r\n maxWidth: '800px',\r\n [theme.breakpoints.down('xs')]: {\r\n maxWidth: '100px',\r\n height: '400px'\r\n },\r\n [theme.breakpoints.down('sm')]: {\r\n maxWidth: '250px',\r\n height: '400px'\r\n },\r\n [theme.breakpoints.up('md')]: {\r\n maxWidth: '800px',\r\n height: '250px'\r\n },\r\n [theme.breakpoints.up('lg')]: {\r\n maxWidth: '1000px',\r\n height: '250px'\r\n },\r\n padding: theme.spacing(2),\r\n textAlign: 'center',\r\n height: '250px'\r\n },\r\n typography: {\r\n flexGrow: 1,\r\n align: \"center\",\r\n 'text-align': 'center',\r\n alignItems: 'center',\r\n color: theme.palette.typography.color\r\n },\r\n divider: {\r\n backgroundColor: theme.palette.dividerColor.backgroundColor,\r\n border: '1.3px solid ' + theme.palette.dividerColor.backgroundColor\r\n },\r\n media: {\r\n height: 0,\r\n paddingTop: '56.25%', // 16:9\r\n },\r\n expand: {\r\n transform: 'rotate(0deg)',\r\n marginLeft: 'auto',\r\n transition: theme.transitions.create('transform', {\r\n duration: theme.transitions.duration.shortest,\r\n }),\r\n },\r\n expandOpen: {\r\n transform: 'rotate(180deg)',\r\n },\r\n avatar: {\r\n backgroundColor: red[500],\r\n width: theme.spacing(14),\r\n height: theme.spacing(14)\r\n },\r\n backgroundSkillList: {\r\n width: '100%',\r\n position: 'absolute',\r\n \"background-image\": \"url(\" + BackgroundImage + \")\",\r\n \"background-size\": '100%',\r\n 'z-index': '-1',\r\n [theme.breakpoints.down('xs')]: {\r\n height: '500px',\r\n },\r\n [theme.breakpoints.down('sm')]: {\r\n height: '500px',\r\n },\r\n [theme.breakpoints.up('md')]: {\r\n height: '250px',\r\n },\r\n [theme.breakpoints.up('lg')]: {\r\n height: '250px',\r\n },\r\n },\r\n customVerticalTimeline:{\r\n 'width': '80px !important',\r\n 'height': '80px !important',\r\n 'margin-left': '-39px !important'\r\n }\r\n}));\r\n\r\nexport default function RecipeReviewCard() {\r\n const classes = useStyles();\r\n const [isFlipped, setIsFlipped] = useState(false);\r\n\r\n const handleClick = (e) => {\r\n setIsFlipped(!isFlipped);\r\n }\r\n\r\n return (\r\n <Grid container\r\n justify=\"center\"\r\n alignItems=\"center\"\r\n direction=\"column\">\r\n <ReactCardFlip isFlipped={isFlipped} flipDirection=\"vertical\">\r\n <Zoom in={true} style={{ transitionDelay: '100ms' }}>\r\n <Card onMouseEnter={handleClick} className={classes.root} elevation={4}>\r\n <Grid container alignItems=\"center\" justify=\"center\" item xs={12} md={12} sm={12} spacing={13} >\r\n <Avatar aria-label=\"recipe\" className={classes.avatar} src={AvatarIcon}>\r\n </Avatar>\r\n <StyleRoot>\r\n <div style={animationStyle.lightSpeedIn} >\r\n <CardHeader style={{ textAlign: 'center' }}\r\n titleTypographyProps={{ variant: 'h3' }}\r\n title={content.userDetails['name']}\r\n subheader={content.userDetails['dob']}/>\r\n </div></StyleRoot>\r\n <CardContent>\r\n <Typography variant=\"body2\" color=\"textSecondary\" component=\"p\">\r\n {content.userDetailsFrontSide}\r\n </Typography>\r\n </CardContent>\r\n <CardActions disableSpacing>\r\n </CardActions></Grid>\r\n </Card>\r\n\r\n </Zoom>\r\n <Card onMouseLeave={handleClick} className={classes.root}>\r\n <Grid container alignItems=\"center\" justify=\"center\" item xs={12} md={12} sm={12} >\r\n <CardContent>\r\n <Typography variant=\"body2\" color=\"textSecondary\" component=\"p\">\r\n {content.userDetailsBackSide}\r\n </Typography>\r\n </CardContent>\r\n <CardActions disableSpacing>\r\n </CardActions></Grid>\r\n </Card>\r\n </ReactCardFlip>\r\n\r\n <Box m={2} pt={3} />\r\n\r\n <div style={{ position: 'relative', width: '100%' }}>\r\n <div className={classes.backgroundSkillList}></div>\r\n\r\n {/* Skill Set Element */}\r\n <Grid style={{ \"margin-top\": '5%', 'z-index': '2' }} container alignItems=\"center\" justify=\"center\" item xs={12} md={12} sm={12} spacing={13} >\r\n <SkillListUi />\r\n </Grid>\r\n\r\n </div>\r\n\r\n <Box m={2} pt={3} />\r\n <div>\r\n <Typography\r\n variant=\"h4\"\r\n className={classes.typography} >Work Experience</Typography>\r\n <Box m={2} >\r\n <Divider className={classes.divider} />\r\n </Box>\r\n </div>\r\n <Container maxWidth=\"md\">\r\n <Typography\r\n variant=\"h6\"\r\n color=\"inherit\"\r\n className={classes.typography}>\r\n {content.workExperienceText}\r\n </Typography>\r\n </Container>\r\n\r\n {/* Vertifical TimeLine Element */}\r\n <VerticalTimeline />\r\n\r\n <Box m={2} pt={3} />\r\n <div>\r\n <Typography\r\n variant=\"h4\"\r\n className={classes.typography} >Projects</Typography>\r\n <Box m={2} >\r\n <Divider className={classes.divider} />\r\n </Box>\r\n </div>\r\n <ProjectTabs />\r\n </Grid>\r\n );\r\n}\r\n","D:\\react JS\\dummy\\my-app\\src\\app\\component\\header\\header.js",["122","123"],"import React from 'react';\r\nimport AppBar from '@material-ui/core/AppBar';\r\nimport Toolbar from '@material-ui/core/Toolbar';\r\nimport IconButton from '@material-ui/core/IconButton';\r\nimport Typography from '@material-ui/core/Typography';\r\nimport InputBase from '@material-ui/core/InputBase';\r\nimport { fade, makeStyles } from '@material-ui/core/styles';\r\nimport MenuIcon from '@material-ui/icons/Menu';\r\nimport SearchIcon from '@material-ui/icons/Search';\r\n\r\nimport Sidebar from '../sidebar/sidebar'\r\n\r\nconst useStyles = makeStyles((theme) => ({\r\n root: {\r\n flexGrow: 1,\r\n },\r\n menuButton: {\r\n marginRight: theme.spacing(2),\r\n },\r\n title: {\r\n flexGrow: 1,\r\n display: 'none',\r\n [theme.breakpoints.up('sm')]: {\r\n display: 'block',\r\n },\r\n },\r\n search: {\r\n position: 'relative',\r\n borderRadius: theme.shape.borderRadius,\r\n backgroundColor: fade(theme.palette.common.white, 0.15),\r\n '&:hover': {\r\n backgroundColor: fade(theme.palette.common.white, 0.25),\r\n },\r\n marginLeft: 0,\r\n width: '100%',\r\n [theme.breakpoints.up('sm')]: {\r\n marginLeft: theme.spacing(1),\r\n width: 'auto',\r\n },\r\n },\r\n searchIcon: {\r\n padding: theme.spacing(0, 2),\r\n height: '100%',\r\n position: 'absolute',\r\n pointerEvents: 'none',\r\n display: 'flex',\r\n alignItems: 'center',\r\n justifyContent: 'center',\r\n },\r\n inputRoot: {\r\n color: 'inherit',\r\n },\r\n inputInput: {\r\n padding: theme.spacing(1, 1, 1, 0),\r\n // vertical padding + font size from searchIcon\r\n paddingLeft: `calc(1em + ${theme.spacing(4)}px)`,\r\n transition: theme.transitions.create('width'),\r\n width: '100%',\r\n [theme.breakpoints.up('sm')]: {\r\n width: '12ch',\r\n '&:focus': {\r\n width: '20ch',\r\n },\r\n },\r\n },\r\n }));\r\n\r\nconst Header = () => { \r\n const classes = useStyles();\r\n return (\r\n <div className={classes.root}>\r\n <AppBar position=\"fixed\" style={{color: 'white',\"backgroundColor\": '#2e77f6'}}>\r\n <Toolbar>\r\n <Sidebar />\r\n <Typography className={classes.title} variant=\"h6\" noWrap>\r\n Sanjay Rajeev - Portfolio\r\n </Typography>\r\n <div className={classes.search}>\r\n <div className={classes.searchIcon}>\r\n <SearchIcon />\r\n </div>\r\n <InputBase\r\n placeholder=\"Search…\"\r\n classes={{\r\n root: classes.inputRoot,\r\n input: classes.inputInput,\r\n }}\r\n inputProps={{ 'aria-label': 'search' }}\r\n />\r\n </div>\r\n </Toolbar>\r\n </AppBar>\r\n </div>\r\n ); \r\n }; \r\n \r\n export default Header ","D:\\react JS\\dummy\\my-app\\src\\app\\component\\sidebar\\sidebar.js",["124","125","126"],"import React, { Component } from 'react'; \r\nimport { Route } from 'react-router-dom'; \r\nimport clsx from 'clsx';\r\nimport { makeStyles } from '@material-ui/core/styles';\r\nimport SwipeableDrawer from '@material-ui/core/SwipeableDrawer';\r\nimport Button from '@material-ui/core/Button';\r\nimport List from '@material-ui/core/List';\r\nimport Divider from '@material-ui/core/Divider';\r\nimport ListItem from '@material-ui/core/ListItem';\r\nimport ListItemIcon from '@material-ui/core/ListItemIcon';\r\nimport ListItemText from '@material-ui/core/ListItemText';\r\nimport InboxIcon from '@material-ui/icons/MoveToInbox';\r\nimport MailIcon from '@material-ui/icons/Mail';\r\nimport IconButton from '@material-ui/core/IconButton';\r\nimport MenuIcon from '@material-ui/icons/Menu';\r\nconst useStyles = makeStyles({\r\n list: {\r\n width: 250,\r\n },\r\n fullList: {\r\n width: 'auto',\r\n },\r\n });\r\n\r\n/******************SwipeBar Component ******************************/\r\nconst Sidebar = () => {\r\n const classes = useStyles();\r\n const [state, setState] = React.useState({\r\n top: false,\r\n left: false,\r\n bottom: false,\r\n right: false,\r\n });\r\n \r\n const toggleDrawer = (anchor, open) => (event) => {\r\n if (event && event.type === 'keydown' && (event.key === 'Tab' || event.key === 'Shift')) {\r\n return;\r\n }\r\n \r\n setState({ ...state, [anchor]: open });\r\n };\r\n \r\n const list = (anchor) => (\r\n <div\r\n className={clsx(classes.list, {\r\n [classes.fullList]: anchor === 'top' || anchor === 'bottom',\r\n })}\r\n role=\"presentation\"\r\n onClick={toggleDrawer(anchor, false)}\r\n onKeyDown={toggleDrawer(anchor, false)}\r\n >\r\n <List>\r\n {['Home', 'Starred', 'Send email', 'Drafts'].map((text, index) => (\r\n <ListItem button key={text}>\r\n <ListItemIcon>{index % 2 === 0 ? <InboxIcon /> : <MailIcon />}</ListItemIcon>\r\n <ListItemText primary={text} />\r\n </ListItem>\r\n ))}\r\n </List>\r\n <Divider />\r\n <List>\r\n {['Contact'].map((text, index) => (\r\n <ListItem button key={text}>\r\n <ListItemIcon>{index % 2 === 0 ? <InboxIcon /> : <MailIcon />}</ListItemIcon>\r\n <ListItemText primary={text} />\r\n </ListItem>\r\n ))}\r\n </List>\r\n </div>\r\n );\r\n \r\n return (\r\n <div>\r\n {['left'].map((anchor) => (\r\n <React.Fragment key={anchor}>\r\n <IconButton\r\n edge=\"start\"\r\n className={classes.menuButton}\r\n color=\"inherit\"\r\n aria-label=\"open drawer\"\r\n onClick={toggleDrawer(anchor, true)}\r\n >\r\n <MenuIcon />\r\n </IconButton>\r\n <SwipeableDrawer\r\n anchor={anchor}\r\n open={state[anchor]}\r\n onClose={toggleDrawer(anchor, false)}\r\n onOpen={toggleDrawer(anchor, true)}\r\n >\r\n {list(anchor)}\r\n </SwipeableDrawer>\r\n </React.Fragment>\r\n ))}\r\n </div>\r\n );\r\n };\r\n\r\n export default Sidebar;",["127","128"],"D:\\react JS\\dummy\\my-app\\src\\app\\component\\skillListUi\\skillListUi.js",["129","130","131","132","133","134","135","136","137","138","139","140","141","142","143","144","145"],"import React, { useState } from 'react';\r\nimport { makeStyles } from '@material-ui/core/styles';\r\n\r\n\r\nimport { AppBar, Box, Switch, Zoom, Slide, Paper, Avatar, Collapse, CardContent, CardActions, CardMedia, CardHeader, Grid, Card, Typography, IconButton, Toolbar } from '@material-ui/core';\r\nimport { bounce, tada, bounceIn } from 'react-animations';\r\nimport Radium, { StyleRoot } from 'radium';\r\nimport {content} from '../../constants/content';\r\n\r\nconst animationStyle = {\r\n bounceIn: {\r\n animation: 'x 1.5s',\r\n animationName: Radium.keyframes(bounceIn, 'bounce')\r\n }\r\n}\r\nexport default function SkillListUi(props) {\r\n return (Object.keys(content.skillList).map(skillListTopic => {\r\n return (\r\n <StyleRoot>\r\n <div style={animationStyle.bounceIn} >\r\n <Box m={2}>\r\n <Card elevation={1} style={{}} >\r\n <CardHeader\r\n style={{ textAlign: 'center', \"backgroundColor\": \"#e05e9b\", color: 'white' }}\r\n title={skillListTopic}\r\n />\r\n <Box m={2}>\r\n {\r\n content.skillList[skillListTopic].map(item => {\r\n return (<Typography variant=\"h6\" component=\"h6\" alignItems=\"center\" justifyContent=\"center\">\r\n {item}\r\n </Typography>)\r\n })\r\n }\r\n </Box>\r\n </Card>\r\n </Box>\r\n </div>\r\n </StyleRoot>\r\n )\r\n }))\r\n};","D:\\react JS\\dummy\\my-app\\src\\app\\constants\\content.js",[],"D:\\react JS\\dummy\\my-app\\src\\app\\component\\verticalTimeLine\\verticalTimeline.js",["146","147","148","149","150","151","152","153","154","155","156","157","158","159","160","161","162","163","164","165"],"import React, { useState } from 'react';\r\nimport { makeStyles } from '@material-ui/core/styles';\r\n\r\nimport { VerticalTimeline, VerticalTimelineElement } from 'react-vertical-timeline-component';\r\nimport 'react-vertical-timeline-component/style.min.css';\r\n\r\nimport { content } from '../../constants/content'\r\nimport {\r\n Box, Button, Switch, Container, Zoom, Slide, Paper, AppBar, Toolbar, Avatar, Divider, Collapse, CardContent,\r\n CardActions, CardMedia, CardHeader, Grid, Card, Typography, IconButton\r\n} from '@material-ui/core';\r\n\r\n\r\n\r\n\r\nconst useStyles = makeStyles((theme) => ({\r\n root: {\r\n\r\n },\r\n typography: {\r\n flexGrow: 1,\r\n align: \"center\",\r\n 'text-align': 'center',\r\n alignItems: 'center',\r\n color: theme.palette.typography.color\r\n },\r\n divider: {\r\n backgroundColor: theme.palette.dividerColor.backgroundColor,\r\n border: '1.3px solid ' + theme.palette.dividerColor.backgroundColor\r\n },\r\n customVerticalTimeline: {\r\n 'width': '80px !important',\r\n 'height': '80px !important',\r\n 'margin-left': '-39px !important'\r\n }\r\n}));\r\n\r\n\r\nexport default function VerticalTimeLine() {\r\n const classes = useStyles();\r\n\r\n\r\n return (\r\n\r\n <VerticalTimeline>\r\n {\r\n content.TimeLine.map(element => {\r\n return (\r\n <VerticalTimelineElement\r\n className=\"vertical-timeline-element--work\"\r\n contentStyle={{ background: 'linear-gradient(to right top, #b220bb, #9c25bc, #832abd, #682dbd, #4630bb)', color: '#fff' }}\r\n contentArrowStyle={{ borderRight: '7px solid white' }}\r\n date={element['date']}\r\n iconStyle={{ background: 'white', color: '#fff'}}//, width: '80px', height: '80px', 'margin-left': '-39px'}}\r\n icon={<img src={element['image']} style={{ width: '100%', 'height': '100%', 'object-fit': 'contain', 'border-radius': '50%' }} />}\r\n animate={true}>\r\n <h3 className=\"vertical-timeline-element-title\">{element.title}</h3>\r\n <Box m={0.5} />\r\n <Divider className={classes.divider} />\r\n <h5 className=\"vertical-timeline-element-subtitle\">{element.description}</h5>\r\n <p>\r\n Designation : {element.designation}\r\n </p>\r\n </VerticalTimelineElement>\r\n\r\n );\r\n })\r\n }\r\n </VerticalTimeline>\r\n\r\n )\r\n};","D:\\react JS\\dummy\\my-app\\src\\app\\component\\projectTab\\projectTab.js",["166","167","168","169","170","171","172","173","174","175","176","177"],"import React from 'react';\r\nimport { makeStyles, withStyles } from '@material-ui/core/styles';\r\nimport {\r\n Paper, Tabs, Tab, Typography, TabPanelCard, Card, Grid, Container,Fade,Grow,Box,\r\n CardActionArea,\r\n CardActions,\r\n CardContent,\r\n CardMedia,\r\n Button\r\n} from '@material-ui/core';\r\nimport { content } from '../../constants/content';\r\nimport { bounce,fadeInUp } from 'react-animations';\r\nimport Radium, { StyleRoot } from 'radium';\r\n\r\nconst animationStyle = {\r\n bounce: {\r\n animation: 'x 1s',\r\n animationName: Radium.keyframes(bounce, 'bounce')\r\n }\r\n }\r\n\r\n\r\nconst StyledTabs = withStyles({\r\n indicator: {\r\n display: 'flex',\r\n justifyContent: 'center',\r\n backgroundColor: 'transparent',\r\n '& > span': {\r\n maxWidth: 40,\r\n width: '100%',\r\n backgroundColor: '#635ee7',\r\n },\r\n },\r\n})((props) => <Tabs {...props} TabIndicatorProps={{ children: <span /> }} />);\r\n\r\nlet tabCurrentData = [];\r\n\r\nfunction a11yProps(index) {\r\n return {\r\n id: `scrollable-force-tab-${index}`,\r\n 'aria-controls': `scrollable-force-tabpanel-${index}`,\r\n };\r\n}\r\n\r\nconst useStyles = makeStyles((theme) => ({\r\n tab: {\r\n root: {\r\n flexGrow: 1,\r\n },\r\n padding: {\r\n padding: theme.spacing(3),\r\n },\r\n demo1: {\r\n backgroundColor: theme.palette.background.paper,\r\n },\r\n },\r\n card: {\r\n root: {\r\n maxWidth: 345,\r\n },\r\n media: {\r\n height: 140,\r\n backgroundColor: 'white'\r\n },\r\n },\r\n projectContainer: {\r\n root: {\r\n flexGrow: 1,\r\n },\r\n card: {\r\n padding: theme.spacing(2),\r\n textAlign: 'center',\r\n color: theme.palette.text.secondary,\r\n },\r\n }\r\n}));\r\n\r\n\r\nfunction ProjectCard(props) {\r\n const classes = useStyles();\r\n let [checked, setChecked] = React.useState(false);\r\n let [cardDetails, setCardDetails] = React.useState({});\r\n let propsData = {};\r\n React.useEffect(() => {\r\n setChecked(false);\r\n setTimeout(() => {\r\n setCardDetails(props.dataObj)\r\n setChecked(true);\r\n }, 300);\r\n\r\n }, [props.dataObj])\r\n\r\n return (\r\n // <StyleRoot>\r\n // <div style={animationStyle.bounce} >\r\n <React.Fragment>\r\n <Grow in={checked}>\r\n <Card className={classes.card.root} elevation={2}>\r\n <CardActionArea>\r\n <CardMedia\r\n className={classes.card.media} style={{ 'background-color': 'white', 'text-align': 'center' }}\r\n // imageUrl={(props.dataObj.image)}\r\n title=\"Contemplative Reptile\"\r\n >{<img src={(cardDetails['image'])} ></img>}</CardMedia>\r\n <CardContent>\r\n <Typography gutterBottom variant=\"h5\" component=\"h2\">\r\n {cardDetails['title']}\r\n </Typography>\r\n <Typography variant=\"body2\" color=\"textSecondary\" component=\"p\">\r\n {cardDetails['description']}\r\n </Typography>\r\n </CardContent>\r\n </CardActionArea>\r\n </Card>\r\n </Grow>\r\n </React.Fragment>\r\n // </div>\r\n // </StyleRoot>\r\n );\r\n\r\n}\r\nexport default function ProjectTabs() {\r\n const classes = useStyles();\r\n const [value, setValue] = React.useState(0);\r\n\r\n const handleChange = (event, newValue) => {\r\n tabCurrentData = content.TabData[newValue].tiles;\r\n // const forceUpdate = ProjectCard();\r\n setValue(newValue);\r\n console.log(\"setValue->\",value)\r\n };\r\n\r\n return (\r\n <div className={classes.tab.root}>\r\n <div className={classes.tab.demo2}>\r\n <StyledTabs\r\n value={value}\r\n onChange={handleChange}\r\n indicatorColor=\"primary\"\r\n textColor=\"secondary\"\r\n centered>{\r\n content.TabData.map(element => {\r\n return <Tab label={element.title} />\r\n })\r\n }\r\n </StyledTabs>\r\n <div className={classes.projectContainer.root}>\r\n <Box m={2}></Box>\r\n <Container maxWidth=\"lg\">\r\n <Grid container style={{height: '500px'}} spacing={3}>\r\n {\r\n content.TabData[value]['tiles'].map(data => {\r\n return (\r\n <Grid item xs={6} sm={6} md={6} lg={4} xl={4}>\r\n <ProjectCard dataObj={data} />\r\n </Grid>\r\n );\r\n })\r\n }\r\n </Grid>\r\n </Container>\r\n {/* <ProjectCard /> */}\r\n </div>\r\n </div>\r\n </div>\r\n );\r\n}\r\n",{"ruleId":"178","severity":1,"message":"179","line":7,"column":8,"nodeType":"180","messageId":"181","endLine":7,"endColumn":19},{"ruleId":"182","replacedBy":"183"},{"ruleId":"184","replacedBy":"185"},{"ruleId":"178","severity":1,"message":"186","line":1,"column":17,"nodeType":"180","messageId":"181","endLine":1,"endColumn":26},{"ruleId":"178","severity":1,"message":"187","line":3,"column":8,"nodeType":"180","messageId":"181","endLine":3,"endColumn":12},{"ruleId":"178","severity":1,"message":"188","line":4,"column":10,"nodeType":"180","messageId":"181","endLine":4,"endColumn":20},{"ruleId":"178","severity":1,"message":"189","line":5,"column":8,"nodeType":"180","messageId":"181","endLine":5,"endColumn":23},{"ruleId":"178","severity":1,"message":"190","line":6,"column":8,"nodeType":"180","messageId":"181","endLine":6,"endColumn":14},{"ruleId":"178","severity":1,"message":"191","line":7,"column":8,"nodeType":"180","messageId":"181","endLine":7,"endColumn":12},{"ruleId":"178","severity":1,"message":"192","line":8,"column":8,"nodeType":"180","messageId":"181","endLine":8,"endColumn":15},{"ruleId":"178","severity":1,"message":"193","line":9,"column":8,"nodeType":"180","messageId":"181","endLine":9,"endColumn":16},{"ruleId":"178","severity":1,"message":"194","line":10,"column":8,"nodeType":"180","messageId":"181","endLine":10,"endColumn":20},{"ruleId":"178","severity":1,"message":"195","line":11,"column":8,"nodeType":"180","messageId":"181","endLine":11,"endColumn":20},{"ruleId":"178","severity":1,"message":"196","line":12,"column":8,"nodeType":"180","messageId":"181","endLine":12,"endColumn":17},{"ruleId":"178","severity":1,"message":"197","line":13,"column":8,"nodeType":"180","messageId":"181","endLine":13,"endColumn":16},{"ruleId":"178","severity":1,"message":"198","line":15,"column":8,"nodeType":"180","messageId":"181","endLine":15,"endColumn":12},{"ruleId":"178","severity":1,"message":"186","line":1,"column":17,"nodeType":"180","messageId":"181","endLine":1,"endColumn":26},{"ruleId":"178","severity":1,"message":"199","line":5,"column":8,"nodeType":"180","messageId":"181","endLine":5,"endColumn":22},{"ruleId":"178","severity":1,"message":"200","line":6,"column":8,"nodeType":"180","messageId":"181","endLine":6,"endColumn":19},{"ruleId":"178","severity":1,"message":"201","line":7,"column":8,"nodeType":"180","messageId":"181","endLine":7,"endColumn":19},{"ruleId":"178","severity":1,"message":"202","line":8,"column":8,"nodeType":"180","messageId":"181","endLine":8,"endColumn":17},{"ruleId":"178","severity":1,"message":"203","line":10,"column":8,"nodeType":"180","messageId":"181","endLine":10,"endColumn":18},{"ruleId":"178","severity":1,"message":"204","line":12,"column":8,"nodeType":"180","messageId":"181","endLine":12,"endColumn":11},{"ruleId":"178","severity":1,"message":"205","line":13,"column":8,"nodeType":"180","messageId":"181","endLine":13,"endColumn":13},{"ruleId":"178","severity":1,"message":"206","line":14,"column":8,"nodeType":"180","messageId":"181","endLine":14,"endColumn":14},{"ruleId":"178","severity":1,"message":"207","line":15,"column":8,"nodeType":"180","messageId":"181","endLine":15,"endColumn":15},{"ruleId":"178","severity":1,"message":"186","line":1,"column":17,"nodeType":"180","messageId":"181","endLine":1,"endColumn":26},{"ruleId":"178","severity":1,"message":"188","line":2,"column":10,"nodeType":"180","messageId":"181","endLine":2,"endColumn":20},{"ruleId":"178","severity":1,"message":"205","line":5,"column":8,"nodeType":"180","messageId":"181","endLine":5,"endColumn":13},{"ruleId":"178","severity":1,"message":"187","line":3,"column":8,"nodeType":"180","messageId":"181","endLine":3,"endColumn":12},{"ruleId":"178","severity":1,"message":"208","line":5,"column":8,"nodeType":"180","messageId":"181","endLine":5,"endColumn":20},{"ruleId":"178","severity":1,"message":"209","line":6,"column":8,"nodeType":"180","messageId":"181","endLine":6,"endColumn":17},{"ruleId":"178","severity":1,"message":"210","line":7,"column":8,"nodeType":"180","messageId":"181","endLine":7,"endColumn":22},{"ruleId":"178","severity":1,"message":"211","line":8,"column":8,"nodeType":"180","messageId":"181","endLine":8,"endColumn":20},{"ruleId":"178","severity":1,"message":"190","line":14,"column":15,"nodeType":"180","messageId":"181","endLine":14,"endColumn":21},{"ruleId":"178","severity":1,"message":"212","line":14,"column":23,"nodeType":"180","messageId":"181","endLine":14,"endColumn":29},{"ruleId":"178","severity":1,"message":"213","line":14,"column":48,"nodeType":"180","messageId":"181","endLine":14,"endColumn":53},{"ruleId":"178","severity":1,"message":"205","line":14,"column":55,"nodeType":"180","messageId":"181","endLine":14,"endColumn":60},{"ruleId":"178","severity":1,"message":"206","line":14,"column":62,"nodeType":"180","messageId":"181","endLine":14,"endColumn":68},{"ruleId":"178","severity":1,"message":"207","line":14,"column":70,"nodeType":"180","messageId":"181","endLine":14,"endColumn":77},{"ruleId":"178","severity":1,"message":"214","line":14,"column":96,"nodeType":"180","messageId":"181","endLine":14,"endColumn":104},{"ruleId":"178","severity":1,"message":"215","line":14,"column":118,"nodeType":"180","messageId":"181","endLine":14,"endColumn":122},{"ruleId":"178","severity":1,"message":"216","line":14,"column":124,"nodeType":"180","messageId":"181","endLine":14,"endColumn":127},{"ruleId":"178","severity":1,"message":"202","line":15,"column":16,"nodeType":"180","messageId":"181","endLine":15,"endColumn":25},{"ruleId":"178","severity":1,"message":"217","line":15,"column":63,"nodeType":"180","messageId":"181","endLine":15,"endColumn":73},{"ruleId":"178","severity":1,"message":"218","line":22,"column":10,"nodeType":"180","messageId":"181","endLine":22,"endColumn":18},{"ruleId":"178","severity":1,"message":"219","line":22,"column":19,"nodeType":"180","messageId":"181","endLine":22,"endColumn":31},{"ruleId":"178","severity":1,"message":"220","line":22,"column":32,"nodeType":"180","messageId":"181","endLine":22,"endColumn":49},{"ruleId":"178","severity":1,"message":"221","line":22,"column":50,"nodeType":"180","messageId":"181","endLine":22,"endColumn":67},{"ruleId":"178","severity":1,"message":"222","line":22,"column":68,"nodeType":"180","messageId":"181","endLine":22,"endColumn":83},{"ruleId":"178","severity":1,"message":"223","line":22,"column":84,"nodeType":"180","messageId":"181","endLine":22,"endColumn":107},{"ruleId":"178","severity":1,"message":"224","line":22,"column":108,"nodeType":"180","messageId":"181","endLine":22,"endColumn":119},{"ruleId":"178","severity":1,"message":"225","line":24,"column":10,"nodeType":"180","messageId":"181","endLine":24,"endColumn":16},{"ruleId":"178","severity":1,"message":"226","line":24,"column":18,"nodeType":"180","messageId":"181","endLine":24,"endColumn":22},{"ruleId":"178","severity":1,"message":"227","line":24,"column":24,"nodeType":"180","messageId":"181","endLine":24,"endColumn":32},{"ruleId":"178","severity":1,"message":"228","line":28,"column":5,"nodeType":"180","messageId":"181","endLine":28,"endColumn":13},{"ruleId":"178","severity":1,"message":"217","line":4,"column":8,"nodeType":"180","messageId":"181","endLine":4,"endColumn":18},{"ruleId":"178","severity":1,"message":"229","line":8,"column":8,"nodeType":"180","messageId":"181","endLine":8,"endColumn":16},{"ruleId":"178","severity":1,"message":"186","line":1,"column":17,"nodeType":"180","messageId":"181","endLine":1,"endColumn":26},{"ruleId":"178","severity":1,"message":"230","line":2,"column":10,"nodeType":"180","messageId":"181","endLine":2,"endColumn":15},{"ruleId":"178","severity":1,"message":"190","line":6,"column":8,"nodeType":"180","messageId":"181","endLine":6,"endColumn":14},{"ruleId":"182","replacedBy":"231"},{"ruleId":"184","replacedBy":"232"},{"ruleId":"178","severity":1,"message":"233","line":1,"column":17,"nodeType":"180","messageId":"181","endLine":1,"endColumn":25},{"ruleId":"178","severity":1,"message":"188","line":2,"column":10,"nodeType":"180","messageId":"181","endLine":2,"endColumn":20},{"ruleId":"178","severity":1,"message":"206","line":5,"column":10,"nodeType":"180","messageId":"181","endLine":5,"endColumn":16},{"ruleId":"178","severity":1,"message":"212","line":5,"column":23,"nodeType":"180","messageId":"181","endLine":5,"endColumn":29},{"ruleId":"178","severity":1,"message":"234","line":5,"column":31,"nodeType":"180","messageId":"181","endLine":5,"endColumn":35},{"ruleId":"178","severity":1,"message":"213","line":5,"column":37,"nodeType":"180","messageId":"181","endLine":5,"endColumn":42},{"ruleId":"178","severity":1,"message":"205","line":5,"column":44,"nodeType":"180","messageId":"181","endLine":5,"endColumn":49},{"ruleId":"178","severity":1,"message":"235","line":5,"column":51,"nodeType":"180","messageId":"181","endLine":5,"endColumn":57},{"ruleId":"178","severity":1,"message":"214","line":5,"column":59,"nodeType":"180","messageId":"181","endLine":5,"endColumn":67},{"ruleId":"178","severity":1,"message":"201","line":5,"column":69,"nodeType":"180","messageId":"181","endLine":5,"endColumn":80},{"ruleId":"178","severity":1,"message":"200","line":5,"column":82,"nodeType":"180","messageId":"181","endLine":5,"endColumn":93},{"ruleId":"178","severity":1,"message":"202","line":5,"column":95,"nodeType":"180","messageId":"181","endLine":5,"endColumn":104},{"ruleId":"178","severity":1,"message":"198","line":5,"column":118,"nodeType":"180","messageId":"181","endLine":5,"endColumn":122},{"ruleId":"178","severity":1,"message":"217","line":5,"column":142,"nodeType":"180","messageId":"181","endLine":5,"endColumn":152},{"ruleId":"178","severity":1,"message":"207","line":5,"column":154,"nodeType":"180","messageId":"181","endLine":5,"endColumn":161},{"ruleId":"178","severity":1,"message":"225","line":6,"column":10,"nodeType":"180","messageId":"181","endLine":6,"endColumn":16},{"ruleId":"178","severity":1,"message":"226","line":6,"column":18,"nodeType":"180","messageId":"181","endLine":6,"endColumn":22},{"ruleId":"178","severity":1,"message":"233","line":1,"column":17,"nodeType":"180","messageId":"181","endLine":1,"endColumn":25},{"ruleId":"178","severity":1,"message":"190","line":9,"column":10,"nodeType":"180","messageId":"181","endLine":9,"endColumn":16},{"ruleId":"178","severity":1,"message":"212","line":9,"column":18,"nodeType":"180","messageId":"181","endLine":9,"endColumn":24},{"ruleId":"178","severity":1,"message":"236","line":9,"column":26,"nodeType":"180","messageId":"181","endLine":9,"endColumn":35},{"ruleId":"178","severity":1,"message":"234","line":9,"column":37,"nodeType":"180","messageId":"181","endLine":9,"endColumn":41},{"ruleId":"178","severity":1,"message":"213","line":9,"column":43,"nodeType":"180","messageId":"181","endLine":9,"endColumn":48},{"ruleId":"178","severity":1,"message":"205","line":9,"column":50,"nodeType":"180","messageId":"181","endLine":9,"endColumn":55},{"ruleId":"178","severity":1,"message":"206","line":9,"column":57,"nodeType":"180","messageId":"181","endLine":9,"endColumn":63},{"ruleId":"178","severity":1,"message":"207","line":9,"column":65,"nodeType":"180","messageId":"181","endLine":9,"endColumn":72},{"ruleId":"178","severity":1,"message":"235","line":9,"column":74,"nodeType":"180","messageId":"181","endLine":9,"endColumn":80},{"ruleId":"178","severity":1,"message":"214","line":9,"column":91,"nodeType":"180","messageId":"181","endLine":9,"endColumn":99},{"ruleId":"178","severity":1,"message":"201","line":9,"column":101,"nodeType":"180","messageId":"181","endLine":9,"endColumn":112},{"ruleId":"178","severity":1,"message":"200","line":10,"column":5,"nodeType":"180","messageId":"181","endLine":10,"endColumn":16},{"ruleId":"178","severity":1,"message":"202","line":10,"column":18,"nodeType":"180","messageId":"181","endLine":10,"endColumn":27},{"ruleId":"178","severity":1,"message":"237","line":10,"column":29,"nodeType":"180","messageId":"181","endLine":10,"endColumn":39},{"ruleId":"178","severity":1,"message":"198","line":10,"column":41,"nodeType":"180","messageId":"181","endLine":10,"endColumn":45},{"ruleId":"178","severity":1,"message":"238","line":10,"column":47,"nodeType":"180","messageId":"181","endLine":10,"endColumn":51},{"ruleId":"178","severity":1,"message":"203","line":10,"column":53,"nodeType":"180","messageId":"181","endLine":10,"endColumn":63},{"ruleId":"178","severity":1,"message":"217","line":10,"column":65,"nodeType":"180","messageId":"181","endLine":10,"endColumn":75},{"ruleId":"239","severity":1,"message":"240","line":55,"column":35,"nodeType":"241","endLine":55,"endColumn":158},{"ruleId":"178","severity":1,"message":"205","line":4,"column":5,"nodeType":"180","messageId":"181","endLine":4,"endColumn":10},{"ruleId":"178","severity":1,"message":"242","line":4,"column":35,"nodeType":"180","messageId":"181","endLine":4,"endColumn":47},{"ruleId":"178","severity":1,"message":"243","line":4,"column":71,"nodeType":"180","messageId":"181","endLine":4,"endColumn":75},{"ruleId":"178","severity":1,"message":"200","line":6,"column":5,"nodeType":"180","messageId":"181","endLine":6,"endColumn":16},{"ruleId":"178","severity":1,"message":"190","line":9,"column":5,"nodeType":"180","messageId":"181","endLine":9,"endColumn":11},{"ruleId":"178","severity":1,"message":"244","line":12,"column":17,"nodeType":"180","messageId":"181","endLine":12,"endColumn":25},{"ruleId":"178","severity":1,"message":"245","line":13,"column":18,"nodeType":"180","messageId":"181","endLine":13,"endColumn":27},{"ruleId":"178","severity":1,"message":"246","line":15,"column":7,"nodeType":"180","messageId":"181","endLine":15,"endColumn":21},{"ruleId":"178","severity":1,"message":"247","line":38,"column":10,"nodeType":"180","messageId":"181","endLine":38,"endColumn":19},{"ruleId":"178","severity":1,"message":"248","line":83,"column":9,"nodeType":"180","messageId":"181","endLine":83,"endColumn":18},{"ruleId":"239","severity":1,"message":"240","line":104,"column":27,"nodeType":"241","endLine":104,"endColumn":62},{"ruleId":"178","severity":1,"message":"249","line":127,"column":9,"nodeType":"180","messageId":"181","endLine":127,"endColumn":23},"no-unused-vars","'CssBaseline' is defined but never used.","Identifier","unusedVar","no-native-reassign",["250"],"no-negated-in-lhs",["251"],"'Component' is defined but never used.","'clsx' is defined but never used.","'makeStyles' is defined but never used.","'SwipeableDrawer' is defined but never used.","'Button' is defined but never used.","'List' is defined but never used.","'Divider' is defined but never used.","'ListItem' is defined but never used.","'ListItemIcon' is defined but never used.","'ListItemText' is defined but never used.","'InboxIcon' is defined but never used.","'MailIcon' is defined but never used.","'Grid' is defined but never used.","'CardActionArea' is defined but never used.","'CardActions' is defined but never used.","'CardContent' is defined but never used.","'CardMedia' is defined but never used.","'Typography' is defined but never used.","'Box' is defined but never used.","'Paper' is defined but never used.","'AppBar' is defined but never used.","'Toolbar' is defined but never used.","'FavoriteIcon' is defined but never used.","'ShareIcon' is defined but never used.","'ExpandMoreIcon' is defined but never used.","'MoreVertIcon' is defined but never used.","'Switch' is defined but never used.","'Slide' is defined but never used.","'Collapse' is defined but never used.","'Tabs' is defined but never used.","'Tab' is defined but never used.","'IconButton' is defined but never used.","'Timeline' is defined but never used.","'TimelineItem' is defined but never used.","'TimelineSeparator' is defined but never used.","'TimelineConnector' is defined but never used.","'TimelineContent' is defined but never used.","'TimelineOppositeContent' is defined but never used.","'TimelineDot' is defined but never used.","'bounce' is defined but never used.","'tada' is defined but never used.","'bounceIn' is defined but never used.","'IsMobile' is assigned a value but never used.","'MenuIcon' is defined but never used.","'Route' is defined but never used.",["250"],["251"],"'useState' is defined but never used.","'Zoom' is defined but never used.","'Avatar' is defined but never used.","'Container' is defined but never used.","'CardHeader' is defined but never used.","'Card' is defined but never used.","jsx-a11y/alt-text","img elements must have an alt prop, either with meaningful text, or an empty string for decorative images.","JSXOpeningElement","'TabPanelCard' is defined but never used.","'Fade' is defined but never used.","'fadeInUp' is defined but never used.","'StyleRoot' is defined but never used.","'animationStyle' is assigned a value but never used.","'a11yProps' is defined but never used.","'propsData' is assigned a value but never used.","'tabCurrentData' is assigned a value but never used.","no-global-assign","no-unsafe-negation"]