代码库-无默认分支时调用entries接口未传ref参数,+个人主页的三个echart

This commit is contained in:
caishi 2021-05-26 15:25:21 +08:00
parent ae9b48953e
commit 1378ba5c93
13 changed files with 337 additions and 14 deletions

21
package-lock.json generated
View File

@ -5068,11 +5068,11 @@
} }
}, },
"echarts": { "echarts": {
"version": "4.7.0", "version": "4.9.0",
"resolved": "https://registry.npmjs.org/echarts/-/echarts-4.7.0.tgz", "resolved": "https://registry.nlark.com/echarts/download/echarts-4.9.0.tgz",
"integrity": "sha512-NlOTdUcAsIyCCG+N4uh0ZEvXtrPW2jvcuqf03RyqYeCKzyPbiOQ4I3MdKXMhxG3lBdqQNdNXVT71SB4KTQjN0A==", "integrity": "sha1-qbm6oD8Doqcx5jQMVb77V6nhNH0=",
"requires": { "requires": {
"zrender": "4.3.0" "zrender": "4.3.2"
} }
}, },
"editor.md": { "editor.md": {
@ -9898,6 +9898,11 @@
"esprima": "^4.0.0" "esprima": "^4.0.0"
} }
}, },
"js2wordcloud": {
"version": "1.1.12",
"resolved": "https://registry.npm.taobao.org/js2wordcloud/download/js2wordcloud-1.1.12.tgz",
"integrity": "sha1-8BdC2k5qyzAAsoY1dmQWjvn8o64="
},
"jsbn": { "jsbn": {
"version": "0.1.1", "version": "0.1.1",
"resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz",
@ -14030,7 +14035,7 @@
}, },
"qr.js": { "qr.js": {
"version": "0.0.0", "version": "0.0.0",
"resolved": "https://registry.npm.taobao.org/qr.js/download/qr.js-0.0.0.tgz", "resolved": "https://registry.npmjs.org/qr.js/-/qr.js-0.0.0.tgz",
"integrity": "sha1-ys6GOG9ZoNuAUPqQ2baw6IoeNk8=" "integrity": "sha1-ys6GOG9ZoNuAUPqQ2baw6IoeNk8="
}, },
"qrcode.react": { "qrcode.react": {
@ -20538,9 +20543,9 @@
} }
}, },
"zrender": { "zrender": {
"version": "4.3.0", "version": "4.3.2",
"resolved": "https://registry.npmjs.org/zrender/-/zrender-4.3.0.tgz", "resolved": "https://registry.npm.taobao.org/zrender/download/zrender-4.3.2.tgz",
"integrity": "sha512-Dii6j2bDsPkxQayuVf2DXJeruIB/mKVxxcGRZQ9GExiBd4c3w7+oBuvo1O/JGHeFeA1nCmSDVDs/S7yKZG1nrA==" "integrity": "sha1-7HQy+UFcgsc1hLa3uMR+GwFiCcY="
} }
} }
} }

View File

@ -30,7 +30,7 @@
"dompurify": "^2.0.15", "dompurify": "^2.0.15",
"dotenv": "4.0.0", "dotenv": "4.0.0",
"dotenv-expand": "4.2.0", "dotenv-expand": "4.2.0",
"echarts": "^4.7.0", "echarts": "^4.9.0",
"editor.md": "^1.5.0", "editor.md": "^1.5.0",
"eslint": "4.10.0", "eslint": "4.10.0",
"eslint-config-react-app": "^2.1.0", "eslint-config-react-app": "^2.1.0",
@ -47,6 +47,7 @@
"install": "^0.12.2", "install": "^0.12.2",
"jest": "20.0.4", "jest": "20.0.4",
"js-base64": "^2.5.2", "js-base64": "^2.5.2",
"js2wordcloud": "^1.1.12",
"katex": "^0.11.1", "katex": "^0.11.1",
"lodash": "^4.17.15", "lodash": "^4.17.15",
"loglevel": "^1.6.8", "loglevel": "^1.6.8",

View File

@ -61,6 +61,13 @@ function CoderDepot(props){
setLessonUrl(details.lesson_url); setLessonUrl(details.lesson_url);
} }
},[details]) },[details])
useEffect(()=>{
if(!branchName || pathname === `/projects/${owner}/${projectsId}/tree/${branchName}`){
console.log("dddddddddd");
getDirInfo((details && details.default_branch));
}
},[branchName,pathname])
useEffect(()=>{ useEffect(()=>{
if(treeValue){ if(treeValue){
@ -79,7 +86,7 @@ function CoderDepot(props){
getFileInfo(url,branchName); getFileInfo(url,branchName);
}else{ }else{
setTreeValue(undefined); setTreeValue(undefined);
getDirInfo(branchName ||(projectDetail && projectDetail.default_branch)); // getDirInfo(branchName ||(projectDetail && projectDetail.default_branch));
} }
} }
},[projectsId,owner,pathname]) },[projectsId,owner,pathname])

