This not needed anymore

pull/10616/head
Luke Morris 2018-02-23 16:24:38 -08:00
parent 7c9ae33648
commit ed1b836c39
1 changed files with 0 additions and 382 deletions

View File

@ -1,382 +0,0 @@
import {NEUTRALS, BLUES} from 'src/shared/constants/influxColors'
// Styles for all things Annotations
const annotationColor = '255,255,255'
const annotationDragColor = '107,223,255'
const zIndexWindow = '1'
const zIndexAnnotation = '3'
const zIndexAnnotationActive = '4'
const timestampFontSize = '14px'
const timestampFontWeight = '600'
export const flagStyle = (mouseOver, dragging, hasDuration, isEndpoint) => {
const baseStyle = {
position: 'absolute',
zIndex: '2',
}
let style = {
...baseStyle,
top: '-3px',
left: '-2px',
width: '6px',
height: '6px',
backgroundColor: `rgb(${annotationColor})`,
borderRadius: '50%',
transition: 'background-color 0.25s ease, transform 0.25s ease',
}
if (hasDuration) {
style = {
...baseStyle,
top: '-6px',
width: '0',
height: '0',
left: '0',
border: '6px solid transparent',
borderLeftColor: `rgb(${annotationColor})`,
borderRadius: '0',
background: 'none',
transition: 'border-left-color 0.25s ease, transform 0.25s ease',
transformOrigin: '0% 50%',
}
}
if (isEndpoint) {
style = {
...baseStyle,
top: '-6px',
width: '0',
height: '0',
left: 'initial',
right: '0',
border: '6px solid transparent',
borderRightColor: `rgb(${annotationColor})`,
borderRadius: '0',
background: 'none',
transition: 'border-right-color 0.25s ease, transform 0.25s ease',
transformOrigin: '100% 50%',
}
}
if (dragging) {
if (hasDuration) {
return {
...style,
transform: 'scale(1.5,1.5)',
borderLeftColor: `rgb(${annotationDragColor})`,
}
}
if (isEndpoint) {
return {
...style,
transform: 'scale(1.5,1.5)',
borderRightColor: `rgb(${annotationDragColor})`,
}
}
return {
...style,
transform: 'scale(1.5,1.5)',
backgroundColor: `rgb(${annotationDragColor})`,
}
}
if (mouseOver) {
return {...style, transform: 'scale(1.5,1.5)'}
}
return style
}
export const clickAreaStyle = (dragging, editing) => {
const style = {
position: 'absolute',
top: '-8px',
left: editing ? '-5px' : '-7px',
width: editing ? '12px' : '16px',
height: editing ? 'calc(100% + 8px)' : '16px',
zIndex: '4',
cursor: editing ? 'col-resize' : 'default',
}
if (dragging) {
return {
...style,
width: '10000px',
left: '-5000px',
height: '10000px',
top: '-5000px',
}
}
return style
}
export const tooltipStyle = annotationState => {
const {isDragging, isMouseOver} = annotationState
const isVisible = isDragging || isMouseOver
return {
position: 'absolute',
bottom: 'calc(100% + 8px)',
left: '50%',
transform: 'translateX(-50%)',
backgroundColor: NEUTRALS[0],
zIndex: '3',
padding: isDragging ? '6px 12px' : '12px 12px 6px 12px',
borderRadius: '4px',
whiteSpace: 'nowrap',
userSelect: 'none',
display: isVisible ? 'flex' : 'none',
boxShadow: `0 0 10px 2px ${NEUTRALS[2]}`,
}
}
export const tooltipItemsStyle = {
display: 'flex',
flexDirection: 'column',
alignItems: 'center',
}
export const tooltipTimestampStyle = {
color: NEUTRALS[20],
display: 'block',
fontSize: timestampFontSize,
fontWeight: timestampFontWeight,
}
export const tooltipInputContainer = {width: '100%', marginBottom: '4px'}
export const tooltipFormStyle = {
display: 'inline-flex',
alignItems: 'center',
flexWrap: 'nowrap',
width: '100%',
}
export const tooltipInputButton = {marginLeft: '2px'}
export const tooltipInput = {flex: '1 0 0'}
export const annotationStyle = (
{time},
dygraph,
isMouseOver,
isDragging,
staticLegendHeight
) => {
// TODO: export and test this function
const [startX, endX] = dygraph.xAxisRange()
let visibility = 'visible'
if (time < startX || time > endX) {
visibility = 'hidden'
}
const containerLeftPadding = 16
const left = `${dygraph.toDomXCoord(time) + containerLeftPadding}px`
const width = 2
const height = staticLegendHeight
? `calc(100% - ${staticLegendHeight + 36}px)`
: 'calc(100% - 36px)'
return {
left,
position: 'absolute',
top: '8px',
backgroundColor: `rgb(${isDragging
? annotationDragColor
: annotationColor})`,
height,
width: `${width}px`,
transition: 'background-color 0.25s ease',
transform: `translateX(-${width / 2}px)`, // translate should always be half with width to horizontally center the annotation pole
visibility,
zIndex:
isDragging || isMouseOver ? zIndexAnnotationActive : zIndexAnnotation,
}
}
export const annotationWindowStyle = (
annotation,
dygraph,
staticLegendHeight
) => {
// TODO: export and test this function
const [startX, endX] = dygraph.xAxisRange()
const containerLeftPadding = 16
const windowEnd = Number(annotation.time) + Number(annotation.duration)
let windowStartXCoord = dygraph.toDomXCoord(annotation.time)
let windowEndXCoord = dygraph.toDomXCoord(windowEnd)
let visibility = 'visible'
if (annotation.time < startX) {
windowStartXCoord = dygraph.toDomXCoord(startX)
}
if (windowEnd > endX) {
windowEndXCoord = dygraph.toDomXCoord(endX)
}
if (windowEnd < startX || annotation.time > endX) {
visibility = 'hidden'
}
const windowWidth = windowEndXCoord - windowStartXCoord
const isDurationNegative = windowWidth < 0
const foo = isDurationNegative ? windowWidth : 0
const left = `${windowStartXCoord + containerLeftPadding + foo}px`
const width = `${Math.abs(windowWidth)}px`
const gradientStartColor = `rgba(${annotationColor},0.15)`
const gradientEndColor = `rgba(${annotationColor},0)`
const height = staticLegendHeight
? `calc(100% - ${staticLegendHeight + 36}px)`
: 'calc(100% - 36px)'
return {
left,
position: 'absolute',
top: '8px',
background: `linear-gradient(to bottom, ${gradientStartColor} 0%,${gradientEndColor} 100%)`,
height,
borderTop: `2px dotted rgba(${annotationColor},0.35)`,
width,
zIndex: zIndexWindow,
visibility,
}
}
// Styles for new Annotations
export const newAnnotationContainer = staticLegendHeight => {
const style = {
position: 'absolute',
zIndex: '9999',
top: '8px',
left: '16px',
width: 'calc(100% - 32px)',
height: 'calc(100% - 16px)',
cursor: 'pointer',
}
return staticLegendHeight
? {...style, height: `calc(100% - ${16 + staticLegendHeight}px)`}
: style
}
export const newAnnotationCrosshairStyle = left => {
const width = 2
return {
position: 'absolute',
top: '0',
left: `${left}px`,
height: 'calc(100% - 20px)',
width: `${width}px`,
transform: `translateX(-${width / 2}px)`, // translate should always be half with width to horizontally center the comment pole
background: `linear-gradient(to bottom, ${BLUES.hydrogen} 0%,${BLUES.pool} 100%)`,
visibility: left ? 'visible' : 'hidden',
transition: 'opacity 0.4s ease',
zIndex: '5',
cursor: 'pointer',
}
}
export const newAnnotationTooltipStyle = isMouseHovering => {
return {
display: isMouseHovering ? 'flex' : 'none',
flexDirection: 'column',
alignItems: 'center',
background: `linear-gradient(to bottom, ${BLUES.pool} 0%,${BLUES.ocean} 100%)`,
borderRadius: '4px',
padding: '6px 12px',
position: 'absolute',
bottom: 'calc(100% + 8px)',
left: '50%',
transform: 'translateX(-50%)',
zIndex: '10',
}
}
export const newAnnotationHelperStyle = {
whiteSpace: 'nowrap',
fontSize: '13px',
lineHeight: '13px',
fontWeight: '600',
color: BLUES.neutrino,
marginBottom: '4px',
}
export const newAnnotationTimestampStyle = {
whiteSpace: 'nowrap',
fontSize: timestampFontSize,
lineHeight: timestampFontSize,
fontWeight: timestampFontWeight,
color: NEUTRALS[20],
}
export const circleFlagStyle = {
position: 'absolute',
zIndex: '2',
top: '-3px',
left: '-2px',
width: '6px',
height: '6px',
backgroundColor: `rgb(${annotationDragColor})`,
borderRadius: '50%',
transition: 'background-color 0.25s ease, transform 0.25s ease',
}
export const staticFlagStyle = {
position: 'absolute',
zIndex: '2',
top: '-6px',
width: '0',
height: '0',
left: '0',
border: '6px solid transparent',
borderLeftColor: `rgb(${annotationDragColor})`,
borderRadius: '0',
background: 'none',
transition: 'border-left-color 0.25s ease, transform 0.25s ease',
transformOrigin: '0% 50%',
}
export const draggingFlagStyle = {
position: 'absolute',
zIndex: '2',
top: '-6px',
width: '0',
height: '0',
left: 'initial',
right: '0',
border: '6px solid transparent',
borderRightColor: `rgb(${annotationDragColor})`,
borderRadius: '0',
background: 'none',
transition: 'border-right-color 0.25s ease, transform 0.25s ease',
transformOrigin: '100% 50%',
}
export const newAnnotationWindowStyle = (isDragging, staticX, draggingX) => {
// TODO: export and test this function
const width = `${Math.abs(Number(draggingX) - Number(staticX))}px`
let left
if (draggingX > staticX) {
left = `${staticX}px`
} else {
left = `${draggingX}px`
}
const gradientStartColor = `rgba(${annotationDragColor},0.15)`
const gradientEndColor = `rgba(${annotationDragColor},0)`
return {
left,
position: 'absolute',
top: '0',
background: `linear-gradient(to bottom, ${gradientStartColor} 0%,${gradientEndColor} 100%)`,
height: 'calc(100% - 20px)',
borderTop: `2px dotted rgba(${annotationDragColor},0.35)`,
width,
zIndex: '3',
visibility: isDragging ? 'visible' : 'hidden',
}
}