mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 13:01:07 +08:00
CLEANUP
This commit is contained in:
parent
b5b4deb7b1
commit
9e0be712cb
@ -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 = {
|
||||
|
@ -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',
|
||||
|
@ -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;
|
||||
|
@ -1,4 +1,4 @@
|
||||
import React, { useState } from 'react';
|
||||
import React from 'react';
|
||||
import PropTypes from 'prop-types';
|
||||
|
||||
import { styled, withTheme } from '@storybook/theming';
|
||||
|
Loading…
x
Reference in New Issue
Block a user