forked from sombochea/verdaccio-ui
feat: Added Theme and migrate to emotion@10.x ๐ (#286)
* chore: updated emotion dependency * feat: introduced theme * refactor: updated emotion styles * fix: fixed emotion error * fix: fixed tests * chore: add missing types Co-Authored-By: Thomas Klein <tmkn@users.noreply.github.com>
This commit is contained in:
parent
a0dcf87368
commit
111f0c50e5
@ -15,6 +15,8 @@
|
|||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@commitlint/cli": "8.2.0",
|
"@commitlint/cli": "8.2.0",
|
||||||
"@commitlint/config-conventional": "8.2.0",
|
"@commitlint/config-conventional": "8.2.0",
|
||||||
|
"@emotion/core": "10.0.22",
|
||||||
|
"@emotion/styled": "10.0.23",
|
||||||
"@material-ui/core": "4.6.1",
|
"@material-ui/core": "4.6.1",
|
||||||
"@material-ui/icons": "4.5.1",
|
"@material-ui/icons": "4.5.1",
|
||||||
"@octokit/rest": "16.35.0",
|
"@octokit/rest": "16.35.0",
|
||||||
@ -47,7 +49,8 @@
|
|||||||
"css-loader": "3.2.0",
|
"css-loader": "3.2.0",
|
||||||
"date-fns": "2.8.1",
|
"date-fns": "2.8.1",
|
||||||
"detect-secrets": "1.0.5",
|
"detect-secrets": "1.0.5",
|
||||||
"emotion": "9.2.12",
|
"emotion": "10.0.23",
|
||||||
|
"emotion-theming": "10.0.19",
|
||||||
"enzyme": "3.10.0",
|
"enzyme": "3.10.0",
|
||||||
"enzyme-adapter-react-16": "1.15.1",
|
"enzyme-adapter-react-16": "1.15.1",
|
||||||
"enzyme-to-json": "3.4.3",
|
"enzyme-to-json": "3.4.3",
|
||||||
@ -90,7 +93,6 @@
|
|||||||
"react": "16.12.0",
|
"react": "16.12.0",
|
||||||
"react-autosuggest": "9.4.3",
|
"react-autosuggest": "9.4.3",
|
||||||
"react-dom": "16.12.0",
|
"react-dom": "16.12.0",
|
||||||
"react-emotion": "9.2.12",
|
|
||||||
"react-hot-loader": "4.12.18",
|
"react-hot-loader": "4.12.18",
|
||||||
"react-router-dom": "5.1.2",
|
"react-router-dom": "5.1.2",
|
||||||
"request": "2.88.0",
|
"request": "2.88.0",
|
||||||
@ -214,5 +216,6 @@
|
|||||||
"type": "opencollective",
|
"type": "opencollective",
|
||||||
"url": "https://opencollective.com/verdaccio",
|
"url": "https://opencollective.com/verdaccio",
|
||||||
"logo": "https://opencollective.com/verdaccio/logo.txt"
|
"logo": "https://opencollective.com/verdaccio/logo.txt"
|
||||||
}
|
},
|
||||||
|
"dependencies": {}
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
import { mount, ReactWrapper } from 'enzyme';
|
import { ReactWrapper } from 'enzyme';
|
||||||
|
|
||||||
|
import { mount } from '../utils/test-enzyme';
|
||||||
import storage from '../utils/storage';
|
import storage from '../utils/storage';
|
||||||
import { generateTokenWithTimeRange } from '../../jest/unit/components/__mocks__/token';
|
import { generateTokenWithTimeRange } from '../../jest/unit/components/__mocks__/token';
|
||||||
|
|
||||||
|
@ -9,7 +9,6 @@ import Header from '../components/Header';
|
|||||||
import { Container, Content } from '../components/Layout';
|
import { Container, Content } from '../components/Layout';
|
||||||
import API from '../utils/api';
|
import API from '../utils/api';
|
||||||
import Footer from '../components/Footer';
|
import Footer from '../components/Footer';
|
||||||
import StyleBaseline from '../design-tokens/StyleBaseline';
|
|
||||||
|
|
||||||
import AppRoute from './AppRoute';
|
import AppRoute from './AppRoute';
|
||||||
import { AppProps, AppContextProvider } from './AppContext';
|
import { AppProps, AppContextProvider } from './AppContext';
|
||||||
@ -44,13 +43,10 @@ export default class App extends Component<{}, AppProps> {
|
|||||||
const context = { isUserLoggedIn, packages, logoUrl, user, scope };
|
const context = { isUserLoggedIn, packages, logoUrl, user, scope };
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
|
||||||
<StyleBaseline />
|
|
||||||
<Container isLoading={isLoading}>
|
<Container isLoading={isLoading}>
|
||||||
{isLoading ? <Loading /> : <AppContextProvider value={context}>{this.renderContent()}</AppContextProvider>}
|
{isLoading ? <Loading /> : <AppContextProvider value={context}>{this.renderContent()}</AppContextProvider>}
|
||||||
{this.renderLoginModal()}
|
{this.renderLoginModal()}
|
||||||
</Container>
|
</Container>
|
||||||
</>
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
import { css } from 'emotion';
|
import { css } from '@emotion/core';
|
||||||
|
|
||||||
import colors from '../utils/styles/colors';
|
import { theme } from '../design-tokens/theme';
|
||||||
|
|
||||||
export const alertError = css({
|
export const alertError = css({
|
||||||
backgroundColor: `${colors.red} !important`,
|
backgroundColor: `${theme.palette.red} !important`,
|
||||||
minWidth: 'inherit !important',
|
minWidth: 'inherit !important',
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
import { mount } from 'enzyme';
|
|
||||||
|
|
||||||
|
import { mount } from '../../utils/test-enzyme';
|
||||||
import api from '../../utils/api';
|
import api from '../../utils/api';
|
||||||
|
|
||||||
import { ActionBar } from './ActionBar';
|
import { ActionBar } from './ActionBar';
|
||||||
|
@ -2,6 +2,6 @@
|
|||||||
|
|
||||||
exports[`<ActionBar /> component should render the component in default state 1`] = `""`;
|
exports[`<ActionBar /> component should render the component in default state 1`] = `""`;
|
||||||
|
|
||||||
exports[`<ActionBar /> component when there is a button to download a tarball 1`] = `"<ul class=\\"MuiList-root MuiList-padding\\"><div class=\\"MuiButtonBase-root MuiListItem-root css-1br2q5z eux6shq0 MuiListItem-gutters MuiListItem-button MuiListItem-alignItemsFlexStart\\" tabindex=\\"0\\" role=\\"button\\" aria-disabled=\\"false\\"><button class=\\"MuiButtonBase-root MuiFab-root css-z6z5me eux6shq1 MuiFab-sizeSmall\\" tabindex=\\"0\\" type=\\"button\\" title=\\"Download tarball\\"><span class=\\"MuiFab-label\\"><svg class=\\"MuiSvgIcon-root\\" focusable=\\"false\\" viewBox=\\"0 0 24 24\\" aria-hidden=\\"true\\" role=\\"presentation\\"><path d=\\"M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM17 13l-5 5-5-5h3V9h4v4h3z\\"></path></svg></span><span class=\\"MuiTouchRipple-root\\"></span></button><span class=\\"MuiTouchRipple-root\\"></span></div></ul>"`;
|
exports[`<ActionBar /> component when there is a button to download a tarball 1`] = `"<ul class=\\"MuiList-root MuiList-padding\\"><div class=\\"MuiButtonBase-root MuiListItem-root css-l3mdff-ActionListItem eux6shq0 MuiListItem-gutters MuiListItem-button MuiListItem-alignItemsFlexStart\\" tabindex=\\"0\\" role=\\"button\\" aria-disabled=\\"false\\"><button class=\\"MuiButtonBase-root MuiFab-root css-is03ew-Fab eux6shq1 MuiFab-sizeSmall\\" tabindex=\\"0\\" type=\\"button\\" title=\\"Download tarball\\"><span class=\\"MuiFab-label\\"><svg class=\\"MuiSvgIcon-root\\" focusable=\\"false\\" viewBox=\\"0 0 24 24\\" aria-hidden=\\"true\\" role=\\"presentation\\"><path d=\\"M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.6 5.64 5.35 8.04 2.34 8.36 0 10.91 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM17 13l-5 5-5-5h3V9h4v4h3z\\"></path></svg></span><span class=\\"MuiTouchRipple-root\\"></span></button><span class=\\"MuiTouchRipple-root\\"></span></div></ul>"`;
|
||||||
|
|
||||||
exports[`<ActionBar /> component when there is a button to open an issue 1`] = `"<ul class=\\"MuiList-root MuiList-padding\\"><div class=\\"MuiButtonBase-root MuiListItem-root css-1br2q5z eux6shq0 MuiListItem-gutters MuiListItem-button MuiListItem-alignItemsFlexStart\\" tabindex=\\"0\\" role=\\"button\\" aria-disabled=\\"false\\"><a href=\\"https://verdaccio.tld/bugs\\" target=\\"_blank\\"><button class=\\"MuiButtonBase-root MuiFab-root css-z6z5me eux6shq1 MuiFab-sizeSmall\\" tabindex=\\"0\\" type=\\"button\\"><span class=\\"MuiFab-label\\"><svg class=\\"MuiSvgIcon-root\\" focusable=\\"false\\" viewBox=\\"0 0 24 24\\" aria-hidden=\\"true\\" role=\\"presentation\\"><path d=\\"M20 8h-2.81c-.45-.78-1.07-1.45-1.82-1.96L17 4.41 15.59 3l-2.17 2.17C12.96 5.06 12.49 5 12 5c-.49 0-.96.06-1.41.17L8.41 3 7 4.41l1.62 1.63C7.88 6.55 7.26 7.22 6.81 8H4v2h2.09c-.05.33-.09.66-.09 1v1H4v2h2v1c0 .34.04.67.09 1H4v2h2.81c1.04 1.79 2.97 3 5.19 3s4.15-1.21 5.19-3H20v-2h-2.09c.05-.33.09-.66.09-1v-1h2v-2h-2v-1c0-.34-.04-.67-.09-1H20V8zm-6 8h-4v-2h4v2zm0-4h-4v-2h4v2z\\"></path></svg></span><span class=\\"MuiTouchRipple-root\\"></span></button></a><span class=\\"MuiTouchRipple-root\\"></span></div></ul>"`;
|
exports[`<ActionBar /> component when there is a button to open an issue 1`] = `"<ul class=\\"MuiList-root MuiList-padding\\"><div class=\\"MuiButtonBase-root MuiListItem-root css-l3mdff-ActionListItem eux6shq0 MuiListItem-gutters MuiListItem-button MuiListItem-alignItemsFlexStart\\" tabindex=\\"0\\" role=\\"button\\" aria-disabled=\\"false\\"><a href=\\"https://verdaccio.tld/bugs\\" target=\\"_blank\\"><button class=\\"MuiButtonBase-root MuiFab-root css-is03ew-Fab eux6shq1 MuiFab-sizeSmall\\" tabindex=\\"0\\" type=\\"button\\"><span class=\\"MuiFab-label\\"><svg class=\\"MuiSvgIcon-root\\" focusable=\\"false\\" viewBox=\\"0 0 24 24\\" aria-hidden=\\"true\\" role=\\"presentation\\"><path d=\\"M20 8h-2.81c-.45-.78-1.07-1.45-1.82-1.96L17 4.41 15.59 3l-2.17 2.17C12.96 5.06 12.49 5 12 5c-.49 0-.96.06-1.41.17L8.41 3 7 4.41l1.62 1.63C7.88 6.55 7.26 7.22 6.81 8H4v2h2.09c-.05.33-.09.66-.09 1v1H4v2h2v1c0 .34.04.67.09 1H4v2h2.81c1.04 1.79 2.97 3 5.19 3s4.15-1.21 5.19-3H20v-2h-2.09c.05-.33.09-.66.09-1v-1h2v-2h-2v-1c0-.34-.04-.67-.09-1H20V8zm-6 8h-4v-2h4v2zm0-4h-4v-2h4v2z\\"></path></svg></span><span class=\\"MuiTouchRipple-root\\"></span></button></a><span class=\\"MuiTouchRipple-root\\"></span></div></ul>"`;
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
import styled from 'react-emotion';
|
import styled from '@emotion/styled';
|
||||||
|
|
||||||
import colors from '../../utils/styles/colors';
|
|
||||||
import ListItem from '../../muiComponents/ListItem';
|
import ListItem from '../../muiComponents/ListItem';
|
||||||
import FloatingActionButton from '../../muiComponents/FloatingActionButton';
|
import FloatingActionButton from '../../muiComponents/FloatingActionButton';
|
||||||
|
import { Theme } from '../../design-tokens/theme';
|
||||||
|
|
||||||
export const ActionListItem = styled(ListItem)({
|
export const ActionListItem = styled(ListItem)({
|
||||||
paddingTop: 0,
|
paddingTop: 0,
|
||||||
@ -10,8 +10,8 @@ export const ActionListItem = styled(ListItem)({
|
|||||||
paddingRight: 0,
|
paddingRight: 0,
|
||||||
});
|
});
|
||||||
|
|
||||||
export const Fab = styled(FloatingActionButton)({
|
export const Fab = styled(FloatingActionButton)<{ theme?: Theme }>(props => ({
|
||||||
backgroundColor: colors.primary,
|
backgroundColor: props.theme && props.theme.palette.primary.main,
|
||||||
color: colors.white,
|
color: props.theme && props.theme.palette.white,
|
||||||
marginRight: '10px',
|
marginRight: '10px',
|
||||||
});
|
}));
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
import { mount } from 'enzyme';
|
|
||||||
|
|
||||||
|
import { mount } from '../../utils/test-enzyme';
|
||||||
import { DetailContext } from '../../pages/Version';
|
import { DetailContext } from '../../pages/Version';
|
||||||
|
|
||||||
import Authors from './Author';
|
import Authors from './Author';
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||||
|
|
||||||
exports[`<Author /> component should render the component in default state 1`] = `"<ul class=\\"MuiList-root MuiList-padding MuiList-subheader\\"><h6 class=\\"MuiTypography-root css-b8upko e1xuehjw0 MuiTypography-subtitle1\\">Author</h6><div class=\\"MuiButtonBase-root MuiListItem-root css-zw46c6 e1xuehjw1 MuiListItem-gutters MuiListItem-button\\" tabindex=\\"0\\" role=\\"button\\" aria-disabled=\\"false\\"><a href=\\"mailto:verdaccio.user@verdaccio.org?subject=verdaccio@4.0.0\\" target=\\"_top\\"><div class=\\"MuiAvatar-root MuiAvatar-circle\\"><img alt=\\"verdaccio user\\" src=\\"https://www.gravatar.com/avatar/000000\\" class=\\"MuiAvatar-img\\"></div></a><div class=\\"MuiListItemText-root css-fipixf e1xuehjw2\\"><span class=\\"MuiTypography-root MuiListItemText-primary MuiTypography-body1\\">verdaccio user</span></div><span class=\\"MuiTouchRipple-root\\"></span></div></ul>"`;
|
exports[`<Author /> component should render the component in default state 1`] = `"<ul class=\\"MuiList-root MuiList-padding MuiList-subheader\\"><h6 class=\\"MuiTypography-root css-1na337r-StyledText e1xuehjw0 MuiTypography-subtitle1\\">Author</h6><div class=\\"MuiButtonBase-root MuiListItem-root css-1k45khb-AuthorListItem e1xuehjw1 MuiListItem-gutters MuiListItem-button\\" tabindex=\\"0\\" role=\\"button\\" aria-disabled=\\"false\\"><a href=\\"mailto:verdaccio.user@verdaccio.org?subject=verdaccio@4.0.0\\" target=\\"_top\\"><div class=\\"MuiAvatar-root MuiAvatar-circle\\"><img alt=\\"verdaccio user\\" src=\\"https://www.gravatar.com/avatar/000000\\" class=\\"MuiAvatar-img\\"></div></a><div class=\\"MuiListItemText-root css-1cnlq5d-AuthorListItemText e1xuehjw2\\"><span class=\\"MuiTypography-root MuiListItemText-primary MuiTypography-body1\\">verdaccio user</span></div><span class=\\"MuiTouchRipple-root\\"></span></div></ul>"`;
|
||||||
|
|
||||||
exports[`<Author /> component should render the component when there is no author email 1`] = `"<ul class=\\"MuiList-root MuiList-padding MuiList-subheader\\"><h6 class=\\"MuiTypography-root css-b8upko e1xuehjw0 MuiTypography-subtitle1\\">Author</h6><div class=\\"MuiButtonBase-root MuiListItem-root css-zw46c6 e1xuehjw1 MuiListItem-gutters MuiListItem-button\\" tabindex=\\"0\\" role=\\"button\\" aria-disabled=\\"false\\"><div class=\\"MuiAvatar-root MuiAvatar-circle\\"><img alt=\\"verdaccio user\\" src=\\"https://www.gravatar.com/avatar/000000\\" class=\\"MuiAvatar-img\\"></div><div class=\\"MuiListItemText-root css-fipixf e1xuehjw2\\"><span class=\\"MuiTypography-root MuiListItemText-primary MuiTypography-body1\\">verdaccio user</span></div><span class=\\"MuiTouchRipple-root\\"></span></div></ul>"`;
|
exports[`<Author /> component should render the component when there is no author email 1`] = `"<ul class=\\"MuiList-root MuiList-padding MuiList-subheader\\"><h6 class=\\"MuiTypography-root css-1na337r-StyledText e1xuehjw0 MuiTypography-subtitle1\\">Author</h6><div class=\\"MuiButtonBase-root MuiListItem-root css-1k45khb-AuthorListItem e1xuehjw1 MuiListItem-gutters MuiListItem-button\\" tabindex=\\"0\\" role=\\"button\\" aria-disabled=\\"false\\"><div class=\\"MuiAvatar-root MuiAvatar-circle\\"><img alt=\\"verdaccio user\\" src=\\"https://www.gravatar.com/avatar/000000\\" class=\\"MuiAvatar-img\\"></div><div class=\\"MuiListItemText-root css-1cnlq5d-AuthorListItemText e1xuehjw2\\"><span class=\\"MuiTypography-root MuiListItemText-primary MuiTypography-body1\\">verdaccio user</span></div><span class=\\"MuiTouchRipple-root\\"></span></div></ul>"`;
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import styled from 'react-emotion';
|
import styled from '@emotion/styled';
|
||||||
|
|
||||||
import { fontWeight } from '../../utils/styles/sizes';
|
import { fontWeight } from '../../utils/styles/sizes';
|
||||||
import ListItem from '../../muiComponents/ListItem';
|
import ListItem from '../../muiComponents/ListItem';
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import React, { KeyboardEvent } from 'react';
|
import React, { KeyboardEvent } from 'react';
|
||||||
import { css } from 'emotion';
|
import styled from '@emotion/styled';
|
||||||
import Autosuggest, { SuggestionSelectedEventData, InputProps, ChangeEvent } from 'react-autosuggest';
|
import Autosuggest, { SuggestionSelectedEventData, InputProps, ChangeEvent } from 'react-autosuggest';
|
||||||
import match from 'autosuggest-highlight/match';
|
import match from 'autosuggest-highlight/match';
|
||||||
import parse from 'autosuggest-highlight/parse';
|
import parse from 'autosuggest-highlight/parse';
|
||||||
@ -9,13 +9,20 @@ import MenuItem from '../../muiComponents/MenuItem';
|
|||||||
|
|
||||||
import { Wrapper, InputField, SuggestionContainer } from './styles';
|
import { Wrapper, InputField, SuggestionContainer } from './styles';
|
||||||
|
|
||||||
|
const StyledAnchor = styled('a')<{ fw: number }>(props => ({
|
||||||
|
fontWeight: props.fw,
|
||||||
|
}));
|
||||||
|
|
||||||
|
const StyledMenuItem = styled(MenuItem)({
|
||||||
|
cursor: 'pointer',
|
||||||
|
});
|
||||||
|
|
||||||
interface Props {
|
interface Props {
|
||||||
suggestions: unknown[];
|
suggestions: unknown[];
|
||||||
suggestionsLoading?: boolean;
|
suggestionsLoading?: boolean;
|
||||||
suggestionsLoaded?: boolean;
|
suggestionsLoaded?: boolean;
|
||||||
suggestionsError?: boolean;
|
suggestionsError?: boolean;
|
||||||
apiLoading?: boolean;
|
apiLoading?: boolean;
|
||||||
color?: string;
|
|
||||||
value?: string;
|
value?: string;
|
||||||
placeholder?: string;
|
placeholder?: string;
|
||||||
startAdornment?: JSX.Element;
|
startAdornment?: JSX.Element;
|
||||||
@ -54,23 +61,18 @@ const renderSuggestion = (suggestion, { query, isHighlighted }): JSX.Element =>
|
|||||||
const matches = match(suggestion.name, query);
|
const matches = match(suggestion.name, query);
|
||||||
const parts = parse(suggestion.name, matches);
|
const parts = parse(suggestion.name, matches);
|
||||||
return (
|
return (
|
||||||
<MenuItem component="div" selected={isHighlighted}>
|
<StyledMenuItem component="div" selected={isHighlighted}>
|
||||||
<div>
|
<div>
|
||||||
{parts.map((part, index) => {
|
{parts.map((part, index) => {
|
||||||
const fw = part.highlight ? fontWeight.semiBold : fontWeight.light;
|
const fw = part.highlight ? fontWeight.semiBold : fontWeight.light;
|
||||||
return (
|
return (
|
||||||
<a
|
<StyledAnchor fw={fw} key={String(index)}>
|
||||||
className={css`
|
|
||||||
font-weight: ${fw};
|
|
||||||
`}
|
|
||||||
href={suggestion.link}
|
|
||||||
key={String(index)}>
|
|
||||||
{part.text}
|
{part.text}
|
||||||
</a>
|
</StyledAnchor>
|
||||||
);
|
);
|
||||||
})}
|
})}
|
||||||
</div>
|
</div>
|
||||||
</MenuItem>
|
</StyledMenuItem>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -97,7 +99,6 @@ const AutoComplete = ({
|
|||||||
value = '',
|
value = '',
|
||||||
placeholder = '',
|
placeholder = '',
|
||||||
disableUnderline = false,
|
disableUnderline = false,
|
||||||
color,
|
|
||||||
onClick,
|
onClick,
|
||||||
onKeyDown,
|
onKeyDown,
|
||||||
onBlur,
|
onBlur,
|
||||||
@ -121,7 +122,6 @@ const AutoComplete = ({
|
|||||||
// @ts-ignore
|
// @ts-ignore
|
||||||
startAdornment,
|
startAdornment,
|
||||||
disableUnderline,
|
disableUnderline,
|
||||||
color,
|
|
||||||
onKeyDown,
|
onKeyDown,
|
||||||
onBlur,
|
onBlur,
|
||||||
};
|
};
|
||||||
|
@ -1,60 +1,44 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
import styled, { css } from 'react-emotion';
|
import styled from '@emotion/styled';
|
||||||
|
|
||||||
import TextField from '../../muiComponents/TextField';
|
import TextField from '../../muiComponents/TextField';
|
||||||
import Paper from '../../muiComponents/Paper';
|
import Paper from '../../muiComponents/Paper';
|
||||||
|
import { Theme } from '../../design-tokens/theme';
|
||||||
|
|
||||||
export interface InputFieldProps {
|
export interface InputFieldProps {
|
||||||
color: string;
|
color: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
export const Wrapper = styled('div')({
|
export const Wrapper = styled('div')({
|
||||||
'&&': {
|
|
||||||
width: '100%',
|
width: '100%',
|
||||||
height: '32px',
|
height: '32px',
|
||||||
position: 'relative',
|
position: 'relative',
|
||||||
zIndex: 1,
|
zIndex: 1,
|
||||||
},
|
|
||||||
});
|
});
|
||||||
|
|
||||||
|
export const StyledTextField = styled(TextField)<{ theme?: Theme }>(props => ({
|
||||||
|
'& .MuiInputBase-root': {
|
||||||
|
':before': {
|
||||||
|
content: "''",
|
||||||
|
border: 'none',
|
||||||
|
},
|
||||||
|
':after': {
|
||||||
|
borderColor: props.theme && props.theme.palette.white,
|
||||||
|
},
|
||||||
|
':hover:before': {
|
||||||
|
content: 'none',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
'& .MuiInputBase-input': {
|
||||||
|
color: props.theme && props.theme.palette.white,
|
||||||
|
},
|
||||||
|
}));
|
||||||
|
|
||||||
/* eslint-disable verdaccio/jsx-spread */
|
/* eslint-disable verdaccio/jsx-spread */
|
||||||
export const InputField: React.FC<InputFieldProps> = ({ color, ...others }) => (
|
// @ts-ignore types of color are incompatible
|
||||||
<TextField
|
export const InputField: React.FC<InputFieldProps> = ({ ...others }) => <StyledTextField {...others} />;
|
||||||
{...others}
|
|
||||||
classes={{
|
|
||||||
// @ts-ignore
|
|
||||||
input: css`
|
|
||||||
&& {
|
|
||||||
${color &&
|
|
||||||
css`
|
|
||||||
color: ${color};
|
|
||||||
`};
|
|
||||||
}
|
|
||||||
`,
|
|
||||||
root: css`
|
|
||||||
&& {
|
|
||||||
&:before {
|
|
||||||
content: '';
|
|
||||||
border: none;
|
|
||||||
}
|
|
||||||
&:after {
|
|
||||||
${color &&
|
|
||||||
css`
|
|
||||||
border-color: ${color};
|
|
||||||
`};
|
|
||||||
}
|
|
||||||
&:hover:before {
|
|
||||||
content: none;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
`,
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
);
|
|
||||||
|
|
||||||
export const SuggestionContainer = styled(Paper)({
|
export const SuggestionContainer = styled(Paper)({
|
||||||
'&&': {
|
|
||||||
maxHeight: '500px',
|
maxHeight: '500px',
|
||||||
overflowY: 'auto',
|
overflowY: 'auto',
|
||||||
},
|
|
||||||
});
|
});
|
||||||
|
@ -1,7 +1,8 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
import { mount, ReactWrapper } from 'enzyme';
|
import { ReactWrapper } from 'enzyme';
|
||||||
|
|
||||||
import { copyToClipBoardUtility } from '../../utils/cli-utils';
|
import { copyToClipBoardUtility } from '../../utils/cli-utils';
|
||||||
|
import { mount } from '../../utils/test-enzyme';
|
||||||
|
|
||||||
import CopyToClipBoard from './CopyToClipBoard';
|
import CopyToClipBoard from './CopyToClipBoard';
|
||||||
import { CopyIcon } from './styles';
|
import { CopyIcon } from './styles';
|
||||||
@ -16,7 +17,7 @@ describe('<CopyToClipBoard /> component', () => {
|
|||||||
wrapper = mount(<CopyToClipBoard text={copyText} />);
|
wrapper = mount(<CopyToClipBoard text={copyText} />);
|
||||||
});
|
});
|
||||||
|
|
||||||
test('render the component', () => {
|
test('should load the component in default state', () => {
|
||||||
expect(wrapper.html()).toMatchSnapshot();
|
expect(wrapper.html()).toMatchSnapshot();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||||
|
|
||||||
exports[`<CopyToClipBoard /> component render the component 1`] = `"<div class=\\"css-1mta3t8 eb8w2fo0\\"><span class=\\"css-lh0wgu eb8w2fo1\\">copy text</span><button class=\\"MuiButtonBase-root MuiIconButton-root css-0 eb8w2fo2\\" tabindex=\\"0\\" type=\\"button\\" title=\\"Copy to Clipboard\\"><span class=\\"MuiIconButton-label\\"><svg class=\\"MuiSvgIcon-root\\" focusable=\\"false\\" viewBox=\\"0 0 24 24\\" aria-hidden=\\"true\\" role=\\"presentation\\"><path d=\\"M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm-1 4l6 6v10c0 1.1-.9 2-2 2H7.99C6.89 23 6 22.1 6 21l.01-14c0-1.1.89-2 1.99-2h7zm-1 7h5.5L14 6.5V12z\\"></path></svg></span><span class=\\"MuiTouchRipple-root\\"></span></button></div>"`;
|
exports[`<CopyToClipBoard /> component should load the component in default state 1`] = `"<div class=\\"css-1in239f-ClipBoardCopy eb8w2fo0\\"><span class=\\"css-7gar9h-ClipBoardCopyText eb8w2fo1\\">copy text</span><button class=\\"MuiButtonBase-root MuiIconButton-root css-1fs86cq-CopyIcon eb8w2fo2\\" tabindex=\\"0\\" type=\\"button\\" title=\\"Copy to Clipboard\\"><span class=\\"MuiIconButton-label\\"><svg class=\\"MuiSvgIcon-root\\" focusable=\\"false\\" viewBox=\\"0 0 24 24\\" aria-hidden=\\"true\\" role=\\"presentation\\"><path d=\\"M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm-1 4l6 6v10c0 1.1-.9 2-2 2H7.99C6.89 23 6 22.1 6 21l.01-14c0-1.1.89-2 1.99-2h7zm-1 7h5.5L14 6.5V12z\\"></path></svg></span><span class=\\"MuiTouchRipple-root\\"></span></button></div>"`;
|
||||||
|
@ -1,24 +1,20 @@
|
|||||||
import styled from 'react-emotion';
|
import styled from '@emotion/styled';
|
||||||
|
|
||||||
import IconButton from '../../muiComponents/IconButton';
|
import IconButton from '../../muiComponents/IconButton';
|
||||||
|
|
||||||
export const ClipBoardCopy = styled('div')({
|
export const ClipBoardCopy = styled('div')({
|
||||||
'&&': {
|
|
||||||
display: 'flex',
|
display: 'flex',
|
||||||
alignItems: 'center',
|
alignItems: 'center',
|
||||||
justifyContent: 'space-between',
|
justifyContent: 'space-between',
|
||||||
},
|
|
||||||
});
|
});
|
||||||
|
|
||||||
export const ClipBoardCopyText = styled('span')({
|
export const ClipBoardCopyText = styled('span')({
|
||||||
'&&': {
|
|
||||||
display: 'inline-block',
|
display: 'inline-block',
|
||||||
textOverflow: 'ellipsis',
|
textOverflow: 'ellipsis',
|
||||||
overflow: 'hidden',
|
overflow: 'hidden',
|
||||||
whiteSpace: 'nowrap',
|
whiteSpace: 'nowrap',
|
||||||
height: '21px',
|
height: '21px',
|
||||||
fontSize: '1rem',
|
fontSize: '1rem',
|
||||||
},
|
|
||||||
});
|
});
|
||||||
|
|
||||||
export const CopyIcon = styled(IconButton)({});
|
export const CopyIcon = styled(IconButton)({});
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
import { render } from '@testing-library/react';
|
|
||||||
import { HashRouter } from 'react-router-dom';
|
import { HashRouter } from 'react-router-dom';
|
||||||
|
|
||||||
import { DetailContextProvider } from '../../pages/Version';
|
import { DetailContextProvider } from '../../pages/Version';
|
||||||
|
import { render } from '../../utils/test-react-testing-library';
|
||||||
|
|
||||||
import Dependencies from './Dependencies';
|
import Dependencies from './Dependencies';
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import styled from 'react-emotion';
|
import styled from '@emotion/styled';
|
||||||
|
|
||||||
import { fontWeight } from '../../utils/styles/sizes';
|
import { fontWeight } from '../../utils/styles/sizes';
|
||||||
import Text from '../../muiComponents/Text';
|
import Text from '../../muiComponents/Text';
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
import { render } from '@testing-library/react';
|
|
||||||
|
import { render } from '../../utils/test-react-testing-library';
|
||||||
|
|
||||||
import DetailContainer from './DetailContainer';
|
import DetailContainer from './DetailContainer';
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import React, { ChangeEvent, useState, useEffect } from 'react';
|
import React, { ChangeEvent, useState, useEffect } from 'react';
|
||||||
import styled from 'react-emotion';
|
import styled from '@emotion/styled';
|
||||||
|
|
||||||
import { default as MuiTabs } from '../../muiComponents/Tabs';
|
import { default as MuiTabs } from '../../muiComponents/Tabs';
|
||||||
import Tab from '../../muiComponents/Tab';
|
import Tab from '../../muiComponents/Tab';
|
||||||
|
@ -1,11 +1,15 @@
|
|||||||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||||
|
|
||||||
exports[`DetailContainer renders correctly 1`] = `
|
exports[`DetailContainer renders correctly 1`] = `
|
||||||
|
.emotion-0 {
|
||||||
|
margin-bottom: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
<div
|
<div
|
||||||
class="MuiBox-root MuiBox-root-2"
|
class="MuiBox-root MuiBox-root-2"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
class="MuiTabs-root css-1qm1lh emotion-0"
|
class="MuiTabs-root emotion-0 emotion-1"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
class="MuiTabs-scroller MuiTabs-fixed"
|
class="MuiTabs-scroller MuiTabs-fixed"
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import styled from 'react-emotion';
|
import styled from '@emotion/styled';
|
||||||
|
|
||||||
import ListItem from '../../muiComponents/ListItem';
|
import ListItem from '../../muiComponents/ListItem';
|
||||||
import ListItemText from '../../muiComponents/ListItemText';
|
import ListItemText from '../../muiComponents/ListItemText';
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
import { mount } from 'enzyme';
|
|
||||||
|
|
||||||
|
import { mount } from '../../utils/test-enzyme';
|
||||||
import { DetailContextProvider } from '../../pages/Version';
|
import { DetailContextProvider } from '../../pages/Version';
|
||||||
|
|
||||||
import Developers, { DevelopersType } from './Developers';
|
import Developers, { DevelopersType } from './Developers';
|
||||||
|
@ -1,22 +1,57 @@
|
|||||||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||||
|
|
||||||
exports[`test Developers should render the component for contributors with items 1`] = `
|
exports[`test Developers should render the component for contributors with items 1`] = `
|
||||||
|
.emotion-0 {
|
||||||
|
font-weight: 700;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
text-transform: capitalize;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emotion-12 {
|
||||||
|
margin: 10px 0 10px 0;
|
||||||
|
display: -webkit-box;
|
||||||
|
display: -webkit-flex;
|
||||||
|
display: -ms-flexbox;
|
||||||
|
display: flex;
|
||||||
|
-webkit-flex-wrap: wrap;
|
||||||
|
-ms-flex-wrap: wrap;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emotion-12 > * {
|
||||||
|
margin: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emotion-8 {
|
||||||
|
display: -webkit-box;
|
||||||
|
display: -webkit-flex;
|
||||||
|
display: -ms-flexbox;
|
||||||
|
display: flex;
|
||||||
|
-webkit-flex-direction: column;
|
||||||
|
-ms-flex-direction: column;
|
||||||
|
flex-direction: column;
|
||||||
|
-webkit-align-items: center;
|
||||||
|
-webkit-box-align: center;
|
||||||
|
-ms-flex-align: center;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
<Developers
|
<Developers
|
||||||
type="contributors"
|
type="contributors"
|
||||||
>
|
>
|
||||||
<Styled(Component)
|
<StyledText
|
||||||
variant="subtitle1"
|
variant="subtitle1"
|
||||||
>
|
>
|
||||||
<ForwardRef(Text)
|
<ForwardRef(Text)
|
||||||
className="css-48zeoi emotion-0"
|
className="emotion-0 emotion-1"
|
||||||
variant="subtitle1"
|
variant="subtitle1"
|
||||||
>
|
>
|
||||||
<WithStyles(ForwardRef(Typography))
|
<WithStyles(ForwardRef(Typography))
|
||||||
className="css-48zeoi emotion-0"
|
className="emotion-0 emotion-1"
|
||||||
variant="subtitle1"
|
variant="subtitle1"
|
||||||
>
|
>
|
||||||
<ForwardRef(Typography)
|
<ForwardRef(Typography)
|
||||||
className="css-48zeoi emotion-0"
|
className="emotion-0 emotion-1"
|
||||||
classes={
|
classes={
|
||||||
Object {
|
Object {
|
||||||
"alignCenter": "MuiTypography-alignCenter",
|
"alignCenter": "MuiTypography-alignCenter",
|
||||||
@ -54,23 +89,23 @@ exports[`test Developers should render the component for contributors with items
|
|||||||
variant="subtitle1"
|
variant="subtitle1"
|
||||||
>
|
>
|
||||||
<h6
|
<h6
|
||||||
className="MuiTypography-root css-48zeoi emotion-0 MuiTypography-subtitle1"
|
className="MuiTypography-root emotion-0 emotion-1 MuiTypography-subtitle1"
|
||||||
>
|
>
|
||||||
contributors
|
contributors
|
||||||
</h6>
|
</h6>
|
||||||
</ForwardRef(Typography)>
|
</ForwardRef(Typography)>
|
||||||
</WithStyles(ForwardRef(Typography))>
|
</WithStyles(ForwardRef(Typography))>
|
||||||
</ForwardRef(Text)>
|
</ForwardRef(Text)>
|
||||||
</Styled(Component)>
|
</StyledText>
|
||||||
<Styled(div)>
|
<Content>
|
||||||
<div
|
<div
|
||||||
className="css-mkcn9c emotion-6"
|
className="emotion-12 emotion-13"
|
||||||
>
|
>
|
||||||
<Styled(span)
|
<Details
|
||||||
key="dave.methvin@gmail.com"
|
key="dave.methvin@gmail.com"
|
||||||
>
|
>
|
||||||
<span
|
<span
|
||||||
className="css-dvxtzn emotion-4"
|
className="emotion-8 emotion-9"
|
||||||
>
|
>
|
||||||
<AvatarTooltip
|
<AvatarTooltip
|
||||||
email="dave.methvin@gmail.com"
|
email="dave.methvin@gmail.com"
|
||||||
@ -164,12 +199,12 @@ exports[`test Developers should render the component for contributors with items
|
|||||||
</ForwardRef(ToolTip)>
|
</ForwardRef(ToolTip)>
|
||||||
</AvatarTooltip>
|
</AvatarTooltip>
|
||||||
</span>
|
</span>
|
||||||
</Styled(span)>
|
</Details>
|
||||||
<Styled(span)
|
<Details
|
||||||
key="m.goleb@gmail.com"
|
key="m.goleb@gmail.com"
|
||||||
>
|
>
|
||||||
<span
|
<span
|
||||||
className="css-dvxtzn emotion-4"
|
className="emotion-8 emotion-9"
|
||||||
>
|
>
|
||||||
<AvatarTooltip
|
<AvatarTooltip
|
||||||
email="m.goleb@gmail.com"
|
email="m.goleb@gmail.com"
|
||||||
@ -263,29 +298,64 @@ exports[`test Developers should render the component for contributors with items
|
|||||||
</ForwardRef(ToolTip)>
|
</ForwardRef(ToolTip)>
|
||||||
</AvatarTooltip>
|
</AvatarTooltip>
|
||||||
</span>
|
</span>
|
||||||
</Styled(span)>
|
</Details>
|
||||||
</div>
|
</div>
|
||||||
</Styled(div)>
|
</Content>
|
||||||
</Developers>
|
</Developers>
|
||||||
`;
|
`;
|
||||||
|
|
||||||
exports[`test Developers should render the component for maintainers with items 1`] = `
|
exports[`test Developers should render the component for maintainers with items 1`] = `
|
||||||
|
.emotion-0 {
|
||||||
|
font-weight: 700;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
text-transform: capitalize;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emotion-12 {
|
||||||
|
margin: 10px 0 10px 0;
|
||||||
|
display: -webkit-box;
|
||||||
|
display: -webkit-flex;
|
||||||
|
display: -ms-flexbox;
|
||||||
|
display: flex;
|
||||||
|
-webkit-flex-wrap: wrap;
|
||||||
|
-ms-flex-wrap: wrap;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emotion-12 > * {
|
||||||
|
margin: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emotion-8 {
|
||||||
|
display: -webkit-box;
|
||||||
|
display: -webkit-flex;
|
||||||
|
display: -ms-flexbox;
|
||||||
|
display: flex;
|
||||||
|
-webkit-flex-direction: column;
|
||||||
|
-ms-flex-direction: column;
|
||||||
|
flex-direction: column;
|
||||||
|
-webkit-align-items: center;
|
||||||
|
-webkit-box-align: center;
|
||||||
|
-ms-flex-align: center;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
<Developers
|
<Developers
|
||||||
type="maintainers"
|
type="maintainers"
|
||||||
>
|
>
|
||||||
<Styled(Component)
|
<StyledText
|
||||||
variant="subtitle1"
|
variant="subtitle1"
|
||||||
>
|
>
|
||||||
<ForwardRef(Text)
|
<ForwardRef(Text)
|
||||||
className="css-48zeoi emotion-0"
|
className="emotion-0 emotion-1"
|
||||||
variant="subtitle1"
|
variant="subtitle1"
|
||||||
>
|
>
|
||||||
<WithStyles(ForwardRef(Typography))
|
<WithStyles(ForwardRef(Typography))
|
||||||
className="css-48zeoi emotion-0"
|
className="emotion-0 emotion-1"
|
||||||
variant="subtitle1"
|
variant="subtitle1"
|
||||||
>
|
>
|
||||||
<ForwardRef(Typography)
|
<ForwardRef(Typography)
|
||||||
className="css-48zeoi emotion-0"
|
className="emotion-0 emotion-1"
|
||||||
classes={
|
classes={
|
||||||
Object {
|
Object {
|
||||||
"alignCenter": "MuiTypography-alignCenter",
|
"alignCenter": "MuiTypography-alignCenter",
|
||||||
@ -323,23 +393,23 @@ exports[`test Developers should render the component for maintainers with items
|
|||||||
variant="subtitle1"
|
variant="subtitle1"
|
||||||
>
|
>
|
||||||
<h6
|
<h6
|
||||||
className="MuiTypography-root css-48zeoi emotion-0 MuiTypography-subtitle1"
|
className="MuiTypography-root emotion-0 emotion-1 MuiTypography-subtitle1"
|
||||||
>
|
>
|
||||||
maintainers
|
maintainers
|
||||||
</h6>
|
</h6>
|
||||||
</ForwardRef(Typography)>
|
</ForwardRef(Typography)>
|
||||||
</WithStyles(ForwardRef(Typography))>
|
</WithStyles(ForwardRef(Typography))>
|
||||||
</ForwardRef(Text)>
|
</ForwardRef(Text)>
|
||||||
</Styled(Component)>
|
</StyledText>
|
||||||
<Styled(div)>
|
<Content>
|
||||||
<div
|
<div
|
||||||
className="css-mkcn9c emotion-6"
|
className="emotion-12 emotion-13"
|
||||||
>
|
>
|
||||||
<Styled(span)
|
<Details
|
||||||
key="dave.methvin@gmail.com"
|
key="dave.methvin@gmail.com"
|
||||||
>
|
>
|
||||||
<span
|
<span
|
||||||
className="css-dvxtzn emotion-4"
|
className="emotion-8 emotion-9"
|
||||||
>
|
>
|
||||||
<AvatarTooltip
|
<AvatarTooltip
|
||||||
email="dave.methvin@gmail.com"
|
email="dave.methvin@gmail.com"
|
||||||
@ -433,12 +503,12 @@ exports[`test Developers should render the component for maintainers with items
|
|||||||
</ForwardRef(ToolTip)>
|
</ForwardRef(ToolTip)>
|
||||||
</AvatarTooltip>
|
</AvatarTooltip>
|
||||||
</span>
|
</span>
|
||||||
</Styled(span)>
|
</Details>
|
||||||
<Styled(span)
|
<Details
|
||||||
key="m.goleb@gmail.com"
|
key="m.goleb@gmail.com"
|
||||||
>
|
>
|
||||||
<span
|
<span
|
||||||
className="css-dvxtzn emotion-4"
|
className="emotion-8 emotion-9"
|
||||||
>
|
>
|
||||||
<AvatarTooltip
|
<AvatarTooltip
|
||||||
email="m.goleb@gmail.com"
|
email="m.goleb@gmail.com"
|
||||||
@ -532,9 +602,9 @@ exports[`test Developers should render the component for maintainers with items
|
|||||||
</ForwardRef(ToolTip)>
|
</ForwardRef(ToolTip)>
|
||||||
</AvatarTooltip>
|
</AvatarTooltip>
|
||||||
</span>
|
</span>
|
||||||
</Styled(span)>
|
</Details>
|
||||||
</div>
|
</div>
|
||||||
</Styled(div)>
|
</Content>
|
||||||
</Developers>
|
</Developers>
|
||||||
`;
|
`;
|
||||||
|
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
import styled from 'react-emotion';
|
import styled from '@emotion/styled';
|
||||||
|
|
||||||
import colors from '../../utils/styles/colors';
|
|
||||||
import { fontWeight } from '../../utils/styles/sizes';
|
import { fontWeight } from '../../utils/styles/sizes';
|
||||||
import Text from '../../muiComponents/Text';
|
import Text from '../../muiComponents/Text';
|
||||||
import FloatingActionButton from '../../muiComponents/FloatingActionButton';
|
import FloatingActionButton from '../../muiComponents/FloatingActionButton';
|
||||||
|
import { Theme } from '../../design-tokens/theme';
|
||||||
|
|
||||||
export const Details = styled('span')({
|
export const Details = styled('span')({
|
||||||
display: 'flex',
|
display: 'flex',
|
||||||
@ -26,7 +26,7 @@ export const StyledText = styled(Text)({
|
|||||||
textTransform: 'capitalize',
|
textTransform: 'capitalize',
|
||||||
});
|
});
|
||||||
|
|
||||||
export const Fab = styled(FloatingActionButton)({
|
export const Fab = styled(FloatingActionButton)<{ theme?: Theme }>(props => ({
|
||||||
backgroundColor: colors.primary,
|
backgroundColor: props.theme && props.theme.palette.primary.main,
|
||||||
color: colors.white,
|
color: props.theme && props.theme.palette.white,
|
||||||
});
|
}));
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
import { mount } from 'enzyme';
|
|
||||||
|
|
||||||
|
import { mount } from '../../utils/test-enzyme';
|
||||||
import { DetailContext } from '../../pages/Version';
|
import { DetailContext } from '../../pages/Version';
|
||||||
|
|
||||||
import Dist from './Dist';
|
import Dist from './Dist';
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||||
|
|
||||||
exports[`<Dist /> component should render the component in default state 1`] = `"<ul class=\\"MuiList-root MuiList-padding MuiList-subheader\\"><h6 class=\\"MuiTypography-root css-b8upko estxrtg0 MuiTypography-subtitle1\\">Latest Distribution</h6><div class=\\"MuiButtonBase-root MuiListItem-root css-1huthg8 estxrtg1 MuiListItem-gutters MuiListItem-button\\" tabindex=\\"0\\" role=\\"button\\" aria-disabled=\\"false\\"><div class=\\"MuiChip-root css-42zb18 estxrtg2\\"><span class=\\"MuiChip-label\\"><b>file count</b>: 7</span></div><div class=\\"MuiChip-root css-42zb18 estxrtg2\\"><span class=\\"MuiChip-label\\"><b>size</b>: 10.00 Bytes</span></div><span class=\\"MuiTouchRipple-root\\"></span></div></ul>"`;
|
exports[`<Dist /> component should render the component in default state 1`] = `"<ul class=\\"MuiList-root MuiList-padding MuiList-subheader\\"><h6 class=\\"MuiTypography-root css-1na337r-StyledText estxrtg0 MuiTypography-subtitle1\\">Latest Distribution</h6><div class=\\"MuiButtonBase-root MuiListItem-root css-1mms18p-DistListItem estxrtg1 MuiListItem-gutters MuiListItem-button\\" tabindex=\\"0\\" role=\\"button\\" aria-disabled=\\"false\\"><div class=\\"MuiChip-root css-e2le7v-DistChips estxrtg2\\"><span class=\\"MuiChip-label\\"><b>file count</b>: 7</span></div><div class=\\"MuiChip-root css-e2le7v-DistChips estxrtg2\\"><span class=\\"MuiChip-label\\"><b>size</b>: 10.00 Bytes</span></div><span class=\\"MuiTouchRipple-root\\"></span></div></ul>"`;
|
||||||
|
|
||||||
exports[`<Dist /> component should render the component with license as object 1`] = `"<ul class=\\"MuiList-root MuiList-padding MuiList-subheader\\"><h6 class=\\"MuiTypography-root css-b8upko estxrtg0 MuiTypography-subtitle1\\">Latest Distribution</h6><div class=\\"MuiButtonBase-root MuiListItem-root css-1huthg8 estxrtg1 MuiListItem-gutters MuiListItem-button\\" tabindex=\\"0\\" role=\\"button\\" aria-disabled=\\"false\\"><div class=\\"MuiChip-root css-42zb18 estxrtg2\\"><span class=\\"MuiChip-label\\"><b>file count</b>: 7</span></div><div class=\\"MuiChip-root css-42zb18 estxrtg2\\"><span class=\\"MuiChip-label\\"><b>size</b>: 10.00 Bytes</span></div><div class=\\"MuiChip-root css-42zb18 estxrtg2\\"><span class=\\"MuiChip-label\\"><b>license</b>: MIT</span></div><span class=\\"MuiTouchRipple-root\\"></span></div></ul>"`;
|
exports[`<Dist /> component should render the component with license as object 1`] = `"<ul class=\\"MuiList-root MuiList-padding MuiList-subheader\\"><h6 class=\\"MuiTypography-root css-1na337r-StyledText estxrtg0 MuiTypography-subtitle1\\">Latest Distribution</h6><div class=\\"MuiButtonBase-root MuiListItem-root css-1mms18p-DistListItem estxrtg1 MuiListItem-gutters MuiListItem-button\\" tabindex=\\"0\\" role=\\"button\\" aria-disabled=\\"false\\"><div class=\\"MuiChip-root css-e2le7v-DistChips estxrtg2\\"><span class=\\"MuiChip-label\\"><b>file count</b>: 7</span></div><div class=\\"MuiChip-root css-e2le7v-DistChips estxrtg2\\"><span class=\\"MuiChip-label\\"><b>size</b>: 10.00 Bytes</span></div><div class=\\"MuiChip-root css-e2le7v-DistChips estxrtg2\\"><span class=\\"MuiChip-label\\"><b>license</b>: MIT</span></div><span class=\\"MuiTouchRipple-root\\"></span></div></ul>"`;
|
||||||
|
|
||||||
exports[`<Dist /> component should render the component with license as string 1`] = `"<ul class=\\"MuiList-root MuiList-padding MuiList-subheader\\"><h6 class=\\"MuiTypography-root css-b8upko estxrtg0 MuiTypography-subtitle1\\">Latest Distribution</h6><div class=\\"MuiButtonBase-root MuiListItem-root css-1huthg8 estxrtg1 MuiListItem-gutters MuiListItem-button\\" tabindex=\\"0\\" role=\\"button\\" aria-disabled=\\"false\\"><div class=\\"MuiChip-root css-42zb18 estxrtg2\\"><span class=\\"MuiChip-label\\"><b>file count</b>: 7</span></div><div class=\\"MuiChip-root css-42zb18 estxrtg2\\"><span class=\\"MuiChip-label\\"><b>size</b>: 10.00 Bytes</span></div><div class=\\"MuiChip-root css-42zb18 estxrtg2\\"><span class=\\"MuiChip-label\\"><b>license</b>: MIT</span></div><span class=\\"MuiTouchRipple-root\\"></span></div></ul>"`;
|
exports[`<Dist /> component should render the component with license as string 1`] = `"<ul class=\\"MuiList-root MuiList-padding MuiList-subheader\\"><h6 class=\\"MuiTypography-root css-1na337r-StyledText estxrtg0 MuiTypography-subtitle1\\">Latest Distribution</h6><div class=\\"MuiButtonBase-root MuiListItem-root css-1mms18p-DistListItem estxrtg1 MuiListItem-gutters MuiListItem-button\\" tabindex=\\"0\\" role=\\"button\\" aria-disabled=\\"false\\"><div class=\\"MuiChip-root css-e2le7v-DistChips estxrtg2\\"><span class=\\"MuiChip-label\\"><b>file count</b>: 7</span></div><div class=\\"MuiChip-root css-e2le7v-DistChips estxrtg2\\"><span class=\\"MuiChip-label\\"><b>size</b>: 10.00 Bytes</span></div><div class=\\"MuiChip-root css-e2le7v-DistChips estxrtg2\\"><span class=\\"MuiChip-label\\"><b>license</b>: MIT</span></div><span class=\\"MuiTouchRipple-root\\"></span></div></ul>"`;
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
import styled from 'react-emotion';
|
import styled from '@emotion/styled';
|
||||||
|
|
||||||
import colors from '../../utils/styles/colors';
|
import { Theme } from '../../design-tokens/theme';
|
||||||
import { fontWeight } from '../../utils/styles/sizes';
|
import { fontWeight } from '../../utils/styles/sizes';
|
||||||
import ListItem from '../../muiComponents/ListItem';
|
import ListItem from '../../muiComponents/ListItem';
|
||||||
import Text from '../../muiComponents/Text';
|
import Text from '../../muiComponents/Text';
|
||||||
@ -18,11 +18,11 @@ export const DistListItem = styled(ListItem)({
|
|||||||
});
|
});
|
||||||
|
|
||||||
export const DistChips = styled(Chip)({
|
export const DistChips = styled(Chip)({
|
||||||
marginRight: '5px',
|
marginRight: 5,
|
||||||
textTransform: 'capitalize',
|
textTransform: 'capitalize',
|
||||||
});
|
});
|
||||||
|
|
||||||
export const DownloadButton = styled(FloatingActionButton)({
|
export const DownloadButton = styled(FloatingActionButton)<{ theme?: Theme }>(props => ({
|
||||||
backgroundColor: colors.primary,
|
backgroundColor: props.theme && props.theme.palette.primary.main,
|
||||||
color: colors.white,
|
color: props.theme && props.theme.palette.white,
|
||||||
});
|
}));
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
import { mount } from 'enzyme';
|
|
||||||
|
|
||||||
|
import { mount } from '../../utils/test-enzyme';
|
||||||
import { DetailContext } from '../../pages/Version';
|
import { DetailContext } from '../../pages/Version';
|
||||||
import { PackageMetaInterface } from '../../../types/packageMeta';
|
import { PackageMetaInterface } from '../../../types/packageMeta';
|
||||||
|
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||||
|
|
||||||
exports[`<Engines /> component should render the component in default state 1`] = `"<div class=\\"MuiGrid-root MuiGrid-container\\"><div class=\\"MuiGrid-root MuiGrid-item MuiGrid-grid-xs-6\\"><ul class=\\"MuiList-root MuiList-padding MuiList-subheader\\"><h6 class=\\"MuiTypography-root css-b8upko et66bt70 MuiTypography-subtitle1\\">node JS</h6><div class=\\"MuiButtonBase-root MuiListItem-root css-131yq1t et66bt71 MuiListItem-gutters MuiListItem-button\\" tabindex=\\"0\\" role=\\"button\\" aria-disabled=\\"false\\"><div class=\\"MuiAvatar-root MuiAvatar-circle MuiAvatar-colorDefault\\"></div><div class=\\"MuiListItemText-root\\"><span class=\\"MuiTypography-root MuiListItemText-primary MuiTypography-body1\\">>= 0.1.98</span></div><span class=\\"MuiTouchRipple-root\\"></span></div></ul></div><div class=\\"MuiGrid-root MuiGrid-item MuiGrid-grid-xs-6\\"><ul class=\\"MuiList-root MuiList-padding MuiList-subheader\\"><h6 class=\\"MuiTypography-root css-b8upko et66bt70 MuiTypography-subtitle1\\">NPM version</h6><div class=\\"MuiButtonBase-root MuiListItem-root css-131yq1t et66bt71 MuiListItem-gutters MuiListItem-button\\" tabindex=\\"0\\" role=\\"button\\" aria-disabled=\\"false\\"><div class=\\"MuiAvatar-root MuiAvatar-circle MuiAvatar-colorDefault\\"></div><div class=\\"MuiListItemText-root\\"><span class=\\"MuiTypography-root MuiListItemText-primary MuiTypography-body1\\">>3</span></div><span class=\\"MuiTouchRipple-root\\"></span></div></ul></div></div>"`;
|
exports[`<Engines /> component should render the component in default state 1`] = `"<div class=\\"MuiGrid-root MuiGrid-container\\"><div class=\\"MuiGrid-root MuiGrid-item MuiGrid-grid-xs-6\\"><ul class=\\"MuiList-root MuiList-padding MuiList-subheader\\"><h6 class=\\"MuiTypography-root css-1na337r-StyledText et66bt70 MuiTypography-subtitle1\\">node JS</h6><div class=\\"MuiButtonBase-root MuiListItem-root css-18b06t0-EngineListItem et66bt71 MuiListItem-gutters MuiListItem-button\\" tabindex=\\"0\\" role=\\"button\\" aria-disabled=\\"false\\"><div class=\\"MuiAvatar-root MuiAvatar-circle MuiAvatar-colorDefault\\"></div><div class=\\"MuiListItemText-root\\"><span class=\\"MuiTypography-root MuiListItemText-primary MuiTypography-body1\\">>= 0.1.98</span></div><span class=\\"MuiTouchRipple-root\\"></span></div></ul></div><div class=\\"MuiGrid-root MuiGrid-item MuiGrid-grid-xs-6\\"><ul class=\\"MuiList-root MuiList-padding MuiList-subheader\\"><h6 class=\\"MuiTypography-root css-1na337r-StyledText et66bt70 MuiTypography-subtitle1\\">NPM version</h6><div class=\\"MuiButtonBase-root MuiListItem-root css-18b06t0-EngineListItem et66bt71 MuiListItem-gutters MuiListItem-button\\" tabindex=\\"0\\" role=\\"button\\" aria-disabled=\\"false\\"><div class=\\"MuiAvatar-root MuiAvatar-circle MuiAvatar-colorDefault\\"></div><div class=\\"MuiListItemText-root\\"><span class=\\"MuiTypography-root MuiListItemText-primary MuiTypography-body1\\">>3</span></div><span class=\\"MuiTouchRipple-root\\"></span></div></ul></div></div>"`;
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import styled from 'react-emotion';
|
import styled from '@emotion/styled';
|
||||||
|
|
||||||
import { fontWeight } from '../../utils/styles/sizes';
|
import { fontWeight } from '../../utils/styles/sizes';
|
||||||
import ListItem from '../../muiComponents/ListItem';
|
import ListItem from '../../muiComponents/ListItem';
|
||||||
|
@ -1,21 +1,20 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
import { mount, ReactWrapper } from 'enzyme';
|
|
||||||
|
import { render } from '../../utils/test-react-testing-library';
|
||||||
|
|
||||||
import Footer from './Footer';
|
import Footer from './Footer';
|
||||||
|
|
||||||
jest.mock('../../../package.json', () => ({
|
|
||||||
version: '4.0.0-alpha.3',
|
|
||||||
}));
|
|
||||||
|
|
||||||
describe('<Footer /> component', () => {
|
describe('<Footer /> component', () => {
|
||||||
let wrapper: ReactWrapper;
|
beforeAll(() => {
|
||||||
beforeEach(() => {
|
|
||||||
window.VERDACCIO_VERSION = 'v.1.0.0';
|
window.VERDACCIO_VERSION = 'v.1.0.0';
|
||||||
wrapper = mount(<Footer />);
|
});
|
||||||
|
|
||||||
|
afterAll(() => {
|
||||||
delete window.VERDACCIO_VERSION;
|
delete window.VERDACCIO_VERSION;
|
||||||
});
|
});
|
||||||
|
|
||||||
test('should load the initial state of Footer component', () => {
|
test('should load the initial state of Footer component', () => {
|
||||||
expect(wrapper.html()).toMatchSnapshot();
|
const { container } = render(<Footer />);
|
||||||
|
expect(container.firstChild).toMatchSnapshot();
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
@ -1,3 +1,274 @@
|
|||||||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||||
|
|
||||||
exports[`<Footer /> component should load the initial state of Footer component 1`] = `"<div class=\\"css-i0nj2g ezbsl480\\"><div class=\\"css-hzfs9b ezbsl481\\"><div class=\\"css-d8nsp7 ezbsl482\\"> Made with<span class=\\"css-1so4oe0 ezbsl487\\">โฅ</span>on<span class=\\"css-1ie354y ezbsl484\\"><svg class=\\"ezbsl485 css-151fgib ek145dl0\\"><title>Earth</title><use xlink:href=\\"[object Object]#earth\\"></use></svg><span class=\\"css-8631ip ezbsl486\\"><svg class=\\"ezbsl488 css-1ah96gu ek145dl0\\"><title>Spain</title><use xlink:href=\\"[object Object]#spain\\"></use></svg><svg class=\\"ezbsl488 css-1ah96gu ek145dl0\\"><title>Nicaragua</title><use xlink:href=\\"[object Object]#nicaragua\\"></use></svg><svg class=\\"ezbsl488 css-1ah96gu ek145dl0\\"><title>India</title><use xlink:href=\\"[object Object]#india\\"></use></svg><svg class=\\"ezbsl488 css-1ah96gu ek145dl0\\"><title>Brazil</title><use xlink:href=\\"[object Object]#brazil\\"></use></svg><svg class=\\"ezbsl488 css-1ah96gu ek145dl0\\"><title>China</title><use xlink:href=\\"[object Object]#china\\"></use></svg><svg class=\\"ezbsl488 css-1ah96gu ek145dl0\\"><title>Austria</title><use xlink:href=\\"[object Object]#austria\\"></use></svg></span></span></div><div class=\\"css-1wbzdyy ezbsl483\\">Powered by<span class=\\"ezbsl488 css-ommwhu ek145dl1\\" name=\\"verdaccio\\" title=\\"Verdaccio\\"><img alt=\\"Verdaccio\\" src=\\"[object Object]\\" class=\\"css-1ncdhax ek145dl2\\"></span>/ v.1.0.0</div></div></div>"`;
|
exports[`<Footer /> component should load the initial state of Footer component 1`] = `
|
||||||
|
.emotion-38 {
|
||||||
|
background: #f9f9f9;
|
||||||
|
border-top: 1px solid #e3e3e3;
|
||||||
|
color: #999999;
|
||||||
|
font-size: 14px;
|
||||||
|
padding: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emotion-36 {
|
||||||
|
display: -webkit-box;
|
||||||
|
display: -webkit-flex;
|
||||||
|
display: -ms-flexbox;
|
||||||
|
display: flex;
|
||||||
|
-webkit-align-items: center;
|
||||||
|
-webkit-box-align: center;
|
||||||
|
-ms-flex-align: center;
|
||||||
|
align-items: center;
|
||||||
|
-webkit-box-pack: end;
|
||||||
|
-webkit-justify-content: flex-end;
|
||||||
|
-ms-flex-pack: end;
|
||||||
|
justify-content: flex-end;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width:768px) {
|
||||||
|
.emotion-36 {
|
||||||
|
min-width: 400px;
|
||||||
|
max-width: 800px;
|
||||||
|
margin: auto;
|
||||||
|
-webkit-box-pack: justify;
|
||||||
|
-webkit-justify-content: space-between;
|
||||||
|
-ms-flex-pack: justify;
|
||||||
|
justify-content: space-between;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width:1024px) {
|
||||||
|
.emotion-36 {
|
||||||
|
max-width: 1240px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.emotion-27 {
|
||||||
|
-webkit-align-items: center;
|
||||||
|
-webkit-box-align: center;
|
||||||
|
-ms-flex-align: center;
|
||||||
|
align-items: center;
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width:768px) {
|
||||||
|
.emotion-27 {
|
||||||
|
display: -webkit-box;
|
||||||
|
display: -webkit-flex;
|
||||||
|
display: -ms-flexbox;
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.emotion-0 {
|
||||||
|
color: #e25555;
|
||||||
|
padding: 0 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emotion-25 {
|
||||||
|
position: relative;
|
||||||
|
height: 18px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emotion-25:hover .emotion-24 {
|
||||||
|
visibility: visible;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emotion-3 {
|
||||||
|
box-sizing: initial;
|
||||||
|
display: inline-block;
|
||||||
|
cursor: default;
|
||||||
|
width: 18px;
|
||||||
|
height: 18px;
|
||||||
|
padding: 0 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emotion-23 {
|
||||||
|
position: absolute;
|
||||||
|
background: #d3dddd;
|
||||||
|
padding: 1px 4px;
|
||||||
|
border-radius: 3px;
|
||||||
|
height: 20px;
|
||||||
|
display: -webkit-inline-box;
|
||||||
|
display: -webkit-inline-flex;
|
||||||
|
display: -ms-inline-flexbox;
|
||||||
|
display: inline-flex;
|
||||||
|
-webkit-align-items: center;
|
||||||
|
-webkit-box-align: center;
|
||||||
|
-ms-flex-align: center;
|
||||||
|
align-items: center;
|
||||||
|
visibility: hidden;
|
||||||
|
top: -2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emotion-23:before {
|
||||||
|
content: '';
|
||||||
|
position: absolute;
|
||||||
|
top: 29%;
|
||||||
|
left: -4px;
|
||||||
|
margin-left: -5px;
|
||||||
|
border: 5px solid;
|
||||||
|
border-color: #d3dddd transparent transparent transparent;
|
||||||
|
-webkit-transform: rotate(90deg);
|
||||||
|
-ms-transform: rotate(90deg);
|
||||||
|
transform: rotate(90deg);
|
||||||
|
}
|
||||||
|
|
||||||
|
.emotion-6 {
|
||||||
|
box-sizing: initial;
|
||||||
|
display: inline-block;
|
||||||
|
cursor: default;
|
||||||
|
width: 18px;
|
||||||
|
height: 18px;
|
||||||
|
padding: 0 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emotion-34 {
|
||||||
|
-webkit-align-items: center;
|
||||||
|
-webkit-box-align: center;
|
||||||
|
-ms-flex-align: center;
|
||||||
|
align-items: center;
|
||||||
|
display: none;
|
||||||
|
display: -webkit-box;
|
||||||
|
display: -webkit-flex;
|
||||||
|
display: -ms-flexbox;
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width:768px) {
|
||||||
|
.emotion-34 {
|
||||||
|
display: -webkit-box;
|
||||||
|
display: -webkit-flex;
|
||||||
|
display: -ms-flexbox;
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.emotion-32 {
|
||||||
|
box-sizing: initial;
|
||||||
|
display: inline-block;
|
||||||
|
cursor: pointer;
|
||||||
|
width: 18px;
|
||||||
|
height: 18px;
|
||||||
|
padding: 0 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emotion-29 {
|
||||||
|
width: 100%;
|
||||||
|
height: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
<div
|
||||||
|
class="emotion-38 emotion-39"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
class="emotion-36 emotion-37"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
class="emotion-27 emotion-28"
|
||||||
|
>
|
||||||
|
Made with
|
||||||
|
<span
|
||||||
|
class="emotion-0 emotion-1"
|
||||||
|
>
|
||||||
|
โฅ
|
||||||
|
</span>
|
||||||
|
on
|
||||||
|
<span
|
||||||
|
class="emotion-25 emotion-26"
|
||||||
|
>
|
||||||
|
<svg
|
||||||
|
class="emotion-2 emotion-3 emotion-4"
|
||||||
|
>
|
||||||
|
<title>
|
||||||
|
Earth
|
||||||
|
</title>
|
||||||
|
<use
|
||||||
|
xlink:href="[object Object]#earth"
|
||||||
|
/>
|
||||||
|
</svg>
|
||||||
|
<span
|
||||||
|
class="emotion-23 emotion-24"
|
||||||
|
>
|
||||||
|
<svg
|
||||||
|
class="emotion-5 emotion-6 emotion-4"
|
||||||
|
>
|
||||||
|
<title>
|
||||||
|
Spain
|
||||||
|
</title>
|
||||||
|
<use
|
||||||
|
xlink:href="[object Object]#spain"
|
||||||
|
/>
|
||||||
|
</svg>
|
||||||
|
<svg
|
||||||
|
class="emotion-5 emotion-6 emotion-4"
|
||||||
|
>
|
||||||
|
<title>
|
||||||
|
Nicaragua
|
||||||
|
</title>
|
||||||
|
<use
|
||||||
|
xlink:href="[object Object]#nicaragua"
|
||||||
|
/>
|
||||||
|
</svg>
|
||||||
|
<svg
|
||||||
|
class="emotion-5 emotion-6 emotion-4"
|
||||||
|
>
|
||||||
|
<title>
|
||||||
|
India
|
||||||
|
</title>
|
||||||
|
<use
|
||||||
|
xlink:href="[object Object]#india"
|
||||||
|
/>
|
||||||
|
</svg>
|
||||||
|
<svg
|
||||||
|
class="emotion-5 emotion-6 emotion-4"
|
||||||
|
>
|
||||||
|
<title>
|
||||||
|
Brazil
|
||||||
|
</title>
|
||||||
|
<use
|
||||||
|
xlink:href="[object Object]#brazil"
|
||||||
|
/>
|
||||||
|
</svg>
|
||||||
|
<svg
|
||||||
|
class="emotion-5 emotion-6 emotion-4"
|
||||||
|
>
|
||||||
|
<title>
|
||||||
|
China
|
||||||
|
</title>
|
||||||
|
<use
|
||||||
|
xlink:href="[object Object]#china"
|
||||||
|
/>
|
||||||
|
</svg>
|
||||||
|
<svg
|
||||||
|
class="emotion-5 emotion-6 emotion-4"
|
||||||
|
>
|
||||||
|
<title>
|
||||||
|
Austria
|
||||||
|
</title>
|
||||||
|
<use
|
||||||
|
xlink:href="[object Object]#austria"
|
||||||
|
/>
|
||||||
|
</svg>
|
||||||
|
</span>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
class="emotion-34 emotion-35"
|
||||||
|
>
|
||||||
|
Powered by
|
||||||
|
<span
|
||||||
|
class="emotion-5 emotion-32 emotion-33"
|
||||||
|
title="Verdaccio"
|
||||||
|
>
|
||||||
|
<img
|
||||||
|
alt="Verdaccio"
|
||||||
|
class="emotion-29 emotion-30"
|
||||||
|
src="[object Object]"
|
||||||
|
/>
|
||||||
|
</span>
|
||||||
|
/ v.1.0.0
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
`;
|
||||||
|
@ -1,110 +1,88 @@
|
|||||||
import styled, { css } from 'react-emotion';
|
import styled from '@emotion/styled';
|
||||||
|
|
||||||
import mq from '../../utils/styles/media';
|
import { breakpoints } from '../../utils/styles/media';
|
||||||
import Icon from '../Icon/Icon';
|
import Icon from '../Icon/Icon';
|
||||||
import colors from '../../utils/styles/colors';
|
import { Theme } from '../../design-tokens/theme';
|
||||||
|
|
||||||
export const Wrapper = styled('div')({
|
export const Wrapper = styled('div')<{ theme?: Theme }>(props => ({
|
||||||
'&&': {
|
background: props.theme && props.theme.palette.snow,
|
||||||
background: colors.snow,
|
borderTop: `1px solid ${props.theme && props.theme.palette.greyGainsboro}`,
|
||||||
borderTop: `1px solid ${colors.greyGainsboro}`,
|
color: props.theme && props.theme.palette.nobel01,
|
||||||
color: colors.nobel01,
|
|
||||||
fontSize: '14px',
|
fontSize: '14px',
|
||||||
padding: '20px',
|
padding: '20px',
|
||||||
|
}));
|
||||||
|
|
||||||
|
export const Inner = styled('div')({
|
||||||
|
display: 'flex',
|
||||||
|
alignItems: 'center',
|
||||||
|
justifyContent: 'flex-end',
|
||||||
|
width: '100%',
|
||||||
|
[`@media (min-width: ${breakpoints.medium}px)`]: {
|
||||||
|
minWidth: 400,
|
||||||
|
maxWidth: 800,
|
||||||
|
margin: 'auto',
|
||||||
|
justifyContent: 'space-between',
|
||||||
|
},
|
||||||
|
[`@media (min-width: ${breakpoints.large}px)`]: {
|
||||||
|
maxWidth: 1240,
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
export const Inner = styled('div')`
|
export const Left = styled('div')({
|
||||||
&& {
|
alignItems: 'center',
|
||||||
display: flex;
|
display: 'none',
|
||||||
align-items: center;
|
[`@media (min-width: ${breakpoints.medium}px)`]: {
|
||||||
justify-content: flex-end;
|
|
||||||
width: 100%;
|
|
||||||
${() => {
|
|
||||||
return mq.medium(css`
|
|
||||||
min-width: 400px;
|
|
||||||
max-width: 800px;
|
|
||||||
margin: auto;
|
|
||||||
justify-content: space-between;
|
|
||||||
`);
|
|
||||||
}};
|
|
||||||
${() => {
|
|
||||||
return mq.large(css`
|
|
||||||
max-width: 1240px;
|
|
||||||
`);
|
|
||||||
}};
|
|
||||||
}
|
|
||||||
`;
|
|
||||||
|
|
||||||
export const Left = styled('div')`
|
|
||||||
&& {
|
|
||||||
align-items: center;
|
|
||||||
display: none;
|
|
||||||
${() => {
|
|
||||||
return mq.medium(css`
|
|
||||||
display: flex;
|
|
||||||
`);
|
|
||||||
}};
|
|
||||||
}
|
|
||||||
`;
|
|
||||||
|
|
||||||
export const Right = styled(Left)({
|
|
||||||
'&&': {
|
|
||||||
display: 'flex',
|
display: 'flex',
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
export const ToolTip = styled('span')({
|
export const Right = styled(Left)({
|
||||||
'&&': {
|
display: 'flex',
|
||||||
position: 'relative',
|
|
||||||
height: '18px',
|
|
||||||
},
|
|
||||||
});
|
});
|
||||||
|
|
||||||
export const Earth = styled(Icon)({
|
export const Earth = styled(Icon)({
|
||||||
'&&': {
|
|
||||||
padding: '0 10px',
|
padding: '0 10px',
|
||||||
|
});
|
||||||
|
|
||||||
|
export const Flags = styled('span')<{ theme?: Theme }>(props => ({
|
||||||
|
position: 'absolute',
|
||||||
|
background: props.theme && props.theme.palette.greyAthens,
|
||||||
|
padding: '1px 4px',
|
||||||
|
borderRadius: 3,
|
||||||
|
height: 20,
|
||||||
|
display: 'inline-flex',
|
||||||
|
alignItems: 'center',
|
||||||
|
visibility: 'hidden',
|
||||||
|
top: -2,
|
||||||
|
':before': {
|
||||||
|
content: "''",
|
||||||
|
position: 'absolute',
|
||||||
|
top: '29%',
|
||||||
|
left: -4,
|
||||||
|
marginLeft: -5,
|
||||||
|
border: '5px solid',
|
||||||
|
borderColor: `${props.theme && props.theme.palette.greyAthens} transparent transparent transparent`,
|
||||||
|
transform: 'rotate(90deg)',
|
||||||
|
},
|
||||||
|
}));
|
||||||
|
|
||||||
|
export const ToolTip = styled('span')({
|
||||||
|
position: 'relative',
|
||||||
|
height: '18px',
|
||||||
|
':hover': {
|
||||||
|
[`${Flags}`]: {
|
||||||
|
visibility: 'visible',
|
||||||
|
},
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
export const Flags = styled('span')`
|
export const Love = styled('span')<{ theme?: Theme }>(props => ({
|
||||||
&& {
|
color: props.theme && props.theme.palette.love,
|
||||||
position: absolute;
|
|
||||||
background: ${colors.greyAthens};
|
|
||||||
padding: 1px 4px;
|
|
||||||
border-radius: 3px;
|
|
||||||
height: 20px;
|
|
||||||
display: inline-flex;
|
|
||||||
align-items: center;
|
|
||||||
visibility: hidden;
|
|
||||||
top: -2px;
|
|
||||||
:before {
|
|
||||||
content: '';
|
|
||||||
position: absolute;
|
|
||||||
top: 29%;
|
|
||||||
left: -4px;
|
|
||||||
margin-left: -5px;
|
|
||||||
border: 5px solid;
|
|
||||||
border-color: ${colors.greyAthens} transparent transparent transparent;
|
|
||||||
transform: rotate(90deg);
|
|
||||||
}
|
|
||||||
${/* sc-selector */ ToolTip}:hover & {
|
|
||||||
visibility: visible;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
`;
|
|
||||||
|
|
||||||
export const Love = styled('span')({
|
|
||||||
'&&': {
|
|
||||||
color: colors.love,
|
|
||||||
padding: '0 5px',
|
padding: '0 5px',
|
||||||
},
|
}));
|
||||||
});
|
|
||||||
|
|
||||||
export const Flag = styled(Icon)({
|
export const Flag = styled(Icon)({
|
||||||
'&&': {
|
|
||||||
padding: '0 5px',
|
padding: '0 5px',
|
||||||
},
|
|
||||||
});
|
});
|
||||||
|
|
||||||
export const Logo = Flag;
|
export const Logo = Flag;
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
import { BrowserRouter as Router } from 'react-router-dom';
|
import { BrowserRouter as Router } from 'react-router-dom';
|
||||||
import { render, fireEvent, waitForElementToBeRemoved, waitForElement } from '@testing-library/react';
|
|
||||||
|
import { render, fireEvent, waitForElementToBeRemoved, waitForElement } from '../../utils/test-react-testing-library';
|
||||||
|
|
||||||
import Header from './Header';
|
import Header from './Header';
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
import { css } from 'emotion';
|
import styled from '@emotion/styled';
|
||||||
import { Link } from 'react-router-dom';
|
import { Link } from 'react-router-dom';
|
||||||
|
|
||||||
import Search from '../Search/';
|
import Search from '../Search/';
|
||||||
@ -12,15 +12,15 @@ interface Props {
|
|||||||
logo?: string;
|
logo?: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const StyledLink = styled(Link)({
|
||||||
|
marginRight: '1em',
|
||||||
|
});
|
||||||
|
|
||||||
const HeaderLeft: React.FC<Props> = ({ withoutSearch = false, logo }) => (
|
const HeaderLeft: React.FC<Props> = ({ withoutSearch = false, logo }) => (
|
||||||
<LeftSide>
|
<LeftSide>
|
||||||
<Link
|
<StyledLink to={'/'}>
|
||||||
className={css`
|
|
||||||
margin-right: 1em;
|
|
||||||
`}
|
|
||||||
to={'/'}>
|
|
||||||
<HeaderLogo logo={logo} />
|
<HeaderLogo logo={logo} />
|
||||||
</Link>
|
</StyledLink>
|
||||||
{!withoutSearch && (
|
{!withoutSearch && (
|
||||||
<SearchWrapper>
|
<SearchWrapper>
|
||||||
<Search />
|
<Search />
|
||||||
|
@ -1,28 +1,166 @@
|
|||||||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||||
|
|
||||||
exports[`<Header /> component with logged in state should load the component in logged in state 1`] = `
|
exports[`<Header /> component with logged in state should load the component in logged in state 1`] = `
|
||||||
|
.emotion-24 {
|
||||||
|
background-color: #4b5e40;
|
||||||
|
min-height: 60px;
|
||||||
|
display: -webkit-box;
|
||||||
|
display: -webkit-flex;
|
||||||
|
display: -ms-flexbox;
|
||||||
|
display: flex;
|
||||||
|
-webkit-box-pack: center;
|
||||||
|
-webkit-justify-content: center;
|
||||||
|
-ms-flex-pack: center;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width:768px) {
|
||||||
|
.emotion-24 .emotion-13 {
|
||||||
|
display: -webkit-box;
|
||||||
|
display: -webkit-flex;
|
||||||
|
display: -ms-flexbox;
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emotion-24 .emotion-17 {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emotion-24 .e1jf5lit4 {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width:1024px) {
|
||||||
|
.emotion-24 .emotion-23 {
|
||||||
|
padding: 0 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width:1275px) {
|
||||||
|
.emotion-24 .emotion-23 {
|
||||||
|
max-width: 1240px;
|
||||||
|
width: 100%;
|
||||||
|
margin: 0 auto;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.emotion-22 {
|
||||||
|
-webkit-box-pack: justify;
|
||||||
|
-webkit-justify-content: space-between;
|
||||||
|
-ms-flex-pack: justify;
|
||||||
|
justify-content: space-between;
|
||||||
|
-webkit-align-items: center;
|
||||||
|
-webkit-box-align: center;
|
||||||
|
-ms-flex-align: center;
|
||||||
|
align-items: center;
|
||||||
|
padding: 0 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emotion-14 {
|
||||||
|
display: -webkit-box;
|
||||||
|
display: -webkit-flex;
|
||||||
|
display: -ms-flexbox;
|
||||||
|
display: flex;
|
||||||
|
padding: 0;
|
||||||
|
-webkit-flex: 1;
|
||||||
|
-ms-flex: 1;
|
||||||
|
flex: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emotion-2 {
|
||||||
|
margin-right: 1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emotion-0 {
|
||||||
|
display: inline-block;
|
||||||
|
vertical-align: middle;
|
||||||
|
box-sizing: border-box;
|
||||||
|
background-position: center;
|
||||||
|
background-size: contain;
|
||||||
|
background-image: url([object Object]);
|
||||||
|
background-repeat: no-repeat;
|
||||||
|
width: 40px;
|
||||||
|
height: 40px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emotion-12 {
|
||||||
|
display: none;
|
||||||
|
max-width: 393px;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emotion-10 {
|
||||||
|
width: 100%;
|
||||||
|
height: 32px;
|
||||||
|
position: relative;
|
||||||
|
z-index: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emotion-6 .MuiInputBase-root:before {
|
||||||
|
content: '';
|
||||||
|
border: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emotion-6 .MuiInputBase-root:after {
|
||||||
|
border-color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emotion-6 .MuiInputBase-root:hover:before {
|
||||||
|
content: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emotion-6 .MuiInputBase-input {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emotion-4 {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emotion-8 {
|
||||||
|
max-height: 500px;
|
||||||
|
overflow-y: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emotion-20 {
|
||||||
|
display: -webkit-box;
|
||||||
|
display: -webkit-flex;
|
||||||
|
display: -ms-flexbox;
|
||||||
|
display: flex;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emotion-16 {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emotion-18 {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
<header
|
<header
|
||||||
class="MuiPaper-root MuiPaper-elevation4 MuiAppBar-root MuiAppBar-positionStatic css-rfunvc emotion-9 MuiAppBar-colorPrimary"
|
class="MuiPaper-root MuiPaper-elevation4 MuiAppBar-root MuiAppBar-positionStatic emotion-24 emotion-25 MuiAppBar-colorPrimary"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
class="MuiToolbar-root MuiToolbar-regular css-1bjere7 emotion-8 MuiToolbar-gutters"
|
class="MuiToolbar-root MuiToolbar-regular emotion-22 emotion-23 MuiToolbar-gutters"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
class="MuiToolbar-root MuiToolbar-regular css-i5xjw9 emotion-4 MuiToolbar-gutters"
|
class="MuiToolbar-root MuiToolbar-regular emotion-14 emotion-15 MuiToolbar-gutters"
|
||||||
>
|
>
|
||||||
<a
|
<a
|
||||||
class="css-1dk30lc"
|
class="emotion-2 emotion-3"
|
||||||
href="/"
|
href="/"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
class="css-1sifsqk emotion-0"
|
class="emotion-0 emotion-1"
|
||||||
/>
|
/>
|
||||||
</a>
|
</a>
|
||||||
<div
|
<div
|
||||||
class="css-12prohx emotion-3"
|
class="emotion-12 emotion-13"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
class="css-1crzyyo emotion-2"
|
class="emotion-10 emotion-11"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
aria-expanded="false"
|
aria-expanded="false"
|
||||||
@ -34,13 +172,13 @@ exports[`<Header /> component with logged in state should load the component in
|
|||||||
<div
|
<div
|
||||||
aria-autocomplete="list"
|
aria-autocomplete="list"
|
||||||
aria-controls="react-autowhatever-1"
|
aria-controls="react-autowhatever-1"
|
||||||
class="MuiFormControl-root MuiTextField-root react-autosuggest__input MuiFormControl-fullWidth"
|
class="MuiFormControl-root MuiTextField-root react-autosuggest__input emotion-6 emotion-7 MuiFormControl-fullWidth"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
class="MuiInputBase-root MuiInput-root css-n9ojyg MuiInput-underline MuiInputBase-fullWidth MuiInput-fullWidth MuiInputBase-formControl MuiInput-formControl MuiInputBase-adornedStart"
|
class="MuiInputBase-root MuiInput-root MuiInput-underline MuiInputBase-fullWidth MuiInput-fullWidth MuiInputBase-formControl MuiInput-formControl MuiInputBase-adornedStart"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
class="MuiInputAdornment-root css-fvu7gn MuiInputAdornment-positionStart"
|
class="MuiInputAdornment-root emotion-4 emotion-5 MuiInputAdornment-positionStart"
|
||||||
>
|
>
|
||||||
<svg
|
<svg
|
||||||
aria-hidden="true"
|
aria-hidden="true"
|
||||||
@ -57,7 +195,7 @@ exports[`<Header /> component with logged in state should load the component in
|
|||||||
<input
|
<input
|
||||||
aria-invalid="false"
|
aria-invalid="false"
|
||||||
autocomplete="off"
|
autocomplete="off"
|
||||||
class="MuiInputBase-input MuiInput-input css-hodoyq MuiInputBase-inputAdornedStart"
|
class="MuiInputBase-input MuiInput-input MuiInputBase-inputAdornedStart"
|
||||||
placeholder="Search Packages"
|
placeholder="Search Packages"
|
||||||
type="text"
|
type="text"
|
||||||
value=""
|
value=""
|
||||||
@ -65,7 +203,7 @@ exports[`<Header /> component with logged in state should load the component in
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div
|
<div
|
||||||
class="MuiPaper-root MuiPaper-elevation1 react-autosuggest__suggestions-container css-cfo6a emotion-1"
|
class="MuiPaper-root MuiPaper-elevation1 react-autosuggest__suggestions-container emotion-8 emotion-9"
|
||||||
id="react-autowhatever-1"
|
id="react-autowhatever-1"
|
||||||
role="listbox"
|
role="listbox"
|
||||||
/>
|
/>
|
||||||
@ -74,10 +212,10 @@ exports[`<Header /> component with logged in state should load the component in
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div
|
<div
|
||||||
class="MuiToolbar-root MuiToolbar-regular css-1qii1b7 emotion-7 MuiToolbar-gutters"
|
class="MuiToolbar-root MuiToolbar-regular emotion-20 emotion-21 MuiToolbar-gutters"
|
||||||
>
|
>
|
||||||
<button
|
<button
|
||||||
class="MuiButtonBase-root MuiIconButton-root css-13o7eu2 emotion-5 MuiIconButton-colorInherit"
|
class="MuiButtonBase-root MuiIconButton-root emotion-16 emotion-17 MuiIconButton-colorInherit"
|
||||||
tabindex="0"
|
tabindex="0"
|
||||||
type="button"
|
type="button"
|
||||||
>
|
>
|
||||||
@ -101,7 +239,7 @@ exports[`<Header /> component with logged in state should load the component in
|
|||||||
/>
|
/>
|
||||||
</button>
|
</button>
|
||||||
<a
|
<a
|
||||||
class="css-kbn7if emotion-6"
|
class="emotion-18 emotion-19"
|
||||||
data-testid="header--tooltip-documentation"
|
data-testid="header--tooltip-documentation"
|
||||||
href="https://verdaccio.org/docs/en/installation"
|
href="https://verdaccio.org/docs/en/installation"
|
||||||
rel="noopener noreferrer"
|
rel="noopener noreferrer"
|
||||||
@ -194,28 +332,166 @@ exports[`<Header /> component with logged in state should load the component in
|
|||||||
`;
|
`;
|
||||||
|
|
||||||
exports[`<Header /> component with logged in state should load the component in logged out state 1`] = `
|
exports[`<Header /> component with logged in state should load the component in logged out state 1`] = `
|
||||||
|
.emotion-24 {
|
||||||
|
background-color: #4b5e40;
|
||||||
|
min-height: 60px;
|
||||||
|
display: -webkit-box;
|
||||||
|
display: -webkit-flex;
|
||||||
|
display: -ms-flexbox;
|
||||||
|
display: flex;
|
||||||
|
-webkit-box-pack: center;
|
||||||
|
-webkit-justify-content: center;
|
||||||
|
-ms-flex-pack: center;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width:768px) {
|
||||||
|
.emotion-24 .emotion-13 {
|
||||||
|
display: -webkit-box;
|
||||||
|
display: -webkit-flex;
|
||||||
|
display: -ms-flexbox;
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emotion-24 .emotion-17 {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emotion-24 .e1jf5lit4 {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width:1024px) {
|
||||||
|
.emotion-24 .emotion-23 {
|
||||||
|
padding: 0 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width:1275px) {
|
||||||
|
.emotion-24 .emotion-23 {
|
||||||
|
max-width: 1240px;
|
||||||
|
width: 100%;
|
||||||
|
margin: 0 auto;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.emotion-22 {
|
||||||
|
-webkit-box-pack: justify;
|
||||||
|
-webkit-justify-content: space-between;
|
||||||
|
-ms-flex-pack: justify;
|
||||||
|
justify-content: space-between;
|
||||||
|
-webkit-align-items: center;
|
||||||
|
-webkit-box-align: center;
|
||||||
|
-ms-flex-align: center;
|
||||||
|
align-items: center;
|
||||||
|
padding: 0 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emotion-14 {
|
||||||
|
display: -webkit-box;
|
||||||
|
display: -webkit-flex;
|
||||||
|
display: -ms-flexbox;
|
||||||
|
display: flex;
|
||||||
|
padding: 0;
|
||||||
|
-webkit-flex: 1;
|
||||||
|
-ms-flex: 1;
|
||||||
|
flex: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emotion-2 {
|
||||||
|
margin-right: 1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emotion-0 {
|
||||||
|
display: inline-block;
|
||||||
|
vertical-align: middle;
|
||||||
|
box-sizing: border-box;
|
||||||
|
background-position: center;
|
||||||
|
background-size: contain;
|
||||||
|
background-image: url([object Object]);
|
||||||
|
background-repeat: no-repeat;
|
||||||
|
width: 40px;
|
||||||
|
height: 40px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emotion-12 {
|
||||||
|
display: none;
|
||||||
|
max-width: 393px;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emotion-10 {
|
||||||
|
width: 100%;
|
||||||
|
height: 32px;
|
||||||
|
position: relative;
|
||||||
|
z-index: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emotion-6 .MuiInputBase-root:before {
|
||||||
|
content: '';
|
||||||
|
border: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emotion-6 .MuiInputBase-root:after {
|
||||||
|
border-color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emotion-6 .MuiInputBase-root:hover:before {
|
||||||
|
content: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emotion-6 .MuiInputBase-input {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emotion-4 {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emotion-8 {
|
||||||
|
max-height: 500px;
|
||||||
|
overflow-y: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emotion-20 {
|
||||||
|
display: -webkit-box;
|
||||||
|
display: -webkit-flex;
|
||||||
|
display: -ms-flexbox;
|
||||||
|
display: flex;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emotion-16 {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emotion-18 {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
<header
|
<header
|
||||||
class="MuiPaper-root MuiPaper-elevation4 MuiAppBar-root MuiAppBar-positionStatic css-rfunvc emotion-9 MuiAppBar-colorPrimary"
|
class="MuiPaper-root MuiPaper-elevation4 MuiAppBar-root MuiAppBar-positionStatic emotion-24 emotion-25 MuiAppBar-colorPrimary"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
class="MuiToolbar-root MuiToolbar-regular css-1bjere7 emotion-8 MuiToolbar-gutters"
|
class="MuiToolbar-root MuiToolbar-regular emotion-22 emotion-23 MuiToolbar-gutters"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
class="MuiToolbar-root MuiToolbar-regular css-i5xjw9 emotion-4 MuiToolbar-gutters"
|
class="MuiToolbar-root MuiToolbar-regular emotion-14 emotion-15 MuiToolbar-gutters"
|
||||||
>
|
>
|
||||||
<a
|
<a
|
||||||
class="css-1dk30lc"
|
class="emotion-2 emotion-3"
|
||||||
href="/"
|
href="/"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
class="css-1sifsqk emotion-0"
|
class="emotion-0 emotion-1"
|
||||||
/>
|
/>
|
||||||
</a>
|
</a>
|
||||||
<div
|
<div
|
||||||
class="css-12prohx emotion-3"
|
class="emotion-12 emotion-13"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
class="css-1crzyyo emotion-2"
|
class="emotion-10 emotion-11"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
aria-expanded="false"
|
aria-expanded="false"
|
||||||
@ -227,13 +503,13 @@ exports[`<Header /> component with logged in state should load the component in
|
|||||||
<div
|
<div
|
||||||
aria-autocomplete="list"
|
aria-autocomplete="list"
|
||||||
aria-controls="react-autowhatever-1"
|
aria-controls="react-autowhatever-1"
|
||||||
class="MuiFormControl-root MuiTextField-root react-autosuggest__input MuiFormControl-fullWidth"
|
class="MuiFormControl-root MuiTextField-root react-autosuggest__input emotion-6 emotion-7 MuiFormControl-fullWidth"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
class="MuiInputBase-root MuiInput-root css-n9ojyg MuiInput-underline MuiInputBase-fullWidth MuiInput-fullWidth MuiInputBase-formControl MuiInput-formControl MuiInputBase-adornedStart"
|
class="MuiInputBase-root MuiInput-root MuiInput-underline MuiInputBase-fullWidth MuiInput-fullWidth MuiInputBase-formControl MuiInput-formControl MuiInputBase-adornedStart"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
class="MuiInputAdornment-root css-fvu7gn MuiInputAdornment-positionStart"
|
class="MuiInputAdornment-root emotion-4 emotion-5 MuiInputAdornment-positionStart"
|
||||||
>
|
>
|
||||||
<svg
|
<svg
|
||||||
aria-hidden="true"
|
aria-hidden="true"
|
||||||
@ -250,7 +526,7 @@ exports[`<Header /> component with logged in state should load the component in
|
|||||||
<input
|
<input
|
||||||
aria-invalid="false"
|
aria-invalid="false"
|
||||||
autocomplete="off"
|
autocomplete="off"
|
||||||
class="MuiInputBase-input MuiInput-input css-hodoyq MuiInputBase-inputAdornedStart"
|
class="MuiInputBase-input MuiInput-input MuiInputBase-inputAdornedStart"
|
||||||
placeholder="Search Packages"
|
placeholder="Search Packages"
|
||||||
type="text"
|
type="text"
|
||||||
value=""
|
value=""
|
||||||
@ -258,7 +534,7 @@ exports[`<Header /> component with logged in state should load the component in
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div
|
<div
|
||||||
class="MuiPaper-root MuiPaper-elevation1 react-autosuggest__suggestions-container css-cfo6a emotion-1"
|
class="MuiPaper-root MuiPaper-elevation1 react-autosuggest__suggestions-container emotion-8 emotion-9"
|
||||||
id="react-autowhatever-1"
|
id="react-autowhatever-1"
|
||||||
role="listbox"
|
role="listbox"
|
||||||
/>
|
/>
|
||||||
@ -267,10 +543,10 @@ exports[`<Header /> component with logged in state should load the component in
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div
|
<div
|
||||||
class="MuiToolbar-root MuiToolbar-regular css-1qii1b7 emotion-7 MuiToolbar-gutters"
|
class="MuiToolbar-root MuiToolbar-regular emotion-20 emotion-21 MuiToolbar-gutters"
|
||||||
>
|
>
|
||||||
<button
|
<button
|
||||||
class="MuiButtonBase-root MuiIconButton-root css-13o7eu2 emotion-5 MuiIconButton-colorInherit"
|
class="MuiButtonBase-root MuiIconButton-root emotion-16 emotion-17 MuiIconButton-colorInherit"
|
||||||
tabindex="0"
|
tabindex="0"
|
||||||
type="button"
|
type="button"
|
||||||
>
|
>
|
||||||
@ -294,7 +570,7 @@ exports[`<Header /> component with logged in state should load the component in
|
|||||||
/>
|
/>
|
||||||
</button>
|
</button>
|
||||||
<a
|
<a
|
||||||
class="css-kbn7if emotion-6"
|
class="emotion-18 emotion-19"
|
||||||
data-testid="header--tooltip-documentation"
|
data-testid="header--tooltip-documentation"
|
||||||
href="https://verdaccio.org/docs/en/installation"
|
href="https://verdaccio.org/docs/en/installation"
|
||||||
rel="noopener noreferrer"
|
rel="noopener noreferrer"
|
||||||
|
@ -1,7 +1,8 @@
|
|||||||
import styled, { css } from 'react-emotion';
|
import styled from '@emotion/styled';
|
||||||
|
import { css } from '@emotion/core';
|
||||||
|
|
||||||
import colors from '../../utils/styles/colors';
|
import { Theme } from '../../design-tokens/theme';
|
||||||
import mq from '../../utils/styles/media';
|
import { breakpoints } from '../../utils/styles/media';
|
||||||
import IconButton from '../../muiComponents/IconButton';
|
import IconButton from '../../muiComponents/IconButton';
|
||||||
import AppBar from '../../muiComponents/AppBar';
|
import AppBar from '../../muiComponents/AppBar';
|
||||||
import Toolbar from '../../muiComponents/Toolbar';
|
import Toolbar from '../../muiComponents/Toolbar';
|
||||||
@ -26,22 +27,22 @@ export const LeftSide = styled(RightSide)({
|
|||||||
flex: 1,
|
flex: 1,
|
||||||
});
|
});
|
||||||
|
|
||||||
export const MobileNavBar = styled('div')({
|
export const MobileNavBar = styled('div')<{ theme?: Theme }>(props => ({
|
||||||
alignItems: 'center',
|
alignItems: 'center',
|
||||||
display: 'flex',
|
display: 'flex',
|
||||||
borderBottom: `1px solid ${colors.greyLight}`,
|
borderBottom: `1px solid ${props.theme && props.theme.palette.greyLight}`,
|
||||||
padding: '8px',
|
padding: '8px',
|
||||||
position: 'relative',
|
position: 'relative',
|
||||||
});
|
}));
|
||||||
|
|
||||||
export const InnerMobileNavBar = styled('div')({
|
export const InnerMobileNavBar = styled('div')<{ theme?: Theme }>(props => ({
|
||||||
borderRadius: '4px',
|
borderRadius: '4px',
|
||||||
backgroundColor: colors.greyLight,
|
backgroundColor: props.theme && props.theme.palette.greyLight,
|
||||||
color: colors.white,
|
color: props.theme && props.theme.palette.white,
|
||||||
width: '100%',
|
width: '100%',
|
||||||
padding: '0 5px',
|
padding: '0 5px',
|
||||||
margin: '0 10px 0 0',
|
margin: '0 10px 0 0',
|
||||||
});
|
}));
|
||||||
|
|
||||||
export const IconSearchButton = styled(IconButton)({
|
export const IconSearchButton = styled(IconButton)({
|
||||||
display: 'block',
|
display: 'block',
|
||||||
@ -53,14 +54,12 @@ export const SearchWrapper = styled('div')({
|
|||||||
width: '100%',
|
width: '100%',
|
||||||
});
|
});
|
||||||
|
|
||||||
export const NavBar = styled(AppBar)`
|
export const NavBar = styled(AppBar)<{ theme?: Theme }>(props => ({
|
||||||
&& {
|
backgroundColor: props.theme && props.theme.palette.primary.main,
|
||||||
background-color: ${colors.primary};
|
minHeight: 60,
|
||||||
min-height: 60px;
|
display: 'flex',
|
||||||
display: flex;
|
justifyContent: 'center',
|
||||||
justify-content: center;
|
[`@media (min-width: ${breakpoints.medium}px)`]: css`
|
||||||
${() =>
|
|
||||||
mq.medium(css`
|
|
||||||
${SearchWrapper} {
|
${SearchWrapper} {
|
||||||
display: flex;
|
display: flex;
|
||||||
}
|
}
|
||||||
@ -70,24 +69,21 @@ export const NavBar = styled(AppBar)`
|
|||||||
${MobileNavBar} {
|
${MobileNavBar} {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
`)};
|
`,
|
||||||
${() =>
|
[`@media (min-width: ${breakpoints.large}px)`]: css`
|
||||||
mq.large(css`
|
|
||||||
${InnerNavBar} {
|
${InnerNavBar} {
|
||||||
padding: 0 20px;
|
padding: 0 20px;
|
||||||
}
|
}
|
||||||
`)};
|
`,
|
||||||
${() =>
|
[`@media (min-width: ${breakpoints.xlarge}px)`]: css`
|
||||||
mq.xlarge(css`
|
|
||||||
${InnerNavBar} {
|
${InnerNavBar} {
|
||||||
max-width: 1240px;
|
max-width: 1240px;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
}
|
}
|
||||||
`)};
|
`,
|
||||||
}
|
}));
|
||||||
`;
|
|
||||||
|
|
||||||
export const StyledLink = styled(Link)({
|
export const StyledLink = styled(Link)<{ theme?: Theme }>(props => ({
|
||||||
color: 'white',
|
color: props.theme && props.theme.palette.white,
|
||||||
});
|
}));
|
||||||
|
@ -1,11 +1,12 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
import { mount } from 'enzyme';
|
|
||||||
|
import { render } from '../../utils/test-react-testing-library';
|
||||||
|
|
||||||
import Help from './Help';
|
import Help from './Help';
|
||||||
|
|
||||||
describe('<Help /> component', () => {
|
describe('<Help /> component', () => {
|
||||||
test('should render the component in default state', () => {
|
test('should load the component in default state', () => {
|
||||||
const wrapper = mount(<Help />);
|
const { container } = render(<Help />);
|
||||||
expect(wrapper.html()).toMatchSnapshot();
|
expect(container.firstChild).toMatchSnapshot();
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
@ -1,3 +1,159 @@
|
|||||||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||||
|
|
||||||
exports[`<Help /> component should render the component in default state 1`] = `"<div class=\\"MuiPaper-root MuiPaper-elevation1 MuiCard-root css-ryznli e1wgaou60 MuiPaper-rounded\\" id=\\"help-card\\"><div class=\\"MuiCardContent-root\\"><h2 class=\\"MuiTypography-root MuiTypography-h5 MuiTypography-gutterBottom\\" id=\\"help-card__title\\">No Package Published Yet.</h2><h6 class=\\"MuiTypography-root css-zg2fwz e1wgaou61 MuiTypography-h6 MuiTypography-colorTextSecondary MuiTypography-gutterBottom\\">To publish your first package just:</h6><p class=\\"MuiTypography-root MuiTypography-body1\\">1. Login</p><div class=\\"css-1mta3t8 eb8w2fo0\\"><span class=\\"css-lh0wgu eb8w2fo1\\">npm adduser --registry http://localhost</span><button class=\\"MuiButtonBase-root MuiIconButton-root css-0 eb8w2fo2\\" tabindex=\\"0\\" type=\\"button\\" title=\\"Copy to Clipboard\\"><span class=\\"MuiIconButton-label\\"><svg class=\\"MuiSvgIcon-root\\" focusable=\\"false\\" viewBox=\\"0 0 24 24\\" aria-hidden=\\"true\\" role=\\"presentation\\"><path d=\\"M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm-1 4l6 6v10c0 1.1-.9 2-2 2H7.99C6.89 23 6 22.1 6 21l.01-14c0-1.1.89-2 1.99-2h7zm-1 7h5.5L14 6.5V12z\\"></path></svg></span><span class=\\"MuiTouchRipple-root\\"></span></button></div><p class=\\"MuiTypography-root MuiTypography-body1\\">2. Publish</p><div class=\\"css-1mta3t8 eb8w2fo0\\"><span class=\\"css-lh0wgu eb8w2fo1\\">npm publish --registry http://localhost</span><button class=\\"MuiButtonBase-root MuiIconButton-root css-0 eb8w2fo2\\" tabindex=\\"0\\" type=\\"button\\" title=\\"Copy to Clipboard\\"><span class=\\"MuiIconButton-label\\"><svg class=\\"MuiSvgIcon-root\\" focusable=\\"false\\" viewBox=\\"0 0 24 24\\" aria-hidden=\\"true\\" role=\\"presentation\\"><path d=\\"M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm-1 4l6 6v10c0 1.1-.9 2-2 2H7.99C6.89 23 6 22.1 6 21l.01-14c0-1.1.89-2 1.99-2h7zm-1 7h5.5L14 6.5V12z\\"></path></svg></span><span class=\\"MuiTouchRipple-root\\"></span></button></div><p class=\\"MuiTypography-root MuiTypography-body2\\">3. Refresh this page.</p></div><div class=\\"MuiCardActions-root MuiCardActions-spacing\\"><a class=\\"MuiButtonBase-root MuiButton-root MuiButton-text MuiButton-textPrimary MuiButton-textSizeSmall MuiButton-sizeSmall\\" tabindex=\\"0\\" aria-disabled=\\"false\\" href=\\"https://verdaccio.org/docs/en/installation\\"><span class=\\"MuiButton-label\\">Learn More</span><span class=\\"MuiTouchRipple-root\\"></span></a></div></div>"`;
|
exports[`<Help /> component should load the component in default state 1`] = `
|
||||||
|
.emotion-14 {
|
||||||
|
width: 600px;
|
||||||
|
margin: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emotion-0 {
|
||||||
|
margin-bottom: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emotion-6 {
|
||||||
|
display: -webkit-box;
|
||||||
|
display: -webkit-flex;
|
||||||
|
display: -ms-flexbox;
|
||||||
|
display: flex;
|
||||||
|
-webkit-align-items: center;
|
||||||
|
-webkit-box-align: center;
|
||||||
|
-ms-flex-align: center;
|
||||||
|
align-items: center;
|
||||||
|
-webkit-box-pack: justify;
|
||||||
|
-webkit-justify-content: space-between;
|
||||||
|
-ms-flex-pack: justify;
|
||||||
|
justify-content: space-between;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emotion-2 {
|
||||||
|
display: inline-block;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
overflow: hidden;
|
||||||
|
white-space: nowrap;
|
||||||
|
height: 21px;
|
||||||
|
font-size: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
<div
|
||||||
|
class="MuiPaper-root MuiPaper-elevation1 MuiCard-root emotion-14 emotion-15 MuiPaper-rounded"
|
||||||
|
id="help-card"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
class="MuiCardContent-root"
|
||||||
|
>
|
||||||
|
<h2
|
||||||
|
class="MuiTypography-root MuiTypography-h5 MuiTypography-gutterBottom"
|
||||||
|
id="help-card__title"
|
||||||
|
>
|
||||||
|
No Package Published Yet.
|
||||||
|
</h2>
|
||||||
|
<h6
|
||||||
|
class="MuiTypography-root emotion-0 emotion-1 MuiTypography-h6 MuiTypography-colorTextSecondary MuiTypography-gutterBottom"
|
||||||
|
>
|
||||||
|
To publish your first package just:
|
||||||
|
</h6>
|
||||||
|
<p
|
||||||
|
class="MuiTypography-root MuiTypography-body1"
|
||||||
|
>
|
||||||
|
1. Login
|
||||||
|
</p>
|
||||||
|
<div
|
||||||
|
class="emotion-6 emotion-7"
|
||||||
|
>
|
||||||
|
<span
|
||||||
|
class="emotion-2 emotion-3"
|
||||||
|
>
|
||||||
|
npm adduser --registry http://localhost
|
||||||
|
</span>
|
||||||
|
<button
|
||||||
|
class="MuiButtonBase-root MuiIconButton-root emotion-4 emotion-5"
|
||||||
|
tabindex="0"
|
||||||
|
title="Copy to Clipboard"
|
||||||
|
type="button"
|
||||||
|
>
|
||||||
|
<span
|
||||||
|
class="MuiIconButton-label"
|
||||||
|
>
|
||||||
|
<svg
|
||||||
|
aria-hidden="true"
|
||||||
|
class="MuiSvgIcon-root"
|
||||||
|
focusable="false"
|
||||||
|
role="presentation"
|
||||||
|
viewBox="0 0 24 24"
|
||||||
|
>
|
||||||
|
<path
|
||||||
|
d="M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm-1 4l6 6v10c0 1.1-.9 2-2 2H7.99C6.89 23 6 22.1 6 21l.01-14c0-1.1.89-2 1.99-2h7zm-1 7h5.5L14 6.5V12z"
|
||||||
|
/>
|
||||||
|
</svg>
|
||||||
|
</span>
|
||||||
|
<span
|
||||||
|
class="MuiTouchRipple-root"
|
||||||
|
/>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
<p
|
||||||
|
class="MuiTypography-root MuiTypography-body1"
|
||||||
|
>
|
||||||
|
2. Publish
|
||||||
|
</p>
|
||||||
|
<div
|
||||||
|
class="emotion-6 emotion-7"
|
||||||
|
>
|
||||||
|
<span
|
||||||
|
class="emotion-2 emotion-3"
|
||||||
|
>
|
||||||
|
npm publish --registry http://localhost
|
||||||
|
</span>
|
||||||
|
<button
|
||||||
|
class="MuiButtonBase-root MuiIconButton-root emotion-4 emotion-5"
|
||||||
|
tabindex="0"
|
||||||
|
title="Copy to Clipboard"
|
||||||
|
type="button"
|
||||||
|
>
|
||||||
|
<span
|
||||||
|
class="MuiIconButton-label"
|
||||||
|
>
|
||||||
|
<svg
|
||||||
|
aria-hidden="true"
|
||||||
|
class="MuiSvgIcon-root"
|
||||||
|
focusable="false"
|
||||||
|
role="presentation"
|
||||||
|
viewBox="0 0 24 24"
|
||||||
|
>
|
||||||
|
<path
|
||||||
|
d="M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm-1 4l6 6v10c0 1.1-.9 2-2 2H7.99C6.89 23 6 22.1 6 21l.01-14c0-1.1.89-2 1.99-2h7zm-1 7h5.5L14 6.5V12z"
|
||||||
|
/>
|
||||||
|
</svg>
|
||||||
|
</span>
|
||||||
|
<span
|
||||||
|
class="MuiTouchRipple-root"
|
||||||
|
/>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
<p
|
||||||
|
class="MuiTypography-root MuiTypography-body2"
|
||||||
|
>
|
||||||
|
3. Refresh this page.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
class="MuiCardActions-root MuiCardActions-spacing"
|
||||||
|
>
|
||||||
|
<a
|
||||||
|
aria-disabled="false"
|
||||||
|
class="MuiButtonBase-root MuiButton-root MuiButton-text MuiButton-textPrimary MuiButton-textSizeSmall MuiButton-sizeSmall"
|
||||||
|
href="https://verdaccio.org/docs/en/installation"
|
||||||
|
tabindex="0"
|
||||||
|
>
|
||||||
|
<span
|
||||||
|
class="MuiButton-label"
|
||||||
|
>
|
||||||
|
Learn More
|
||||||
|
</span>
|
||||||
|
<span
|
||||||
|
class="MuiTouchRipple-root"
|
||||||
|
/>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
`;
|
||||||
|
@ -1,17 +1,13 @@
|
|||||||
import styled from 'react-emotion';
|
import styled from '@emotion/styled';
|
||||||
|
|
||||||
import { default as Typography } from '../../muiComponents/Heading';
|
import { default as Typography } from '../../muiComponents/Heading';
|
||||||
import Card from '../../muiComponents/Card';
|
import Card from '../../muiComponents/Card';
|
||||||
|
|
||||||
export const CardStyled = styled(Card)({
|
export const CardStyled = styled(Card)({
|
||||||
'&&': {
|
width: 600,
|
||||||
width: '600px',
|
|
||||||
margin: 'auto',
|
margin: 'auto',
|
||||||
},
|
|
||||||
});
|
});
|
||||||
|
|
||||||
export const HelpTitle = styled(Typography)({
|
export const HelpTitle = styled(Typography)({
|
||||||
'&&': {
|
marginBottom: 20,
|
||||||
marginBottom: '20px',
|
|
||||||
},
|
|
||||||
});
|
});
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
import { shallow } from 'enzyme';
|
|
||||||
|
import { render } from '../../utils/test-react-testing-library';
|
||||||
|
|
||||||
import Icon from './Icon';
|
import Icon from './Icon';
|
||||||
|
|
||||||
@ -8,7 +9,7 @@ describe('<Icon /> component', () => {
|
|||||||
name: 'austria',
|
name: 'austria',
|
||||||
};
|
};
|
||||||
test('should render the component in default state', () => {
|
test('should render the component in default state', () => {
|
||||||
const wrapper = shallow(<Icon name={props.name} />);
|
const { container } = render(<Icon name={props.name} />);
|
||||||
expect(wrapper.html()).toMatchSnapshot();
|
expect(container.firstChild).toMatchSnapshot();
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
@ -63,10 +63,11 @@ export interface Props {
|
|||||||
modifiers?: null | undefined;
|
modifiers?: null | undefined;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* eslint-disable verdaccio/jsx-spread */
|
||||||
const Icon: React.FC<Props> = ({ className, name, size = 'sm', img = false, pointer = false, ...props }) => {
|
const Icon: React.FC<Props> = ({ className, name, size = 'sm', img = false, pointer = false, ...props }) => {
|
||||||
const title = capitalize(name.toString());
|
const title = capitalize(name.toString());
|
||||||
return img ? (
|
return img ? (
|
||||||
<ImgWrapper className={className} name={name} pointer={pointer} size={size} title={title} {...props}>
|
<ImgWrapper className={className} pointer={pointer} size={size} title={title} {...props}>
|
||||||
<Img alt={title} src={Icons[name]} />
|
<Img alt={title} src={Icons[name]} />
|
||||||
</ImgWrapper>
|
</ImgWrapper>
|
||||||
) : (
|
) : (
|
||||||
|
@ -1,3 +1,22 @@
|
|||||||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||||
|
|
||||||
exports[`<Icon /> component should render the component in default state 1`] = `"<svg class=\\"css-j2zgvv ek145dl0\\"><title>Austria</title><use xlink:href=\\"[object Object]#austria\\"></use></svg>"`;
|
exports[`<Icon /> component should render the component in default state 1`] = `
|
||||||
|
.emotion-0 {
|
||||||
|
box-sizing: initial;
|
||||||
|
display: inline-block;
|
||||||
|
cursor: default;
|
||||||
|
width: 14px;
|
||||||
|
height: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
<svg
|
||||||
|
class="emotion-0 emotion-1"
|
||||||
|
>
|
||||||
|
<title>
|
||||||
|
Austria
|
||||||
|
</title>
|
||||||
|
<use
|
||||||
|
xlink:href="[object Object]#austria"
|
||||||
|
/>
|
||||||
|
</svg>
|
||||||
|
`;
|
||||||
|
@ -1,54 +1,42 @@
|
|||||||
import styled, { css } from 'react-emotion';
|
import styled from '@emotion/styled';
|
||||||
import { Breakpoint } from '@material-ui/core/styles/createBreakpoints';
|
import { Breakpoint } from '@material-ui/core/styles/createBreakpoints';
|
||||||
import { StyledOtherComponent } from 'create-emotion-styled';
|
|
||||||
import { DetailedHTMLProps, HTMLAttributes } from 'react';
|
|
||||||
|
|
||||||
const getSize = (size: Breakpoint): string => {
|
const getSize = (size: Breakpoint): { width: number; height: number } => {
|
||||||
switch (size) {
|
switch (size) {
|
||||||
case 'md':
|
case 'md':
|
||||||
return `
|
return {
|
||||||
width: 18px;
|
width: 18,
|
||||||
height: 18px;
|
height: 18,
|
||||||
`;
|
};
|
||||||
default:
|
default:
|
||||||
return `
|
return {
|
||||||
width: 14px;
|
width: 14,
|
||||||
height: 16px;
|
height: 16,
|
||||||
`;
|
};
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
const commonStyle = ({ size = 'sm' as Breakpoint, pointer, modifiers = null }): string => css`
|
interface CommonStyleProps {
|
||||||
&& {
|
size: Breakpoint;
|
||||||
display: inline-block;
|
pointer?: boolean;
|
||||||
cursor: ${pointer ? 'pointer' : 'Developers'};
|
|
||||||
${getSize(size)};
|
|
||||||
${modifiers && modifiers};
|
|
||||||
}
|
}
|
||||||
`;
|
const commonStyle = ({ size = 'sm', pointer }: CommonStyleProps): object => ({
|
||||||
|
display: 'inline-block',
|
||||||
|
cursor: pointer ? 'pointer' : 'default',
|
||||||
|
...getSize(size),
|
||||||
|
});
|
||||||
|
|
||||||
export const Svg = styled('svg')`
|
export const Svg = styled('svg')<CommonStyleProps>(props => ({
|
||||||
${commonStyle};
|
boxSizing: 'initial',
|
||||||
box-sizing: initial;
|
...commonStyle(props),
|
||||||
`;
|
}));
|
||||||
|
|
||||||
export const ImgWrapper: StyledOtherComponent<
|
export const ImgWrapper = styled('span')<CommonStyleProps>(props => ({
|
||||||
{
|
boxSizing: 'initial',
|
||||||
size?: Breakpoint;
|
...commonStyle(props),
|
||||||
pointer: boolean;
|
}));
|
||||||
modifiers?: null | undefined;
|
|
||||||
name?: string | unknown;
|
|
||||||
},
|
|
||||||
DetailedHTMLProps<HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>,
|
|
||||||
{}
|
|
||||||
> = styled('span')`
|
|
||||||
${commonStyle};
|
|
||||||
box-sizing: initial;
|
|
||||||
`;
|
|
||||||
|
|
||||||
export const Img = styled('img')({
|
export const Img = styled('img')({
|
||||||
'&&': {
|
|
||||||
width: '100%',
|
width: '100%',
|
||||||
height: 'auto',
|
height: 'auto',
|
||||||
},
|
|
||||||
});
|
});
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
import { render } from '@testing-library/react';
|
|
||||||
|
|
||||||
|
import { render } from '../../utils/test-react-testing-library';
|
||||||
import { DetailContext, DetailContextProps } from '../../pages/Version';
|
import { DetailContext, DetailContextProps } from '../../pages/Version';
|
||||||
|
|
||||||
import data from './__partials__/data.json';
|
import data from './__partials__/data.json';
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import React, { useContext } from 'react';
|
import React, { useContext } from 'react';
|
||||||
import styled from 'react-emotion';
|
import styled from '@emotion/styled';
|
||||||
|
|
||||||
import { DetailContext } from '../../pages/Version';
|
import { DetailContext } from '../../pages/Version';
|
||||||
import { fontWeight } from '../../utils/styles/sizes';
|
import { fontWeight } from '../../utils/styles/sizes';
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
import styled from 'react-emotion';
|
import styled from '@emotion/styled';
|
||||||
|
|
||||||
import CopyToClipBoard from '../CopyToClipBoard';
|
import CopyToClipBoard from '../CopyToClipBoard';
|
||||||
import Avatar from '../../muiComponents/Avatar';
|
import Avatar from '../../muiComponents/Avatar';
|
||||||
|
@ -1,24 +1,71 @@
|
|||||||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||||
|
|
||||||
exports[`<Install /> renders correctly 1`] = `
|
exports[`<Install /> renders correctly 1`] = `
|
||||||
|
.emotion-0 {
|
||||||
|
font-weight: 700;
|
||||||
|
text-transform: capitalize;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emotion-12 {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emotion-12:hover {
|
||||||
|
background-color: transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emotion-2 {
|
||||||
|
border-radius: 0px;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emotion-10 {
|
||||||
|
padding: 0 10px;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emotion-8 {
|
||||||
|
display: -webkit-box;
|
||||||
|
display: -webkit-flex;
|
||||||
|
display: -ms-flexbox;
|
||||||
|
display: flex;
|
||||||
|
-webkit-align-items: center;
|
||||||
|
-webkit-box-align: center;
|
||||||
|
-ms-flex-align: center;
|
||||||
|
align-items: center;
|
||||||
|
-webkit-box-pack: justify;
|
||||||
|
-webkit-justify-content: space-between;
|
||||||
|
-ms-flex-pack: justify;
|
||||||
|
justify-content: space-between;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emotion-4 {
|
||||||
|
display: inline-block;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
overflow: hidden;
|
||||||
|
white-space: nowrap;
|
||||||
|
height: 21px;
|
||||||
|
font-size: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
<ul
|
<ul
|
||||||
class="MuiList-root MuiList-padding MuiList-subheader"
|
class="MuiList-root MuiList-padding MuiList-subheader"
|
||||||
data-testid="installList"
|
data-testid="installList"
|
||||||
>
|
>
|
||||||
<h6
|
<h6
|
||||||
class="MuiTypography-root css-b8upko emotion-0 MuiTypography-subtitle1"
|
class="MuiTypography-root emotion-0 emotion-1 MuiTypography-subtitle1"
|
||||||
>
|
>
|
||||||
Installation
|
Installation
|
||||||
</h6>
|
</h6>
|
||||||
<div
|
<div
|
||||||
aria-disabled="false"
|
aria-disabled="false"
|
||||||
class="MuiButtonBase-root MuiListItem-root css-zw46c6 emotion-6 MuiListItem-gutters MuiListItem-button"
|
class="MuiButtonBase-root MuiListItem-root emotion-12 emotion-13 MuiListItem-gutters MuiListItem-button"
|
||||||
data-testid="installListItem-npm"
|
data-testid="installListItem-npm"
|
||||||
role="button"
|
role="button"
|
||||||
tabindex="0"
|
tabindex="0"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
class="MuiAvatar-root MuiAvatar-circle css-19top7x emotion-1"
|
class="MuiAvatar-root MuiAvatar-circle emotion-2 emotion-3"
|
||||||
>
|
>
|
||||||
<img
|
<img
|
||||||
alt="npm"
|
alt="npm"
|
||||||
@ -27,21 +74,21 @@ exports[`<Install /> renders correctly 1`] = `
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div
|
<div
|
||||||
class="MuiListItemText-root css-fipixf emotion-5 MuiListItemText-multiline"
|
class="MuiListItemText-root emotion-10 emotion-11 MuiListItemText-multiline"
|
||||||
>
|
>
|
||||||
<span
|
<span
|
||||||
class="MuiTypography-root MuiListItemText-primary MuiTypography-body1"
|
class="MuiTypography-root MuiListItemText-primary MuiTypography-body1"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
class="css-1mta3t8 emotion-4"
|
class="emotion-8 emotion-9"
|
||||||
>
|
>
|
||||||
<span
|
<span
|
||||||
class="css-lh0wgu emotion-2"
|
class="emotion-4 emotion-5"
|
||||||
>
|
>
|
||||||
npm install foo
|
npm install foo
|
||||||
</span>
|
</span>
|
||||||
<button
|
<button
|
||||||
class="MuiButtonBase-root MuiIconButton-root css-0 emotion-3"
|
class="MuiButtonBase-root MuiIconButton-root emotion-6 emotion-7"
|
||||||
tabindex="0"
|
tabindex="0"
|
||||||
title="Copy to Clipboard"
|
title="Copy to Clipboard"
|
||||||
type="button"
|
type="button"
|
||||||
@ -79,13 +126,13 @@ exports[`<Install /> renders correctly 1`] = `
|
|||||||
</div>
|
</div>
|
||||||
<div
|
<div
|
||||||
aria-disabled="false"
|
aria-disabled="false"
|
||||||
class="MuiButtonBase-root MuiListItem-root css-zw46c6 emotion-6 MuiListItem-gutters MuiListItem-button"
|
class="MuiButtonBase-root MuiListItem-root emotion-12 emotion-13 MuiListItem-gutters MuiListItem-button"
|
||||||
data-testid="installListItem-yarn"
|
data-testid="installListItem-yarn"
|
||||||
role="button"
|
role="button"
|
||||||
tabindex="0"
|
tabindex="0"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
class="MuiAvatar-root MuiAvatar-circle css-19top7x emotion-1"
|
class="MuiAvatar-root MuiAvatar-circle emotion-2 emotion-3"
|
||||||
>
|
>
|
||||||
<img
|
<img
|
||||||
alt="yarn"
|
alt="yarn"
|
||||||
@ -94,21 +141,21 @@ exports[`<Install /> renders correctly 1`] = `
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div
|
<div
|
||||||
class="MuiListItemText-root css-fipixf emotion-5 MuiListItemText-multiline"
|
class="MuiListItemText-root emotion-10 emotion-11 MuiListItemText-multiline"
|
||||||
>
|
>
|
||||||
<span
|
<span
|
||||||
class="MuiTypography-root MuiListItemText-primary MuiTypography-body1"
|
class="MuiTypography-root MuiListItemText-primary MuiTypography-body1"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
class="css-1mta3t8 emotion-4"
|
class="emotion-8 emotion-9"
|
||||||
>
|
>
|
||||||
<span
|
<span
|
||||||
class="css-lh0wgu emotion-2"
|
class="emotion-4 emotion-5"
|
||||||
>
|
>
|
||||||
yarn add foo
|
yarn add foo
|
||||||
</span>
|
</span>
|
||||||
<button
|
<button
|
||||||
class="MuiButtonBase-root MuiIconButton-root css-0 emotion-3"
|
class="MuiButtonBase-root MuiIconButton-root emotion-6 emotion-7"
|
||||||
tabindex="0"
|
tabindex="0"
|
||||||
title="Copy to Clipboard"
|
title="Copy to Clipboard"
|
||||||
type="button"
|
type="button"
|
||||||
@ -146,13 +193,13 @@ exports[`<Install /> renders correctly 1`] = `
|
|||||||
</div>
|
</div>
|
||||||
<div
|
<div
|
||||||
aria-disabled="false"
|
aria-disabled="false"
|
||||||
class="MuiButtonBase-root MuiListItem-root css-zw46c6 emotion-6 MuiListItem-gutters MuiListItem-button"
|
class="MuiButtonBase-root MuiListItem-root emotion-12 emotion-13 MuiListItem-gutters MuiListItem-button"
|
||||||
data-testid="installListItem-pnpm"
|
data-testid="installListItem-pnpm"
|
||||||
role="button"
|
role="button"
|
||||||
tabindex="0"
|
tabindex="0"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
class="MuiAvatar-root MuiAvatar-circle css-19top7x emotion-1"
|
class="MuiAvatar-root MuiAvatar-circle emotion-2 emotion-3"
|
||||||
>
|
>
|
||||||
<img
|
<img
|
||||||
alt="pnpm"
|
alt="pnpm"
|
||||||
@ -161,21 +208,21 @@ exports[`<Install /> renders correctly 1`] = `
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div
|
<div
|
||||||
class="MuiListItemText-root css-fipixf emotion-5 MuiListItemText-multiline"
|
class="MuiListItemText-root emotion-10 emotion-11 MuiListItemText-multiline"
|
||||||
>
|
>
|
||||||
<span
|
<span
|
||||||
class="MuiTypography-root MuiListItemText-primary MuiTypography-body1"
|
class="MuiTypography-root MuiListItemText-primary MuiTypography-body1"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
class="css-1mta3t8 emotion-4"
|
class="emotion-8 emotion-9"
|
||||||
>
|
>
|
||||||
<span
|
<span
|
||||||
class="css-lh0wgu emotion-2"
|
class="emotion-4 emotion-5"
|
||||||
>
|
>
|
||||||
pnpm install foo
|
pnpm install foo
|
||||||
</span>
|
</span>
|
||||||
<button
|
<button
|
||||||
class="MuiButtonBase-root MuiIconButton-root css-0 emotion-3"
|
class="MuiButtonBase-root MuiIconButton-root emotion-6 emotion-7"
|
||||||
tabindex="0"
|
tabindex="0"
|
||||||
title="Copy to Clipboard"
|
title="Copy to Clipboard"
|
||||||
type="button"
|
type="button"
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
import { mount } from 'enzyme';
|
|
||||||
|
import { render } from '../../utils/test-react-testing-library';
|
||||||
|
|
||||||
import Label from './Label';
|
import Label from './Label';
|
||||||
|
|
||||||
@ -8,7 +9,7 @@ describe('<Label /> component', () => {
|
|||||||
text: 'test',
|
text: 'test',
|
||||||
};
|
};
|
||||||
test('should render the component in default state', () => {
|
test('should render the component in default state', () => {
|
||||||
const wrapper = mount(<Label text={props.text} />);
|
const { container } = render(<Label text={props.text} />);
|
||||||
expect(wrapper.html()).toMatchSnapshot();
|
expect(container.firstChild).toMatchSnapshot();
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
import styled from 'react-emotion';
|
import styled from '@emotion/styled';
|
||||||
|
|
||||||
import { fontWeight } from '../../utils/styles/sizes';
|
import { fontWeight } from '../../utils/styles/sizes';
|
||||||
|
|
||||||
@ -7,20 +7,17 @@ interface Props {
|
|||||||
text: string;
|
text: string;
|
||||||
capitalize?: boolean;
|
capitalize?: boolean;
|
||||||
weight?: string;
|
weight?: string;
|
||||||
modifiers?: null | undefined;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
interface WrapperProps {
|
interface WrapperProps {
|
||||||
capitalize: boolean;
|
capitalize: boolean;
|
||||||
weight: string;
|
weight: string;
|
||||||
modifiers?: null;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const Wrapper = styled('div')`
|
const Wrapper = styled('div')<WrapperProps>(props => ({
|
||||||
font-weight: ${({ weight }: WrapperProps) => fontWeight[weight]};
|
fontWeight: fontWeight[props.weight],
|
||||||
text-transform: ${({ capitalize }: WrapperProps) => (capitalize ? 'capitalize' : 'none')};
|
textTransform: props.capitalize ? 'capitalize' : 'none',
|
||||||
${({ modifiers }: WrapperProps) => modifiers};
|
}));
|
||||||
`;
|
|
||||||
|
|
||||||
const Label: React.FC<Props> = ({ text = '', capitalize = false, weight = 'regular', ...props }) => {
|
const Label: React.FC<Props> = ({ text = '', capitalize = false, weight = 'regular', ...props }) => {
|
||||||
return (
|
return (
|
||||||
|
@ -1,3 +1,14 @@
|
|||||||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||||
|
|
||||||
exports[`<Label /> component should render the component in default state 1`] = `"<div class=\\"css-1xfhjjm esyufg60\\">test</div>"`;
|
exports[`<Label /> component should render the component in default state 1`] = `
|
||||||
|
.emotion-0 {
|
||||||
|
font-weight: 400;
|
||||||
|
text-transform: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
<div
|
||||||
|
class="emotion-0 emotion-1"
|
||||||
|
>
|
||||||
|
test
|
||||||
|
</div>
|
||||||
|
`;
|
||||||
|
@ -1,32 +1,29 @@
|
|||||||
import styled, { css } from 'react-emotion';
|
import styled from '@emotion/styled';
|
||||||
|
import { css } from '@emotion/core';
|
||||||
|
|
||||||
import colors from '../../utils/styles/colors';
|
import { Theme } from '../../design-tokens/theme';
|
||||||
|
|
||||||
export const Content = styled('div')({
|
export const Content = styled('div')<{ theme?: Theme }>(props => ({
|
||||||
'&&': {
|
backgroundColor: props.theme && props.theme.palette.white,
|
||||||
backgroundColor: colors.white,
|
|
||||||
flex: 1,
|
flex: 1,
|
||||||
display: 'flex',
|
display: 'flex',
|
||||||
position: 'relative',
|
position: 'relative',
|
||||||
flexDirection: 'column',
|
flexDirection: 'column',
|
||||||
},
|
}));
|
||||||
});
|
|
||||||
|
|
||||||
interface ContainerProps {
|
interface ContainerProps {
|
||||||
isLoading: boolean;
|
isLoading: boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
export const Container = styled('div')`
|
export const Container = styled('div')<ContainerProps>(props => ({
|
||||||
&& {
|
display: 'flex',
|
||||||
display: flex;
|
flexDirection: 'column',
|
||||||
flex-direction: column;
|
minHeight: '100vh',
|
||||||
min-height: 100vh;
|
overflow: 'hidden',
|
||||||
overflow: hidden;
|
...(props.isLoading &&
|
||||||
${({ isLoading }: ContainerProps) =>
|
|
||||||
isLoading &&
|
|
||||||
css`
|
css`
|
||||||
${Content} {
|
${Content} {
|
||||||
background-color: #f5f6f8;
|
background-color: #f5f6f8;
|
||||||
}
|
}
|
||||||
`}
|
`),
|
||||||
`;
|
}));
|
||||||
|
@ -1,11 +1,12 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
import { shallow } from 'enzyme';
|
|
||||||
|
import { render } from '../../utils/test-react-testing-library';
|
||||||
|
|
||||||
import Loading from './Loading';
|
import Loading from './Loading';
|
||||||
|
|
||||||
describe('<Loading /> component', () => {
|
describe('<Loading /> component', () => {
|
||||||
test('should render the component in default state', () => {
|
test('should render the component in default state', () => {
|
||||||
const wrapper = shallow(<Loading />);
|
const { container } = render(<Loading />);
|
||||||
expect(wrapper.html()).toMatchSnapshot();
|
expect(container.firstChild).toMatchSnapshot();
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
@ -1,3 +1,86 @@
|
|||||||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||||
|
|
||||||
exports[`<Loading /> component should render the component in default state 1`] = `"<div data-testid=\\"loading\\" class=\\"css-1221txa eimgwje0\\"><div class=\\"css-bxochs eimgwje1\\"><div class=\\"css-ge0nak em793ed0\\"></div></div><div class=\\"css-vqrgi e1ag4h8b0\\"><div class=\\"MuiCircularProgress-root css-15gl0ho e1ag4h8b1 MuiCircularProgress-colorPrimary MuiCircularProgress-indeterminate\\" style=\\"width:50px;height:50px\\" role=\\"progressbar\\"><svg class=\\"MuiCircularProgress-svg\\" viewBox=\\"22 22 44 44\\"><circle class=\\"MuiCircularProgress-circle MuiCircularProgress-circleIndeterminate\\" cx=\\"44\\" cy=\\"44\\" r=\\"20.2\\" fill=\\"none\\" stroke-width=\\"3.6\\"></circle></svg></div></div></div>"`;
|
exports[`<Loading /> component should render the component in default state 1`] = `
|
||||||
|
.emotion-8 {
|
||||||
|
-webkit-transform: translate(-50%,-50%);
|
||||||
|
-ms-transform: translate(-50%,-50%);
|
||||||
|
transform: translate(-50%,-50%);
|
||||||
|
top: 50%;
|
||||||
|
left: 50%;
|
||||||
|
position: absolute;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emotion-2 {
|
||||||
|
margin: 0 0 30px 0;
|
||||||
|
border-radius: 25px;
|
||||||
|
box-shadow: 0 10px 20px 0 rgba(69,58,100,0.2);
|
||||||
|
background: #f7f8f6;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emotion-0 {
|
||||||
|
display: inline-block;
|
||||||
|
vertical-align: middle;
|
||||||
|
box-sizing: border-box;
|
||||||
|
background-position: center;
|
||||||
|
background-size: contain;
|
||||||
|
background-image: url([object Object]);
|
||||||
|
background-repeat: no-repeat;
|
||||||
|
width: 90px;
|
||||||
|
height: 90px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emotion-6 {
|
||||||
|
display: -webkit-box;
|
||||||
|
display: -webkit-flex;
|
||||||
|
display: -ms-flexbox;
|
||||||
|
display: flex;
|
||||||
|
-webkit-align-items: center;
|
||||||
|
-webkit-box-align: center;
|
||||||
|
-ms-flex-align: center;
|
||||||
|
align-items: center;
|
||||||
|
-webkit-box-pack: center;
|
||||||
|
-webkit-justify-content: center;
|
||||||
|
-ms-flex-pack: center;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emotion-4 {
|
||||||
|
color: #4b5e40;
|
||||||
|
}
|
||||||
|
|
||||||
|
<div
|
||||||
|
class="emotion-8 emotion-9"
|
||||||
|
data-testid="loading"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
class="emotion-2 emotion-3"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
class="emotion-0 emotion-1"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
class="emotion-6 emotion-7"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
class="MuiCircularProgress-root emotion-4 emotion-5 MuiCircularProgress-colorPrimary MuiCircularProgress-indeterminate"
|
||||||
|
role="progressbar"
|
||||||
|
style="width: 50px; height: 50px;"
|
||||||
|
>
|
||||||
|
<svg
|
||||||
|
class="MuiCircularProgress-svg"
|
||||||
|
viewBox="22 22 44 44"
|
||||||
|
>
|
||||||
|
<circle
|
||||||
|
class="MuiCircularProgress-circle MuiCircularProgress-circleIndeterminate"
|
||||||
|
cx="44"
|
||||||
|
cy="44"
|
||||||
|
fill="none"
|
||||||
|
r="20.2"
|
||||||
|
stroke-width="3.6"
|
||||||
|
/>
|
||||||
|
</svg>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
`;
|
||||||
|
@ -1,19 +1,15 @@
|
|||||||
import styled from 'react-emotion';
|
import styled from '@emotion/styled';
|
||||||
|
|
||||||
export const Wrapper = styled('div')`
|
export const Wrapper = styled('div')({
|
||||||
&& {
|
transform: 'translate(-50%, -50%)',
|
||||||
transform: translate(-50%, -50%);
|
top: '50%',
|
||||||
top: 50%;
|
left: '50%',
|
||||||
left: 50%;
|
position: 'absolute',
|
||||||
position: absolute;
|
});
|
||||||
}
|
|
||||||
`;
|
|
||||||
|
|
||||||
export const Badge = styled('div')`
|
export const Badge = styled('div')({
|
||||||
&& {
|
margin: '0 0 30px 0',
|
||||||
margin: 0 0 30px 0;
|
borderRadius: 25,
|
||||||
border-radius: 25px;
|
boxShadow: '0 10px 20px 0 rgba(69, 58, 100, 0.2)',
|
||||||
box-shadow: 0 10px 20px 0 rgba(69, 58, 100, 0.2);
|
background: '#f7f8f6',
|
||||||
background: #f7f8f6;
|
});
|
||||||
}
|
|
||||||
`;
|
|
||||||
|
@ -3,7 +3,8 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import { mount } from 'enzyme';
|
|
||||||
|
import { mount } from '../../utils/test-enzyme';
|
||||||
|
|
||||||
import LoginModal from './Login';
|
import LoginModal from './Login';
|
||||||
|
|
||||||
@ -66,7 +67,7 @@ describe('<LoginModal />', () => {
|
|||||||
onCancel: () => {},
|
onCancel: () => {},
|
||||||
onSubmit: () => {},
|
onSubmit: () => {},
|
||||||
};
|
};
|
||||||
const wrapper = mount<LoginModal>(<LoginModal {...props} />);
|
const wrapper = mount(<LoginModal {...props} />);
|
||||||
const { setCredentials } = wrapper.instance();
|
const { setCredentials } = wrapper.instance();
|
||||||
|
|
||||||
expect(setCredentials('username', eventUsername)).toBeUndefined();
|
expect(setCredentials('username', eventUsername)).toBeUndefined();
|
||||||
@ -83,7 +84,7 @@ describe('<LoginModal />', () => {
|
|||||||
onSubmit: jest.fn(),
|
onSubmit: jest.fn(),
|
||||||
};
|
};
|
||||||
|
|
||||||
const wrapper = mount<LoginModal>(<LoginModal {...props} />);
|
const wrapper = mount(<LoginModal {...props} />);
|
||||||
const instance = wrapper.instance();
|
const instance = wrapper.instance();
|
||||||
|
|
||||||
instance.submitCredentials = jest.fn();
|
instance.submitCredentials = jest.fn();
|
||||||
@ -108,7 +109,7 @@ describe('<LoginModal />', () => {
|
|||||||
onSubmit: jest.fn(),
|
onSubmit: jest.fn(),
|
||||||
};
|
};
|
||||||
|
|
||||||
const wrapper = mount<LoginModal>(<LoginModal {...props} />);
|
const wrapper = mount(<LoginModal {...props} />);
|
||||||
const { setCredentials, submitCredentials } = wrapper.instance();
|
const { setCredentials, submitCredentials } = wrapper.instance();
|
||||||
expect(setCredentials('username', eventUsername)).toBeUndefined();
|
expect(setCredentials('username', eventUsername)).toBeUndefined();
|
||||||
expect(wrapper.state('form').username.value).toEqual('xyz');
|
expect(wrapper.state('form').username.value).toEqual('xyz');
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
import React, { Component } from 'react';
|
import React, { Component } from 'react';
|
||||||
import ErrorIcon from '@material-ui/icons/Error';
|
import ErrorIcon from '@material-ui/icons/Error';
|
||||||
import { css } from 'emotion';
|
|
||||||
|
|
||||||
import Button from '../../muiComponents/Button';
|
import Button from '../../muiComponents/Button';
|
||||||
import Dialog from '../../muiComponents/Dialog';
|
import Dialog from '../../muiComponents/Dialog';
|
||||||
@ -205,9 +204,9 @@ export default class LoginModal extends Component<Partial<LoginModalProps>, Logi
|
|||||||
} = this.state;
|
} = this.state;
|
||||||
return (
|
return (
|
||||||
<FormControl
|
<FormControl
|
||||||
className={css`
|
// className={css`
|
||||||
margin-top: 8px;
|
// margin-top: 8px;
|
||||||
`}
|
// `}
|
||||||
error={!password.value && !password.pristine}
|
error={!password.value && !password.pristine}
|
||||||
fullWidth={true}
|
fullWidth={true}
|
||||||
required={password.required}>
|
required={password.required}>
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||||
|
|
||||||
exports[`<LoginModal /> should load the component in default state 1`] = `"<div role=\\"presentation\\" class=\\"MuiDialog-root\\" id=\\"login--form-container\\" style=\\"position: fixed; z-index: 1300; right: 0px; bottom: 0px; top: 0px; left: 0px;\\"><div class=\\"MuiBackdrop-root\\" aria-hidden=\\"true\\" style=\\"opacity: 1; webkit-transition: opacity 225ms cubic-bezier(0.4, 0, 0.2, 1) 0ms; transition: opacity 225ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;\\"></div><div tabindex=\\"0\\" data-test=\\"sentinelStart\\"></div><div class=\\"MuiDialog-container MuiDialog-scrollPaper\\" style=\\"opacity: 1; webkit-transition: opacity 225ms cubic-bezier(0.4, 0, 0.2, 1) 0ms; transition: opacity 225ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;\\" role=\\"none presentation\\" tabindex=\\"-1\\"><div class=\\"MuiPaper-root MuiPaper-elevation24 MuiDialog-paper MuiDialog-paperScrollPaper MuiDialog-paperWidthXs MuiDialog-paperFullWidth MuiPaper-rounded\\" role=\\"dialog\\"><form novalidate=\\"\\"><div class=\\"MuiDialogTitle-root\\"><h2 class=\\"MuiTypography-root MuiTypography-h6\\">Login</h2></div><div class=\\"MuiDialogContent-root\\"><div class=\\"MuiFormControl-root MuiFormControl-fullWidth\\"><label class=\\"MuiFormLabel-root MuiInputLabel-root MuiInputLabel-formControl MuiInputLabel-animated Mui-required Mui-required\\" data-shrink=\\"false\\" for=\\"username\\">Username<span class=\\"MuiFormLabel-asterisk MuiInputLabel-asterisk\\">โ*</span></label><div class=\\"MuiInputBase-root MuiInput-root MuiInput-underline MuiInputBase-formControl MuiInput-formControl\\"><input aria-invalid=\\"false\\" id=\\"login--form-username\\" placeholder=\\"Your username\\" required=\\"\\" type=\\"text\\" class=\\"MuiInputBase-input MuiInput-input\\" value=\\"\\"></div></div><div class=\\"MuiFormControl-root css-164r41r MuiFormControl-fullWidth\\"><label class=\\"MuiFormLabel-root MuiInputLabel-root MuiInputLabel-formControl MuiInputLabel-animated Mui-required Mui-required\\" data-shrink=\\"false\\" for=\\"password\\">Password<span class=\\"MuiFormLabel-asterisk MuiInputLabel-asterisk\\">โ*</span></label><div class=\\"MuiInputBase-root MuiInput-root MuiInput-underline MuiInputBase-formControl MuiInput-formControl\\"><input aria-invalid=\\"false\\" id=\\"login--form-password\\" placeholder=\\"Your strong password\\" required=\\"\\" type=\\"password\\" class=\\"MuiInputBase-input MuiInput-input\\" value=\\"\\"></div></div></div><div class=\\"MuiDialogActions-root dialog-footer MuiDialogActions-spacing\\"><button class=\\"MuiButtonBase-root MuiButton-root MuiButton-text MuiButton-colorInherit\\" tabindex=\\"0\\" type=\\"button\\" id=\\"login--form-cancel\\"><span class=\\"MuiButton-label\\">Cancel</span><span class=\\"MuiTouchRipple-root\\"></span></button><button class=\\"MuiButtonBase-root MuiButton-root MuiButton-text MuiButton-colorInherit Mui-disabled Mui-disabled\\" tabindex=\\"-1\\" type=\\"submit\\" disabled=\\"\\" id=\\"login--form-submit\\"><span class=\\"MuiButton-label\\">Login</span></button></div></form></div></div><div tabindex=\\"0\\" data-test=\\"sentinelEnd\\"></div></div>"`;
|
exports[`<LoginModal /> should load the component in default state 1`] = `"<div role=\\"presentation\\" class=\\"MuiDialog-root\\" id=\\"login--form-container\\" style=\\"position: fixed; z-index: 1300; right: 0px; bottom: 0px; top: 0px; left: 0px;\\"><div class=\\"MuiBackdrop-root\\" aria-hidden=\\"true\\" style=\\"opacity: 1; webkit-transition: opacity 225ms cubic-bezier(0.4, 0, 0.2, 1) 0ms; transition: opacity 225ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;\\"></div><div tabindex=\\"0\\" data-test=\\"sentinelStart\\"></div><div class=\\"MuiDialog-container MuiDialog-scrollPaper\\" style=\\"opacity: 1; webkit-transition: opacity 225ms cubic-bezier(0.4, 0, 0.2, 1) 0ms; transition: opacity 225ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;\\" role=\\"none presentation\\" tabindex=\\"-1\\"><div class=\\"MuiPaper-root MuiPaper-elevation24 MuiDialog-paper MuiDialog-paperScrollPaper MuiDialog-paperWidthXs MuiDialog-paperFullWidth MuiPaper-rounded\\" role=\\"dialog\\"><form novalidate=\\"\\"><div class=\\"MuiDialogTitle-root\\"><h2 class=\\"MuiTypography-root MuiTypography-h6\\">Login</h2></div><div class=\\"MuiDialogContent-root\\"><div class=\\"MuiFormControl-root MuiFormControl-fullWidth\\"><label class=\\"MuiFormLabel-root MuiInputLabel-root MuiInputLabel-formControl MuiInputLabel-animated Mui-required Mui-required\\" data-shrink=\\"false\\" for=\\"username\\">Username<span class=\\"MuiFormLabel-asterisk MuiInputLabel-asterisk\\">โ*</span></label><div class=\\"MuiInputBase-root MuiInput-root MuiInput-underline MuiInputBase-formControl MuiInput-formControl\\"><input aria-invalid=\\"false\\" id=\\"login--form-username\\" placeholder=\\"Your username\\" required=\\"\\" type=\\"text\\" class=\\"MuiInputBase-input MuiInput-input\\" value=\\"\\"></div></div><div class=\\"MuiFormControl-root MuiFormControl-fullWidth\\"><label class=\\"MuiFormLabel-root MuiInputLabel-root MuiInputLabel-formControl MuiInputLabel-animated Mui-required Mui-required\\" data-shrink=\\"false\\" for=\\"password\\">Password<span class=\\"MuiFormLabel-asterisk MuiInputLabel-asterisk\\">โ*</span></label><div class=\\"MuiInputBase-root MuiInput-root MuiInput-underline MuiInputBase-formControl MuiInput-formControl\\"><input aria-invalid=\\"false\\" id=\\"login--form-password\\" placeholder=\\"Your strong password\\" required=\\"\\" type=\\"password\\" class=\\"MuiInputBase-input MuiInput-input\\" value=\\"\\"></div></div></div><div class=\\"MuiDialogActions-root dialog-footer MuiDialogActions-spacing\\"><button class=\\"MuiButtonBase-root MuiButton-root MuiButton-text MuiButton-colorInherit\\" tabindex=\\"0\\" type=\\"button\\" id=\\"login--form-cancel\\"><span class=\\"MuiButton-label\\">Cancel</span><span class=\\"MuiTouchRipple-root\\"></span></button><button class=\\"MuiButtonBase-root MuiButton-root MuiButton-text MuiButton-colorInherit Mui-disabled Mui-disabled\\" tabindex=\\"-1\\" type=\\"submit\\" disabled=\\"\\" id=\\"login--form-submit\\"><span class=\\"MuiButton-label\\">Login</span></button></div></form></div></div><div tabindex=\\"0\\" data-test=\\"sentinelEnd\\"></div></div>"`;
|
||||||
|
|
||||||
exports[`<LoginModal /> should load the component with props 1`] = `"<div role=\\"presentation\\" class=\\"MuiDialog-root\\" id=\\"login--form-container\\" style=\\"position: fixed; z-index: 1300; right: 0px; bottom: 0px; top: 0px; left: 0px;\\"><div class=\\"MuiBackdrop-root\\" aria-hidden=\\"true\\" style=\\"opacity: 1; webkit-transition: opacity 225ms cubic-bezier(0.4, 0, 0.2, 1) 0ms; transition: opacity 225ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;\\"></div><div tabindex=\\"0\\" data-test=\\"sentinelStart\\"></div><div class=\\"MuiDialog-container MuiDialog-scrollPaper\\" style=\\"opacity: 1; webkit-transition: opacity 225ms cubic-bezier(0.4, 0, 0.2, 1) 0ms; transition: opacity 225ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;\\" role=\\"none presentation\\" tabindex=\\"-1\\"><div class=\\"MuiPaper-root MuiPaper-elevation24 MuiDialog-paper MuiDialog-paperScrollPaper MuiDialog-paperWidthXs MuiDialog-paperFullWidth MuiPaper-rounded\\" role=\\"dialog\\"><form novalidate=\\"\\"><div class=\\"MuiDialogTitle-root\\"><h2 class=\\"MuiTypography-root MuiTypography-h6\\">Login</h2></div><div class=\\"MuiDialogContent-root\\"><div class=\\"MuiTypography-root MuiPaper-root MuiPaper-elevation6 MuiSnackbarContent-root css-11e09xf MuiTypography-body2\\" role=\\"alert\\"><div class=\\"MuiSnackbarContent-message\\"><div class=\\"css-70qvj9\\" id=\\"client-snackbar\\"><svg class=\\"MuiSvgIcon-root css-1mbwbu9\\" focusable=\\"false\\" viewBox=\\"0 0 24 24\\" aria-hidden=\\"true\\" role=\\"presentation\\"><path d=\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-2h2v2zm0-4h-2V7h2v6z\\"></path></svg><span><div><strong>Error Title</strong></div><div>Error Description</div></span></div></div></div><div class=\\"MuiFormControl-root MuiFormControl-fullWidth\\"><label class=\\"MuiFormLabel-root MuiInputLabel-root MuiInputLabel-formControl MuiInputLabel-animated Mui-required Mui-required\\" data-shrink=\\"false\\" for=\\"username\\">Username<span class=\\"MuiFormLabel-asterisk MuiInputLabel-asterisk\\">โ*</span></label><div class=\\"MuiInputBase-root MuiInput-root MuiInput-underline MuiInputBase-formControl MuiInput-formControl\\"><input aria-invalid=\\"false\\" id=\\"login--form-username\\" placeholder=\\"Your username\\" required=\\"\\" type=\\"text\\" class=\\"MuiInputBase-input MuiInput-input\\" value=\\"\\"></div></div><div class=\\"MuiFormControl-root css-164r41r MuiFormControl-fullWidth\\"><label class=\\"MuiFormLabel-root MuiInputLabel-root MuiInputLabel-formControl MuiInputLabel-animated Mui-required Mui-required\\" data-shrink=\\"false\\" for=\\"password\\">Password<span class=\\"MuiFormLabel-asterisk MuiInputLabel-asterisk\\">โ*</span></label><div class=\\"MuiInputBase-root MuiInput-root MuiInput-underline MuiInputBase-formControl MuiInput-formControl\\"><input aria-invalid=\\"false\\" id=\\"login--form-password\\" placeholder=\\"Your strong password\\" required=\\"\\" type=\\"password\\" class=\\"MuiInputBase-input MuiInput-input\\" value=\\"\\"></div></div></div><div class=\\"MuiDialogActions-root dialog-footer MuiDialogActions-spacing\\"><button class=\\"MuiButtonBase-root MuiButton-root MuiButton-text MuiButton-colorInherit\\" tabindex=\\"0\\" type=\\"button\\" id=\\"login--form-cancel\\"><span class=\\"MuiButton-label\\">Cancel</span><span class=\\"MuiTouchRipple-root\\"></span></button><button class=\\"MuiButtonBase-root MuiButton-root MuiButton-text MuiButton-colorInherit Mui-disabled Mui-disabled\\" tabindex=\\"-1\\" type=\\"submit\\" disabled=\\"\\" id=\\"login--form-submit\\"><span class=\\"MuiButton-label\\">Login</span></button></div></form></div></div><div tabindex=\\"0\\" data-test=\\"sentinelEnd\\"></div></div>"`;
|
exports[`<LoginModal /> should load the component with props 1`] = `"<div role=\\"presentation\\" class=\\"MuiDialog-root\\" id=\\"login--form-container\\" style=\\"position: fixed; z-index: 1300; right: 0px; bottom: 0px; top: 0px; left: 0px;\\"><div class=\\"MuiBackdrop-root\\" aria-hidden=\\"true\\" style=\\"opacity: 1; webkit-transition: opacity 225ms cubic-bezier(0.4, 0, 0.2, 1) 0ms; transition: opacity 225ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;\\"></div><div tabindex=\\"0\\" data-test=\\"sentinelStart\\"></div><div class=\\"MuiDialog-container MuiDialog-scrollPaper\\" style=\\"opacity: 1; webkit-transition: opacity 225ms cubic-bezier(0.4, 0, 0.2, 1) 0ms; transition: opacity 225ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;\\" role=\\"none presentation\\" tabindex=\\"-1\\"><div class=\\"MuiPaper-root MuiPaper-elevation24 MuiDialog-paper MuiDialog-paperScrollPaper MuiDialog-paperWidthXs MuiDialog-paperFullWidth MuiPaper-rounded\\" role=\\"dialog\\"><form novalidate=\\"\\"><div class=\\"MuiDialogTitle-root\\"><h2 class=\\"MuiTypography-root MuiTypography-h6\\">Login</h2></div><div class=\\"MuiDialogContent-root\\"><div class=\\"MuiTypography-root MuiPaper-root MuiPaper-elevation6 MuiSnackbarContent-root css-xlgaf-loginError MuiTypography-body2\\" role=\\"alert\\"><div class=\\"MuiSnackbarContent-message\\"><div class=\\"css-vvv32-loginErrorMsg\\" id=\\"client-snackbar\\"><svg class=\\"MuiSvgIcon-root css-tkvt8h-loginIcon\\" focusable=\\"false\\" viewBox=\\"0 0 24 24\\" aria-hidden=\\"true\\" role=\\"presentation\\"><path d=\\"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-2h2v2zm0-4h-2V7h2v6z\\"></path></svg><span><div><strong>Error Title</strong></div><div>Error Description</div></span></div></div></div><div class=\\"MuiFormControl-root MuiFormControl-fullWidth\\"><label class=\\"MuiFormLabel-root MuiInputLabel-root MuiInputLabel-formControl MuiInputLabel-animated Mui-required Mui-required\\" data-shrink=\\"false\\" for=\\"username\\">Username<span class=\\"MuiFormLabel-asterisk MuiInputLabel-asterisk\\">โ*</span></label><div class=\\"MuiInputBase-root MuiInput-root MuiInput-underline MuiInputBase-formControl MuiInput-formControl\\"><input aria-invalid=\\"false\\" id=\\"login--form-username\\" placeholder=\\"Your username\\" required=\\"\\" type=\\"text\\" class=\\"MuiInputBase-input MuiInput-input\\" value=\\"\\"></div></div><div class=\\"MuiFormControl-root MuiFormControl-fullWidth\\"><label class=\\"MuiFormLabel-root MuiInputLabel-root MuiInputLabel-formControl MuiInputLabel-animated Mui-required Mui-required\\" data-shrink=\\"false\\" for=\\"password\\">Password<span class=\\"MuiFormLabel-asterisk MuiInputLabel-asterisk\\">โ*</span></label><div class=\\"MuiInputBase-root MuiInput-root MuiInput-underline MuiInputBase-formControl MuiInput-formControl\\"><input aria-invalid=\\"false\\" id=\\"login--form-password\\" placeholder=\\"Your strong password\\" required=\\"\\" type=\\"password\\" class=\\"MuiInputBase-input MuiInput-input\\" value=\\"\\"></div></div></div><div class=\\"MuiDialogActions-root dialog-footer MuiDialogActions-spacing\\"><button class=\\"MuiButtonBase-root MuiButton-root MuiButton-text MuiButton-colorInherit\\" tabindex=\\"0\\" type=\\"button\\" id=\\"login--form-cancel\\"><span class=\\"MuiButton-label\\">Cancel</span><span class=\\"MuiTouchRipple-root\\"></span></button><button class=\\"MuiButtonBase-root MuiButton-root MuiButton-text MuiButton-colorInherit Mui-disabled Mui-disabled\\" tabindex=\\"-1\\" type=\\"submit\\" disabled=\\"\\" id=\\"login--form-submit\\"><span class=\\"MuiButton-label\\">Login</span></button></div></form></div></div><div tabindex=\\"0\\" data-test=\\"sentinelEnd\\"></div></div>"`;
|
||||||
|
@ -1,13 +1,13 @@
|
|||||||
import { css } from 'emotion';
|
import { css } from 'emotion';
|
||||||
|
|
||||||
import colors from '../../utils/styles/colors';
|
import { theme } from '../../design-tokens/theme';
|
||||||
|
|
||||||
export const loginDialog = css({
|
export const loginDialog = css({
|
||||||
minWidth: '300px',
|
minWidth: '300px',
|
||||||
});
|
});
|
||||||
|
|
||||||
export const loginError = css({
|
export const loginError = css({
|
||||||
backgroundColor: `${colors.red} !important`,
|
backgroundColor: `${theme.palette.red} !important`,
|
||||||
minWidth: 'inherit !important',
|
minWidth: 'inherit !important',
|
||||||
marginBottom: '10px !important',
|
marginBottom: '10px !important',
|
||||||
});
|
});
|
||||||
|
@ -1,11 +1,12 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
import { shallow } from 'enzyme';
|
|
||||||
|
import { render } from '../../utils/test-react-testing-library';
|
||||||
|
|
||||||
import Logo from './Logo';
|
import Logo from './Logo';
|
||||||
|
|
||||||
describe('<Logo /> component', () => {
|
describe('<Logo /> component', () => {
|
||||||
test('should render the component in default state', () => {
|
test('should render the component in default state', () => {
|
||||||
const wrapper = shallow(<Logo />);
|
const { container } = render(<Logo />);
|
||||||
expect(wrapper.html()).toMatchSnapshot();
|
expect(container.firstChild).toMatchSnapshot();
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
import styled from 'react-emotion';
|
import styled from '@emotion/styled';
|
||||||
|
|
||||||
import logo from './img/logo.svg';
|
import logo from './img/logo.svg';
|
||||||
|
|
||||||
@ -12,19 +12,18 @@ interface Props {
|
|||||||
size?: Size;
|
size?: Size;
|
||||||
}
|
}
|
||||||
|
|
||||||
const StyledLogo = styled('div')<Props>`
|
const StyledLogo = styled('div')<Props>(props => ({
|
||||||
&& {
|
display: 'inline-block',
|
||||||
display: inline-block;
|
verticalAlign: 'middle',
|
||||||
vertical-align: middle;
|
boxSizing: 'border-box',
|
||||||
box-sizing: border-box;
|
backgroundPosition: 'center',
|
||||||
background-position: center;
|
backgroundSize: 'contain',
|
||||||
background-size: contain;
|
backgroundImage: `url(${logo})`,
|
||||||
background-image: url(${logo});
|
backgroundRepeat: ' no-repeat',
|
||||||
background-repeat: no-repeat;
|
width: props.size,
|
||||||
width: ${({ size }) => size};
|
height: props.size,
|
||||||
height: ${({ size }) => size};
|
}));
|
||||||
}
|
|
||||||
`;
|
|
||||||
const Logo: React.FC<Props> = ({ size = Size.Small }) => {
|
const Logo: React.FC<Props> = ({ size = Size.Small }) => {
|
||||||
return <StyledLogo size={size} />;
|
return <StyledLogo size={size} />;
|
||||||
};
|
};
|
||||||
|
@ -1,3 +1,19 @@
|
|||||||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||||
|
|
||||||
exports[`<Logo /> component should render the component in default state 1`] = `"<div class=\\"css-1sifsqk em793ed0\\"></div>"`;
|
exports[`<Logo /> component should render the component in default state 1`] = `
|
||||||
|
.emotion-0 {
|
||||||
|
display: inline-block;
|
||||||
|
vertical-align: middle;
|
||||||
|
box-sizing: border-box;
|
||||||
|
background-position: center;
|
||||||
|
background-size: contain;
|
||||||
|
background-image: url([object Object]);
|
||||||
|
background-repeat: no-repeat;
|
||||||
|
width: 40px;
|
||||||
|
height: 40px;
|
||||||
|
}
|
||||||
|
|
||||||
|
<div
|
||||||
|
class="emotion-0 emotion-1"
|
||||||
|
/>
|
||||||
|
`;
|
||||||
|
@ -1,25 +1,16 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
import { shallow, mount } from 'enzyme';
|
|
||||||
|
import { render } from '../../utils/test-react-testing-library';
|
||||||
|
|
||||||
import NoItems from './NoItems';
|
import NoItems from './NoItems';
|
||||||
|
|
||||||
console.error = jest.fn();
|
|
||||||
|
|
||||||
describe('<NoItem /> component', () => {
|
describe('<NoItem /> component', () => {
|
||||||
const props = {
|
const props = {
|
||||||
text: 'test',
|
text: 'test',
|
||||||
};
|
};
|
||||||
|
|
||||||
test('should load the component in default state', () => {
|
test('should load the component in default state', () => {
|
||||||
const wrapper = shallow(<NoItems text={props.text} />);
|
const { container } = render(<NoItems text={props.text} />);
|
||||||
expect(wrapper.html()).toMatchSnapshot();
|
expect(container.firstChild).toMatchSnapshot();
|
||||||
});
|
|
||||||
|
|
||||||
test('should set html from props', () => {
|
|
||||||
const props = {
|
|
||||||
text: 'This is a test string',
|
|
||||||
};
|
|
||||||
const wrapper = mount(<NoItems text={props.text} />);
|
|
||||||
expect(wrapper.html()).toMatchSnapshot();
|
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
@ -1,5 +1,9 @@
|
|||||||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||||
|
|
||||||
exports[`<NoItem /> component should load the component in default state 1`] = `"<h6 class=\\"MuiTypography-root MuiTypography-subtitle1 MuiTypography-gutterBottom\\">test</h6>"`;
|
exports[`<NoItem /> component should load the component in default state 1`] = `
|
||||||
|
<h6
|
||||||
exports[`<NoItem /> component should set html from props 1`] = `"<h6 class=\\"MuiTypography-root MuiTypography-subtitle1 MuiTypography-gutterBottom\\">This is a test string</h6>"`;
|
class="MuiTypography-root MuiTypography-subtitle1 MuiTypography-gutterBottom"
|
||||||
|
>
|
||||||
|
test
|
||||||
|
</h6>
|
||||||
|
`;
|
||||||
|
@ -1,12 +1,12 @@
|
|||||||
import styled from 'react-emotion';
|
import styled from '@emotion/styled';
|
||||||
import React, { useCallback } from 'react';
|
import React, { useCallback } from 'react';
|
||||||
import { useHistory } from 'react-router-dom';
|
import { useHistory } from 'react-router-dom';
|
||||||
|
|
||||||
import Box from '../../muiComponents/Box';
|
import Box from '../../muiComponents/Box';
|
||||||
import Button from '../../muiComponents/Button';
|
import Button from '../../muiComponents/Button';
|
||||||
import Heading from '../../muiComponents/Heading';
|
import Heading from '../../muiComponents/Heading';
|
||||||
import colors from '../../utils/styles/colors';
|
|
||||||
import { spacings } from '../../utils/styles/spacings';
|
import { spacings } from '../../utils/styles/spacings';
|
||||||
|
import { Theme } from '../../design-tokens/theme';
|
||||||
|
|
||||||
import PackageImg from './img/package.svg';
|
import PackageImg from './img/package.svg';
|
||||||
|
|
||||||
@ -19,10 +19,10 @@ const EmptyPackage = styled('img')({
|
|||||||
margin: '0 auto',
|
margin: '0 auto',
|
||||||
});
|
});
|
||||||
|
|
||||||
const StyledHeading = styled(Heading)({
|
const StyledHeading = styled(Heading)<{ theme?: Theme }>(props => ({
|
||||||
color: colors.primary,
|
color: props.theme && props.theme.palette.primary.main,
|
||||||
marginBottom: spacings.sm,
|
marginBottom: spacings.sm,
|
||||||
});
|
}));
|
||||||
|
|
||||||
const NotFound: React.FC = () => {
|
const NotFound: React.FC = () => {
|
||||||
const history = useHistory();
|
const history = useHistory();
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
import { BrowserRouter as Router } from 'react-router-dom';
|
import { BrowserRouter as Router } from 'react-router-dom';
|
||||||
import { render, fireEvent } from '@testing-library/react';
|
|
||||||
|
import { render, fireEvent } from '../../utils/test-react-testing-library';
|
||||||
|
|
||||||
import NotFound, { GO_TO_HOME_PAGE } from './NotFound';
|
import NotFound, { GO_TO_HOME_PAGE } from './NotFound';
|
||||||
|
|
||||||
|
@ -1,17 +1,27 @@
|
|||||||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||||
|
|
||||||
exports[`<NotFound /> component should load the component in default state 1`] = `
|
exports[`<NotFound /> component should load the component in default state 1`] = `
|
||||||
|
.emotion-0 {
|
||||||
|
width: 150px;
|
||||||
|
margin: 0 auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.emotion-2 {
|
||||||
|
color: #4b5e40;
|
||||||
|
margin-bottom: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
<div
|
<div
|
||||||
class="MuiBox-root MuiBox-root-2"
|
class="MuiBox-root MuiBox-root-2"
|
||||||
data-testid="404"
|
data-testid="404"
|
||||||
>
|
>
|
||||||
<img
|
<img
|
||||||
alt="404 - Page not found"
|
alt="404 - Page not found"
|
||||||
class="css-17y48z2 emotion-0"
|
class="emotion-0 emotion-1"
|
||||||
src="[object Object]"
|
src="[object Object]"
|
||||||
/>
|
/>
|
||||||
<h4
|
<h4
|
||||||
class="MuiTypography-root not-found-text css-7pe7kh emotion-1 MuiTypography-h4"
|
class="MuiTypography-root not-found-text emotion-2 emotion-3 MuiTypography-h4"
|
||||||
>
|
>
|
||||||
Sorry, we couldn't find it...
|
Sorry, we couldn't find it...
|
||||||
</h4>
|
</h4>
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import styled from 'react-emotion';
|
import styled from '@emotion/styled';
|
||||||
|
|
||||||
import { default as Typography } from '../../muiComponents/Heading';
|
import { default as Typography } from '../../muiComponents/Heading';
|
||||||
import List from '../../muiComponents/List';
|
import List from '../../muiComponents/List';
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
import { shallow } from 'enzyme';
|
|
||||||
|
|
||||||
|
import { shallow } from '../../utils/test-enzyme';
|
||||||
import Tag from '../Tag';
|
import Tag from '../Tag';
|
||||||
|
|
||||||
import Package from './Package';
|
import Package from './Package';
|
||||||
|
@ -1,10 +1,9 @@
|
|||||||
import styled from 'react-emotion';
|
import styled from '@emotion/styled';
|
||||||
import { Link } from 'react-router-dom';
|
import { Link } from 'react-router-dom';
|
||||||
|
|
||||||
import { breakpoints } from '../../utils/styles/media';
|
import { breakpoints } from '../../utils/styles/media';
|
||||||
import Ico from '../Icon';
|
import Ico from '../Icon';
|
||||||
import Label from '../Label';
|
import Label from '../Label';
|
||||||
import colors from '../../utils/styles/colors';
|
|
||||||
import { fontWeight } from '../../utils/styles/sizes';
|
import { fontWeight } from '../../utils/styles/sizes';
|
||||||
import { default as MuiIconButton } from '../../muiComponents/IconButton';
|
import { default as MuiIconButton } from '../../muiComponents/IconButton';
|
||||||
import { default as Photo } from '../../muiComponents/Avatar';
|
import { default as Photo } from '../../muiComponents/Avatar';
|
||||||
@ -12,147 +11,115 @@ import List from '../../muiComponents/List';
|
|||||||
import { default as Typography } from '../../muiComponents/Heading';
|
import { default as Typography } from '../../muiComponents/Heading';
|
||||||
import Grid from '../../muiComponents/Grid';
|
import Grid from '../../muiComponents/Grid';
|
||||||
import ListItemText from '../../muiComponents/ListItemText';
|
import ListItemText from '../../muiComponents/ListItemText';
|
||||||
|
import { Theme } from '../../design-tokens/theme';
|
||||||
|
|
||||||
export const OverviewItem = styled('span')`
|
export const OverviewItem = styled('span')<{ theme?: Theme }>(props => ({
|
||||||
&& {
|
display: 'flex',
|
||||||
display: flex;
|
alignItems: 'center',
|
||||||
align-items: center;
|
margin: '0 0 0 16px',
|
||||||
margin: 0 0 0 16px;
|
color: props.theme && props.theme.palette.greyLight2,
|
||||||
color: ${colors.greyLight2};
|
fontSize: 12,
|
||||||
font-size: 12px;
|
[`@media (max-width: ${breakpoints.medium}px)`]: {
|
||||||
@media (max-width: ${breakpoints.medium}px) {
|
':nth-of-type(3)': {
|
||||||
&:nth-child(3) {
|
display: 'none',
|
||||||
display: none;
|
},
|
||||||
}
|
},
|
||||||
}
|
[`@media (max-width: ${breakpoints.small}px)`]: {
|
||||||
@media (max-width: ${breakpoints.small}px) {
|
':nth-of-type(4)': {
|
||||||
&:nth-child(4) {
|
display: 'none',
|
||||||
display: none;
|
},
|
||||||
}
|
},
|
||||||
}
|
}));
|
||||||
}
|
|
||||||
`;
|
|
||||||
|
|
||||||
export const Icon = styled(Ico)({
|
export const Icon = styled(Ico)<{ theme?: Theme }>(props => ({
|
||||||
'&&': {
|
|
||||||
margin: '2px 10px 0 0',
|
margin: '2px 10px 0 0',
|
||||||
fill: colors.greyLight2,
|
fill: props.theme && props.theme.palette.greyLight2,
|
||||||
},
|
}));
|
||||||
});
|
|
||||||
|
|
||||||
export const Published = styled('span')({
|
export const Published = styled('span')<{ theme?: Theme }>(props => ({
|
||||||
'&&': {
|
color: props.theme && props.theme.palette.greyLight2,
|
||||||
color: colors.greyLight2,
|
|
||||||
margin: '0 5px 0 0',
|
margin: '0 5px 0 0',
|
||||||
},
|
}));
|
||||||
});
|
|
||||||
|
|
||||||
export const Text = styled(Label)({
|
export const Text = styled(Label)<{ theme?: Theme }>(props => ({
|
||||||
'&&': {
|
|
||||||
fontSize: '12px',
|
fontSize: '12px',
|
||||||
fontWeight: fontWeight.semiBold,
|
fontWeight: fontWeight.semiBold,
|
||||||
color: colors.greyLight2,
|
color: props.theme && props.theme.palette.greyLight2,
|
||||||
},
|
}));
|
||||||
});
|
|
||||||
|
|
||||||
export const Details = styled('span')({
|
export const Details = styled('span')({
|
||||||
'&&': {
|
|
||||||
marginLeft: '5px',
|
marginLeft: '5px',
|
||||||
lineHeight: 1.5,
|
lineHeight: 1.5,
|
||||||
display: 'flex',
|
display: 'flex',
|
||||||
flexDirection: 'column',
|
flexDirection: 'column',
|
||||||
},
|
|
||||||
});
|
});
|
||||||
|
|
||||||
export const Author = styled('div')({
|
export const Author = styled('div')({
|
||||||
'&&': {
|
|
||||||
display: 'flex',
|
display: 'flex',
|
||||||
alignItems: 'center',
|
alignItems: 'center',
|
||||||
},
|
|
||||||
});
|
});
|
||||||
|
|
||||||
export const Avatar = styled(Photo)({
|
export const Avatar = styled(Photo)({
|
||||||
'&&': {
|
|
||||||
width: '20px',
|
width: '20px',
|
||||||
height: '20px',
|
height: '20px',
|
||||||
},
|
|
||||||
});
|
});
|
||||||
|
|
||||||
export const WrapperLink = styled(Link)({
|
export const WrapperLink = styled(Link)({
|
||||||
'&&': {
|
|
||||||
textDecoration: 'none',
|
textDecoration: 'none',
|
||||||
},
|
|
||||||
});
|
});
|
||||||
|
|
||||||
export const PackageTitle = styled('span')`
|
export const PackageTitle = styled('span')<{ theme?: Theme }>(props => ({
|
||||||
&& {
|
fontWeight: 600,
|
||||||
font-weight: 600;
|
fontSize: 20,
|
||||||
font-size: 20px;
|
display: 'block',
|
||||||
display: block;
|
marginBottom: 12,
|
||||||
margin-bottom: 12px;
|
color: props.theme && props.theme.palette.eclipse,
|
||||||
color: ${colors.eclipse};
|
cursor: 'pointer',
|
||||||
cursor: pointer;
|
':hover': {
|
||||||
|
color: props.theme && props.theme.palette.black,
|
||||||
&:hover {
|
},
|
||||||
color: ${colors.black};
|
[`@media (max-width: ${breakpoints.small}px)`]: {
|
||||||
}
|
fontSize: 14,
|
||||||
|
marginBottom: 8,
|
||||||
@media (max-width: ${breakpoints.small}px) {
|
},
|
||||||
font-size: 14px;
|
}));
|
||||||
margin-bottom: 8px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
`;
|
|
||||||
|
|
||||||
export const GridRightAligned = styled(Grid)({
|
export const GridRightAligned = styled(Grid)({
|
||||||
'&&': {
|
|
||||||
textAlign: 'right',
|
textAlign: 'right',
|
||||||
},
|
|
||||||
});
|
});
|
||||||
|
|
||||||
export const PackageList = styled(List)({
|
export const PackageList = styled(List)<{ theme?: Theme }>(props => ({
|
||||||
'&&': {
|
|
||||||
padding: '12px 0 12px 0',
|
padding: '12px 0 12px 0',
|
||||||
|
':hover': {
|
||||||
'&:hover': {
|
backgroundColor: props.theme && props.theme.palette.greyLight3,
|
||||||
backgroundColor: colors.greyLight3,
|
|
||||||
},
|
},
|
||||||
|
|
||||||
'> :last-child': {
|
'> :last-child': {
|
||||||
paddingTop: 0,
|
paddingTop: 0,
|
||||||
},
|
},
|
||||||
},
|
}));
|
||||||
});
|
|
||||||
|
|
||||||
export const IconButton = styled(MuiIconButton)({
|
export const IconButton = styled(MuiIconButton)({
|
||||||
'&&': {
|
padding: 6,
|
||||||
padding: '6px',
|
|
||||||
|
|
||||||
svg: {
|
svg: {
|
||||||
fontSize: '16px',
|
fontSize: 16,
|
||||||
},
|
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
export const TagContainer = styled('span')`
|
export const TagContainer = styled('span')({
|
||||||
&& {
|
marginTop: 8,
|
||||||
margin-top: 8px;
|
marginBottom: 12,
|
||||||
margin-bottom: 12px;
|
display: 'block',
|
||||||
display: block;
|
[`@media (max-width: ${breakpoints.medium}px)`]: {
|
||||||
@media (max-width: ${breakpoints.medium}px) {
|
display: 'none',
|
||||||
display: none;
|
},
|
||||||
}
|
});
|
||||||
}
|
|
||||||
`;
|
|
||||||
|
|
||||||
export const PackageListItemText = styled(ListItemText)({
|
export const PackageListItemText = styled(ListItemText)({
|
||||||
'&&': {
|
|
||||||
paddingRight: 0,
|
paddingRight: 0,
|
||||||
},
|
|
||||||
});
|
});
|
||||||
|
|
||||||
export const Description = styled(Typography)({
|
export const Description = styled(Typography)<{ theme?: Theme }>(props => ({
|
||||||
color: colors.greyDark2,
|
color: props.theme && props.theme.palette.greyDark2,
|
||||||
fontSize: '14px',
|
fontSize: '14px',
|
||||||
paddingRight: 0,
|
paddingRight: 0,
|
||||||
});
|
}));
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
import { mount } from 'enzyme';
|
|
||||||
import { BrowserRouter } from 'react-router-dom';
|
import { BrowserRouter } from 'react-router-dom';
|
||||||
|
|
||||||
|
import { mount } from '../../utils/test-enzyme';
|
||||||
import Help from '../Help';
|
import Help from '../Help';
|
||||||
|
|
||||||
import { PackageList } from './PackageList';
|
import { PackageList } from './PackageList';
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
import { mount } from 'enzyme';
|
|
||||||
|
import { mount } from '../../utils/test-enzyme';
|
||||||
|
|
||||||
import Readme from './Readme';
|
import Readme from './Readme';
|
||||||
|
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
import { render, cleanup, fireEvent } from '@testing-library/react';
|
|
||||||
|
import { render, cleanup, fireEvent } from '../../utils/test-react-testing-library';
|
||||||
|
|
||||||
import RegistryInfoContent from './RegistryInfoContent';
|
import RegistryInfoContent from './RegistryInfoContent';
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import React, { useState } from 'react';
|
import React, { useState } from 'react';
|
||||||
import { css } from 'emotion';
|
import { css } from '@emotion/core';
|
||||||
|
|
||||||
import CopyToClipBoard from '../CopyToClipBoard';
|
import CopyToClipBoard from '../CopyToClipBoard';
|
||||||
import { getCLISetRegistry, getCLIChangePassword, getCLISetConfigRegistry } from '../../utils/cli-utils';
|
import { getCLISetRegistry, getCLIChangePassword, getCLISetConfigRegistry } from '../../utils/cli-utils';
|
||||||
@ -70,10 +70,10 @@ const RegistryInfoContent: React.FC<Props> = props => {
|
|||||||
return (
|
return (
|
||||||
<CommandContainer>
|
<CommandContainer>
|
||||||
<Typography
|
<Typography
|
||||||
className={css`
|
// className={css`
|
||||||
padding: 0;
|
// padding: 0;
|
||||||
min-height: 170;
|
// min-height: 170;
|
||||||
`}
|
// `}
|
||||||
component="div">
|
component="div">
|
||||||
{children}
|
{children}
|
||||||
</Typography>
|
</Typography>
|
||||||
|
@ -1,7 +1,5 @@
|
|||||||
import styled from 'react-emotion';
|
import styled from '@emotion/styled';
|
||||||
|
|
||||||
export const CommandContainer = styled('div')({
|
export const CommandContainer = styled('div')({
|
||||||
'&&': {
|
paddingTop: 20,
|
||||||
paddingTop: '20px',
|
|
||||||
},
|
|
||||||
});
|
});
|
||||||
|
@ -1,15 +1,15 @@
|
|||||||
import styled from 'react-emotion';
|
import styled from '@emotion/styled';
|
||||||
|
|
||||||
import colors from '../../utils/styles/colors';
|
|
||||||
import { fontSize } from '../../utils/styles/sizes';
|
import { fontSize } from '../../utils/styles/sizes';
|
||||||
import DialogTitle from '../../muiComponents/DialogTitle';
|
import DialogTitle from '../../muiComponents/DialogTitle';
|
||||||
import DialogContent from '../../muiComponents/DialogContent';
|
import DialogContent from '../../muiComponents/DialogContent';
|
||||||
|
import { Theme } from '../../design-tokens/theme';
|
||||||
|
|
||||||
export const Title = styled(DialogTitle)({
|
export const Title = styled(DialogTitle)<{ theme?: Theme }>(props => ({
|
||||||
backgroundColor: colors.primary,
|
backgroundColor: props.theme && props.theme.palette.primary.main,
|
||||||
color: colors.white,
|
color: props.theme && props.theme.palette.white,
|
||||||
fontSize: fontSize.lg,
|
fontSize: fontSize.lg,
|
||||||
});
|
}));
|
||||||
|
|
||||||
export const Content = styled(DialogContent)({
|
export const Content = styled(DialogContent)({
|
||||||
padding: '0 24px',
|
padding: '0 24px',
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
import { mount } from 'enzyme';
|
|
||||||
|
import { mount } from '../../utils/test-enzyme';
|
||||||
|
|
||||||
import Repository from './Repository';
|
import Repository from './Repository';
|
||||||
|
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||||
|
|
||||||
exports[`<Repository /> component should render the component in default state 1`] = `"<ul class=\\"MuiList-root MuiList-dense MuiList-padding MuiList-subheader\\"><h6 class=\\"MuiTypography-root css-b8upko e1wmjxnh0 MuiTypography-subtitle1\\">Repository</h6><div class=\\"MuiButtonBase-root MuiListItem-root css-xugzlj e1wmjxnh4 MuiListItem-dense MuiListItem-gutters MuiListItem-button\\" tabindex=\\"0\\" role=\\"button\\" aria-disabled=\\"false\\"><div class=\\"MuiAvatar-root MuiAvatar-circle MuiAvatar-colorDefault\\"></div><div class=\\"MuiListItemText-root css-1vhg3jx e1wmjxnh5 MuiListItemText-dense\\"><span class=\\"MuiTypography-root MuiListItemText-primary MuiTypography-body2\\"><div class=\\"css-1mta3t8 eb8w2fo0\\"><span class=\\"css-lh0wgu eb8w2fo1\\"><a href=\\"git+https://github.com/verdaccio/ui.git\\" target=\\"_blank\\" class=\\"css-15gl0ho e1wmjxnh2\\">git+https://github.com/verdaccio/ui.git</a></span><button class=\\"MuiButtonBase-root MuiIconButton-root css-0 eb8w2fo2\\" tabindex=\\"0\\" type=\\"button\\" title=\\"Copy to Clipboard\\"><span class=\\"MuiIconButton-label\\"><svg class=\\"MuiSvgIcon-root\\" focusable=\\"false\\" viewBox=\\"0 0 24 24\\" aria-hidden=\\"true\\" role=\\"presentation\\"><path d=\\"M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm-1 4l6 6v10c0 1.1-.9 2-2 2H7.99C6.89 23 6 22.1 6 21l.01-14c0-1.1.89-2 1.99-2h7zm-1 7h5.5L14 6.5V12z\\"></path></svg></span><span class=\\"MuiTouchRipple-root\\"></span></button></div></span></div><span class=\\"MuiTouchRipple-root\\"></span></div></ul>"`;
|
exports[`<Repository /> component should render the component in default state 1`] = `"<ul class=\\"MuiList-root MuiList-dense MuiList-padding MuiList-subheader\\"><h6 class=\\"MuiTypography-root css-1na337r-StyledText e1wmjxnh0 MuiTypography-subtitle1\\">Repository</h6><div class=\\"MuiButtonBase-root MuiListItem-root css-719o4l-RepositoryListItem e1wmjxnh4 MuiListItem-dense MuiListItem-gutters MuiListItem-button\\" tabindex=\\"0\\" role=\\"button\\" aria-disabled=\\"false\\"><div class=\\"MuiAvatar-root MuiAvatar-circle MuiAvatar-colorDefault\\"></div><div class=\\"MuiListItemText-root css-1lp4n02-RepositoryListItemText e1wmjxnh5 MuiListItemText-dense\\"><span class=\\"MuiTypography-root MuiListItemText-primary MuiTypography-body2\\"><div class=\\"css-1in239f-ClipBoardCopy eb8w2fo0\\"><span class=\\"css-7gar9h-ClipBoardCopyText eb8w2fo1\\"><a href=\\"git+https://github.com/verdaccio/ui.git\\" target=\\"_blank\\" class=\\"css-6tc7qn-GithubLink e1wmjxnh2\\">git+https://github.com/verdaccio/ui.git</a></span><button class=\\"MuiButtonBase-root MuiIconButton-root css-1fs86cq-CopyIcon eb8w2fo2\\" tabindex=\\"0\\" type=\\"button\\" title=\\"Copy to Clipboard\\"><span class=\\"MuiIconButton-label\\"><svg class=\\"MuiSvgIcon-root\\" focusable=\\"false\\" viewBox=\\"0 0 24 24\\" aria-hidden=\\"true\\" role=\\"presentation\\"><path d=\\"M16 1H4c-1.1 0-2 .9-2 2v14h2V3h12V1zm-1 4l6 6v10c0 1.1-.9 2-2 2H7.99C6.89 23 6 22.1 6 21l.01-14c0-1.1.89-2 1.99-2h7zm-1 7h5.5L14 6.5V12z\\"></path></svg></span><span class=\\"MuiTouchRipple-root\\"></span></button></div></span></div><span class=\\"MuiTouchRipple-root\\"></span></div></ul>"`;
|
||||||
|
@ -1,12 +1,12 @@
|
|||||||
import styled from 'react-emotion';
|
import styled from '@emotion/styled';
|
||||||
|
|
||||||
import Github from '../../icons/GitHub';
|
import Github from '../../icons/GitHub';
|
||||||
import colors from '../../utils/styles/colors';
|
|
||||||
import { fontWeight } from '../../utils/styles/sizes';
|
import { fontWeight } from '../../utils/styles/sizes';
|
||||||
import Text from '../../muiComponents/Text';
|
import Text from '../../muiComponents/Text';
|
||||||
import ListItem from '../../muiComponents/ListItem';
|
import ListItem from '../../muiComponents/ListItem';
|
||||||
import ListItemText from '../../muiComponents/ListItemText';
|
import ListItemText from '../../muiComponents/ListItemText';
|
||||||
import Grid from '../../muiComponents/Grid';
|
import Grid from '../../muiComponents/Grid';
|
||||||
|
import { Theme } from '../../design-tokens/theme';
|
||||||
|
|
||||||
export const StyledText = styled(Text)({
|
export const StyledText = styled(Text)({
|
||||||
fontWeight: fontWeight.bold,
|
fontWeight: fontWeight.bold,
|
||||||
@ -17,32 +17,24 @@ export const GridRepo = styled(Grid)({
|
|||||||
alignItems: 'center',
|
alignItems: 'center',
|
||||||
});
|
});
|
||||||
|
|
||||||
export const GithubLink = styled('a')({
|
export const GithubLink = styled('a')<{ theme?: Theme }>(props => ({
|
||||||
'&&': {
|
color: props.theme && props.theme.palette.primary.main,
|
||||||
color: colors.primary,
|
}));
|
||||||
},
|
|
||||||
});
|
|
||||||
|
|
||||||
export const GithubLogo = styled(Github)({
|
export const GithubLogo = styled(Github)<{ theme?: Theme }>(props => ({
|
||||||
'&&': {
|
fontSize: 40,
|
||||||
fontSize: '40px',
|
color: props.theme && props.theme.palette.primary.main,
|
||||||
color: colors.primary,
|
backgroundColor: props.theme && props.theme.palette.greySuperLight,
|
||||||
backgroundColor: colors.greySuperLight,
|
}));
|
||||||
},
|
|
||||||
});
|
|
||||||
|
|
||||||
export const RepositoryListItem = styled(ListItem)({
|
export const RepositoryListItem = styled(ListItem)({
|
||||||
'&&': {
|
|
||||||
padding: 0,
|
padding: 0,
|
||||||
},
|
':hover': {
|
||||||
'&&:hover': {
|
|
||||||
backgroundColor: 'transparent',
|
backgroundColor: 'transparent',
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
export const RepositoryListItemText = styled(ListItemText)({
|
export const RepositoryListItemText = styled(ListItemText)({
|
||||||
'&&': {
|
|
||||||
padding: '0 10px',
|
padding: '0 10px',
|
||||||
margin: 0,
|
margin: 0,
|
||||||
},
|
|
||||||
});
|
});
|
||||||
|
@ -1,7 +1,8 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
import { mount, shallow } from 'enzyme';
|
|
||||||
import { BrowserRouter } from 'react-router-dom';
|
import { BrowserRouter } from 'react-router-dom';
|
||||||
|
|
||||||
|
import { mount, shallow } from '../../utils/test-enzyme';
|
||||||
|
|
||||||
import Search from './Search';
|
import Search from './Search';
|
||||||
|
|
||||||
const SEARCH_FILE_PATH = './Search';
|
const SEARCH_FILE_PATH = './Search';
|
||||||
|
@ -1,14 +1,14 @@
|
|||||||
import React, { KeyboardEvent, Component, ReactElement } from 'react';
|
import React, { KeyboardEvent, Component, ReactElement } from 'react';
|
||||||
import { withRouter, RouteComponentProps } from 'react-router-dom';
|
import { withRouter, RouteComponentProps } from 'react-router-dom';
|
||||||
import { SuggestionSelectedEventData, ChangeEvent } from 'react-autosuggest';
|
import { SuggestionSelectedEventData, ChangeEvent } from 'react-autosuggest';
|
||||||
import { css } from 'emotion';
|
import styled from '@emotion/styled';
|
||||||
import { default as IconSearch } from '@material-ui/icons/Search';
|
import { default as IconSearch } from '@material-ui/icons/Search';
|
||||||
import debounce from 'lodash/debounce';
|
import debounce from 'lodash/debounce';
|
||||||
|
|
||||||
import InputAdornment from '../../muiComponents/InputAdornment';
|
import InputAdornment from '../../muiComponents/InputAdornment';
|
||||||
import AutoComplete from '../AutoComplete';
|
import AutoComplete from '../AutoComplete';
|
||||||
import colors from '../../utils/styles/colors';
|
|
||||||
import { callSearch } from '../../utils/calls';
|
import { callSearch } from '../../utils/calls';
|
||||||
|
import { Theme } from '../../design-tokens/theme';
|
||||||
|
|
||||||
export interface State {
|
export interface State {
|
||||||
search: string;
|
search: string;
|
||||||
@ -34,6 +34,10 @@ const CONSTANTS = {
|
|||||||
ABORT_ERROR: 'AbortError',
|
ABORT_ERROR: 'AbortError',
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const StyledInputAdornment = styled(InputAdornment)<{ theme?: Theme }>(props => ({
|
||||||
|
color: props.theme && props.theme.palette.white,
|
||||||
|
}));
|
||||||
|
|
||||||
export class Search extends Component<RouteComponentProps<{}>, State> {
|
export class Search extends Component<RouteComponentProps<{}>, State> {
|
||||||
constructor(props: RouteComponentProps<{}>) {
|
constructor(props: RouteComponentProps<{}>) {
|
||||||
super(props);
|
super(props);
|
||||||
@ -55,7 +59,6 @@ export class Search extends Component<RouteComponentProps<{}>, State> {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<AutoComplete
|
<AutoComplete
|
||||||
color={colors.white}
|
|
||||||
onBlur={this.handleOnBlur}
|
onBlur={this.handleOnBlur}
|
||||||
onChange={this.handleSearch}
|
onChange={this.handleSearch}
|
||||||
onCleanSuggestions={this.handlePackagesClearRequested}
|
onCleanSuggestions={this.handlePackagesClearRequested}
|
||||||
@ -171,14 +174,9 @@ export class Search extends Component<RouteComponentProps<{}>, State> {
|
|||||||
|
|
||||||
public getAdorment(): JSX.Element {
|
public getAdorment(): JSX.Element {
|
||||||
return (
|
return (
|
||||||
<InputAdornment
|
<StyledInputAdornment position={'start'}>
|
||||||
className={css`
|
|
||||||
color: ${colors.white};
|
|
||||||
}
|
|
||||||
`}
|
|
||||||
position={'start'}>
|
|
||||||
<IconSearch />
|
<IconSearch />
|
||||||
</InputAdornment>
|
</StyledInputAdornment>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||||
|
|
||||||
exports[`<Search /> component test should load the component in default state 1`] = `"<div class=\\"css-1crzyyo e1rflf270\\"><div role=\\"combobox\\" aria-haspopup=\\"listbox\\" aria-owns=\\"react-autowhatever-1\\" aria-expanded=\\"false\\" class=\\"react-autosuggest__container\\"><div class=\\"MuiFormControl-root MuiTextField-root react-autosuggest__input MuiFormControl-fullWidth\\" aria-autocomplete=\\"list\\" aria-controls=\\"react-autowhatever-1\\"><div class=\\"MuiInputBase-root MuiInput-root css-n9ojyg MuiInput-underline MuiInputBase-fullWidth MuiInput-fullWidth MuiInputBase-formControl MuiInput-formControl MuiInputBase-adornedStart\\"><div class=\\"MuiInputAdornment-root css-fvu7gn MuiInputAdornment-positionStart\\"><svg class=\\"MuiSvgIcon-root\\" focusable=\\"false\\" viewBox=\\"0 0 24 24\\" aria-hidden=\\"true\\" role=\\"presentation\\"><path d=\\"M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z\\"></path></svg></div><input aria-invalid=\\"false\\" autocomplete=\\"off\\" placeholder=\\"Search Packages\\" type=\\"text\\" class=\\"MuiInputBase-input MuiInput-input css-hodoyq MuiInputBase-inputAdornedStart\\" value=\\"\\"></div></div><div class=\\"MuiPaper-root MuiPaper-elevation1 react-autosuggest__suggestions-container css-cfo6a e1rflf271\\" id=\\"react-autowhatever-1\\" role=\\"listbox\\"></div></div></div>"`;
|
exports[`<Search /> component test should load the component in default state 1`] = `"<div class=\\"css-pnwf4z-Wrapper e1rflf270\\"><div role=\\"combobox\\" aria-haspopup=\\"listbox\\" aria-owns=\\"react-autowhatever-1\\" aria-expanded=\\"false\\" class=\\"react-autosuggest__container\\"><div class=\\"MuiFormControl-root MuiTextField-root react-autosuggest__input css-ae5nkp-StyledTextField e1rflf271 MuiFormControl-fullWidth\\" aria-autocomplete=\\"list\\" aria-controls=\\"react-autowhatever-1\\"><div class=\\"MuiInputBase-root MuiInput-root MuiInput-underline MuiInputBase-fullWidth MuiInput-fullWidth MuiInputBase-formControl MuiInput-formControl MuiInputBase-adornedStart\\"><div class=\\"MuiInputAdornment-root css-1wub48n-StyledInputAdornment e1n3ivvz0 MuiInputAdornment-positionStart\\"><svg class=\\"MuiSvgIcon-root\\" focusable=\\"false\\" viewBox=\\"0 0 24 24\\" aria-hidden=\\"true\\" role=\\"presentation\\"><path d=\\"M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z\\"></path></svg></div><input aria-invalid=\\"false\\" autocomplete=\\"off\\" placeholder=\\"Search Packages\\" type=\\"text\\" class=\\"MuiInputBase-input MuiInput-input MuiInputBase-inputAdornedStart\\" value=\\"\\"></div></div><div class=\\"MuiPaper-root MuiPaper-elevation1 react-autosuggest__suggestions-container css-kc7cda-SuggestionContainer e1rflf272\\" id=\\"react-autowhatever-1\\" role=\\"listbox\\"></div></div></div>"`;
|
||||||
|
@ -1,12 +1,13 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
import { shallow } from 'enzyme';
|
|
||||||
|
import { mount } from '../../utils/test-enzyme';
|
||||||
|
|
||||||
import Spinner from './Spinner';
|
import Spinner from './Spinner';
|
||||||
import { Circular, Wrapper } from './styles';
|
import { Circular, Wrapper } from './styles';
|
||||||
|
|
||||||
describe('<Spinner /> component', () => {
|
describe('<Spinner /> component', () => {
|
||||||
test('should render the component in default state', () => {
|
test('should render the component in default state', () => {
|
||||||
const wrapper = shallow(<Spinner />);
|
const wrapper = mount(<Spinner />);
|
||||||
const wrapperComponent = wrapper.find(Wrapper);
|
const wrapperComponent = wrapper.find(Wrapper);
|
||||||
const circular = wrapper.find(Circular);
|
const circular = wrapper.find(Circular);
|
||||||
|
|
||||||
@ -15,7 +16,7 @@ describe('<Spinner /> component', () => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
test('should render the component in custom state', () => {
|
test('should render the component in custom state', () => {
|
||||||
const wrapper = shallow(<Spinner centered={true} size={10} />);
|
const wrapper = mount(<Spinner centered={true} size={10} />);
|
||||||
const wrapperComponent = wrapper.find(Wrapper);
|
const wrapperComponent = wrapper.find(Wrapper);
|
||||||
const circular = wrapper.find(Circular);
|
const circular = wrapper.find(Circular);
|
||||||
|
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||||
|
|
||||||
exports[`<Spinner /> component should render the component in custom state 1`] = `"<div class=\\"css-zo92co e1ag4h8b0\\"><div class=\\"MuiCircularProgress-root css-15gl0ho e1ag4h8b1 MuiCircularProgress-colorPrimary MuiCircularProgress-indeterminate\\" style=\\"width:10px;height:10px\\" role=\\"progressbar\\"><svg class=\\"MuiCircularProgress-svg\\" viewBox=\\"22 22 44 44\\"><circle class=\\"MuiCircularProgress-circle MuiCircularProgress-circleIndeterminate\\" cx=\\"44\\" cy=\\"44\\" r=\\"20.2\\" fill=\\"none\\" stroke-width=\\"3.6\\"></circle></svg></div></div>"`;
|
exports[`<Spinner /> component should render the component in custom state 1`] = `"<div class=\\"css-1ju0ex2-Wrapper e1ag4h8b0\\"><div class=\\"MuiCircularProgress-root css-evyw70-Circular e1ag4h8b1 MuiCircularProgress-colorPrimary MuiCircularProgress-indeterminate\\" style=\\"width: 10px; height: 10px;\\" role=\\"progressbar\\"><svg class=\\"MuiCircularProgress-svg\\" viewBox=\\"22 22 44 44\\"><circle class=\\"MuiCircularProgress-circle MuiCircularProgress-circleIndeterminate\\" cx=\\"44\\" cy=\\"44\\" r=\\"20.2\\" fill=\\"none\\" stroke-width=\\"3.6\\"></circle></svg></div></div>"`;
|
||||||
|
@ -1,30 +1,24 @@
|
|||||||
import styled, { css } from 'react-emotion';
|
import styled from '@emotion/styled';
|
||||||
|
|
||||||
import colors from '../../utils/styles/colors';
|
|
||||||
import CircularProgress from '../../muiComponents/CircularProgress';
|
import CircularProgress from '../../muiComponents/CircularProgress';
|
||||||
|
import { Theme } from '../../design-tokens/theme';
|
||||||
|
|
||||||
interface WrapperProps {
|
interface WrapperProps {
|
||||||
centered: boolean;
|
centered: boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
export const Wrapper = styled('div')`
|
export const Wrapper = styled('div')<WrapperProps>(props => ({
|
||||||
&& {
|
display: 'flex',
|
||||||
display: flex;
|
alignItems: 'center',
|
||||||
align-items: center;
|
justifyContent: 'center',
|
||||||
justify-content: center;
|
...(props.centered && {
|
||||||
${(props: WrapperProps) =>
|
position: 'absolute',
|
||||||
props.centered &&
|
top: '50%',
|
||||||
css`
|
left: '50%',
|
||||||
position: absolute;
|
transform: 'translate(-50%, -50%)',
|
||||||
top: 50%;
|
}),
|
||||||
left: 50%;
|
}));
|
||||||
transform: translate(-50%, -50%);
|
|
||||||
`};
|
|
||||||
}
|
|
||||||
`;
|
|
||||||
|
|
||||||
export const Circular = styled(CircularProgress)({
|
export const Circular = styled(CircularProgress)<{ theme?: Theme }>(props => ({
|
||||||
'&&': {
|
color: props.theme && props.theme.palette.primary.main,
|
||||||
color: colors.primary,
|
}));
|
||||||
},
|
|
||||||
});
|
|
||||||
|
@ -1,15 +1,16 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
import { shallow } from 'enzyme';
|
|
||||||
|
import { render } from '../../utils/test-react-testing-library';
|
||||||
|
|
||||||
import Tag from './Tag';
|
import Tag from './Tag';
|
||||||
|
|
||||||
describe('<Tag /> component', () => {
|
describe('<Tag /> component', () => {
|
||||||
test('should render the component in default state', () => {
|
test('should load the component in default state', () => {
|
||||||
const wrapper = shallow(
|
const { container } = render(
|
||||||
<Tag>
|
<Tag>
|
||||||
<span>{'I am a child'}</span>
|
<span>{'I am a child'}</span>
|
||||||
</Tag>
|
</Tag>
|
||||||
);
|
);
|
||||||
expect(wrapper.html()).toMatchSnapshot();
|
expect(container.firstChild).toMatchSnapshot();
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
@ -1,3 +1,21 @@
|
|||||||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||||
|
|
||||||
exports[`<Tag /> component should render the component in default state 1`] = `"<span class=\\"css-le0azu e1q9boj50\\"><span>I am a child</span></span>"`;
|
exports[`<Tag /> component should load the component in default state 1`] = `
|
||||||
|
.emotion-0 {
|
||||||
|
vertical-align: middle;
|
||||||
|
line-height: 22px;
|
||||||
|
border-radius: 2px;
|
||||||
|
color: #485a3e;
|
||||||
|
background-color: #f3f4f2;
|
||||||
|
padding: 0.22rem 0.4rem;
|
||||||
|
margin: 8px 8px 0 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
<span
|
||||||
|
class="emotion-0 emotion-1"
|
||||||
|
>
|
||||||
|
<span>
|
||||||
|
I am a child
|
||||||
|
</span>
|
||||||
|
</span>
|
||||||
|
`;
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
import styled from 'react-emotion';
|
import styled from '@emotion/styled';
|
||||||
|
|
||||||
export const Wrapper = styled('span')({
|
export const Wrapper = styled('span')({
|
||||||
'&&': {
|
|
||||||
verticalAlign: 'middle',
|
verticalAlign: 'middle',
|
||||||
lineHeight: '22px',
|
lineHeight: '22px',
|
||||||
borderRadius: '2px',
|
borderRadius: '2px',
|
||||||
@ -9,5 +8,4 @@ export const Wrapper = styled('span')({
|
|||||||
backgroundColor: '#f3f4f2',
|
backgroundColor: '#f3f4f2',
|
||||||
padding: '0.22rem 0.4rem',
|
padding: '0.22rem 0.4rem',
|
||||||
margin: '8px 8px 0 0',
|
margin: '8px 8px 0 0',
|
||||||
},
|
|
||||||
});
|
});
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
import { shallow, mount } from 'enzyme';
|
|
||||||
|
|
||||||
|
import { mount, shallow } from '../../utils/test-enzyme';
|
||||||
import { DetailContext } from '../../pages/Version';
|
import { DetailContext } from '../../pages/Version';
|
||||||
|
|
||||||
import UpLinks from './UpLinks';
|
import UpLinks from './UpLinks';
|
||||||
|
@ -2,4 +2,4 @@
|
|||||||
|
|
||||||
exports[`<UpLinks /> component should render the component when there is no uplink 1`] = `"<h6 class=\\"MuiTypography-root MuiTypography-subtitle1 MuiTypography-gutterBottom\\">verdaccio has no uplinks.</h6>"`;
|
exports[`<UpLinks /> component should render the component when there is no uplink 1`] = `"<h6 class=\\"MuiTypography-root MuiTypography-subtitle1 MuiTypography-gutterBottom\\">verdaccio has no uplinks.</h6>"`;
|
||||||
|
|
||||||
exports[`<UpLinks /> component should render the component with uplinks 1`] = `"<h6 class=\\"MuiTypography-root css-1vg6q84 e14i1sy10 MuiTypography-subtitle1\\">Uplinks</h6><ul class=\\"MuiList-root MuiList-padding\\"><li class=\\"MuiListItem-root MuiListItem-gutters\\"><div class=\\"MuiListItemText-root css-o655gb e14i1sy12\\"><span class=\\"MuiTypography-root MuiListItemText-primary MuiTypography-body1\\">npmjs</span></div><div class=\\"css-1l1cv61 e14i1sy11\\"></div><div class=\\"MuiListItemText-root css-o655gb e14i1sy12\\"><span class=\\"MuiTypography-root MuiListItemText-primary MuiTypography-body1\\">over 1 year ago</span></div></li></ul>"`;
|
exports[`<UpLinks /> component should render the component with uplinks 1`] = `"<h6 class=\\"MuiTypography-root css-5wp24z-StyledText e14i1sy10 MuiTypography-subtitle1\\">Uplinks</h6><ul class=\\"MuiList-root MuiList-padding\\"><li class=\\"MuiListItem-root MuiListItem-gutters\\"><div class=\\"MuiListItemText-root css-1pxn9ma-ListItemText e14i1sy12\\"><span class=\\"MuiTypography-root MuiListItemText-primary MuiTypography-body1\\">npmjs</span></div><div class=\\"css-t1rp47-Spacer e14i1sy11\\"></div><div class=\\"MuiListItemText-root css-1pxn9ma-ListItemText e14i1sy12\\"><span class=\\"MuiTypography-root MuiListItemText-primary MuiTypography-body1\\">over 1 year ago</span></div></li></ul>"`;
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import styled from 'react-emotion';
|
import styled from '@emotion/styled';
|
||||||
|
|
||||||
import Text from '../../muiComponents/Text';
|
import Text from '../../muiComponents/Text';
|
||||||
import { default as MuiListItemText } from '../../muiComponents/ListItemText';
|
import { default as MuiListItemText } from '../../muiComponents/ListItemText';
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
import { mount } from 'enzyme';
|
|
||||||
import { MemoryRouter } from 'react-router-dom';
|
import { MemoryRouter } from 'react-router-dom';
|
||||||
import { render, cleanup } from '@testing-library/react';
|
|
||||||
|
|
||||||
|
import { render, cleanup } from '../../utils/test-react-testing-library';
|
||||||
|
import { mount } from '../../utils/test-enzyme';
|
||||||
import { DetailContext, DetailContextProps } from '../../pages/Version';
|
import { DetailContext, DetailContextProps } from '../../pages/Version';
|
||||||
|
|
||||||
import Versions, { LABEL_CURRENT_TAGS, LABEL_VERSION_HISTORY } from './Versions';
|
import Versions, { LABEL_CURRENT_TAGS, LABEL_VERSION_HISTORY } from './Versions';
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import styled from 'react-emotion';
|
import styled from '@emotion/styled';
|
||||||
|
|
||||||
import { fontWeight } from '../../utils/styles/sizes';
|
import { fontWeight } from '../../utils/styles/sizes';
|
||||||
import Text from '../../muiComponents/Text';
|
import Text from '../../muiComponents/Text';
|
||||||
|
@ -16,6 +16,11 @@ const resetStyles = makeStyles(() => ({
|
|||||||
'html, body, #root': {
|
'html, body, #root': {
|
||||||
height: '100%',
|
height: '100%',
|
||||||
},
|
},
|
||||||
|
ul: {
|
||||||
|
margin: 0,
|
||||||
|
padding: 0,
|
||||||
|
listStyle: 'none',
|
||||||
|
},
|
||||||
'.container': {
|
'.container': {
|
||||||
padding: 15,
|
padding: 15,
|
||||||
flex: 1,
|
flex: 1,
|
||||||
|
13
src/design-tokens/ThemeProvider.tsx
Normal file
13
src/design-tokens/ThemeProvider.tsx
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
import React from 'react';
|
||||||
|
import { ThemeProvider as MuiThemeProvider } from '@material-ui/core/styles';
|
||||||
|
import { ThemeProvider as EmotionThemeProvider } from 'emotion-theming';
|
||||||
|
|
||||||
|
import theme from './theme';
|
||||||
|
|
||||||
|
const ThemeProvider: React.FC = ({ children }) => (
|
||||||
|
<EmotionThemeProvider theme={theme}>
|
||||||
|
<MuiThemeProvider theme={theme}>{children}</MuiThemeProvider>
|
||||||
|
</EmotionThemeProvider>
|
||||||
|
);
|
||||||
|
|
||||||
|
export default ThemeProvider;
|
5
src/design-tokens/emotion.ts
Normal file
5
src/design-tokens/emotion.ts
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
import styled, { CreateStyled } from '@emotion/styled';
|
||||||
|
|
||||||
|
import { Theme } from './theme';
|
||||||
|
|
||||||
|
export default styled as CreateStyled<Theme>;
|
74
src/design-tokens/theme.ts
Normal file
74
src/design-tokens/theme.ts
Normal file
@ -0,0 +1,74 @@
|
|||||||
|
import createMuiTheme from '@material-ui/core/styles/createMuiTheme';
|
||||||
|
|
||||||
|
// Main colors
|
||||||
|
// -------------------------
|
||||||
|
const colors = {
|
||||||
|
black: '#000',
|
||||||
|
white: '#fff',
|
||||||
|
red: '#d32f2f',
|
||||||
|
greySuperLight: '#f5f5f5',
|
||||||
|
greyLight: '#d3d3d3',
|
||||||
|
greyLight2: '#908ba1',
|
||||||
|
greyLight3: '#f3f4f240',
|
||||||
|
greyDark: '#a9a9a9',
|
||||||
|
greyDark2: '#586069',
|
||||||
|
greyChateau: '#95989a',
|
||||||
|
greyGainsboro: '#e3e3e3',
|
||||||
|
greyAthens: '#d3dddd',
|
||||||
|
eclipse: '#3c3c3c',
|
||||||
|
paleNavy: '#e4e8f1',
|
||||||
|
saltpan: '#f7f8f6',
|
||||||
|
snow: '#f9f9f9',
|
||||||
|
love: '#e25555',
|
||||||
|
nobel01: '#999999',
|
||||||
|
nobel02: '#9f9f9f',
|
||||||
|
primary: window.VERDACCIO_PRIMARY_COLOR || '#4b5e40',
|
||||||
|
secondary: '#20232a',
|
||||||
|
};
|
||||||
|
|
||||||
|
export type Colors = keyof typeof colors;
|
||||||
|
|
||||||
|
export const theme = createMuiTheme({
|
||||||
|
typography: {
|
||||||
|
fontFamily: 'inherit',
|
||||||
|
},
|
||||||
|
palette: {
|
||||||
|
...colors,
|
||||||
|
primary: { main: colors.primary },
|
||||||
|
secondary: { main: colors.secondary },
|
||||||
|
error: { main: colors.red },
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
export type Theme = typeof theme;
|
||||||
|
|
||||||
|
declare module '@material-ui/core/styles/createPalette' {
|
||||||
|
interface CustomPalette {
|
||||||
|
black: string;
|
||||||
|
white: string;
|
||||||
|
red: string;
|
||||||
|
greySuperLight: string;
|
||||||
|
greyLight: string;
|
||||||
|
greyLight2: string;
|
||||||
|
greyLight3: string;
|
||||||
|
greyDark: string;
|
||||||
|
greyDark2: string;
|
||||||
|
greyChateau: string;
|
||||||
|
greyGainsboro: string;
|
||||||
|
greyAthens: string;
|
||||||
|
eclipse: string;
|
||||||
|
paleNavy: string;
|
||||||
|
saltpan: string;
|
||||||
|
snow: string;
|
||||||
|
love: string;
|
||||||
|
nobel01: string;
|
||||||
|
nobel02: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* eslint-disable-next-line @typescript-eslint/no-empty-interface */
|
||||||
|
interface Palette extends CustomPalette {}
|
||||||
|
/* eslint-disable-next-line @typescript-eslint/no-empty-interface */
|
||||||
|
interface PaletteOptions extends Partial<CustomPalette> {}
|
||||||
|
}
|
||||||
|
|
||||||
|
export default { ...theme };
|
@ -5,13 +5,18 @@ import ReactDOM from 'react-dom';
|
|||||||
import { AppContainer } from 'react-hot-loader';
|
import { AppContainer } from 'react-hot-loader';
|
||||||
|
|
||||||
import App from './App';
|
import App from './App';
|
||||||
|
import ThemeProvider from './design-tokens/ThemeProvider';
|
||||||
|
import StyleBaseline from './design-tokens/StyleBaseline';
|
||||||
|
|
||||||
const rootNode = document.getElementById('root');
|
const rootNode = document.getElementById('root');
|
||||||
|
|
||||||
const renderApp = (Component: React.ElementType): void => {
|
const renderApp = (Component: React.ElementType): void => {
|
||||||
ReactDOM.render(
|
ReactDOM.render(
|
||||||
<AppContainer>
|
<AppContainer>
|
||||||
|
<ThemeProvider>
|
||||||
|
<StyleBaseline />
|
||||||
<Component />
|
<Component />
|
||||||
|
</ThemeProvider>
|
||||||
</AppContainer>,
|
</AppContainer>,
|
||||||
rootNode
|
rootNode
|
||||||
);
|
);
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
import { mount } from 'enzyme';
|
|
||||||
|
import { render } from '../../utils/test-react-testing-library';
|
||||||
|
|
||||||
import TextField from './TextField';
|
import TextField from './TextField';
|
||||||
|
|
||||||
@ -8,8 +9,8 @@ describe('<TextField /> component', () => {
|
|||||||
name: 'test',
|
name: 'test',
|
||||||
value: 'test',
|
value: 'test',
|
||||||
};
|
};
|
||||||
test('should render the component in default state', () => {
|
test('should load the component in default state', () => {
|
||||||
const wrapper = mount(<TextField name={props.name} value={props.value} />);
|
const { container } = render(<TextField name={props.name} value={props.value} />);
|
||||||
expect(wrapper.html()).toMatchSnapshot();
|
expect(container.firstChild).toMatchSnapshot();
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
@ -1,3 +1,19 @@
|
|||||||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||||
|
|
||||||
exports[`<TextField /> component should render the component in default state 1`] = `"<div class=\\"MuiFormControl-root MuiTextField-root\\"><div class=\\"MuiInputBase-root MuiInput-root MuiInput-underline MuiInputBase-formControl MuiInput-formControl\\"><input aria-invalid=\\"false\\" name=\\"test\\" type=\\"text\\" class=\\"MuiInputBase-input MuiInput-input\\" value=\\"test\\"></div></div>"`;
|
exports[`<TextField /> component should load the component in default state 1`] = `
|
||||||
|
<div
|
||||||
|
class="MuiFormControl-root MuiTextField-root"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
class="MuiInputBase-root MuiInput-root MuiInput-underline MuiInputBase-formControl MuiInput-formControl"
|
||||||
|
>
|
||||||
|
<input
|
||||||
|
aria-invalid="false"
|
||||||
|
class="MuiInputBase-input MuiInput-input"
|
||||||
|
name="test"
|
||||||
|
type="text"
|
||||||
|
value="test"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
`;
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loadingโฆ
Reference in New Issue
Block a user