chore: updates

This commit is contained in:
zerosoul
2022-02-21 22:29:52 +08:00
parent 656df7c670
commit d712d6b042
9 changed files with 128 additions and 41 deletions
+8 -1
View File
@@ -34,7 +34,14 @@ const NavItem = ({ data, setFiles }) => {
<ChannelIcon personal={!is_public} />
{name}
</span>
{unreads > 0 && <i className="badge">{unreads}</i>}
<div className="icons">
<i className="setting"></i>
{unreads > 0 && (
<i className={`badge ${unreads > 99 ? "dot" : ""}`}>
{unreads > 99 ? null : unreads}
</i>
)}
</div>
</NavLink>
);
};
+1 -1
View File
@@ -87,7 +87,7 @@ export default function Layout({
}),
}));
return (
<StyledWrapper className="animate__animated animate__fadeIn" ref={drop}>
<StyledWrapper ref={drop}>
<header className="head">{header}</header>
<main className="main">
{children}
+30 -14
View File
@@ -58,23 +58,39 @@ const StyledWrapper = styled.div`
font-size: 14px;
line-height: 20px;
}
> .badge {
color: #fff;
> .icons {
display: flex;
align-items: center;
justify-content: center;
height: 20px;
min-width: 20px;
border-radius: 50%;
background: #bfbfbf;
font-weight: 900;
font-size: 10px;
line-height: 10px;
&.dot {
width: 6px;
height: 6px;
padding: 0;
gap: 4px;
> .setting {
visibility: hidden;
display: flex;
width: 16px;
height: 16px;
background-image: url("https://static.nicegoodthings.com/project/rustchat/icon.setting.svg");
}
> .badge {
color: #fff;
display: flex;
align-items: center;
justify-content: center;
height: 20px;
min-width: 20px;
border-radius: 50%;
background: #bfbfbf;
font-weight: 900;
font-size: 10px;
line-height: 10px;
&.dot {
min-width: unset;
width: 6px;
height: 6px;
padding: 0;
}
}
}
&:hover > .icons > .setting {
visibility: visible;
}
}
.session {
+8 -2
View File
@@ -37,7 +37,11 @@ export default function Menu({ toggle, expand = true }) {
alt="setting icon"
className="icon"
/>
{expand && <span className="txt">Settings</span>}
{expand && (
<span className="txt animate__animated animate__fadeIn">
Settings
</span>
)}
</li>
<li className="menu" onClick={toggle}>
<img
@@ -49,7 +53,9 @@ export default function Menu({ toggle, expand = true }) {
alt="expand icon"
className="icon"
/>
{expand && <span className="txt">Expand</span>}
{expand && (
<span className="txt animate__animated animate__fadeIn">Expand</span>
)}
</li>
</StyledMenus>
);
+6 -2
View File
@@ -1,6 +1,6 @@
// import React from 'react';
import styled from "styled-components";
import { HiChevronDoubleLeft } from "react-icons/hi";
// import { HiChevronDoubleLeft } from "react-icons/hi";
const StyledWrapper = styled.div`
height: 56px;
@@ -38,7 +38,11 @@ export default function ServerDropList({ data, expand = true }) {
<StyledWrapper className={expand ? "expand" : ""}>
<div className="server">
<img className="logo" src={data.logo} alt="logo" />
{expand && <h2 className="title">{data.name}</h2>}
{expand && (
<h2 className="title animate__animated animate__fadeIn">
{data.name}
</h2>
)}
</div>
</StyledWrapper>
);
+13 -3
View File
@@ -73,19 +73,29 @@ export default function Tools({ expand = true }) {
alt="logo"
/>
</div>
{expand && <h2 className="title">Webrowse</h2>}
{expand && (
<h2 className="title animate__animated animate__fadeIn">
Webrowse
</h2>
)}
</li>
<li className="tool">
<div className="logo">
<IoLogoGithub size={40} className="icon" />
</div>
{expand && <h2 className="title">Github</h2>}
{expand && (
<h2 className="title animate__animated animate__fadeIn">Github</h2>
)}
</li>
<li className="tool add">
<div className="logo">
<RiAddFill className="icon" size={40} color="#4B5563" />
</div>
{expand && <h2 className="title">Add new app</h2>}
{expand && (
<h2 className="title animate__animated animate__fadeIn">
Add new app
</h2>
)}
</li>
</ul>
</StyledWrapper>