Merge branch 'mergeFix' into 'dev'

uploading to fix marge

See merge request kluppsoftware/smart-energia-web!14
This commit is contained in:
José Corte 2022-05-09 16:11:46 +00:00
commit bd21fd15f3
27 changed files with 396 additions and 602 deletions

View File

@ -17,6 +17,7 @@
] ]
}, },
"dependencies": { "dependencies": {
"faker": "5.5.3",
"@emotion/react": "^11.9.0", "@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1", "@emotion/styled": "^11.8.1",
"@mui/material": "^5.6.4", "@mui/material": "^5.6.4",
@ -33,6 +34,7 @@
"styled-components": "^5.3.5" "styled-components": "^5.3.5"
}, },
"devDependencies": { "devDependencies": {
"@types/faker": "5.5.3",
"@types/chartjs": "^0.0.31", "@types/chartjs": "^0.0.31",
"@types/node": "^17.0.31", "@types/node": "^17.0.31",
"@types/react": "^18.0.8", "@types/react": "^18.0.8",

View File

@ -1,17 +1,33 @@
import React from 'react' import React, { useState, useEffect } from 'react'
import { useRouter } from 'next/router'
import '../styles/globals.ts' import '../styles/globals.ts'
import { AppProps } from 'next/app' import { AppProps } from 'next/app'
import Sidebar from '../src/components/sidebar/Sidebar' import Sidebar from '../src/components/sidebar/Sidebar'
import { GlobalStyle } from '../styles/globals' import { GlobalStyle } from '../styles/globals'
import { AppView } from '../styles/app/AppView' import { AppView } from '../styles/app/AppView'
import Home from '.'
function MyApp({ Component, pageProps }: AppProps) { function MyApp({ Component, pageProps }: AppProps) {
const [ auth, setAuth ] = useState(false)
const router = useRouter()
const rota = router.pathname
return ( return (
<AppView> <AppView>
<Home auth={rota} />
<GlobalStyle /> <GlobalStyle />
{
rota != '/'?
<>
<Sidebar /> <Sidebar />
<Component {...pageProps} /> <Component {...pageProps} />
</>
:
null
}
</AppView> </AppView>
) )
} }

View File

@ -1,10 +1,9 @@
import React from 'react' import React from 'react'
import BasicButton from '../src/components/buttons/basicButton/BasicButton' import BasicButton from '../src/components/buttons/basicButton/BasicButton'
import Graph from '../src/components/graph/Graph' import Graph from '../src/components/graph/Chart'
export default function areaTest() { export default function areaTest() {
return ( return (
// <Graph /> <Graph title='Indicador de custo' />
<BasicButton title='texto'/>
) )
} }

19
pages/consumption.tsx Normal file
View File

@ -0,0 +1,19 @@
import React from 'react'
import Chart from '../src/components/graph/Chart'
import Header from '../src/components/header/Header'
import { ConsumptionView } from '../styles/layouts/consumption/ConsumptionView'
export default function Consumption() {
return (
<ConsumptionView>
<Header name='' />
<section>
<h1>Consumo</h1>
<span>Análise de Consumo</span>
</section>
<section>
<Chart title='Indicador de custo' />
</section>
</ConsumptionView>
)
}

View File

@ -1,8 +1,8 @@
import React from 'react' import React from 'react'
import { DashboardView } from '../styles/layouts/Dashboard/DashboardView' import { DashboardView } from '../styles/layouts/dashboard/DashboardView'
import MapCard from '../src/components/mapCard/MapCard' import MapCard from '../src/components/mapCard/MapCard'
import GraphCard from '../src/components/graph/graphCard/GraphCard' import GraphCard from '../src/components/graph/graphCard/ChartCard'
export default function Dashboard() { export default function Dashboard() {
return ( return (

View File

@ -1,51 +1,23 @@
import React from 'react' import React, { useState, useEffect } from 'react'
import Image from 'next/image'; import Image from 'next/image';
import Link from 'next/link';
import { useRouter } from 'next/router'
import Box from '@mui/material/Box'; import { LoginView} from '../styles/layouts/login/LoginView';
import IconButton from '@mui/material/IconButton'; import { truncateSync } from 'fs';
import Input from '@mui/material/Input';
import FilledInput from '@mui/material/FilledInput';
import OutlinedInput from '@mui/material/OutlinedInput';
import InputLabel from '@mui/material/InputLabel';
import InputAdornment from '@mui/material/InputAdornment';
import FormHelperText from '@mui/material/FormHelperText';
import FormControl from '@mui/material/FormControl';
interface HomeInterface {
auth: any
}
import { LoginView} from '../styles/layouts/Login/LoginView'; export default function Home({ auth }: HomeInterface) {
const router = useRouter()
export default function Home() { const rota = router.pathname
// interface State {
// amount: string;
// password: string;
// weight: string;
// weightRange: string;
// showPassword: boolean;
// }
// const [values, setValues] = React.useState<State>({
// amount: '',
// password: '',
// weight: '',
// weightRange: '',
// showPassword: false,
// });
// const handleChange =
// (prop: keyof State) => (event: React.ChangeEvent<HTMLInputElement>) => {
// setValues({ ...values, [prop]: event.target.value });
// };
// const handleClickShowPassword = () => {
// setValues({
// ...values,
// showPassword: !values.showPassword,
// });
// };
return ( return (
<LoginView> <LoginView auth={rota} >
<Image src='/assets/marca1.svg' width={600} height={700}/> <Image src='/assets/marca1.svg' width={600} height={700}/>
<section className="container"> <section className="container">
<h1>Bem-Vindo</h1> <h1>Bem-Vindo</h1>
@ -53,7 +25,9 @@ export default function Home() {
<input type="text" placeholder='Login'/> <input type="text" placeholder='Login'/>
<input type="text" placeholder='Senha'/> <input type="text" placeholder='Senha'/>
<span>Esqueceu a senha ?</span> <span>Esqueceu a senha ?</span>
<Link href='/dashboard' >
<button>ENTRAR</button> <button>ENTRAR</button>
</Link>
<fieldset> <fieldset>
<legend>Ou</legend> <legend>Ou</legend>

View File

@ -1,7 +1,7 @@
import React from 'react'; import React from 'react';
import Sidebar from '../src/components/sidebar/Sidebar'; import Sidebar from '../src/components/sidebar/Sidebar';
import { TableView} from '../styles/layouts/ResumoOperacao/ResumoOperacaoView'; import { TableView} from '../styles/layouts/resumoOperacao/ResumoOperacaoView';
@ -10,7 +10,6 @@ export default function ResumoOperacao() {
<TableView> <TableView>
<Sidebar />
<h1>Resumo de Operaçoes</h1> <h1>Resumo de Operaçoes</h1>
<h2>Operações detalhadas</h2> <h2>Operações detalhadas</h2>
<h3>Seletor Mês</h3> <h3>Seletor Mês</h3>

View File

@ -2,7 +2,7 @@ import React from 'react';
import Image from 'next/image'; import Image from 'next/image';
import BasicButton from '../src/components/buttons/basicButton/BasicButton' import BasicButton from '../src/components/buttons/basicButton/BasicButton'
import { TelemetriaView} from '../styles/layouts/Telemetria/TelemetriaView'; import { TelemetriaView} from '../styles/layouts/telemetria/TelemetriaView';

3
public/icon.svg Normal file
View File

@ -0,0 +1,3 @@
<svg width="206" height="56" viewBox="0 0 206 56" fill="none" xmlns="http://www.w3.org/2000/svg">
<rect y="0.297363" width="206" height="54.7704" rx="8" fill="#254F7F"/>
</svg>

After

Width:  |  Height:  |  Size: 177 B

View File

View File

@ -0,0 +1,77 @@
import React, { useState, useEffect } from 'react'
import { Bar, Line } from 'react-chartjs-2';
import {
Chart as ChartJS,
CategoryScale,
LinearScale,
BarElement,
Title,
Tooltip,
Legend
} from 'chart.js'
import faker from 'faker'
import { ChartView } from './ChartView';
ChartJS.register(
CategoryScale,
LinearScale,
BarElement,
Title,
Tooltip,
Legend
)
interface ChartInterface {
title: string,
}
export default function Chart({ title }: ChartInterface) {
const [ graphData, setGraphData ] = useState({
labels: [],
datasets: [],
})
const options = {
responsive: true,
plugins: {
legend: {
position: 'bottom' as const,
},
title: {
display: true,
text: title,
},
},
};
const labels = ['Jan', 'Fev', 'Mar', 'Abr', 'Mai', 'Jun', 'Jul', 'ago', 'set', 'out', 'nov', 'dez'];
useEffect(() => {
setGraphData({
labels,
datasets: [
{
label: '2020',
data: labels.map(() => faker.datatype.number({ min: 0, max: 1200 })),
backgroundColor: 'rgba(53, 162, 235, 5)',
},
{
label: '2021',
data: labels.map(() => faker.datatype.number({ min: 0, max: 1200 })),
backgroundColor: 'rgba(0, 81, 255, 1)',
},
],
})
}, [])
return (
<ChartView>
<Bar
options={options}
data={graphData}
/>
</ChartView>
)
}

View File

@ -0,0 +1,5 @@
import styled from "styled-components"
export const ChartView = styled.div`
width: 100%;
`

View File

@ -1,63 +0,0 @@
import React, { useState, useEffect } from 'react'
import { Bar, Line } from 'react-chartjs-2';
import {
Chart as ChartJS,
CategoryScale,
LinearScale,
BarElement,
Title,
Tooltip,
Legend
} from 'chart.js'
ChartJS.register(
CategoryScale,
LinearScale,
BarElement,
Title,
Tooltip,
Legend
)
export default function Graph() {
const [ graphData, setGraphData ] = useState({
labels: [],
datasets: [],
})
const [ graphOptions, setGraphOptions ] = useState({})
useEffect(() => {
setGraphData({
labels: ['John', 'kevin', 'george', 'michael', 'oreo'],
datasets: [{
label: "Whom'st let the dogsout",
data: [12, 55, 34, 120, 720],
borderColor: "rgb(53, 162, 235)",
backgroundColor: "rgb(53, 162, 235, 0.4)"
}]
})
setGraphOptions({
responsive: true,
plugins: {
legend: {
position: 'top'
},
title: {
display: true,
text: "Whom'st let the dogsout"
}
}
})
}, [])
return (
<Line
options={graphOptions}
data={graphData}
// {}
/>
)
}

View File

@ -4,16 +4,16 @@ import Link from 'next/link';
import ToggleButton from '@mui/material/ToggleButton'; import ToggleButton from '@mui/material/ToggleButton';
import ToggleButtonGroup from '@mui/material/ToggleButtonGroup'; import ToggleButtonGroup from '@mui/material/ToggleButtonGroup';
import { GraphCardView } from './GraphCardView'; import { ChartCardView } from './ChartCardView';
interface GraphCardInterface { interface ChartCardInterface {
title: string, title: string,
subtitle: string, subtitle: string,
consumption?: number, consumption?: number,
className?: string className?: string
} }
export default function GraphCard({ title, subtitle, consumption, className }: GraphCardInterface) { export default function ChartCard({ title, subtitle, consumption, className }: ChartCardInterface) {
const [timeCourse, setTimeCourse] = React.useState<string | null>('left'); const [timeCourse, setTimeCourse] = React.useState<string | null>('left');
const handleAlignment = ( const handleAlignment = (
@ -24,7 +24,7 @@ export default function GraphCard({ title, subtitle, consumption, className }: G
}; };
return ( return (
<GraphCardView className={className} > <ChartCardView className={className} >
<div className='content' > <div className='content' >
<div className='header'> <div className='header'>
<div> <div>
@ -64,6 +64,6 @@ export default function GraphCard({ title, subtitle, consumption, className }: G
} }
</div> </div>
<div className='graph' /> <div className='graph' />
</GraphCardView> </ChartCardView>
) )
} }

View File

@ -1,6 +1,6 @@
import styled from 'styled-components'; import styled from 'styled-components';
export const GraphCardView = styled.article` export const ChartCardView = styled.article`
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: space-between; justify-content: space-between;

View File

@ -0,0 +1,64 @@
import React from 'react'
import Image from 'next/image';
import TextField from '@mui/material/TextField';
import Avatar from '@mui/material/Avatar';
import { HeaderView } from './HeaderView'
function stringToColor(string: string) {
let hash = 0;
let i;
/* eslint-disable no-bitwise */
for (i = 0; i < string.length; i += 1) {
hash = string.charCodeAt(i) + ((hash << 5) - hash);
}
let color = '#';
for (i = 0; i < 3; i += 1) {
const value = (hash >> (i * 8)) & 0xff;
color += `00${value.toString(16)}`.slice(-2);
}
/* eslint-enable no-bitwise */
return color;
}
function stringAvatar(name: string) {
return {
sx: {
bgcolor: stringToColor(name),
},
children: `${name.split(' ')[0][0]}${name.split(' ')[1][0]}`,
};
}
interface headerInterface {
name: string
}
export default function Header({ name }: headerInterface) {
return (
<HeaderView>
<section>
<TextField
id="outlined-textarea"
label="Encontre na Página"
placeholder="Encontre na Página"
multiline
fullWidth
/>
</section>
<section>
<Image src='/copel.svg' width={150} height={150} />
<div className='icon' >
olá, {'josé'}
</div>
<Avatar {...stringAvatar('José Corte')} />
</section>
</HeaderView>
)
}

View File

@ -0,0 +1,52 @@
import styled from "styled-components";
export const HeaderView = styled.header`
display: flex;
align-items: center;
justify-content: space-between;
flex-direction: row;
height: 5rem;
section {
display: flex;
align-items: center;
justify-content: center;
margin: 0;
padding: 0;
:first-child {
width: 30%;
}
}
.icon {
position: relative;
display: flex;
align-items: center;
justify-content: center;
width: 150px;
height: 43px;
border-radius: 8px;
background-color: #254F7F;
color: white;
transform: translateX(20px);
::after {
content: "";
position: relative;
left: 40px;
background-color: #FFF;
width: 45px;
height: 45px;
border-radius: 100%;
}
}
`

View File

@ -1,5 +1,7 @@
import Image from 'next/image'
import React, { useState } from 'react' import React, { useState } from 'react'
import Image from 'next/image'
import { useRouter } from 'next/router'
import { SidebarView } from './SidebarView' import { SidebarView } from './SidebarView'
export default function Sidebar() { export default function Sidebar() {
@ -7,6 +9,10 @@ export default function Sidebar() {
const [ viewModal, setViewModal ] = useState(false) const [ viewModal, setViewModal ] = useState(false)
const router = useRouter()
console.log(router.pathname)
return ( return (
<SidebarView economiaDrawer={economiaDrawer} modalOpen={viewModal} > <SidebarView economiaDrawer={economiaDrawer} modalOpen={viewModal} >
<div className='hamburger' onClick={() => setViewModal(!viewModal)} > <div className='hamburger' onClick={() => setViewModal(!viewModal)} >
@ -16,8 +22,8 @@ export default function Sidebar() {
<Image src='/assets/logo.svg' width={100} height={100} /> <Image src='/assets/logo.svg' width={100} height={100} />
</div> </div>
<ul> <ul>
<li>{'Visão Geral'}</li> <li className={router.pathname=='/dashboard'? 'actualPath' : null} >{'Visão Geral'}</li>
<li>{'Consumo'}</li> <li className={router.pathname=='/consumption'? 'actualPath' : null} >{'Consumo'}</li>
<li>{'Resumo de Op. >'}</li> <li>{'Resumo de Op. >'}</li>
<li onClick={() => setEconomiaDrawer(!economiaDrawer)} >{'Economia >'}</li> <li onClick={() => setEconomiaDrawer(!economiaDrawer)} >{'Economia >'}</li>
<div className='economiaDrawer drawer' > <div className='economiaDrawer drawer' >

View File

@ -23,6 +23,11 @@ export const SidebarView = styled.nav<SidebarViewInterface>`
background-color: #FFFFFF; background-color: #FFFFFF;
.actualPath {
border-left: #254F7F solid 8px;
background-color: #FAFBFF;
}
ul { ul {
display: flex; display: flex;
justify-content: center; justify-content: center;
@ -34,6 +39,8 @@ export const SidebarView = styled.nav<SidebarViewInterface>`
width: 100%; width: 100%;
padding: 0;
li { li {
display: flex; display: flex;
align-items: center; align-items: center;
@ -51,6 +58,10 @@ export const SidebarView = styled.nav<SidebarViewInterface>`
color: #969BA0; color: #969BA0;
cursor: pointer; cursor: pointer;
padding-left: 40px;
} }
.economiaDrawer { .economiaDrawer {
@ -78,13 +89,17 @@ export const SidebarView = styled.nav<SidebarViewInterface>`
font-family: 'Poppins'; font-family: 'Poppins';
font-style: normal; font-style: normal;
font-weight: 600; font-weight: 600;
font-size: 14px; font-size: 90%;
line-height: 21px; line-height: 21px;
text-align: center; text-align: center;
color: #FFFFFF; color: #FFFFFF;
} }
h3 {
font-size: 90%;
}
div { div {
display: flex; display: flex;
justify-content: center; justify-content: center;

View File

View File

@ -3,7 +3,11 @@ import styled from 'styled-components'
export const AppView = styled.main` export const AppView = styled.main`
display: flex; display: flex;
margin: 0;
padding: 0;
@media (max-width: 1196px) { @media (max-width: 1196px) {
flex-direction: column; flex-direction: column;
margin: 0;
} }
` `

View File

@ -7,6 +7,10 @@ export const GlobalStyle = createGlobalStyle`
font-family: 'Poppins'; font-family: 'Poppins';
} }
main {
padding: 2.5rem;
}
a { a {
color: inherit; color: inherit;
text-decoration: none; text-decoration: none;
@ -14,6 +18,7 @@ export const GlobalStyle = createGlobalStyle`
* { * {
box-sizing: border-box; box-sizing: border-box;
/* margin: 0; */
} }
`; `;

View File

@ -16,8 +16,6 @@ export const DashboardView = styled.main`
width: 100%; width: 100%;
padding: 30px;
span { span {
font-family: 'Poppins'; font-family: 'Poppins';
font-style: normal; font-style: normal;

View File

@ -1,6 +1,6 @@
import styled from 'styled-components'; import styled from 'styled-components';
export const LoginView = styled.main` export const LoginView = styled.main<{auth: string}>`
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: flex-end; justify-content: flex-end;
@ -10,7 +10,7 @@ export const LoginView = styled.main`
height: 100vh; height: 100vh;
background-color: #f9f9f9; background-color: #f9f9f9;
display: ${props => props.auth == '/'? null : 'none'};
.container{ .container{
display: flex; display: flex;
@ -25,19 +25,20 @@ export const LoginView = styled.main`
padding-left: 50px; padding-left: 50px;
padding-right: 50px; padding-right: 50px;
margin-left: 8rem; margin-left: 8rem;
} }
@media screen and (max-width: 1008px) { @media screen and (max-width: 1008px) {
justify-content: center; justify-content: center;
.container { .container {
margin: 0; margin: 0;
} }
} }
h1{ h1{
margin-bottom:5px; margin-bottom:5px;
color: #092C4C; color: #092C4C;
} }
h2{ h2{
font-weight: 5; font-weight: 5;
font-size: 21px; font-size: 21px;
@ -65,27 +66,21 @@ export const LoginView = styled.main`
border: 0; border: 0;
margin-top: 2.5rem; margin-top: 2.5rem;
} }
input::placeholder { input::placeholder {
color: #ABB3BB; color: #ABB3BB;
font-size: 12px; font-size: 12px;
} }
span {
span{
font-size: 12px; font-size: 12px;
color: #254F7F; color: #254F7F;
} }
p{
p {
color:#8B8B8B; color:#8B8B8B;
font-size: 12px; font-size: 12px;
margin-bottom: 22px; margin-bottom: 22px;
} }
fieldset { fieldset {
@ -96,35 +91,11 @@ export const LoginView = styled.main`
display: block; display: block;
text-align: center; text-align: center;
width: 100%; width: 100%;
} }
fieldset legend { fieldset legend {
padding: 19px 56px; padding: 19px 56px;
color: #ABB3BB; color: #ABB3BB;
font-size: 14px; font-size: 14px;
} }
/* .app {
display: grid;
place-items: center;
min-height: 100vh;;
}
.password-field{
padding: 0.5rem 1rem;
}
.btnClick{
padding: 1px;
font-size: 1.2rem;
outline: none;
border: none;
} */
`; `;

View File

@ -9,13 +9,13 @@ export const TableView = styled.div`
align-items: flex-start; align-items: flex-start;
width: 100%; width: 100%;
height: 100%; height: 100%;
.tg{ .tg{
border-collapse:collapse; border-collapse:collapse;
border-spacing:0; border-spacing:0;
} }
.tg td{ .tg td{
border-color:black; border-color:black;
border-style:solid; border-style:solid;
border-width:1px; border-width:1px;
@ -25,36 +25,48 @@ export const TableView = styled.div`
padding:10px 5px; padding:10px 5px;
word-break:normal; word-break:normal;
} }
.tg th{border-color:black;border-style:solid;border-width:1px;font-family:Arial, sans-serif;font-size:14px; .tg th{
font-weight:normal;overflow:hidden;padding:10px 5px;word-break:normal;} border-color:black;
border-style:solid;
border-width:1px;
font-family:Arial, sans-serif;
font-size:14px;
font-weight:normal;
overflow:hidden;
padding:10px 5px;
word-break:normal;
}
.tg .tg-baqh{text-align:center;vertical-align:top} .tg .tg-baqh{
.tg .tg-0lax{text-align:left;vertical-align:top} text-align:center;
.tg .tg-womg{background-color:#dddfe1;text-align:center;vertical-align:top} vertical-align:top
}
h1{ .tg .tg-0lax{
text-align:left;
vertical-align:top
}
.tg .tg-womg{
background-color:#dddfe1;
text-align:center;
vertical-align:top
}
h1{
color: #000; color: #000;
font-family: Poppins; font-family: Poppins;
font-size: 15px; font-size: 15px
} }
h2{ h2{
color: #969BA0; color: #969BA0;
font-family: Poppins; font-family: Poppins;
font-size: 11px; font-size: 11px;
font-weight: 400; font-weight: 400;
margin-top: 1px; margin-top: 1px;
} }
h3{ h3{
color: #254F7F; color: #254F7F;
font-family: Poppins; font-family: Poppins;
font-size: 15px; font-size: 15px;

View File

@ -0,0 +1,26 @@
import styled from "styled-components";
export const ConsumptionView = styled.main`
display: flex;
flex-direction: column;
width: 100%;
span {
color: #969BA0;
font-family: 'Poppins';
font-style: normal;
font-weight: 500;
font-size: 16px;
line-height: 24px;
}
section {
margin-bottom: 160px;
canvas {
max-height: 30rem;
}
}
`

406
yarn.lock

File diff suppressed because it is too large Load Diff