View File

@ -26,7 +26,7 @@ export default (( props, { projectDetail }) => {
}, [owner, projectsId]); }, [owner, projectsId]);
return ( return (
<div className="main"> <div className="main" style={{padding:"0px",border:"none"}}>
<Spin spinning={isSpin}> <Spin spinning={isSpin}>
<div style={{minHeight:"400px"}}> <div style={{minHeight:"400px"}}>
{ {

View File

@ -51,7 +51,7 @@ export default ({ match , history }) => {
} }
}, [projectsId , owner, sha]); }, [projectsId , owner, sha]);
return ( return (
<div className="main"> <div className="main" style={{padding:"0px",border:"none"}}>
<Spin spinning={isSpin}> <Spin spinning={isSpin}>
<Infos> <Infos>
<div className="commitinfos"> <div className="commitinfos">

View File

@ -203,15 +203,17 @@
.listtablehead{ .listtablehead{
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
align-items: flex-start; align-items: center;
border-bottom: 1px solid #d9d9d9; border-bottom: 1px solid #d9d9d9;
padding:7px 20px; padding:7px 20px;
border-radius: 4px 4px 0px 0px; border-radius: 4px 4px 0px 0px;
background-color: #FAFBFC; background-color: #FAFBFC;
.ellipsistxt{ .ellipsistxt{
#ptxt{
margin-bottom: 0px;
}
margin-left: 13px; margin-left: 13px;
line-height:18px; line-height:18px;
margin-top:6px;
flex:1; flex:1;
width: 0; width: 0;
color: #666; color: #666;

View File

@ -0,0 +1,44 @@
import React ,{ useEffect } from 'react';
import Js2WordCloud from 'js2wordcloud/dist/js2wordcloud.js'
function Cloud({data}) {
useEffect(()=>{
optionChart1();
},[])
function optionChart1(){
var div = new Js2WordCloud(document.getElementById('cloud'))
let textList=[
['服务'], ['细致'], ['意识'], ['踏实'],['开发'], ['反馈'], ['协助'],['使用'],['谈判']
]
let cyList=[]
for(let i=0;i<60;i++){
cyList.push([textList[parseInt(Math.random()*textList.length)],Math.round(Math.random()*10)+1])
}
div.setOption({
backgroundColor:'transparent',
shape: 'circle',
// ellipticity: 1,//
maxFontSize: 40,//
minFontSize: 12,//
tooltip: {
show: true
},
list: cyList,
color(word, weight, fontSize, distance, theta) { //
if (fontSize>=12 && fontSize<=20) {
return 'rgb(29,227,250,0.3)';
} else if(fontSize>20 && fontSize<=30){
return 'rgb(29,227,250,0.6)';
}else if(fontSize>30 && fontSize<=40){
return 'rgb(29,227,250)';
}
},
})
}
return(
<div id="cloud" style={{height:"200px"}}></div>
)
}
export default Cloud;

View File

@ -0,0 +1,96 @@
import React ,{ useEffect } from 'react';
import * as echarts from 'echarts';
function Line({data}) {
useEffect(()=>{
Init();
},[])
useEffect(()=>{
if(data){
Init();
}
},[data])
function Init() {
var huan_val = document.getElementById("Line");
var myEcharts = echarts.init(huan_val);
let option = {
color: ["#f8e367", "#99dfff", "#58c0f0", "#5ea6ff", "#ff9e48", "#bcbcbc"],
title: {
text: '近期活动统计',
left: '3%'
},
tooltip: {
trigger: 'axis'
},
legend: {
data: ['邮件营销', '联盟广告', '视频广告', '直接访问', '搜索引擎'],
right: '3%'
},
grid: {
left: '3%',
right: '4%',
bottom: '3%',
containLabel: true
},
toolbox: {
feature: {
// saveAsImage: {}
}
},
xAxis: {
type: 'category',
boundaryGap: false,
data: ['周一', '周二', '周三', '周四', '周五', '周六', '周日']
},
yAxis: {
type: 'value',
axisLine:{
show:false
},
axisTick:{
show:false
}
},
series: [
{
name: '邮件营销',
type: 'line',
stack: '总量',
data: [120, 132, 101, 134, 90, 230, 210]
},
{
name: '联盟广告',
type: 'line',
stack: '总量',
data: [220, 182, 191, 234, 290, 330, 310]
},
{
name: '视频广告',
type: 'line',
stack: '总量',
data: [150, 232, 201, 154, 190, 330, 410]
},
{
name: '直接访问',
type: 'line',
stack: '总量',
data: [320, 332, 301, 334, 390, 330, 320]
},
{
name: '搜索引擎',
type: 'line',
stack: '总量',
data: [820, 932, 901, 934, 1290, 1330, 1320]
}
]
};
myEcharts.setOption(option);
}
return(
<div id="Line" style={{height:"300px"}}></div>
)
}
export default Line;

View File

@ -0,0 +1,75 @@
import React ,{ useEffect } from 'react';
import echarts from 'echarts/lib/echarts';
import 'echarts/lib/chart/pie';
function Pie({data}) {
useEffect(()=>{
Init();
},[])
useEffect(()=>{
if(data){
Init();
}
},[data])
function Init() {
var huan_val = document.getElementById("Pie");
var chart = echarts.init(huan_val);
let option = {
color: ["#f8e367", "#99dfff", "#58c0f0", "#5ea6ff", "#ff9e48", "#bcbcbc"],
title: {
text: '角色定位',
top:"5%",
left:"3%"
},
tooltip: {
trigger: 'item'
},
legend: {
top: '5%',
right: '3%'
},
series: [
{
name: '',
type: 'pie',
radius: ['40%', '70%'],
avoidLabelOverlap: false,
itemStyle: {
borderRadius: 10,
borderColor: '#fff',
borderWidth: 2
},
label: {
show: false,
position: 'center'
},
emphasis: {
label: {
show: true,
fontSize: '40',
fontWeight: 'bold'
}
},
labelLine: {
show: false
},
data: [
{value: 1048, name: '搜索引擎'},
{value: 735, name: '直接访问'},
{value: 580, name: '邮件营销'},
{value: 484, name: '联盟广告'},
{value: 300, name: '视频广告'}
]
}
]
};
chart.setOption(option);
}
return(
<div id="Pie" style={{height:"400px"}}></div>
)
}
export default Pie;

View File

@ -0,0 +1,65 @@
import React ,{ useEffect } from 'react';
import echarts from 'echarts/lib/echarts'
import 'echarts/lib/chart/radar';
function Radar({data}) {
useEffect(()=>{
Init();
},[])
useEffect(()=>{
if(data){
Init();
}
},[data])
function Init() {
var huan_val = document.getElementById("radar");
var myEcharts = echarts.init(huan_val);
let option = {
color: ["#f8e367", "#99dfff", "#58c0f0", "#5ea6ff", "#ff9e48", "#bcbcbc"],
title: {
text: '开发能力',
top:"0",
left:"3%"
},
legend: {
data: ['预算分配', '实际开销'],
top:"0",
right:"center"
},
radar: {
// shape: 'circle',
indicator: [
{ name: '销售', max: 6500},
{ name: '管理', max: 16000},
{ name: '信息技术', max: 30000},
{ name: '客服', max: 38000},
{ name: '研发', max: 52000},
{ name: '市场', max: 25000}
],
center:["50%","55%"]
},
series: [{
name: '预算 vs 开销',
type: 'radar',
data: [
{
value: [4200, 3000, 20000, 35000, 50000, 18000],
name: '预算分配'
},
{
value: [5000, 14000, 28000, 26000, 42000, 21000],
name: '实际开销'
}
]
}]
};
myEcharts.setOption(option);
}
return(
<div id="radar" style={{height:"400px"}}></div>
)
}
export default Radar;

View File

@ -0,0 +1,23 @@
import React from 'react';
import './Index.scss';
import 'echarts/lib/component/tooltip';
import 'echarts/lib/component/title';
import 'echarts/lib/component/legend'
import 'echarts/lib/component/markPoint';
import Pie from '../Echart/Pie';
import Line from '../Echart/Line';
import Radar from '../Echart/Radar';
import Cloud from '../Echart/Cloud';
function Index(props) {
return(
<div>
<Pie />
<Line />
<Radar />
<Cloud />
</div>
)
}
export default Index;

View File

View File

@ -23,6 +23,11 @@ const InfosDevOpsCD = Loadable({
loader: () => import("./devOpsCD"), loader: () => import("./devOpsCD"),
loading: Loading, loading: Loading,
}); });
const GeneralView = Loadable({
loader: () => import("./GeneralView/Index"),
loading: Loading,
});
const InfosUser = Loadable({ const InfosUser = Loadable({
loader: () => import("./InfosUser"), loader: () => import("./InfosUser"),
loading: Loading, loading: Loading,