Skip to content

Commit f027c18

Browse files
authored
Merge pull request #1649 from ShubhamParkhi/dev
fix(web): open menu settings onClick of acc. info & overlay fix
2 parents a1dff3b + a2c52de commit f027c18

File tree

6 files changed

+59
-56
lines changed

6 files changed

+59
-56
lines changed

web/src/components/Overlay.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ export const Overlay = styled.div`
77
width: 100vw;
88
height: 100vh;
99
background-color: ${({ theme }) => theme.blackLowOpacity};
10-
z-index: 1;
10+
z-index: 30;
1111
`;

web/src/components/Popup/MiniGuides/MainStructureTemplate.tsx

+2-3
Original file line numberDiff line numberDiff line change
@@ -159,8 +159,7 @@ const Template: React.FC<ITemplate> = ({
159159
});
160160

161161
return (
162-
<>
163-
<Overlay />
162+
<Overlay>
164163
<Container ref={containerRef} isVisible={isVisible}>
165164
<LeftContainer>
166165
<LeftContainerHeader>
@@ -187,7 +186,7 @@ const Template: React.FC<ITemplate> = ({
187186
</LeftContainer>
188187
<RightContainer>{RightContent}</RightContainer>
189188
</Container>
190-
</>
189+
</Overlay>
191190
);
192191
};
193192

web/src/components/Popup/index.tsx

+2-3
Original file line numberDiff line numberDiff line change
@@ -237,8 +237,7 @@ const Popup: React.FC<PopupProps & IPopup> = ({
237237
}
238238

239239
return (
240-
<>
241-
<Overlay />
240+
<Overlay>
242241
<Container ref={containerRef}>
243242
{popupType === PopupType.SWAP_SUCCESS && (
244243
<SVGContainer>
@@ -270,7 +269,7 @@ const Popup: React.FC<PopupProps & IPopup> = ({
270269
/>
271270
)}
272271
</Container>
273-
</>
272+
</Overlay>
274273
);
275274
};
276275
export default Popup;

web/src/layout/Header/DesktopHeader.tsx

+15-5
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ import { responsiveSize } from "styles/responsiveSize";
1313

1414
import ConnectWallet from "components/ConnectWallet";
1515
import LightButton from "components/LightButton";
16-
import { Overlay } from "components/Overlay";
1716
import Onboarding from "components/Popup/MiniGuides/Onboarding";
1817

1918
import Logo from "./Logo";
@@ -22,6 +21,7 @@ import Explore from "./navbar/Explore";
2221
import Menu from "./navbar/Menu";
2322
import Help from "./navbar/Menu/Help";
2423
import Settings from "./navbar/Menu/Settings";
24+
import { useAccount } from "wagmi";
2525

2626
const Container = styled.div`
2727
display: none;
@@ -73,10 +73,19 @@ const StyledKlerosSolutionsIcon = styled(KlerosSolutionsIcon)`
7373
fill: ${({ theme }) => theme.white} !important;
7474
`;
7575

76-
const ConnectWalletContainer = styled.div`
76+
const ConnectWalletContainer = styled.div<{ isConnected: boolean }>`
7777
label {
7878
color: ${({ theme }) => theme.white};
7979
}
80+
81+
${({ isConnected }) =>
82+
isConnected &&
83+
css`
84+
cursor: pointer;
85+
& > * {
86+
pointer-events: none;
87+
}
88+
`}
8089
`;
8190

8291
const PopupContainer = styled.div`
@@ -85,7 +94,8 @@ const PopupContainer = styled.div`
8594
left: 0;
8695
width: 100%;
8796
height: 100%;
88-
z-index: 30;
97+
z-index: 1;
98+
background-color: ${({ theme }) => theme.blackLowOpacity};
8999
`;
90100

91101
const DesktopHeader: React.FC = () => {
@@ -95,6 +105,7 @@ const DesktopHeader: React.FC = () => {
95105
const [isOnboardingMiniGuidesOpen, toggleIsOnboardingMiniGuidesOpen] = useToggle(false);
96106
const [initialTab, setInitialTab] = useState<number>(0);
97107
const location = useLocation();
108+
const { isConnected } = useAccount();
98109

99110
const initializeFragmentURL = useCallback(() => {
100111
const hash = location.hash;
@@ -130,15 +141,14 @@ const DesktopHeader: React.FC = () => {
130141
</MiddleSide>
131142

132143
<RightSide>
133-
<ConnectWalletContainer>
144+
<ConnectWalletContainer isConnected={isConnected} onClick={isConnected ? toggleIsSettingsOpen : undefined}>
134145
<ConnectWallet />
135146
</ConnectWalletContainer>
136147
<Menu {...{ toggleIsHelpOpen, toggleIsSettingsOpen }} />
137148
</RightSide>
138149
</Container>
139150
{(isDappListOpen || isHelpOpen || isSettingsOpen) && (
140151
<PopupContainer>
141-
<Overlay />
142152
{isDappListOpen && <DappList {...{ toggleIsDappListOpen, isDappListOpen }} />}
143153
{isHelpOpen && <Help {...{ toggleIsHelpOpen, isHelpOpen }} />}
144154
{isSettingsOpen && <Settings {...{ toggleIsSettingsOpen, isSettingsOpen, initialTab }} />}

web/src/layout/Header/navbar/Menu/Settings/index.tsx

+11-17
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@ import { Tabs } from "@kleros/ui-components-library";
99
import { landscapeStyle } from "styles/landscapeStyle";
1010
import { responsiveSize } from "styles/responsiveSize";
1111

12-
import { Overlay } from "components/Overlay";
13-
1412
import { ISettings } from "../../index";
1513

1614
import General from "./General";
@@ -27,7 +25,6 @@ const Container = styled.div`
2725
left: 50%;
2826
transform: translateX(-50%);
2927
z-index: 1;
30-
background-color: ${({ theme }) => theme.whiteBackground};
3128
border: 1px solid ${({ theme }) => theme.stroke};
3229
border-radius: 3px;
3330
overflow-y: auto;
@@ -85,20 +82,17 @@ const Settings: React.FC<ISettings> = ({ toggleIsSettingsOpen, initialTab }) =>
8582
});
8683

8784
return (
88-
<>
89-
<Overlay />
90-
<Container ref={containerRef}>
91-
<StyledSettingsText>Settings</StyledSettingsText>
92-
<StyledTabs
93-
currentValue={currentTab}
94-
items={TABS}
95-
callback={(n: number) => {
96-
setCurrentTab(n);
97-
}}
98-
/>
99-
{currentTab === 0 ? <General /> : <NotificationSettings toggleIsSettingsOpen={toggleIsSettingsOpen} />}
100-
</Container>
101-
</>
85+
<Container ref={containerRef}>
86+
<StyledSettingsText>Settings</StyledSettingsText>
87+
<StyledTabs
88+
currentValue={currentTab}
89+
items={TABS}
90+
callback={(n: number) => {
91+
setCurrentTab(n);
92+
}}
93+
/>
94+
{currentTab === 0 ? <General /> : <NotificationSettings toggleIsSettingsOpen={toggleIsSettingsOpen} />}
95+
</Container>
10296
);
10397
};
10498

