import React, { useState } from 'react'; import { Select, Tooltip } from 'antd'; import { QuestionCircleOutlined } from '@ant-design/icons'; // @ts-ignore import SourceCode from 'dumi-theme-default/src/builtins/SourceCode'; import './SourceGenerate.less'; import { Mirror, mirrorData, Platform } from '../constants'; const Option = Select.Option; const mirrorConfig = [ { key: Mirror.USTC, value: '中科大', }, { key: Mirror.Tsinghua, value: '清华', }, { key: Mirror.BFSU, value: '北京外国语', }, { key: Mirror.Tencent, value: '腾讯', }, ]; const platformList = [ { key: Platform.MacOS, value: 'macOS', }, { key: Platform.Windows, value: 'Windows', }, { key: Platform.Linux, value: 'Linux', }, ]; const SourceGenerate = ({ first }) => { const [mirror, setMirror] = useState(Mirror.USTC); const [platform, setPlatform] = useState(Platform.MacOS); const [terminalType, setTerminalType] = useState('zsh'); function generateMirror() { const matchMirror = mirrorData[`${mirror}Mirror`] || {}; const shellArray = ['# 脚本']; shellArray.push( `git -C "$(brew --repo)" remote set-url origin ${matchMirror.brew}`, ); if (platform === Platform.Linux && matchMirror.linuxCore) { shellArray.push( `git -C "$(brew --repo homebrew/core)" remote set-url origin ${matchMirror.linuxCore}`, ); } else { shellArray.push( `git -C "$(brew --repo homebrew/core)" remote set-url origin ${matchMirror.core}`, ); } shellArray.push( `git -C "$(brew --repo homebrew/cask)" remote set-url origin ${matchMirror.cask}`, ); shellArray.push('brew update'); shellArray.push(''); const file = terminalType === 'zsh' ? '.zprofile' : '.bash_profile'; if (platform === Platform.Linux && matchMirror.linuxBottles) { shellArray.push( `echo 'export HOMEBREW_BOTTLE_DOMAIN=${matchMirror.linuxBottles}' >> ~/${file}`, ); } else { shellArray.push( `echo 'export HOMEBREW_BOTTLE_DOMAIN=${matchMirror.bottles}' >> ~/${file}`, ); } shellArray.push(`source ~/${file}`); return shellArray.join('\n'); } function generateFirstMirrorSet() { const matchMirror = mirrorData[`${mirror}Mirror`] || {}; const shellArray = ['# 1.执行安装脚本']; shellArray.push(`export HOMEBREW_BREW_GIT_REMOTE="${matchMirror.brew}"`); if (platform === Platform.Linux && matchMirror.linuxCore) { shellArray.push( `export HOMEBREW_CORE_GIT_REMOTE="${matchMirror.linuxCore}"`, ); } else { shellArray.push(`export HOMEBREW_CORE_GIT_REMOTE="${matchMirror.core}"`); } shellArray.push( '/bin/bash -c "$(curl -fsSL https://gitee.com/ineo6/homebrew-install/raw/master/install.sh)"', ); shellArray.push(''); shellArray.push('# 2.安装完成后设置'); const file = terminalType === 'zsh' ? '.zprofile' : '.bash_profile'; if (platform === Platform.Linux && matchMirror.linuxBottles) { shellArray.push( `echo 'export HOMEBREW_BOTTLE_DOMAIN=${matchMirror.linuxBottles}' >> ~/${file}`, ); } else { shellArray.push( `echo 'export HOMEBREW_BOTTLE_DOMAIN=${matchMirror.bottles}' >> ~/${file}`, ); } shellArray.push(`source ~/${file}`); return shellArray.join('\n'); } return (

macOS Catalina(10.15.x)以及更高版本默认是zsh

执行命令echo $SHELL
显示/bin/bash则是bash,显示/bin/zsh则是zsh

} >
); }; export default SourceGenerate;