344 lines
6.5 KiB
JavaScript
344 lines
6.5 KiB
JavaScript
import { PopoverContainer, PopoverContent } from "react-popopo";
|
|
import styled, { createGlobalStyle, css } from "styled-components";
|
|
|
|
const getBoardWrapperStyles = (props) => {
|
|
if (props.orientation === "vertical") {
|
|
return ` `;
|
|
}
|
|
if (props.orientation === "horizontal") {
|
|
return `
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: flex-start;
|
|
`;
|
|
}
|
|
return "";
|
|
};
|
|
|
|
const getSectionStyles = (props) => {
|
|
if (props.orientation === "horizontal") {
|
|
return `
|
|
display: inline-flex;
|
|
`;
|
|
}
|
|
return `
|
|
margin-bottom: 10px;
|
|
`;
|
|
};
|
|
|
|
export const GlobalStyle = createGlobalStyle`
|
|
.comPlainTextContentEditable {
|
|
-webkit-user-modify: read-write-plaintext-only;
|
|
cursor: text;
|
|
}
|
|
|
|
.smooth-dnd-container.horizontal {
|
|
}
|
|
|
|
.comPlainTextContentEditable--has-placeholder::before {
|
|
content: attr(placeholder);
|
|
opacity: 0.5;
|
|
color: inherit;
|
|
cursor: text;
|
|
}
|
|
|
|
.react_trello_dragClass {
|
|
transform: rotate(3deg);
|
|
}
|
|
|
|
.react_trello_dragLaneClass {
|
|
transform: rotate(3deg);
|
|
}
|
|
|
|
.icon-overflow-menu-horizontal:before {
|
|
content: "\\E91F";
|
|
}
|
|
|
|
.icon-lg,
|
|
.icon-sm {
|
|
color: #798d99;
|
|
}
|
|
|
|
.icon-lg {
|
|
height: 32px;
|
|
font-size: 16px;
|
|
line-height: 32px;
|
|
width: 32px;
|
|
}
|
|
|
|
.react-trello-column-header {
|
|
border-radius: 5px;
|
|
}
|
|
`;
|
|
|
|
export const StyleHorizontal = styled.div``;
|
|
|
|
export const StyleVertical = styled.div`
|
|
.react-trello-column-header {
|
|
text-align: left;
|
|
}
|
|
|
|
.react-trello-lane {
|
|
// TODO ? This is the question. We need the same drag-zone we get in horizontal mode
|
|
min-height: 50px; // Not needed, just for extra landing space
|
|
}
|
|
.react-trello-card {
|
|
//background-color: orange !important;
|
|
flex: 0 1 auto;
|
|
}
|
|
.react-trello-board {
|
|
display: flex;
|
|
}
|
|
`;
|
|
|
|
export const CustomPopoverContainer = styled(PopoverContainer)`
|
|
position: absolute;
|
|
right: 10px;
|
|
flex-flow: column nowrap;
|
|
`;
|
|
|
|
export const CustomPopoverContent = styled(PopoverContent)`
|
|
visibility: hidden;
|
|
margin-top: -5px;
|
|
opacity: 0;
|
|
position: absolute;
|
|
z-index: 10;
|
|
box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
|
|
transition: all 0.3s ease 0ms;
|
|
border-radius: 3px;
|
|
min-width: 7em;
|
|
flex-flow: column nowrap;
|
|
background-color: #fff;
|
|
color: #000;
|
|
padding: 5px;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
|
|
${(props) =>
|
|
props.active &&
|
|
`
|
|
visibility: visible;
|
|
opacity: 1;
|
|
transition-delay: 100ms;
|
|
`} &::before {
|
|
visibility: hidden;
|
|
}
|
|
|
|
a {
|
|
color: rgba(255, 255, 255, 0.56);
|
|
padding: 0.5em 1em;
|
|
margin: 0;
|
|
text-decoration: none;
|
|
|
|
&:hover {
|
|
background-color: #00bcd4 !important;
|
|
color: #37474f;
|
|
}
|
|
}
|
|
`;
|
|
|
|
export const BoardWrapper = styled.div`
|
|
background-color: #ffffff;
|
|
overflow-y: scroll;
|
|
padding: 5px;
|
|
color: #393939;
|
|
${getBoardWrapperStyles};
|
|
`;
|
|
|
|
export const Header = styled.header`
|
|
margin-bottom: 10px;
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: flex-start;
|
|
`;
|
|
|
|
export const Section = styled.section`
|
|
background-color: #e3e3e3;
|
|
border-radius: 3px;
|
|
margin: 2px 2px;
|
|
position: relative;
|
|
padding: 5px;
|
|
flex-direction: column;
|
|
${getSectionStyles};
|
|
`;
|
|
|
|
export const LaneHeader = styled(Header)`
|
|
margin-bottom: 0;
|
|
${(props) =>
|
|
props.editLaneTitle &&
|
|
css`
|
|
padding: 0;
|
|
line-height: 30px;
|
|
`} ${(props) =>
|
|
!props.editLaneTitle &&
|
|
css`
|
|
padding: 0 5px;
|
|
`};
|
|
`;
|
|
|
|
export const LaneFooter = styled.div`
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
width: 100%;
|
|
position: relative;
|
|
height: 10px;
|
|
`;
|
|
|
|
export const ScrollableLane = styled.div`
|
|
flex: 1;
|
|
overflow-y: auto;
|
|
min-width: 250px;
|
|
overflow-x: hidden;
|
|
align-self: center;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
`;
|
|
|
|
export const Title = styled.span`
|
|
font-weight: bold;
|
|
font-size: 15px;
|
|
line-height: 18px;
|
|
cursor: ${(props) => (props.draggable ? "grab" : `auto`)};
|
|
width: 70%;
|
|
`;
|
|
|
|
export const RightContent = styled.span`
|
|
width: 38%;
|
|
text-align: right;
|
|
padding-right: 10px;
|
|
font-size: 13px;
|
|
`;
|
|
export const CardWrapper = styled.article`
|
|
border-radius: 3px;
|
|
border-bottom: 1px solid #ccc;
|
|
background-color: #fff;
|
|
position: relative;
|
|
padding: 10px;
|
|
cursor: pointer;
|
|
max-width: 250px;
|
|
margin-bottom: 7px;
|
|
min-width: 230px;
|
|
`;
|
|
|
|
export const MovableCardWrapper = styled(CardWrapper)`
|
|
&:hover {
|
|
background-color: #f0f0f0;
|
|
color: #000;
|
|
}
|
|
`;
|
|
|
|
export const CardHeader = styled(Header)`
|
|
border-bottom: 1px solid #eee;
|
|
padding-bottom: 6px;
|
|
color: #000;
|
|
`;
|
|
|
|
export const CardTitle = styled(Title)`
|
|
font-size: 14px;
|
|
`;
|
|
|
|
export const CardRightContent = styled(RightContent)`
|
|
font-size: 10px;
|
|
`;
|
|
|
|
export const Detail = styled.div`
|
|
font-size: 12px;
|
|
color: #4d4d4d;
|
|
white-space: pre-wrap;
|
|
`;
|
|
|
|
export const Footer = styled.div`
|
|
border-top: 1px solid #eee;
|
|
padding-top: 6px;
|
|
text-align: right;
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
`;
|
|
|
|
export const TagSpan = styled.span`
|
|
padding: 2px 3px;
|
|
border-radius: 3px;
|
|
margin: 2px 5px;
|
|
font-size: 70%;
|
|
`;
|
|
|
|
export const AddCardLink = styled.a`
|
|
border-radius: 0 0 3px 3px;
|
|
color: #838c91;
|
|
display: block;
|
|
padding: 5px 2px;
|
|
margin-top: 10px;
|
|
position: relative;
|
|
text-decoration: none;
|
|
cursor: pointer;
|
|
|
|
&:hover {
|
|
//background-color: #cdd2d4;
|
|
color: #4d4d4d;
|
|
text-decoration: underline;
|
|
}
|
|
`;
|
|
|
|
export const LaneTitle = styled.div`
|
|
font-size: 15px;
|
|
width: 268px;
|
|
height: auto;
|
|
`;
|
|
|
|
export const LaneSection = styled.section`
|
|
background-color: #2b6aa3;
|
|
border-radius: 3px;
|
|
margin: 5px;
|
|
position: relative;
|
|
padding: 5px;
|
|
display: inline-flex;
|
|
height: auto;
|
|
flex-direction: column;
|
|
`;
|
|
|
|
export const NewLaneSection = styled(LaneSection)`
|
|
width: 200px;
|
|
`;
|
|
|
|
export const NewLaneButtons = styled.div`
|
|
margin-top: 10px;
|
|
`;
|
|
|
|
export const CardForm = styled.div`
|
|
background-color: #e3e3e3;
|
|
`;
|
|
|
|
export const InlineInput = styled.textarea`
|
|
overflow-x: hidden; /* for Firefox (issue #5) */
|
|
word-wrap: break-word;
|
|
min-height: 18px;
|
|
max-height: 112px; /* optional, but recommended */
|
|
resize: none;
|
|
width: 100%;
|
|
height: 18px;
|
|
font-size: inherit;
|
|
font-weight: inherit;
|
|
line-height: inherit;
|
|
text-align: inherit;
|
|
background-color: transparent;
|
|
box-shadow: none;
|
|
box-sizing: border-box;
|
|
border-radius: 3px;
|
|
border: 0;
|
|
padding: 0 8px;
|
|
outline: 0;
|
|
|
|
${(props) =>
|
|
props.border &&
|
|
css`
|
|
&:focus {
|
|
box-shadow: inset 0 0 0 2px #0079bf;
|
|
}
|
|
`} &:focus {
|
|
background-color: white;
|
|
}
|
|
`;
|