This commit is contained in:
Norbert de Langen 2019-07-13 01:16:14 +02:00
parent b5b4deb7b1
commit 9e0be712cb
4 changed files with 5 additions and 9 deletions

View File

@ -1,6 +1,4 @@
export const ADDON_ID = 'storybook/background';
export const BACKGROUND = `${ADDON_ID}/background`;
export const GRID = `${ADDON_ID}/grid`;
export const PARAM_KEY = 'backgrounds';
export const EVENTS = {

View File

@ -1,12 +1,12 @@
import React, { Fragment } from 'react';
import { addons, types } from '@storybook/addons';
import { ADDON_ID, BACKGROUND, GRID } from './constants';
import { ADDON_ID } from './constants';
import { BackgroundSelector } from './containers/BackgroundSelector';
import { GridSelector } from './containers/GridSelector';
addons.register(ADDON_ID, api => {
addons.add(BACKGROUND, {
addons.add(ADDON_ID, {
title: 'Backgrounds',
type: types.TOOL,
match: ({ viewMode }) => viewMode === 'story',

View File

@ -8,7 +8,7 @@ import { Icons, IconButton, WithTooltip, TooltipLinkList } from '@storybook/comp
import { useParameter, useAddonState } from '@storybook/api';
import { PARAM_KEY, ADDON_ID } from './constants';
import { ViewportAddonParameter, ViewportMap, ViewportStyles, Viewport, Styles } from './models';
import { ViewportAddonParameter, ViewportMap, ViewportStyles, Styles } from './models';
interface ViewportItem {
id: string;
@ -141,9 +141,7 @@ export const ViewportTool: FunctionComponent<{}> = React.memo(
const ref = useRef<ViewportStyles>();
const styles = item
? getStyles(ref.current, item.styles, isRotated)
: (responsiveViewport.styles as ViewportStyles);
const styles = getStyles(ref.current, item.styles, isRotated);
useEffect(() => {
ref.current = styles;

View File

@ -1,4 +1,4 @@
import React, { useState } from 'react';
import React from 'react';
import PropTypes from 'prop-types';
import { styled, withTheme } from '@storybook/theming';