web/src/layout/Header/navbar/index.tsx

+28-27
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ const Wrapper = styled.div<{ isOpen: boolean }>`
2828
left: 0;
2929
width: 100vw;
3030
height: 100vh;
31-
z-index: 30;
31+
z-index: 1;
3232
`;
3333

3434
const StyledOverlay = styled(Overlay)`
@@ -77,7 +77,8 @@ const PopupContainer = styled.div`
7777
left: 0;
7878
width: 100%;
7979
height: 100%;
80-
z-index: 30;
80+
z-index: 1;
81+
background-color: ${({ theme }) => theme.blackLowOpacity};
8182
`;
8283

8384
export interface ISettings {
@@ -104,34 +105,34 @@ const NavBar: React.FC = () => {
104105
return (
105106
<>
106107
<Wrapper {...{ isOpen }}>
107-
<StyledOverlay />
108-
<Container {...{ isOpen }}>
109-
<LightButton
110-
text="Kleros Solutions"
111-
onClick={() => {
112-
toggleIsDappListOpen();
113-
}}
114-
Icon={KlerosSolutionsIcon}
115-
/>
116-
<hr />
117-
<Explore />
118-
<hr />
119-
<WalletContainer>
120-
<ConnectWallet />
121-
{isConnected && (
122-
<DisconnectWalletButtonContainer>
123-
<DisconnectWalletButton />
124-
</DisconnectWalletButtonContainer>
125-
)}
126-
</WalletContainer>
127-
<hr />
128-
<Menu {...{ toggleIsHelpOpen, toggleIsSettingsOpen }} />
129-
<br />
130-
</Container>
108+
<StyledOverlay>
109+
<Container {...{ isOpen }}>
110+
<LightButton
111+
text="Kleros Solutions"
112+
onClick={() => {
113+
toggleIsDappListOpen();
114+
}}
115+
Icon={KlerosSolutionsIcon}
116+
/>
117+
<hr />
118+
<Explore />
119+
<hr />
120+
<WalletContainer>
121+
<ConnectWallet />
122+
{isConnected && (
123+
<DisconnectWalletButtonContainer>
124+
<DisconnectWalletButton />
125+
</DisconnectWalletButtonContainer>
126+
)}
127+
</WalletContainer>
128+
<hr />
129+
<Menu {...{ toggleIsHelpOpen, toggleIsSettingsOpen }} />
130+
<br />
131+
</Container>
132+
</StyledOverlay>
131133
</Wrapper>
132134
{(isDappListOpen || isHelpOpen || isSettingsOpen) && (
133135
<PopupContainer>
134-
<Overlay />
135136
{isDappListOpen && <DappList {...{ toggleIsDappListOpen }} />}
136137
{isHelpOpen && <Help {...{ toggleIsHelpOpen }} />}
137138
{isSettingsOpen && <Settings {...{ toggleIsSettingsOpen }} />}

0 commit comments

Comments
 (0)