mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-20 14:50:32 +00:00
fix: BIG-165 cashflow account context menu z-index issue.
This commit is contained in:
@@ -3,12 +3,11 @@ import { isNull, isEmpty } from 'lodash';
|
|||||||
import { compose, curry } from 'lodash/fp';
|
import { compose, curry } from 'lodash/fp';
|
||||||
import styled from 'styled-components';
|
import styled from 'styled-components';
|
||||||
import { Link } from 'react-router-dom';
|
import { Link } from 'react-router-dom';
|
||||||
|
import { ContextMenu2 } from '@blueprintjs/popover2';
|
||||||
import { Menu, MenuItem, MenuDivider, Intent } from '@blueprintjs/core';
|
import { Menu, MenuItem, MenuDivider, Intent } from '@blueprintjs/core';
|
||||||
import intl from 'react-intl-universal';
|
import intl from 'react-intl-universal';
|
||||||
import useContextMenu from 'react-use-context-menu';
|
|
||||||
|
|
||||||
import {
|
import {
|
||||||
ContextMenu,
|
|
||||||
BankAccountsList,
|
BankAccountsList,
|
||||||
BankAccount,
|
BankAccount,
|
||||||
If,
|
If,
|
||||||
@@ -58,20 +57,20 @@ function CashflowBankAccount({
|
|||||||
|
|
||||||
account,
|
account,
|
||||||
}) {
|
}) {
|
||||||
const [
|
// const [
|
||||||
bindMenu,
|
// bindMenu,
|
||||||
bindMenuItem,
|
// bindMenuItem,
|
||||||
useContextTrigger,
|
// useContextTrigger,
|
||||||
{ coords, setVisible, isVisible },
|
// { coords, setVisible, isVisible },
|
||||||
] = useContextMenu();
|
// ] = useContextMenu();
|
||||||
|
|
||||||
const [bindTrigger] = useContextTrigger({
|
// const [bindTrigger] = useContextTrigger({
|
||||||
collect: () => 'Title',
|
// collect: () => 'Title',
|
||||||
});
|
// });
|
||||||
|
|
||||||
const handleClose = React.useCallback(() => {
|
// const handleClose = React.useCallback(() => {
|
||||||
setVisible(false);
|
// setVisible(false);
|
||||||
}, [setVisible]);
|
// }, [setVisible]);
|
||||||
|
|
||||||
// Handle view detail account.
|
// Handle view detail account.
|
||||||
const handleViewClick = () => {
|
const handleViewClick = () => {
|
||||||
@@ -109,26 +108,8 @@ function CashflowBankAccount({
|
|||||||
};
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<CashflowBankAccountWrap>
|
<ContextMenu2
|
||||||
<CashflowAccountAnchor
|
content={
|
||||||
to={`/cashflow-accounts/${account.id}/transactions`}
|
|
||||||
>
|
|
||||||
<BankAccount
|
|
||||||
{...bindTrigger}
|
|
||||||
title={account.name}
|
|
||||||
code={account.code}
|
|
||||||
balance={!isNull(account.amount) ? account.formatted_amount : '-'}
|
|
||||||
type={account.account_type}
|
|
||||||
updatedBeforeText={getUpdatedBeforeText(account.createdAt)}
|
|
||||||
/>
|
|
||||||
</CashflowAccountAnchor>
|
|
||||||
|
|
||||||
<ContextMenu
|
|
||||||
bindMenu={bindMenu}
|
|
||||||
isOpen={isVisible}
|
|
||||||
coords={coords}
|
|
||||||
onClosed={handleClose}
|
|
||||||
>
|
|
||||||
<CashflowAccountContextMenu
|
<CashflowAccountContextMenu
|
||||||
account={account}
|
account={account}
|
||||||
onViewClick={handleViewClick}
|
onViewClick={handleViewClick}
|
||||||
@@ -139,8 +120,21 @@ function CashflowBankAccount({
|
|||||||
onMoneyInClick={handleMoneyInClick}
|
onMoneyInClick={handleMoneyInClick}
|
||||||
onMoneyOutClick={handleMoneyOutClick}
|
onMoneyOutClick={handleMoneyOutClick}
|
||||||
/>
|
/>
|
||||||
</ContextMenu>
|
}
|
||||||
</CashflowBankAccountWrap>
|
>
|
||||||
|
<CashflowAccountAnchor
|
||||||
|
to={`/cashflow-accounts/${account.id}/transactions`}
|
||||||
|
>
|
||||||
|
<BankAccount
|
||||||
|
// {...bindTrigger}
|
||||||
|
title={account.name}
|
||||||
|
code={account.code}
|
||||||
|
balance={!isNull(account.amount) ? account.formatted_amount : '-'}
|
||||||
|
type={account.account_type}
|
||||||
|
updatedBeforeText={getUpdatedBeforeText(account.createdAt)}
|
||||||
|
/>
|
||||||
|
</CashflowAccountAnchor>
|
||||||
|
</ContextMenu2>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
// Blueprint framework.
|
// Blueprint framework.
|
||||||
@import '@blueprintjs/core/src/blueprint.scss';
|
@import '@blueprintjs/core/src/blueprint.scss';
|
||||||
@import '@blueprintjs/datetime/src/blueprint-datetime.scss';
|
@import '@blueprintjs/datetime/src/blueprint-datetime.scss';
|
||||||
@import "@blueprintjs/popover2";
|
@import "@blueprintjs/popover2/src/blueprint-popover2.scss";
|
||||||
|
|
||||||
@import 'basscss';
|
@import 'basscss';
|
||||||
|
|
||||||
@@ -189,7 +189,7 @@ body.hide-scrollbar .Pane2 {
|
|||||||
box-shadow: 0 0 0;
|
box-shadow: 0 0 0;
|
||||||
background-color: #fbfbfb;
|
background-color: #fbfbfb;
|
||||||
|
|
||||||
.dashboard__loading-indicator{
|
.dashboard__loading-indicator {
|
||||||
margin: auto;
|
margin: auto;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -208,7 +208,9 @@ html[lang^="ar"] {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.bp3-popover2 {
|
.bp3-popover2 {
|
||||||
box-shadow: 0 0 0;
|
box-shadow: 0 0 0 1px rgba(16, 22, 26, 0.02),
|
||||||
|
0 2px 4px rgba(16, 22, 26, 0.1),
|
||||||
|
0 8px 24px rgba(16, 22, 26, 0.1);
|
||||||
}
|
}
|
||||||
|
|
||||||
.bp3-tooltip2 .bp3-popover2-arrow:before {
|
.bp3-tooltip2 .bp3-popover2-arrow:before {
|
||||||
@@ -224,21 +226,21 @@ html[lang^="ar"] {
|
|||||||
padding-bottom: 0;
|
padding-bottom: 0;
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|
||||||
.dialog__header-actions{
|
.dialog__header-actions {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
right: 50px;
|
right: 50px;
|
||||||
top: 0;
|
top: 0;
|
||||||
z-index: 9999999;
|
z-index: 9999999;
|
||||||
margin: 6px;
|
margin: 6px;
|
||||||
|
|
||||||
.bp3-button{
|
.bp3-button {
|
||||||
border-color: rgba(0, 0, 0, 0.25);
|
border-color: rgba(0, 0, 0, 0.25);
|
||||||
color: rgb(25, 32, 37);
|
color: rgb(25, 32, 37);
|
||||||
min-height: 30px;
|
min-height: 30px;
|
||||||
padding-left: 14px;
|
padding-left: 14px;
|
||||||
padding-right: 14px;
|
padding-right: 14px;
|
||||||
|
|
||||||
& + .bp3-button{
|
&+.bp3-button {
|
||||||
margin-left: 8px;
|
margin-left: 8px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -247,24 +249,25 @@ html[lang^="ar"] {
|
|||||||
.bp3-dialog {
|
.bp3-dialog {
|
||||||
|
|
||||||
&-body {
|
&-body {
|
||||||
|
|
||||||
&:not(.loading){
|
&:not(.loading) {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
> .bp3-spinner {
|
|
||||||
|
>.bp3-spinner {
|
||||||
margin: 20px 0;
|
margin: 20px 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.bp3-drawer{
|
.bp3-drawer {
|
||||||
border-left: 1px solid #00115e;
|
border-left: 1px solid #00115e;
|
||||||
}
|
}
|
||||||
|
|
||||||
.drawer-portal{
|
.drawer-portal {
|
||||||
|
|
||||||
.bp3-overlay-backdrop{
|
.bp3-overlay-backdrop {
|
||||||
background: rgba(0, 10, 30, 0.05);
|
background: rgba(0, 10, 30, 0.05);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -279,10 +282,10 @@ html[lang^="ar"] {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
.align-right{
|
.align-right {
|
||||||
text-align: right;
|
text-align: right;
|
||||||
}
|
}
|
||||||
|
|
||||||
.font-bold{
|
.font-bold {
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
}
|
}
|
||||||
@@ -5,5 +5,5 @@ export const whenRtl = (restCss) => css`
|
|||||||
`;
|
`;
|
||||||
|
|
||||||
export const whenLtr = (restCss) => css`
|
export const whenLtr = (restCss) => css`
|
||||||
${({ theme }) => !theme.dir === 'ltr' && restCss}
|
${({ theme }) => theme.dir === 'ltr' && restCss}
|
||||||
`;
|
`;
|
||||||
|
|||||||
Reference in New Issue
Block a user