All files / ToolTip ToolTip.stories.tsx

87.87% Statements 29/33
100% Branches 0/0
77.77% Functions 14/18
87.87% Lines 29/33

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372                1x                                                                                                       1x 1x                                               1x 1x   1x 1x     4x                   12x                                               1x 1x                                             1x 1x         1x 1x   1x     4x                   12x                                                       1x 1x   1x 1x   1x                                                                                                                                                                                                                                                 1x       1x 1x   1x                 4x 12x                                                      
import _ from 'lodash';
import React from 'react';
import createClass from 'create-react-class';
import { Meta, Story } from '@storybook/react';
 
import Button from '../Button/Button';
import ToolTip, { IToolTipProps, ToolTipDumb } from './ToolTip';
 
const { Target, Body } = ToolTip;
 
export default {
	title: 'communication/ToolTip',
	component: ToolTip,
	parameters: {
		docs: {
			description: {
				component: ToolTip.peek.description,
			},
		},
	},
	argTypes: {
		isCloseable: {
			type: { required: false } as any,
			control: { type: 'boolean' },
		},
		isLight: { control: { type: 'boolean' } },
		onClose: { control: false },
		onMouseOver: { control: false },
		onMouseOut: { control: false },
		flyOutMaxWidth: { default: { value: '200px' }, control: { type: 'text' } },
		direction: { options: ['down', 'up', 'right', 'left'] },
		alignment: { options: ['start', 'center', 'end'] },
		isExpanded: { control: { type: 'boolean' } },
		portalId: { control: { type: 'text' } },
		Body: { control: false },
		Title: { control: false },
		Target: { control: false },
		children: { control: false },
		className: {
			control: { type: 'object' },
			table: {
				category: 'Uncommon Props',
			},
		},
		style: {
			control: { type: 'object' },
			table: {
				category: 'Uncommon Props',
			},
		},
		flyOutStyle: {
			control: { type: 'object' },
			table: {
				category: 'Uncommon Props',
			},
		},
	},
	args: ToolTip.defaultProps,
} as Meta;
 
export const Basic: Story<IToolTipProps> = (args) => {
	return (
		<section
			style={{
				display: 'flex',
				alignItems: 'center',
				justifyContent: 'center',
			}}
		>
			<ToolTip {...args}>
				<Body>
					ToolTip is a utility component to create a transient message anchored
					to another component.
				</Body>
				<Target>
					<div>Example Target</div>
				</Target>
			</ToolTip>
		</section>
	);
};
 
type Direction = 'right' | 'up' | 'down' | 'left';
type Alignment = 'start' | 'center' | 'end';
 
const directions: Direction[] = ['right', 'up', 'down', 'left'];
const alignments: Alignment[] = ['start', 'center', 'end'];
 
export const DirectionAndAlignmentVariants: Story<IToolTipProps> = (args) => {
	return (
		<section style={{ display: 'flex', flexDirection: 'row' }}>
			{_.map(directions, (direction) => (
				<section
					key={direction}
					style={{
						display: 'flex',
						flexDirection: 'column',
						alignItems: 'center',
						flexGrow: 1,
					}}
				>
					{_.map(alignments, (alignment) => (
						<section
							key={`${direction}${alignment}`}
							style={{ margin: '30px' }}
						>
							<ToolTip {...args} direction={direction} alignment={alignment}>
								<Body>
									ToolTip: is a utility component to create a transient message
									anchored to another component. My direction is "{direction}".
									My alignment is "{alignment}".
								</Body>
								<Target>
									<div>
										Target {direction} {alignment}
									</div>
								</Target>
							</ToolTip>
						</section>
					))}
				</section>
			))}
		</section>
	);
};
 
export const ToolTipWithButton: Story<IToolTipProps> = (args) => {
	return (
		<section
			style={{
				display: 'flex',
				alignItems: 'center',
				justifyContent: 'center',
			}}
		>
			<ToolTip {...args}>
				<Body>
					ToolTip is a utility component to create a transient message anchored
					to another component.
					<Button kind='primary'>View Results</Button>
				</Body>
				<Target>
					<div>Example Target</div>
				</Target>
			</ToolTip>
		</section>
	);
};
 
/* Interactive */
export const Interactive: Story<IToolTipProps> = (args) => {
	const { Target, Title, Body } = ToolTip;
 
	type Direction = 'right' | 'up' | 'down' | 'left';
	type Alignment = 'start' | 'center' | 'end';
 
	const directions: Direction[] = ['right', 'up', 'down', 'left'];
	const alignments: Alignment[] = ['start', 'center', 'end'];
 
	return (
		<section style={{ display: 'flex', flexDirection: 'row' }}>
			{_.map(directions, (direction) => (
				<section
					key={direction}
					style={{
						display: 'flex',
						flexDirection: 'column',
						alignItems: 'center',
						flexGrow: 1,
					}}
				>
					{_.map(alignments, (alignment) => (
						<section
							key={`${direction}${alignment}`}
							style={{ margin: '30px' }}
						>
							<ToolTip {...args} direction={direction} alignment={alignment}>
								<Title>
									Title: {direction} {alignment}
								</Title>
								<Body>
									ToolTip is a utility component to create a transient message
									anchored to another component. My direction is "{direction}
									". My alignment is "{alignment}".
								</Body>
								<Target>
									<div>
										Target {direction} {alignment}
									</div>
								</Target>
							</ToolTip>
						</section>
					))}
				</section>
			))}
		</section>
	);
};
 
