PromucFlow_constructor/app/client/src/components/utils/TreeStructure.tsx
Valera Melnikov 9eac55a380
chore: add consistent-type-definitions rule (#27907)
## Description
Add consistent-type-definitions rule
2023-10-11 10:35:24 +03:00

83 lines
1.4 KiB
TypeScript

import React from "react";
import styled from "styled-components";
const TreeStructureWrapper = styled.div`
li {
list-style: none;
}
.tree,
.tree ul {
margin-bottom: 0;
margin-top: 0;
margin-left: 9px;
padding: 0;
list-style: none;
color: var(--ads-v2-color-fg);
position: relative;
}
.tree ul {
margin-left: 9px;
}
.tree:before,
.tree ul:before {
content: "";
display: block;
width: 0;
position: absolute;
top: 0;
bottom: 0;
left: 0;
border-left: 1px solid;
border-color: var(--ads-v2-color-border);
}
.tree li {
margin: 0;
padding-left: 6px;
line-height: 18px;
margin-top: 8px;
position: relative;
}
.tree li div {
position: relative;
z-index: 10;
}
.tree li:before {
content: "";
display: block;
width: 9px;
height: 0;
border-top: 1px solid;
margin-top: 0px;
position: absolute;
top: 14px;
left: 0;
border-color: var(--ads-v2-color-border);
}
.tree li:last-child:before {
background: var(--ads-v2-color-bg);
height: auto;
bottom: 0;
}
`;
interface TreeStructureProps {
children: React.ReactNode;
}
const TreeStructure = React.forwardRef(
(props: TreeStructureProps, ref: any) => {
return (
<TreeStructureWrapper ref={ref}>{props.children}</TreeStructureWrapper>
);
},
);
export default TreeStructure;