mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-21 07:10:33 +00:00
Merge pull request #926 from bigcapitalhq/20260202-185120-9c84
fix(webapp): constrant not found row color
This commit is contained in:
@@ -4,7 +4,12 @@ import styled from 'styled-components';
|
|||||||
import { DataTable } from '../Datatable';
|
import { DataTable } from '../Datatable';
|
||||||
|
|
||||||
export const ReportDataTable = styled(DataTable)`
|
export const ReportDataTable = styled(DataTable)`
|
||||||
|
--x-table-no-results-border-color: #ddd;
|
||||||
|
|
||||||
|
.bp4-dark & {
|
||||||
|
--x-table-no-results-border-color: var(--color-dark-gray5);
|
||||||
|
}
|
||||||
.table .tbody .tr.no-results:last-of-type .td {
|
.table .tbody .tr.no-results:last-of-type .td {
|
||||||
border-bottom: 1px solid #ddd;
|
border-bottom: 1px solid var(--x-table-no-results-border-color);
|
||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
|
|||||||
@@ -1,8 +1,20 @@
|
|||||||
// @ts-nocheck
|
// @ts-nocheck
|
||||||
|
import React from 'react';
|
||||||
import { getColumnWidth } from '@/utils';
|
import { getColumnWidth } from '@/utils';
|
||||||
import * as R from 'ramda';
|
import * as R from 'ramda';
|
||||||
import { useGeneralLedgerContext } from './GeneralLedgerProvider';
|
import { useGeneralLedgerContext } from './GeneralLedgerProvider';
|
||||||
import { Align } from '@/constants';
|
import { Align, CLASSES } from '@/constants';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Description cell – wraps value in a div with muted text class.
|
||||||
|
*/
|
||||||
|
function DescriptionCell({ cell: { value } }) {
|
||||||
|
return React.createElement(
|
||||||
|
'div',
|
||||||
|
{ className: `cell ${CLASSES.TEXT_MUTED}` },
|
||||||
|
value,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
const getTableCellValueAccessor = (index) => `cells[${index}].value`;
|
const getTableCellValueAccessor = (index) => `cells[${index}].value`;
|
||||||
|
|
||||||
@@ -75,6 +87,16 @@ const transactionIdColumnAccessor = (column) => {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Description column accessor (muted text in wrapped cell).
|
||||||
|
*/
|
||||||
|
const descriptionColumnAccessor = (column) => {
|
||||||
|
return {
|
||||||
|
...column,
|
||||||
|
Cell: DescriptionCell,
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
const dynamiColumnMapper = R.curry((data, column) => {
|
const dynamiColumnMapper = R.curry((data, column) => {
|
||||||
const _numericColumnAccessor = numericColumnAccessor(data);
|
const _numericColumnAccessor = numericColumnAccessor(data);
|
||||||
|
|
||||||
@@ -88,6 +110,7 @@ const dynamiColumnMapper = R.curry((data, column) => {
|
|||||||
R.pathEq(['key'], 'reference_number'),
|
R.pathEq(['key'], 'reference_number'),
|
||||||
transactionIdColumnAccessor,
|
transactionIdColumnAccessor,
|
||||||
),
|
),
|
||||||
|
R.when(R.pathEq(['key'], 'description'), descriptionColumnAccessor),
|
||||||
R.when(R.pathEq(['key'], 'credit'), _numericColumnAccessor),
|
R.when(R.pathEq(['key'], 'credit'), _numericColumnAccessor),
|
||||||
R.when(R.pathEq(['key'], 'debit'), _numericColumnAccessor),
|
R.when(R.pathEq(['key'], 'debit'), _numericColumnAccessor),
|
||||||
R.when(R.pathEq(['key'], 'amount'), _numericColumnAccessor),
|
R.when(R.pathEq(['key'], 'amount'), _numericColumnAccessor),
|
||||||
|
|||||||
@@ -1,9 +1,21 @@
|
|||||||
// @ts-nocheck
|
// @ts-nocheck
|
||||||
import { Align } from '@/constants';
|
import React from 'react';
|
||||||
|
import { Align, CLASSES } from '@/constants';
|
||||||
import { getColumnWidth } from '@/utils';
|
import { getColumnWidth } from '@/utils';
|
||||||
import * as R from 'ramda';
|
import * as R from 'ramda';
|
||||||
import { useJournalSheetContext } from './JournalProvider';
|
import { useJournalSheetContext } from './JournalProvider';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Description cell – wraps value in a div with muted text class.
|
||||||
|
*/
|
||||||
|
function DescriptionCell({ cell: { value } }) {
|
||||||
|
return React.createElement(
|
||||||
|
'span',
|
||||||
|
{ className: `cell ${CLASSES.TEXT_MUTED}` },
|
||||||
|
value,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
const getTableCellValueAccessor = (index) => `cells[${index}].value`;
|
const getTableCellValueAccessor = (index) => `cells[${index}].value`;
|
||||||
|
|
||||||
const getReportColWidth = (data, accessor, headerText) => {
|
const getReportColWidth = (data, accessor, headerText) => {
|
||||||
@@ -86,6 +98,16 @@ const accountCodeColumnAccessor = (column) => {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Description column accessor (muted text in wrapped cell).
|
||||||
|
*/
|
||||||
|
const descriptionColumnAccessor = (column) => {
|
||||||
|
return {
|
||||||
|
...column,
|
||||||
|
Cell: DescriptionCell,
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Dynamic column mapper.
|
* Dynamic column mapper.
|
||||||
* @param {} data -
|
* @param {} data -
|
||||||
@@ -105,6 +127,7 @@ const dynamicColumnMapper = R.curry((data, column) => {
|
|||||||
R.pathEq(['key'], 'transaction_number'),
|
R.pathEq(['key'], 'transaction_number'),
|
||||||
transactionNumberColumnAccessor,
|
transactionNumberColumnAccessor,
|
||||||
),
|
),
|
||||||
|
R.when(R.pathEq(['key'], 'description'), descriptionColumnAccessor),
|
||||||
R.when(R.pathEq(['key'], 'account_code'), accountCodeColumnAccessor),
|
R.when(R.pathEq(['key'], 'account_code'), accountCodeColumnAccessor),
|
||||||
R.when(R.pathEq(['key'], 'credit'), _numericColumnAccessor),
|
R.when(R.pathEq(['key'], 'credit'), _numericColumnAccessor),
|
||||||
R.when(R.pathEq(['key'], 'debit'), _numericColumnAccessor),
|
R.when(R.pathEq(['key'], 'debit'), _numericColumnAccessor),
|
||||||
|
|||||||
@@ -196,7 +196,6 @@ $ns: bp4;
|
|||||||
--color-preferences-sidebar-head-border: #bbcbd0;
|
--color-preferences-sidebar-head-border: #bbcbd0;
|
||||||
--color-preferences-sidebar-head-text: #3b3b4c;
|
--color-preferences-sidebar-head-text: #3b3b4c;
|
||||||
|
|
||||||
|
|
||||||
// Preferences - Topbar.
|
// Preferences - Topbar.
|
||||||
--color-preferences-topbar-background: #fff;
|
--color-preferences-topbar-background: #fff;
|
||||||
--color-preferences-topbar-border: #d2dde2;
|
--color-preferences-topbar-border: #d2dde2;
|
||||||
@@ -209,7 +208,7 @@ $ns: bp4;
|
|||||||
--color-financial-sheet-title-text: rgb(31, 50, 85);
|
--color-financial-sheet-title-text: rgb(31, 50, 85);
|
||||||
--color-financial-sheet-type-text: rgb(31, 50, 85);
|
--color-financial-sheet-type-text: rgb(31, 50, 85);
|
||||||
--color-financial-sheet-date-text: rgb(31, 50, 85);
|
--color-financial-sheet-date-text: rgb(31, 50, 85);
|
||||||
--color-financial-sheet-footer-text: rgb(31, 50, 85);
|
--color-financial-sheet-footer-text: var(--color-muted-text);
|
||||||
--color-financial-sheet-minimal-title-text: #333;
|
--color-financial-sheet-minimal-title-text: #333;
|
||||||
|
|
||||||
// Transaction locking.
|
// Transaction locking.
|
||||||
@@ -514,7 +513,7 @@ body.bp4-dark {
|
|||||||
--color-financial-sheet-title-text: var(--color-light-gray1);
|
--color-financial-sheet-title-text: var(--color-light-gray1);
|
||||||
--color-financial-sheet-type-text: var(--color-light-gray1);
|
--color-financial-sheet-type-text: var(--color-light-gray1);
|
||||||
--color-financial-sheet-date-text: var(--color-light-gray1);
|
--color-financial-sheet-date-text: var(--color-light-gray1);
|
||||||
--color-financial-sheet-footer-text: var(--color-light-gray1);
|
--color-financial-sheet-footer-text: var(--color-muted-text);
|
||||||
--color-financial-sheet-minimal-title-text: var(--color-white);
|
--color-financial-sheet-minimal-title-text: var(--color-white);
|
||||||
|
|
||||||
// Transaction locking.
|
// Transaction locking.
|
||||||
|
|||||||
@@ -375,3 +375,18 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Sticky header: blurred transparent background so body rows don't show through
|
||||||
|
.bigcapital-datatable.has-sticky,
|
||||||
|
.bigcapital-datatable.has-sticky-header {
|
||||||
|
&.table-constrant .table .thead .th,
|
||||||
|
&.table--constrant .table .thead .th {
|
||||||
|
background: rgba(255, 255, 255, 0.25);
|
||||||
|
backdrop-filter: blur(10px);
|
||||||
|
-webkit-backdrop-filter: blur(10px);
|
||||||
|
|
||||||
|
body.bp4-dark & {
|
||||||
|
background: rgba(28, 33, 39, 0.6);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user