|
| 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; |
0 commit comments