mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 21:30:31 +00:00
refactor: Total lines of commercial documents.
This commit is contained in:
@@ -1,12 +0,0 @@
|
||||
.total_lines {}
|
||||
|
||||
|
||||
.total_line {
|
||||
display: flex;
|
||||
border-bottom: 1px solid #d2dde2;
|
||||
|
||||
:global .amount,
|
||||
:global .title{
|
||||
padding: 8px;
|
||||
}
|
||||
}
|
||||
@@ -1,23 +1,93 @@
|
||||
import React from 'react';
|
||||
import clsx from 'classnames';
|
||||
import styled from 'styled-components';
|
||||
|
||||
import TotalLinesCls from './TotalLines.module.scss';
|
||||
export const TotalLineBorderStyle = {
|
||||
SingleDark: 'SingleDark',
|
||||
DoubleDark: 'DoubleDark',
|
||||
};
|
||||
|
||||
export function TotalLines({ children, className }) {
|
||||
export const TotalLineTextStyle = {
|
||||
Regular: 'Regular',
|
||||
Bold: 'Bold',
|
||||
};
|
||||
|
||||
export function TotalLines({
|
||||
children,
|
||||
amountColWidth,
|
||||
labelColWidth,
|
||||
className,
|
||||
}) {
|
||||
return (
|
||||
<div className={clsx('total_lines', TotalLinesCls.total_lines, className)}>
|
||||
<TotalLinesRoot
|
||||
className={className}
|
||||
amountColWidth={amountColWidth}
|
||||
labelColWidth={labelColWidth}
|
||||
>
|
||||
{children}
|
||||
</div>
|
||||
</TotalLinesRoot>
|
||||
);
|
||||
}
|
||||
|
||||
export function TotalLine({ title, value, className }) {
|
||||
export function TotalLine({ title, value, borderStyle, textStyle, className }) {
|
||||
return (
|
||||
<div
|
||||
className={clsx('total_lines_line', TotalLinesCls.total_line, className)}
|
||||
<TotalLineRoot
|
||||
borderStyle={borderStyle}
|
||||
textStyle={textStyle}
|
||||
className={className}
|
||||
>
|
||||
<div class="title">{title}</div>
|
||||
<div class="amount">{value}</div>
|
||||
</div>
|
||||
</TotalLineRoot>
|
||||
);
|
||||
}
|
||||
|
||||
export const TotalLinesRoot = styled.div`
|
||||
display: table;
|
||||
|
||||
${(props) =>
|
||||
props.amountColWidth &&
|
||||
`
|
||||
.amount{
|
||||
width: ${props.amountColWidth}
|
||||
}
|
||||
`}
|
||||
|
||||
${(props) =>
|
||||
props.labelColWidth &&
|
||||
`
|
||||
.title{
|
||||
width: ${props.labelColWidth}
|
||||
}
|
||||
`}
|
||||
`;
|
||||
|
||||
export const TotalLineRoot = styled.div`
|
||||
display: table-row;
|
||||
|
||||
.amount,
|
||||
.title {
|
||||
display: table-cell;
|
||||
padding: 8px;
|
||||
border-bottom: 1px solid #d2dde2;
|
||||
|
||||
${(props) =>
|
||||
props.borderStyle === TotalLineBorderStyle.DoubleDark &&
|
||||
`
|
||||
border-bottom: 3px double #000;
|
||||
`}
|
||||
${(props) =>
|
||||
props.borderStyle === TotalLineBorderStyle.SingleDark &&
|
||||
`
|
||||
border-bottom: 1px double #000;
|
||||
`}
|
||||
${(props) =>
|
||||
props.textStyle === TotalLineTextStyle.Bold &&
|
||||
`
|
||||
font-weight: 600;
|
||||
`}
|
||||
}
|
||||
|
||||
.amount {
|
||||
text-align: right;
|
||||
}
|
||||
`;
|
||||
|
||||
Reference in New Issue
Block a user