|
|
|
@ -2,7 +2,9 @@ import React, { Component } from 'react';
|
|
|
|
|
import { Link } from "react-router-dom";
|
|
|
|
|
import AccountProfile from "../user/AccountProfile";
|
|
|
|
|
import Certifiedprofessional from "../../modules/modals/Certifiedprofessional"
|
|
|
|
|
|
|
|
|
|
import { getImageUrl } from 'educoder'
|
|
|
|
|
|
|
|
|
|
import axios from 'axios';
|
|
|
|
|
|
|
|
|
|
import { Modal, Radio, Input, message, notification } from 'antd';
|
|
|
|
@ -100,9 +102,6 @@ class NewHeader extends Component {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
componentDidUpdate = (prevProps) => {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
openNotification = (messge) => {
|
|
|
|
|
notification.open({
|
|
|
|
|
message: "提示",
|
|
|
|
@ -115,6 +114,9 @@ class NewHeader extends Component {
|
|
|
|
|
this.setState({
|
|
|
|
|
user: newProps.user
|
|
|
|
|
})
|
|
|
|
|
if (newProps.Headertop != undefined) {
|
|
|
|
|
old_url = newProps.Headertop.old_url
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
getCookie = (key) => {
|
|
|
|
@ -343,6 +345,14 @@ class NewHeader extends Component {
|
|
|
|
|
})
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
// }else if(value===0){
|
|
|
|
|
// if(tojoinclasstitle.length<5){
|
|
|
|
|
// this.setState({
|
|
|
|
|
// code_notice:true
|
|
|
|
|
// })
|
|
|
|
|
// return
|
|
|
|
|
// }
|
|
|
|
|
// }
|
|
|
|
|
if (tojoinclasstitle === "" || tojoinclasstitle === undefined) {
|
|
|
|
|
this.setState({
|
|
|
|
|
code_notice: true
|
|
|
|
@ -410,7 +420,6 @@ class NewHeader extends Component {
|
|
|
|
|
}
|
|
|
|
|
this.hidetojoinclass()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 关闭
|
|
|
|
|
cancelModulationModels = () => {
|
|
|
|
|
this.setState({ isRenders: false })
|
|
|
|
@ -568,6 +577,13 @@ class NewHeader extends Component {
|
|
|
|
|
document.head.appendChild(link);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
getAppdata = () => {
|
|
|
|
|
try {
|
|
|
|
|
var chromesettingArray = JSON.parse(localStorage.getItem('chromesetting'));
|
|
|
|
|
var chromesettingresponseArray = JSON.parse(localStorage.getItem('chromesettingresponse'));
|
|
|
|
|
// console.log("NewHeaderNewHeaderNewHeader");
|
|
|
|
|
// console.log(chromesettingArray);
|
|
|
|
|
// console.log(chromesettingresponseArray);
|
|
|
|
|
|
|
|
|
|
handleVisibleChanges = (boll) => {
|
|
|
|
|
this.setState({
|
|
|
|
@ -750,69 +766,69 @@ class NewHeader extends Component {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// console.log(mygetHelmetapi2);
|
|
|
|
|
// console.log("NewHeadermygetHelmetapi123123123123");
|
|
|
|
|
|
|
|
|
|
let shixuntype=false;
|
|
|
|
|
let pathstype=false;
|
|
|
|
|
let coursestypes=false;
|
|
|
|
|
if(this.props&&this.props.mygetHelmetapi!=null){
|
|
|
|
|
let shixun="/shixuns";
|
|
|
|
|
let paths="/paths";
|
|
|
|
|
let courses="/courses";
|
|
|
|
|
this.props.mygetHelmetapi.navbar.map((item,key)=>{
|
|
|
|
|
var reg = RegExp(item.link);
|
|
|
|
|
if(shixun.match(reg)){
|
|
|
|
|
if(item.hidden===true){
|
|
|
|
|
shixuntype=true
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if(paths.match(reg)){
|
|
|
|
|
if(item.hidden===true){
|
|
|
|
|
pathstype=true
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if(courses.match(reg)){
|
|
|
|
|
if(item.hidden===true){
|
|
|
|
|
coursestypes=true
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const contents = (
|
|
|
|
|
<div className="questiontypes" style={{
|
|
|
|
|
width:'93px',
|
|
|
|
|
height:'80px',
|
|
|
|
|
}}>
|
|
|
|
|
<Link to={'/question'} className={"popovertests"} ><p className="questiontype">试题库</p></Link>
|
|
|
|
|
<p className="questiontypeheng"></p>
|
|
|
|
|
<Link to={'/paperlibrary'} className={"popovertests"} ><p className="questiontype">试卷库</p></Link>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
// console.log("头部");
|
|
|
|
|
// console.log(this.props);
|
|
|
|
|
//判断平台身份
|
|
|
|
|
let Periofters=false;
|
|
|
|
|
if(this.props){
|
|
|
|
|
if(this.props.current_user){
|
|
|
|
|
if(this.props.current_user.admin){
|
|
|
|
|
Periofters=true;
|
|
|
|
|
}
|
|
|
|
|
else if(this.props.current_user.business){
|
|
|
|
|
Periofters=true;
|
|
|
|
|
}
|
|
|
|
|
else if(this.props.current_user.is_teacher){
|
|
|
|
|
Periofters=true;
|
|
|
|
|
}else if(this.props.current_user.user_identity !=="学生") {
|
|
|
|
|
Periofters=true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
// console.log("NewHeadermygetHelmetapi123123123123");
|
|
|
|
|
|
|
|
|
|
let shixuntype = false;
|
|
|
|
|
let pathstype = false;
|
|
|
|
|
let coursestypes = false;
|
|
|
|
|
if (this.props && this.props.mygetHelmetapi != null) {
|
|
|
|
|
let shixun = "/shixuns";
|
|
|
|
|
let paths = "/paths";
|
|
|
|
|
let courses = "/courses";
|
|
|
|
|
this.props.mygetHelmetapi.navbar.map((item, key) => {
|
|
|
|
|
var reg = RegExp(item.link);
|
|
|
|
|
if (shixun.match(reg)) {
|
|
|
|
|
if (item.hidden === true) {
|
|
|
|
|
shixuntype = true
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (paths.match(reg)) {
|
|
|
|
|
if (item.hidden === true) {
|
|
|
|
|
pathstype = true
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (courses.match(reg)) {
|
|
|
|
|
if (item.hidden === true) {
|
|
|
|
|
coursestypes = true
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const contents = (
|
|
|
|
|
<div className="questiontypes" style={{
|
|
|
|
|
width: '93px',
|
|
|
|
|
height: '80px',
|
|
|
|
|
}}>
|
|
|
|
|
<Link to={'/question'} className={"popovertests"} ><p className="questiontype">试题库</p></Link>
|
|
|
|
|
<p className="questiontypeheng"></p>
|
|
|
|
|
<Link to={'/paperlibrary'} className={"popovertests"} ><p className="questiontype">试卷库</p></Link>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
// console.log("头部");
|
|
|
|
|
// console.log(this.props);
|
|
|
|
|
//判断平台身份
|
|
|
|
|
let Periofters = false;
|
|
|
|
|
if (this.props) {
|
|
|
|
|
if (this.props.current_user) {
|
|
|
|
|
if (this.props.current_user.admin) {
|
|
|
|
|
Periofters = true;
|
|
|
|
|
}
|
|
|
|
|
else if (this.props.current_user.business) {
|
|
|
|
|
Periofters = true;
|
|
|
|
|
}
|
|
|
|
|
else if (this.props.current_user.is_teacher) {
|
|
|
|
|
Periofters = true;
|
|
|
|
|
} else if (this.props.current_user.user_identity !== "学生") {
|
|
|
|
|
Periofters = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
|
|
|
|
|
<div className="newHeaders" id="nHeader" >
|
|
|
|
|
<style>{
|
|
|
|
@ -917,117 +933,117 @@ class NewHeader extends Component {
|
|
|
|
|
padding:0px !important;
|
|
|
|
|
}
|
|
|
|
|
`
|
|
|
|
|
}
|
|
|
|
|
</style>
|
|
|
|
|
{/*{*/}
|
|
|
|
|
{/* Periofters===true?*/}
|
|
|
|
|
{/* <li className={`pr questionbanks`} >*/}
|
|
|
|
|
{/* <Popover className="queyppors" id={"yslpopovers"} placement="bottom" content={contents} trigger="click" >*/}
|
|
|
|
|
{/* <div className=" sortinxdirection mr10">*/}
|
|
|
|
|
{/* <div style={{*/}
|
|
|
|
|
{/* color:"#fff"*/}
|
|
|
|
|
{/* }}>*/}
|
|
|
|
|
{/* 题库*/}
|
|
|
|
|
{/* </div>*/}
|
|
|
|
|
{/* </div>*/}
|
|
|
|
|
{/* </Popover>*/}
|
|
|
|
|
{/* </li>*/}
|
|
|
|
|
{/* :""*/}
|
|
|
|
|
{/*}*/}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<li
|
|
|
|
|
style={{display: this.props.Headertop === undefined ? 'none' : this.props.Headertop.auth === null ? 'none' : 'block'}}
|
|
|
|
|
><a href={this.props.Headertop === undefined ? "" : this.props.Headertop.auth}>工程认证</a></li>
|
|
|
|
|
|
|
|
|
|
<li className="fl edu-menu-panel careershover "
|
|
|
|
|
style={{display: this.props.Headertop === undefined ?'none' : this.props.Headertop.career_url.length > 0 ? 'block' : 'none'}}>
|
|
|
|
|
<a>职业路径</a>
|
|
|
|
|
<div
|
|
|
|
|
style={{display: this.props.Headertop === undefined ?'none' : this.props.Headertop.career_url.length > 0 ? 'block' : 'none'}}>
|
|
|
|
|
<ul className="edu-menu-list edu-menu-listnew " style={{top:'60px'}}>
|
|
|
|
|
{this.props.Headertop === undefined ? "" : this.props.Headertop.career_url.map((item, key) => {
|
|
|
|
|
return(
|
|
|
|
|
<li key={key}><i className="iconfont icon-java left careersiconfont"
|
|
|
|
|
style={{color: '#000 important'}}
|
|
|
|
|
></i><a style={{width: '83%'}}
|
|
|
|
|
href={item.url}>{item.name}</a></li>
|
|
|
|
|
)
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
</li>
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
:
|
|
|
|
|
<div className="head-nav pr" id={"head-navpre3"}>
|
|
|
|
|
|
|
|
|
|
<ul id="header-nav">
|
|
|
|
|
{/*<li className={`${activeIndex === true ? 'active' : ''}`}><a href="/">首页</a></li>*/}
|
|
|
|
|
|
|
|
|
|
{/*<li><a href={this.props.Headertop===undefined?"":this.props.Headertop.shixun_paths_url}>实训路径</a></li>*/}
|
|
|
|
|
<li className={`${activePaths === true ? 'pr active' : 'pr'}`}>
|
|
|
|
|
<Link to={this.props.Headertop===undefined?"":'/paths'}>实践课程</Link>
|
|
|
|
|
</li>
|
|
|
|
|
|
|
|
|
|
{/*<li><a href={this.props.Headertop===undefined?"":'/courses'}>课堂</a></li>*/}
|
|
|
|
|
<li className={`${coursestype === true ? 'pr active' : 'pr'}`}>
|
|
|
|
|
{/*<a href={this.props.Headertop===undefined?"":this.props.Headertop.course_url}>课堂</a>*/}
|
|
|
|
|
<Link to={this.props.Headertop===undefined?"":'/courses'}>教学课堂</Link>
|
|
|
|
|
</li>
|
|
|
|
|
<li className={`${activeShixuns === true ? 'pr active' : 'pr'}`}>
|
|
|
|
|
<Link to="/shixuns">实训项目</Link>
|
|
|
|
|
{/*<img src={getImageUrl("images/educoder/hot-h.png")} className="nav-img">*/}
|
|
|
|
|
{/*</img>*/}
|
|
|
|
|
</li>
|
|
|
|
|
|
|
|
|
|
<li className="fl edu-menu-panel careershover "
|
|
|
|
|
style={{display: this.props.Headertop === undefined ?'none' : this.props.Headertop.career_url.length > 0 ? 'block' : 'none'}}>
|
|
|
|
|
<a>职业路径</a>
|
|
|
|
|
<div
|
|
|
|
|
style={{display: this.props.Headertop === undefined ?'none' : this.props.Headertop.career_url.length > 0 ? 'block' : 'none'}}>
|
|
|
|
|
<ul className="edu-menu-list edu-menu-listnew " style={{top:'60px'}}>
|
|
|
|
|
{this.props.Headertop === undefined ? "" : this.props.Headertop.career_url.map((item, key) => {
|
|
|
|
|
return(
|
|
|
|
|
<li key={key}><i className="iconfont icon-java left careersiconfont"
|
|
|
|
|
style={{color: '#000 important'}}
|
|
|
|
|
></i><a style={{width: '83%'}}
|
|
|
|
|
href={item.url}>{item.name}</a></li>
|
|
|
|
|
)
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
</li>
|
|
|
|
|
|
|
|
|
|
{/*<li className=""><a href={"/libraries"}>教学案例</a></li>*/}
|
|
|
|
|
<li className={`${activeCompetitions === true ? 'pr active' : 'pr'}`}>
|
|
|
|
|
<a href={this.props.Headertop===undefined?"":this.props.Headertop.competitions_url}>在线竞赛</a>
|
|
|
|
|
{/*<img className="roundedRectangles"*/}
|
|
|
|
|
{/* src={require('./roundedRectangle.png')}*/}
|
|
|
|
|
{/*/>*/}
|
|
|
|
|
</li>
|
|
|
|
|
<li className={`${activeMoopCases === true ? 'pr active' : 'pr'}`}> <Link to={`/moop_cases`}>教学案例</Link></li>
|
|
|
|
|
{/*<li className={`${activePackages === true ? 'pr active' : 'pr'}`}>*/}
|
|
|
|
|
{/*<Link to={'/crowdsourcing'}>众包创新</Link>*/}
|
|
|
|
|
{/*</li>*/}
|
|
|
|
|
<li className={`${activeForums === true ? 'active' : ''}`}> <Link to={this.props.Headertop===undefined?"":this.props.Headertop.topic_url}>交流问答</Link></li>
|
|
|
|
|
<li
|
|
|
|
|
style={{display: this.props.Headertop === undefined ? 'none' : this.props.Headertop.auth===null? 'none' : 'block'}}
|
|
|
|
|
><a href={this.props.Headertop===undefined?"":this.props.Headertop.auth}>工程认证</a></li>
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<style>
|
|
|
|
|
{
|
|
|
|
|
`
|
|
|
|
|
}
|
|
|
|
|
</style>
|
|
|
|
|
{/*{*/}
|
|
|
|
|
{/* Periofters===true?*/}
|
|
|
|
|
{/* <li className={`pr questionbanks`} >*/}
|
|
|
|
|
{/* <Popover className="queyppors" id={"yslpopovers"} placement="bottom" content={contents} trigger="click" >*/}
|
|
|
|
|
{/* <div className=" sortinxdirection mr10">*/}
|
|
|
|
|
{/* <div style={{*/}
|
|
|
|
|
{/* color:"#fff"*/}
|
|
|
|
|
{/* }}>*/}
|
|
|
|
|
{/* 题库*/}
|
|
|
|
|
{/* </div>*/}
|
|
|
|
|
{/* </div>*/}
|
|
|
|
|
{/* </Popover>*/}
|
|
|
|
|
{/* </li>*/}
|
|
|
|
|
{/* :""*/}
|
|
|
|
|
{/*}*/}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<li
|
|
|
|
|
style={{ display: this.props.Headertop === undefined ? 'none' : this.props.Headertop.auth === null ? 'none' : 'block' }}
|
|
|
|
|
><a href={this.props.Headertop === undefined ? "" : this.props.Headertop.auth}>工程认证</a></li>
|
|
|
|
|
|
|
|
|
|
<li className="fl edu-menu-panel careershover "
|
|
|
|
|
style={{ display: this.props.Headertop === undefined ? 'none' : this.props.Headertop.career_url.length > 0 ? 'block' : 'none' }}>
|
|
|
|
|
<a>职业路径</a>
|
|
|
|
|
<div
|
|
|
|
|
style={{ display: this.props.Headertop === undefined ? 'none' : this.props.Headertop.career_url.length > 0 ? 'block' : 'none' }}>
|
|
|
|
|
<ul className="edu-menu-list edu-menu-listnew " style={{ top: '60px' }}>
|
|
|
|
|
{this.props.Headertop === undefined ? "" : this.props.Headertop.career_url.map((item, key) => {
|
|
|
|
|
return (
|
|
|
|
|
<li key={key}><i className="iconfont icon-java left careersiconfont"
|
|
|
|
|
style={{ color: '#000 important' }}
|
|
|
|
|
></i><a style={{ width: '83%' }}
|
|
|
|
|
href={item.url}>{item.name}</a></li>
|
|
|
|
|
)
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
</li>
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
:
|
|
|
|
|
<div className="head-nav pr" id={"head-navpre3"}>
|
|
|
|
|
|
|
|
|
|
<ul id="header-nav">
|
|
|
|
|
{/*<li className={`${activeIndex === true ? 'active' : ''}`}><a href="/">首页</a></li>*/}
|
|
|
|
|
|
|
|
|
|
{/*<li><a href={this.props.Headertop===undefined?"":this.props.Headertop.shixun_paths_url}>实训路径</a></li>*/}
|
|
|
|
|
<li className={`${activePaths === true ? 'pr active' : 'pr'}`}>
|
|
|
|
|
<Link to={this.props.Headertop === undefined ? "" : '/paths'}>实践课程</Link>
|
|
|
|
|
</li>
|
|
|
|
|
|
|
|
|
|
{/*<li><a href={this.props.Headertop===undefined?"":'/courses'}>课堂</a></li>*/}
|
|
|
|
|
<li className={`${coursestype === true ? 'pr active' : 'pr'}`}>
|
|
|
|
|
{/*<a href={this.props.Headertop===undefined?"":this.props.Headertop.course_url}>课堂</a>*/}
|
|
|
|
|
<Link to={this.props.Headertop === undefined ? "" : '/courses'}>教学课堂</Link>
|
|
|
|
|
</li>
|
|
|
|
|
<li className={`${activeShixuns === true ? 'pr active' : 'pr'}`}>
|
|
|
|
|
<Link to="/shixuns">实训项目</Link>
|
|
|
|
|
{/*<img src={getImageUrl("images/educoder/hot-h.png")} className="nav-img">*/}
|
|
|
|
|
{/*</img>*/}
|
|
|
|
|
</li>
|
|
|
|
|
|
|
|
|
|
<li className="fl edu-menu-panel careershover "
|
|
|
|
|
style={{ display: this.props.Headertop === undefined ? 'none' : this.props.Headertop.career_url.length > 0 ? 'block' : 'none' }}>
|
|
|
|
|
<a>职业路径</a>
|
|
|
|
|
<div
|
|
|
|
|
style={{ display: this.props.Headertop === undefined ? 'none' : this.props.Headertop.career_url.length > 0 ? 'block' : 'none' }}>
|
|
|
|
|
<ul className="edu-menu-list edu-menu-listnew " style={{ top: '60px' }}>
|
|
|
|
|
{this.props.Headertop === undefined ? "" : this.props.Headertop.career_url.map((item, key) => {
|
|
|
|
|
return (
|
|
|
|
|
<li key={key}><i className="iconfont icon-java left careersiconfont"
|
|
|
|
|
style={{ color: '#000 important' }}
|
|
|
|
|
></i><a style={{ width: '83%' }}
|
|
|
|
|
href={item.url}>{item.name}</a></li>
|
|
|
|
|
)
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
</li>
|
|
|
|
|
|
|
|
|
|
{/*<li className=""><a href={"/libraries"}>教学案例</a></li>*/}
|
|
|
|
|
<li className={`${activeCompetitions === true ? 'pr active' : 'pr'}`}>
|
|
|
|
|
<a href={this.props.Headertop === undefined ? "" : this.props.Headertop.competitions_url}>在线竞赛</a>
|
|
|
|
|
{/*<img className="roundedRectangles"*/}
|
|
|
|
|
{/* src={require('./roundedRectangle.png')}*/}
|
|
|
|
|
{/*/>*/}
|
|
|
|
|
</li>
|
|
|
|
|
<li className={`${activeMoopCases === true ? 'pr active' : 'pr'}`}> <Link to={`/moop_cases`}>教学案例</Link></li>
|
|
|
|
|
{/*<li className={`${activePackages === true ? 'pr active' : 'pr'}`}>*/}
|
|
|
|
|
{/*<Link to={'/crowdsourcing'}>众包创新</Link>*/}
|
|
|
|
|
{/*</li>*/}
|
|
|
|
|
<li className={`${activeForums === true ? 'active' : ''}`}> <Link to={this.props.Headertop === undefined ? "" : this.props.Headertop.topic_url}>交流问答</Link></li>
|
|
|
|
|
<li
|
|
|
|
|
style={{ display: this.props.Headertop === undefined ? 'none' : this.props.Headertop.auth === null ? 'none' : 'block' }}
|
|
|
|
|
><a href={this.props.Headertop === undefined ? "" : this.props.Headertop.auth}>工程认证</a></li>
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<style>
|
|
|
|
|
{
|
|
|
|
|
`
|
|
|
|
|
.posi-searchs{
|
|
|
|
|
opacity: 1;
|
|
|
|
|
position: absolute;
|
|
|
|
@ -1088,36 +1104,36 @@ class NewHeader extends Component {
|
|
|
|
|
<em className="vertical-line"></em>
|
|
|
|
|
<%= link_to '注册', user_join_path, :className => "ml5" %>
|
|
|
|
|
</span>*/}
|
|
|
|
|
{ user===undefined?
|
|
|
|
|
<span className="font-15 fr mt17 ml5 mr25">
|
|
|
|
|
<a onClick={()=>this.educoderlogin()} className="mr5 color-white">登录</a>
|
|
|
|
|
<em className="vertical-line"></em>
|
|
|
|
|
<a href={"/register"} className="mr5 color-white">注册</a>
|
|
|
|
|
</span> :user.login===""?<span className="font-15 fr mt17 ml5 mr25">
|
|
|
|
|
<a onClick={()=>this.educoderlogin()} className="mr5 color-white">登录</a>
|
|
|
|
|
<em className="vertical-line"></em>
|
|
|
|
|
<a href={"/register"} className="mr5 color-white">注册</a>
|
|
|
|
|
</span>:
|
|
|
|
|
<div className="fr edu-menu-panel mr25" style={{height:'60px'}}>
|
|
|
|
|
<a href={`/users/${this.props.current_user===undefined?"":this.props.current_user.login}/courses`} className="fl ml15">
|
|
|
|
|
{user === undefined ?
|
|
|
|
|
<span className="font-15 fr mt17 ml5 mr25">
|
|
|
|
|
<a onClick={() => this.educoderlogin()} className="mr5 color-white">登录</a>
|
|
|
|
|
<em className="vertical-line"></em>
|
|
|
|
|
<a href={"/register"} className="mr5 color-white">注册</a>
|
|
|
|
|
</span> : user.login === "" ? <span className="font-15 fr mt17 ml5 mr25">
|
|
|
|
|
<a onClick={() => this.educoderlogin()} className="mr5 color-white">登录</a>
|
|
|
|
|
<em className="vertical-line"></em>
|
|
|
|
|
<a href={"/register"} className="mr5 color-white">注册</a>
|
|
|
|
|
</span> :
|
|
|
|
|
<div className="fr edu-menu-panel mr25" style={{ height: '60px' }}>
|
|
|
|
|
<a href={`/users/${this.props.current_user === undefined ? "" : this.props.current_user.login}/courses`} className="fl ml15">
|
|
|
|
|
<img alt="头像" className="radius mt13" height="34" id="nh_user_logo" name="avatar_image"
|
|
|
|
|
src={getImageUrl(`images/`+user.image_url)} width="34">
|
|
|
|
|
src={getImageUrl(`images/` + user.image_url)} width="34">
|
|
|
|
|
</img>
|
|
|
|
|
</a>
|
|
|
|
|
<ul className="edu-menu-list" style={{top:'60px'}}>
|
|
|
|
|
<ul className="edu-menu-list" style={{ top: '60px' }}>
|
|
|
|
|
{/*<span className="bor-bottom-greyE currentName task-hide">{user.username}</span>*/}
|
|
|
|
|
<li><Link to={`/users/${this.props.current_user.login}/courses`}>我的个人主页</Link></li>
|
|
|
|
|
{coursestypes===true?"":<li><Link to={`/users/${this.props.current_user===undefined?"":this.props.current_user.login}/courses`}>{this.props.user&&this.props.user.main_site===false?"我的课堂":"我的教学课堂"}</Link></li>}
|
|
|
|
|
<li><Link to={`/users/${this.props.current_user.login}/courses`}>我的个人主页</Link></li>
|
|
|
|
|
{coursestypes === true ? "" : <li><Link to={`/users/${this.props.current_user === undefined ? "" : this.props.current_user.login}/courses`}>{this.props.user && this.props.user.main_site === false ? "我的课堂" : "我的教学课堂"}</Link></li>}
|
|
|
|
|
{/* p 老师 l 学生 */}
|
|
|
|
|
{shixuntype===true?"":<li><Link to={`/users/${this.props.current_user===undefined?"":this.props.current_user.login}/shixuns`}>我的实训项目</Link></li>}
|
|
|
|
|
{pathstype===true?"":<li><Link to={`/users/${this.props.current_user===undefined?"":this.props.current_user.login}/paths`}>{this.props.user&&this.props.user.main_site===false?"我的课程":"我的实践课程"}</Link></li>}
|
|
|
|
|
{this.props.user&&this.props.user.main_site===true?<li><Link to={`/users/${this.props.current_user===undefined?"":this.props.current_user.login}/projects`}>我的开发项目</Link></li>:""}
|
|
|
|
|
{ Periofters === true &&<li><Link to ={`/problemset`}>我的试题库</Link></li> }
|
|
|
|
|
{ Periofters === true &&<li><Link to ={`/paperlibrary`}>我的试卷库</Link></li> }
|
|
|
|
|
{/*<li><Link to={`/users/${this.props.current_user===undefined?"":this.props.current_user.login}/package`}>我的众包</Link></li>*/}
|
|
|
|
|
<li style={{display: this.props.Headertop === undefined ? 'none' : this.props.Headertop.customer_management_url===null || this.props.Headertop.customer_management_url===""? 'none' : 'block'}}>
|
|
|
|
|
<a href={this.props.Headertop === undefined ? '' : this.props.Headertop.customer_management_url}>客户管理</a>
|
|
|
|
|
</li>
|
|
|
|
|
{shixuntype === true ? "" : <li><Link to={`/users/${this.props.current_user === undefined ? "" : this.props.current_user.login}/shixuns`}>我的实训项目</Link></li>}
|
|
|
|
|
{pathstype === true ? "" : <li><Link to={`/users/${this.props.current_user === undefined ? "" : this.props.current_user.login}/paths`}>{this.props.user && this.props.user.main_site === false ? "我的课程" : "我的实践课程"}</Link></li>}
|
|
|
|
|
{this.props.user && this.props.user.main_site === true ? <li><Link to={`/users/${this.props.current_user === undefined ? "" : this.props.current_user.login}/projects`}>我的开发项目</Link></li> : ""}
|
|
|
|
|
{Periofters === true && <li><Link to={`/problemset`}>我的试题库</Link></li>}
|
|
|
|
|
{Periofters === true && <li><Link to={`/paperlibrary`}>我的试卷库</Link></li>}
|
|
|
|
|
{/*<li><Link to={`/users/${this.props.current_user===undefined?"":this.props.current_user.login}/package`}>我的众包</Link></li>*/}
|
|
|
|
|
<li style={{ display: this.props.Headertop === undefined ? 'none' : this.props.Headertop.customer_management_url === null || this.props.Headertop.customer_management_url === "" ? 'none' : 'block' }}>
|
|
|
|
|
<a href={this.props.Headertop === undefined ? '' : this.props.Headertop.customer_management_url}>客户管理</a>
|
|
|
|
|
</li>
|
|
|
|
|
{
|
|
|
|
|
this.props.Headertop && this.props.Headertop.college_identifier &&
|
|
|
|
|
<li><a href={`/colleges/${this.props.Headertop.college_identifier}/statistics`}>学院统计</a></li>
|
|
|
|
@ -1132,20 +1148,20 @@ class NewHeader extends Component {
|
|
|
|
|
{/*<li><a onClick={()=>this.trialapplications()} >试用申请</a> </li>*/}
|
|
|
|
|
{/*<li><Link to={`/interest`}>兴趣页</Link></li>*/}
|
|
|
|
|
|
|
|
|
|
<li className="bor-top-greyE">
|
|
|
|
|
<li className="bor-top-greyE">
|
|
|
|
|
|
|
|
|
|
{/*<a onClick={()=>this.educoderlogin()} >登录</a>*/}
|
|
|
|
|
<a onClick={() => this.educoderloginysl()}>退出</a>
|
|
|
|
|
{/*<a onClick={()=>this.educoderlogin()} >登录</a>*/}
|
|
|
|
|
<a onClick={() => this.educoderloginysl()}>退出</a>
|
|
|
|
|
|
|
|
|
|
</li>
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
}
|
|
|
|
|
{/*href="https://www.educoder.net/login"*/}
|
|
|
|
|
<div className="fr head-right">
|
|
|
|
|
{/*{ loadHeader()}*/}
|
|
|
|
|
{showSearchOpentype===true?"":this.props.user&&this.props.user.main_site===true?<a id="search-open" className="fl mr30 headIcon" onClick={(e)=>this.showSearchOpen(e)}>
|
|
|
|
|
{/*"/images/educoder/icon/search.svg"
|
|
|
|
|
}
|
|
|
|
|
{/*href="https://www.educoder.net/login"*/}
|
|
|
|
|
<div className="fr head-right">
|
|
|
|
|
{/*{ loadHeader()}*/}
|
|
|
|
|
{showSearchOpentype === true ? "" : this.props.user && this.props.user.main_site === true ? <a id="search-open" className="fl mr30 headIcon" onClick={(e) => this.showSearchOpen(e)}>
|
|
|
|
|
{/*"/images/educoder/icon/search.svg"
|
|
|
|
|
<img src={getImageUrl(`images/educoder/icon/search.svg`)} /> */}
|
|
|
|
|
|
|
|
|
|
<i className="iconfont icon-sousuo color-white"></i>
|
|
|
|
@ -1248,8 +1264,6 @@ class NewHeader extends Component {
|
|
|
|
|
>
|
|
|
|
|
<i className="iconfont icon-xiaoxilingdang color-white"></i>
|
|
|
|
|
<span className="newslight" style={{ display: this.props.Headertop === undefined ? "none" : this.props.Headertop.new_message === true ? "block" : "none" }}>
|
|
|
|
|
{/*{this.props.Headertop===undefined?"":this.props.Headertop.unread_message_count > 99 ? '99+'*/}
|
|
|
|
|
{/*: this.props.Headertop===undefined?"":this.props.Headertop.unread_message_count}*/}
|
|
|
|
|
</span>
|
|
|
|
|
</a>
|
|
|
|
|
}
|
|
|
|
|