Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Chore/model result veiw #125

Merged
merged 4 commits into from
Oct 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
Original file line number Diff line number Diff line change
@@ -1,9 +1,77 @@
import styled from 'styled-components';
import { spacings } from '../../../../tokens/spacings';
import { theme } from '../../../../tokens/theme';

export const CaseResultView = styled.div`
display: flex;
flex-direction: column;

column-gap: ${spacings.LARGE};
row-gap: ${spacings.MEDIUM};
padding-left: ${spacings.LARGE};
padding-bottom: ${spacings.LARGE};

> h2 {
margin-bottom: ${spacings.SMALL};
}
> h3 {
margin: ${spacings.SMALL};
}
`;

export const CaseResultList = styled.div`
display: flex;
flex-direction: column;

row-gap: ${spacings.LARGE};
`;

export const CaseResultCard = styled.div`
display: flex;
flex-direction: row;
row-gap: ${spacings.LARGE};

width: 60vw;
padding: ${spacings.X_LARGE};

border-radius: ${spacings.CARD_ROUNDED};
box-shadow: ${theme.light.ui.elevation.raised};

> div {
width: 50%;
}
`;
export const CaseResultStatus = styled.div`
display: flex;
flex-direction: column;

padding: ${spacings.SMALL};
row-gap: ${spacings.SMALL};
`;

export const CaseLeftDiv = styled.div`
display: flex;
flex-direction: column;
row-gap: ${spacings.LARGE};

> table {
width: 80%;
}
`;

export const CaseStatusDisplay = styled.div`
display: flex;
flex-direction: row;
align-items: center;
column-gap: ${spacings.LARGE};
`;

export const CaseStatusButtons = styled.div`
display: flex;
flex-direction: row;
column-gap: ${spacings.SMALL};
padding-top: ${spacings.SMALL};

> button {
width: ${spacings.COMPUTE_BUTTON};
}
`;
169 changes: 161 additions & 8 deletions src/features/Results/CaseResult/CaseResultView/CaseResultView.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
/* eslint-disable max-lines-per-function */
import { Button, Chip, Table, Typography } from '@equinor/eds-core-react';
import { useState } from 'react';
import { ImageView } from '../../../../components/ImageView/ImageView';
import { ResultType } from '../../../../pages/ModelPages/Results/Results';
import * as Styled from './CaseResultView.styled';

import Img from './vargrest_output-0-_variogram_slices_.png';
import Img1 from './vargrest_output-1-_variogram_slices_.png';
export const CaseResultView = () => {
const caseResult: ResultType = {
id: '1',
Expand All @@ -13,12 +18,160 @@ export const CaseResultView = () => {
// ]

return (
<>
<Styled.CaseResultView>
<h2>Case Result</h2>
<h3>{caseResult.case}</h3>
{caseResult.finished ? <h4>Finished</h4> : <h4>Not computed yet!</h4>}
</Styled.CaseResultView>
</>
<Styled.CaseResultView>
<h2>Case Results</h2>
<h3>{caseResult.case}</h3>
<Styled.CaseResultList>
<ResultMetadata caseNumner={0} img={Img}></ResultMetadata>
<ResultMetadata caseNumner={1} img={Img1}></ResultMetadata>
<ResultMetadata caseNumner={2} img={Img1}></ResultMetadata>
</Styled.CaseResultList>
</Styled.CaseResultView>
);
};

export interface ResultMetadataType {
identifier: number;
family: string;
indicator: string | null;
attribute: string;
quality: GLfloat;
sigma: GLfloat;
approved: string;
}

const ResultMetadata = ({
caseNumner,
img,
}: {
caseNumner: number;
img: string;
}) => {
const [data, setData] = useState<ResultMetadataType[]>([
{
identifier: 0,
family: 'exponential',
indicator: null,
attribute: 'Porosity',
quality: 0.6427819811789964,
sigma: 0.06967589201242001,
approved: 'rejected',
},
{
identifier: 1,
family: 'gaussian',
indicator: null,
attribute: 'Porosity',
quality: 0.5432924009373808,
sigma: 0.0670758033212357,
approved: 'pending',
},
{
identifier: 2,
family: 'general_exponential',
indicator: null,
attribute: 'Porosity',
quality: 0.5580294305723851,
sigma: 0.0678988627745677,
approved: 'approved',
},
]);

const onApproveClick = () => {
const dataList = [...data];
const dataObj = { ...dataList[caseNumner] };
dataObj.approved = 'approved';
dataList[caseNumner] = dataObj;

setData(dataList);
};
const onRejectClick = () => {
const dataList = [...data];
const dataObj = { ...dataList[caseNumner] };
dataObj.approved = 'rejected';
dataList[caseNumner] = dataObj;

setData(dataList);
};

const onResetClick = () => {
const dataList = [...data];
const dataObj = { ...dataList[caseNumner] };
dataObj.approved = 'pending';
dataList[caseNumner] = dataObj;

setData(dataList);
};
return (
<Styled.CaseResultCard>
<Styled.CaseLeftDiv>
<Table>
<Table.Body>
<Table.Row key={data[caseNumner].identifier} className="table-row">
<Table.Cell className="table-first-col">Family</Table.Cell>
<Table.Cell>{data[caseNumner].family}</Table.Cell>
</Table.Row>
<Table.Row key={data[caseNumner].identifier} className="table-row">
<Table.Cell className="table-first-col">
Quality factor
</Table.Cell>
<Table.Cell>{data[caseNumner].quality}</Table.Cell>
</Table.Row>

<Table.Row key={data[caseNumner].identifier} className="table-row">
<Table.Cell className="table-first-col">Attribute</Table.Cell>
<Table.Cell>{data[caseNumner].attribute}</Table.Cell>
</Table.Row>
<Table.Row key={data[caseNumner].identifier} className="table-row">
<Table.Cell className="table-first-col">Sigma</Table.Cell>
<Table.Cell>{data[caseNumner].sigma}</Table.Cell>
</Table.Row>
</Table.Body>
</Table>
<Styled.CaseResultStatus>
<Styled.CaseStatusDisplay>
<Typography variant="h4">Status: </Typography>
{data[caseNumner].approved === 'approved' && (
<Chip variant="active">Approved</Chip>
)}
{data[caseNumner].approved === 'pending' && <Chip>Pending</Chip>}
{data[caseNumner].approved === 'rejected' && (
<Chip variant="error">Not aproved</Chip>
)}
</Styled.CaseStatusDisplay>

<Styled.CaseStatusButtons>
<Button
disabled={
data[caseNumner].approved === 'approved' ||
data[caseNumner].approved === 'rejected'
}
onClick={onApproveClick}
>
Approve
</Button>
<Button
color="danger"
disabled={
data[caseNumner].approved === 'rejected' ||
data[caseNumner].approved === 'approved'
}
onClick={onRejectClick}
>
Reject
</Button>
<Button
variant="outlined"
disabled={data[caseNumner].approved === 'pending'}
onClick={onResetClick}
>
Reset
</Button>
</Styled.CaseStatusButtons>
</Styled.CaseResultStatus>
</Styled.CaseLeftDiv>

<ImageView text="run" img={img} altText="run"></ImageView>
</Styled.CaseResultCard>
);
};
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.