Skip to content

Commit 6d96007

Browse files
committedJan 12, 2019
feat: register info selector
1 parent 4e7b319 commit 6d96007

File tree

10 files changed

+161
-30
lines changed

10 files changed

+161
-30
lines changed
 

‎src/webui/components/CopyToClipBoard/index.js

+3-18
Original file line numberDiff line numberDiff line change
@@ -11,27 +11,12 @@ import type { Node } from 'react';
1111
import { IProps } from './types';
1212

1313
import { ClipBoardCopy, ClipBoardCopyText, CopyIcon } from './styles';
14-
15-
const copyToClipBoardUtility = (str: string) => (event: SyntheticEvent<HTMLElement>) => {
16-
event.preventDefault();
17-
const node = document.createElement('div');
18-
node.innerText = str;
19-
if (document.body) {
20-
document.body.appendChild(node);
21-
const range = document.createRange();
22-
const selection = window.getSelection();
23-
range.selectNodeContents(node);
24-
selection.removeAllRanges();
25-
selection.addRange(range);
26-
document.execCommand('copy');
27-
// $FlowFixMe
28-
document.body.removeChild(node);
29-
}
30-
};
14+
import { copyToClipBoardUtility } from '../../utils/cli-utils';
15+
import { TEXT } from '../../utils/constants';
3116