/* Variants */
export const Variants: Story<IToolTipProps> = ({ ...args }) => {
	const { Target, Title, Body } = ToolTipDumb;
 
	const Component = createClass({
		getInitialState: () => ({ isExpanded: true }),
		render() {
			return (
				<section
					style={{
						display: 'flex',
						flexDirection: 'column',
					}}
				>
					<section
						style={{
							marginTop: 150,
							display: 'flex',
							flexDirection: 'row',
							justifyContent: 'space-around',
						}}
					>
						<div style={{ marginTop: 60, marginBottom: 60 }}>
							<ToolTipDumb {...args} isExpanded={this.state.isExpanded}>
								<Body>
									ToolTip is a utility component to create a transient message
									anchored to another component.
								</Body>
								<Target>
									<div>No Title or Close Button</div>
								</Target>
							</ToolTipDumb>
						</div>
 
						<div style={{ marginTop: 60, marginBottom: 60 }}>
							<ToolTipDumb
								isCloseable
								onClose={() => this.setState({ isExpanded: false })}
								isExpanded={this.state.isExpanded}
							>
								<Body>
									ToolTip is a utility component to create a transient message
									anchored to another component.
								</Body>
								<Target>
									<div>With Close Button</div>
								</Target>
							</ToolTipDumb>
						</div>
 
						<div style={{ marginTop: 60, marginBottom: 60 }}>
							<ToolTipDumb
								isCloseable
								onClose={() => this.setState({ isExpanded: false })}
								isExpanded={this.state.isExpanded}
							>
								<Title>Title</Title>
								<Body>
									ToolTip is a utility component to create a transient message
									anchored to another component.
								</Body>
								<Target>
									<div>With Title and Close Button</div>
								</Target>
							</ToolTipDumb>
						</div>
					</section>
 
					<section
						style={{
							marginTop: 150,
							display: 'flex',
							flexDirection: 'row',
							justifyContent: 'space-around',
						}}
					>
						<div style={{ marginTop: 60, marginBottom: 60 }}>
							<ToolTipDumb isLight isExpanded={this.state.isExpanded}>
								<Body>
									ToolTip is a utility component to create a transient message
									anchored to another component.
								</Body>
								<Target>
									<div>No Title or Close Button</div>
								</Target>
							</ToolTipDumb>
						</div>
 
						<div style={{ marginTop: 60, marginBottom: 60 }}>
							<ToolTipDumb
								isLight
								isCloseable
								onClose={() => this.setState({ isExpanded: false })}
								isExpanded={this.state.isExpanded}
							>
								<Body>
									ToolTip is a utility component to create a transient message
									anchored to another component.
								</Body>
								<Target>
									<div>With Close Button</div>
								</Target>
							</ToolTipDumb>
						</div>
 
						<div style={{ marginTop: 60, marginBottom: 60 }}>
							<ToolTipDumb
								isLight
								isCloseable
								onClose={() => this.setState({ isExpanded: false })}
								isExpanded={this.state.isExpanded}
							>
								<Title>Title</Title>
								<Body>
									ToolTip is a utility component to create a transient message
									anchored to another component.
								</Body>
								<Target>
									<div>With Title and Close Button</div>
								</Target>
							</ToolTipDumb>
						</div>
					</section>
				</section>
			);
		},
	});
 
	return <Component />;
};
 
/* Unchanging */
export const Unchanging: Story<IToolTipProps> = (args) => {
	const { Target, Title, Body } = ToolTipDumb;
 
	return (
		<section
			style={{
				display: 'flex',
				flexDirection: 'column',
				alignItems: 'center',
			}}
		>
			{_.map(['right', 'up', 'down', 'left'], (direction) =>
				_.map(['start', 'center', 'end'], (alignment) => (
					<section key={`${direction}${alignment}`} style={{ margin: '90px' }}>
						<ToolTipDumb
							{...args}
							direction={direction as any}
							alignment={alignment as any}
							isExpanded={true}
						>
							<Title>
								Title: {direction} {alignment}
							</Title>
							<Body>
								ToolTip is a utility component to create a transient message
								anchored to another component. My direction is "{direction}
								". My alignment is "{alignment}".
							</Body>
							<Target>
								<div>
									Target {direction} {alignment}
								</div>
							</Target>
						</ToolTipDumb>
					</section>
				))
			)}
		</section>
	);
};