3217
const CopyToClipBoard = ({ text }: IProps): Node => {
3318
const renderToolTipFileCopy = () => (
34-
<Tooltip disableFocusListener={true} title={'Copy to Clipboard'}>
19+
<Tooltip disableFocusListener={true} title={TEXT.CLIPBOARD_COPY}>
3520
<CopyIcon onClick={copyToClipBoardUtility(text)}>
3621
<FileCopy />
3722
</CopyIcon>

‎src/webui/components/CopyToClipBoard/styles.js

+2-5
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,8 @@
11
import styled from 'react-emotion';
22
import IconButton from '@material-ui/core/IconButton/index';
33

4-
export const ClipBoardCopy = styled.p`
4+
export const ClipBoardCopy = styled.div`
55
&& {
6-
font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
7-
padding: 5px 0 5px 0;
8-
margin: 0;
96
display: flex;
107
align-items: center;
118
justify-content: space-between;
@@ -26,4 +23,4 @@ export const CopyIcon = styled(IconButton)`
2623
&& {
2724
margin: 0 0 0 10px;
2825
}
29-
`;
26+
`;

‎src/webui/components/Header/index.js

+2-5
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ import { default as IconSearch } from '@material-ui/icons/Search';
1919
import { getRegistryURL } from '../../utils/url';
2020
import Link from '../Link';
2121
import Logo from '../Logo';
22-
import CopyToClipBoard from '../CopyToClipBoard/index';
2322
import RegistryInfoDialog from '../RegistryInfoDialog';
2423
import Label from '../Label';
2524
import Search from '../Search';
25+
import RegistryInfoContent from '../RegistryInfoContent';
2626

2727
import { IProps, IState } from './types';
2828
import type { ToolTipType } from './types';
@@ -222,10 +222,7 @@ class Header extends Component<IProps, IState> {
222222
const { openInfoDialog, registryUrl } = this.state;
223223
return (
224224
<RegistryInfoDialog onClose={this.handleCloseRegistryInfoDialog} open={openInfoDialog}>
225-
<div>
226-
<CopyToClipBoard text={`npm set ${scope} registry ${registryUrl}`} />
227-
<CopyToClipBoard text={`npm adduser --registry ${registryUrl}`} />
228-
</div>
225+
<RegistryInfoContent registryUrl={registryUrl} scope={scope} />
229226
</RegistryInfoDialog>
230227
);
231228
};
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
1+
/**
2+
* @prettier
3+
* @flow
4+
*/
5+
6+
import React, { Component } from 'react';
7+
8+
import type { IProps, IState } from './types';
9+
import { CommandContainer } from './styles';
10+
import CopyToClipBoard from '../CopyToClipBoard';
11+
import Tabs from '@material-ui/core/Tabs/index';
12+
import Tab from '@material-ui/core/Tab/index';
13+
import Typography from '@material-ui/core/Typography/index';
14+
15+
import { getCLISetRegistry, getCLIChangePassword, getCLISetConfigRegistry } from '../../utils/cli-utils';
16+
import { NODE_MANAGER } from '../../utils/constants';
17+
18+
/* eslint react/prop-types:0 */
19+
function TabContainer({ children }) {
20+
return (
21+
<CommandContainer>
22+
<Typography component={'div'} style={{ padding: 0, minHeight: 170 }}>
23+
{children}
24+
</Typography>
25+
</CommandContainer>
26+
);
27+
}
28+
29+
class RegistryInfoContent extends Component<IProps, IState> {
30+
state = {
31+
tabPosition: 0,
32+
};
33+
34+
render() {
35+
return <div>{this.renderTabs()}</div>;
36+
}
37+
38+
renderTabs() {
39+
const { scope, registryUrl } = this.props;
40+
const { tabPosition } = this.state;
41+
42+
return (
43+
<React.Fragment>
44+
<Tabs indicatorColor={'primary'} onChange={this.handleChange} textColor={'primary'} value={tabPosition} variant={'fullWidth'}>
45+
<Tab label={NODE_MANAGER.npm} />
46+
<Tab label={NODE_MANAGER.pnpm} />
47+
<Tab label={NODE_MANAGER.yarn} />
48+
</Tabs>
49+
{tabPosition === 0 && <TabContainer>{this.renderNpmTab(scope, registryUrl)}</TabContainer>}
50+
{tabPosition === 1 && <TabContainer>{this.renderPNpmTab(scope, registryUrl)}</TabContainer>}
51+
{tabPosition === 2 && <TabContainer>{this.renderYarnTab(scope, registryUrl)}</TabContainer>}
52+
</React.Fragment>
53+
);
54+
}
55+
56+
renderNpmTab(scope: string, registryUrl: string) {
57+
return (
58+
<React.Fragment>
59+
<CopyToClipBoard text={getCLISetConfigRegistry(`${NODE_MANAGER.npm} set`, scope, registryUrl)} />
60+
<CopyToClipBoard text={getCLISetRegistry(`${NODE_MANAGER.npm} adduser`, registryUrl)} />
61+
<CopyToClipBoard text={getCLIChangePassword(NODE_MANAGER.npm, registryUrl)} />
62+
</React.Fragment>
63+
);
64+
}
65+
66+
renderPNpmTab(scope: string, registryUrl: string) {
67+
return (
68+
<React.Fragment>
69+
<CopyToClipBoard text={getCLISetConfigRegistry(`${NODE_MANAGER.pnpm} set`, scope, registryUrl)} />
70+
<CopyToClipBoard text={getCLISetRegistry(`${NODE_MANAGER.pnpm} adduser`, registryUrl)} />
71+
<CopyToClipBoard text={getCLIChangePassword(NODE_MANAGER.pnpm, registryUrl)} />
72+
</React.Fragment>
73+
);
74+
}
75+
76+
renderYarnTab(scope: string, registryUrl: string) {
77+
return (
78+
<React.Fragment>
79+
<CopyToClipBoard text={getCLISetConfigRegistry(`${NODE_MANAGER.yarn} config set`, scope, registryUrl)} />
80+
</React.Fragment>
81+
);
82+
}
83+
84+
handleChange = (event: any, tabPosition: number) => {
85+
event.preventDefault();
86+
this.setState({ tabPosition });
87+
};
88+
}
89+
90+
export default RegistryInfoContent;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import styled from 'react-emotion';
2+
3+
export const CommandContainer = styled.div`
4+
&& {
5+
padding-top: 20px;
6+
}
7+
`;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
/**
2+
* @prettier
3+
* @flow
4+
*/
5+
6+
export interface IProps {
7+
scope: string;
8+
registryUrl: string;
9+
}
10+
11+
export interface IState {
12+
tabPosition: number;
13+
}

‎src/webui/utils/cli-utils.js

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
/**
2+
* @prettier
3+
* @flow
4+
*/
5+
6+
export const copyToClipBoardUtility = (str: string) => (event: SyntheticEvent<HTMLElement>) => {
7+
event.preventDefault();
8+
const node = document.createElement('div');
9+
node.innerText = str;
10+
if (document.body) {
11+
document.body.appendChild(node);
12+
const range = document.createRange();
13+
const selection = window.getSelection();
14+
range.selectNodeContents(node);
15+
selection.removeAllRanges();
16+
selection.addRange(range);
17+
document.execCommand('copy');
18+
// $FlowFixMe
19+
document.body.removeChild(node);
20+
}
21+
};
22+
23+
export function getCLISetConfigRegistry(command: string, scope: string, registryUrl: string): string {
24+
return `${command} ${scope} registry ${registryUrl}`;
25+
}
26+
27+
export function getCLISetRegistry(command: string, registryUrl: string): string {
28+
return `${command} --registry ${registryUrl}`;
29+
}
30+
31+
export function getCLIChangePassword(command: string, registryUrl: string): string {
32+
return `${command} profile set password --registry ${registryUrl}`;
33+
}

‎src/webui/utils/constants.js

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
export const TEXT = {
2+
CLIPBOARD_COPY: 'Copy to Clipboard',
3+
};
4+
5+
export const NODE_MANAGER = {
6+
npm: 'npm',
7+
yarn: 'yarn',
8+
pnpm: 'pnpm',
9+
};
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
// Jest Snapshot v1, https://goo.gl/fbAQLP
22

3-
exports[`<CopyToClipBoard /> component render the component 1`] = `"<p class=\\"css-1a0lalv eduq2bv0\\"><span class=\\"css-1m8aenu eduq2bv1\\">copy text</span><button tabindex=\\"0\\" class=\\"MuiButtonBase-root-14 MuiIconButton-root-8 css-56v3u0 eduq2bv2\\" type=\\"button\\" title=\\"Copy to Clipboard\\"><span class=\\"MuiIconButton-label-13\\"><svg class=\\"MuiSvgIcon-root-17\\" focusable=\\"false\\" viewBox=\\"0 0 24 24\\" aria-hidden=\\"true\\" role=\\"presentation\\"><path fill=\\"none\\" d=\\"M0 0h24v24H0z\\"></path><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-26\\"></span></button></p>"`;
3+
exports[`<CopyToClipBoard /> component render the component 1`] = `"<div class=\\"css-1mta3t8 eduq2bv0\\"><span class=\\"css-1m8aenu eduq2bv1\\">copy text</span><button tabindex=\\"0\\" class=\\"MuiButtonBase-root-14 MuiIconButton-root-8 css-56v3u0 eduq2bv2\\" type=\\"button\\" title=\\"Copy to Clipboard\\"><span class=\\"MuiIconButton-label-13\\"><svg class=\\"MuiSvgIcon-root-17\\" focusable=\\"false\\" viewBox=\\"0 0 24 24\\" aria-hidden=\\"true\\" role=\\"presentation\\"><path fill=\\"none\\" d=\\"M0 0h24v24H0z\\"></path><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-26\\"></span></button></div>"`;
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
// Jest Snapshot v1, https://goo.gl/fbAQLP
22

3-
exports[`<Help /> component should render the component in default state 1`] = `"<div class=\\"MuiPaper-root-2 MuiPaper-elevation1-5 MuiPaper-rounded-3 MuiCard-root-1 css-ryznli e1vnhvvu0\\" id=\\"help-card\\"><div class=\\"MuiCardContent-root-29\\"><h2 class=\\"MuiTypography-root-30 MuiTypography-headline-35 MuiTypography-gutterBottom-48\\" id=\\"help-card__title\\">No Package Published Yet.</h2><p class=\\"MuiTypography-root-30 MuiTypography-body1-39 MuiTypography-colorTextSecondary-54 MuiTypography-gutterBottom-48 css-zg2fwz e1vnhvvu1\\">To publish your first package just:</p><aside class=\\"MuiTypography-root-30 MuiTypography-body2-38\\">1. Login</aside><p class=\\"css-1a0lalv eduq2bv0\\"><span class=\\"css-1m8aenu eduq2bv1\\">$ npm adduser --registry http://localhost</span><button tabindex=\\"0\\" class=\\"MuiButtonBase-root-69 MuiIconButton-root-63 css-56v3u0 eduq2bv2\\" type=\\"button\\" title=\\"Copy to Clipboard\\"><span class=\\"MuiIconButton-label-68\\"><svg class=\\"MuiSvgIcon-root-72\\" focusable=\\"false\\" viewBox=\\"0 0 24 24\\" aria-hidden=\\"true\\" role=\\"presentation\\"><path fill=\\"none\\" d=\\"M0 0h24v24H0z\\"></path><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-81\\"></span></button></p><aside class=\\"MuiTypography-root-30 MuiTypography-body2-38\\">2. Publish</aside><p class=\\"css-1a0lalv eduq2bv0\\"><span class=\\"css-1m8aenu eduq2bv1\\">$ npm publish --registry http://localhost</span><button tabindex=\\"0\\" class=\\"MuiButtonBase-root-69 MuiIconButton-root-63 css-56v3u0 eduq2bv2\\" type=\\"button\\" title=\\"Copy to Clipboard\\"><span class=\\"MuiIconButton-label-68\\"><svg class=\\"MuiSvgIcon-root-72\\" focusable=\\"false\\" viewBox=\\"0 0 24 24\\" aria-hidden=\\"true\\" role=\\"presentation\\"><path fill=\\"none\\" d=\\"M0 0h24v24H0z\\"></path><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-81\\"></span></button></p><aside class=\\"MuiTypography-root-30 MuiTypography-body2-38\\">3. Refresh this page.</aside></div><div class=\\"MuiCardActions-root-88\\"><a tabindex=\\"0\\" class=\\"MuiButtonBase-root-69 MuiButton-root-90 MuiButton-text-92 MuiButton-textPrimary-93 MuiButton-flat-95 MuiButton-flatPrimary-96 MuiButton-sizeSmall-113 MuiCardActions-action-89\\" role=\\"button\\" href=\\"https://verdaccio.org/docs/en/installation\\" target=\\"_blank\\"><span class=\\"MuiButton-label-91\\">Learn More</span><span class=\\"MuiTouchRipple-root-81\\"></span></a></div></div>"`;
3+
exports[`<Help /> component should render the component in default state 1`] = `"<div class=\\"MuiPaper-root-2 MuiPaper-elevation1-5 MuiPaper-rounded-3 MuiCard-root-1 css-ryznli e1vnhvvu0\\" id=\\"help-card\\"><div class=\\"MuiCardContent-root-29\\"><h2 class=\\"MuiTypography-root-30 MuiTypography-headline-35 MuiTypography-gutterBottom-48\\" id=\\"help-card__title\\">No Package Published Yet.</h2><p class=\\"MuiTypography-root-30 MuiTypography-body1-39 MuiTypography-colorTextSecondary-54 MuiTypography-gutterBottom-48 css-zg2fwz e1vnhvvu1\\">To publish your first package just:</p><aside class=\\"MuiTypography-root-30 MuiTypography-body2-38\\">1. Login</aside><div class=\\"css-1mta3t8 eduq2bv0\\"><span class=\\"css-1m8aenu eduq2bv1\\">$ npm adduser --registry http://localhost</span><button tabindex=\\"0\\" class=\\"MuiButtonBase-root-69 MuiIconButton-root-63 css-56v3u0 eduq2bv2\\" type=\\"button\\" title=\\"Copy to Clipboard\\"><span class=\\"MuiIconButton-label-68\\"><svg class=\\"MuiSvgIcon-root-72\\" focusable=\\"false\\" viewBox=\\"0 0 24 24\\" aria-hidden=\\"true\\" role=\\"presentation\\"><path fill=\\"none\\" d=\\"M0 0h24v24H0z\\"></path><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-81\\"></span></button></div><aside class=\\"MuiTypography-root-30 MuiTypography-body2-38\\">2. Publish</aside><div class=\\"css-1mta3t8 eduq2bv0\\"><span class=\\"css-1m8aenu eduq2bv1\\">$ npm publish --registry http://localhost</span><button tabindex=\\"0\\" class=\\"MuiButtonBase-root-69 MuiIconButton-root-63 css-56v3u0 eduq2bv2\\" type=\\"button\\" title=\\"Copy to Clipboard\\"><span class=\\"MuiIconButton-label-68\\"><svg class=\\"MuiSvgIcon-root-72\\" focusable=\\"false\\" viewBox=\\"0 0 24 24\\" aria-hidden=\\"true\\" role=\\"presentation\\"><path fill=\\"none\\" d=\\"M0 0h24v24H0z\\"></path><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-81\\"></span></button></div><aside class=\\"MuiTypography-root-30 MuiTypography-body2-38\\">3. Refresh this page.</aside></div><div class=\\"MuiCardActions-root-88\\"><a tabindex=\\"0\\" class=\\"MuiButtonBase-root-69 MuiButton-root-90 MuiButton-text-92 MuiButton-textPrimary-93 MuiButton-flat-95 MuiButton-flatPrimary-96 MuiButton-sizeSmall-113 MuiCardActions-action-89\\" role=\\"button\\" href=\\"https://verdaccio.org/docs/en/installation\\" target=\\"_blank\\"><span class=\\"MuiButton-label-91\\">Learn More</span><span class=\\"MuiTouchRipple-root-81\\"></span></a></div></div>"`;

0 commit comments

Comments
 (0)
Please sign in to comment.