dev_aliyun2
harry 5 years ago
parent b48a7f4913
commit 39b575f91d

@ -1,27 +1,23 @@
import React from 'react'; import React, { Component } from 'react';
import NewHeader from './NewHeader' import NewHeader from './NewHeader'
import NewFooter from './NewFooter' import NewFooter from './NewFooter'
import SiderBar from './SiderBar' import SiderBar from './SiderBar'
import { downloadFile } from 'educoder' import { getUrl, downloadFile } from 'educoder'
import axios from 'axios'; import axios from 'axios';
import { Spin } from 'antd';
import './TPMIndex.css'; import './TPMIndex.css';
import LoginDialog from '../login/LoginDialog'; import LoginDialog from '../login/LoginDialog';
import AccountProfile from '../user/AccountProfile'; import AccountProfile from '../user/AccountProfile';
import AccountPhoneemail from '../user/AccountPhoneemail'; import AccountPhoneemail from '../user/AccountPhoneemail';
import Loading from '../../Loading';
const $ = window.$; const $ = window.$;
let _url_origin='';
let _url_origin = ''; if(window.location.port === "3007"){
if (window.location.port === "3007") { _url_origin="https://test-newweb.educoder.net";
_url_origin = "https://test-newweb.educoder.net";
} }
if (!window['indexHOCLoaded']) { if (!window['indexHOCLoaded']) {
window.indexHOCLoaded = true; window.indexHOCLoaded = true;
//解决首屏加载问题
$('head').append($('<link rel="stylesheet" type="text/css" />') $('head').append($('<link rel="stylesheet" type="text/css" />')
.attr('href', `${_url_origin}/stylesheets/css/edu-common.css?3`)); .attr('href', `${_url_origin}/stylesheets/css/edu-common.css?3`));
@ -34,7 +30,6 @@ if (!window['indexHOCLoaded']) {
.attr('href', `${_url_origin}/stylesheets/educoder/edu-all.css?3`)); .attr('href', `${_url_origin}/stylesheets/educoder/edu-all.css?3`));
} }
// TODO css加载完成后再打开页面行为和tpm其他页面一致
export default function TPMIndexHOC(WrappedComponent) { export default function TPMIndexHOC(WrappedComponent) {
// 这里如果extends WrappedComponent 会出现 WrappedComponent mount twice的问题 // 这里如果extends WrappedComponent 会出现 WrappedComponent mount twice的问题
return class II extends React.Component { return class II extends React.Component {
@ -178,62 +173,66 @@ export default function TPMIndexHOC(WrappedComponent) {
}); });
}else{ }else{
this.setState({ this.setState({
watched: !watched dataquerys:foqus,
}) });
dataqueryss=foqus;
} }
}).catch((error) => { }catch (e) {
console.log(error) this.setState({
dataquerys:{},
}) })
} }
this.fetchUsers(dataqueryss);
keyupListener = (e) => { let url=`/users/get_navigation_info.json`;
if (e.key === "Escape") { axios.get(url, {
this.setState({ globalLoading: false })
}
}
componentWillUnmount() {
window.removeEventListener('keyup', this.keyupListener)
}
componentDidMount() {
window.addEventListener('keyup', this.keyupListener)
if (this.props.match.path === "/") {
} else if (this.props.match.path === "/403") {
document.title = "你没有权限访问";
} else if (this.props.match.path === "/nopage") {
document.title = "没有找到该页面";
} else if (this.props.match.path === "/shixuns") {
document.title = "实训项目";
} else if (this.props.match.path === "/paths") {
document.title = "实践课程";
} else if (this.props.match.path === "/courses") {
document.title = "翻转课堂";
}
$.ajaxSetup({
cache: true
});
//帮助后台传参数 }).then((response) => {
const query = this.props.location.search; // console.log("开始请求/get_navigation_info.json");
var dataqueryss = {} // console.log(response);
try { if(response!=undefined){
var foqus = this.foo(query); if(response.status===200){
if (JSON.stringify(foqus) === "{}") {
this.setState({
dataquerys: {},
});
} else {
this.setState({ this.setState({
dataquerys: foqus, Headertop:response.data.top,
Footerdown:response.data.down
})
}
}
}); });
dataqueryss = foqus; ///请求定制化的信息
this.getAppdata();
}
/**
课堂权限相关方法暂时写这里了 ----------------------------------------START
ADMIN = 0 # 超级管理员
CREATOR = 1 # 课程创建者
PROFESSOR = 2 # 课程老师
ASSISTANT_PROFESSOR = 3 # 课程助教
STUDENT = 4 # 学生
NORMAL = 5 # 普通用户
v2
# 课程权限判断
ADMIN = 0 # 超级管理员
BUSINESS = 1 # 运营人员
CREATOR = 2 # 课程创建者 课堂管理员
PROFESSOR = 3 # 课程老师
ASSISTANT_PROFESSOR = 4 # 课程助教
STUDENT = 5 # 学生
NORMAL = 6 # 普通用户
Anonymous = 7 # 普未登录
*/
//超管0
isSuperAdmin = () => {
// return false
return this.state.coursedata&&this.state.coursedata.course_identity === 0
} }
} catch (e) { isCourseAdmin = () => {
this.setState({ return this.state.coursedata&&this.state.coursedata.course_identity === 2
dataquerys: {}, }
}) //超管、运维0-1
isClassManagement = () => {
return this.state.coursedata&&this.state.coursedata.course_identity < 2
} }
//超管、运维、课堂管理0-2 //超管、运维、课堂管理0-2
isAdminOrCreator = () => { isAdminOrCreator = () => {
@ -278,20 +277,56 @@ export default function TPMIndexHOC(WrappedComponent) {
//获取数据为空的时候 //获取数据为空的时候
gettablogourlnull = () => { gettablogourlnull = () => {
this.setState({ this.setState({
mygetHelmetapi: chromesettingArray mygetHelmetapi: undefined
});
document.title = "EduCoder";
var link = document.createElement('link'),
oldLink = document.getElementById('dynamic-favicon');
link.id = 'dynamic-favicon';
link.rel = 'shortcut icon';
link.href = "/react/build/./favicon.ico";
if (oldLink) {
document.head.removeChild(oldLink);
}
document.head.appendChild(link);
};
//获取数据的时候
gettablogourldata = (response) => {
document.title = response.data.setting.name;
var link = document.createElement('link'),
oldLink = document.getElementById('dynamic-favicon');
link.id = 'dynamic-favicon';
link.rel = 'shortcut icon';
link.href = '/' + response.data.setting.tab_logo_url;
if (oldLink) {
document.head.removeChild(oldLink);
}
document.head.appendChild(link);
}
//获取当前定制信息
getAppdata = () => {
try {
var chromesettingArray = JSON.parse(localStorage.getItem('chromesetting'));
var chromesettingresponseArray = JSON.parse(localStorage.getItem('chromesettingresponse'));
// console.log("TPMLNdexHOC");
// console.log(chromesettingArray);
// console.log(chromesettingresponseArray);
this.setState({
mygetHelmetapi:chromesettingArray
}); });
if (chromesettingArray.tab_logo_url) { if (chromesettingArray.tab_logo_url) {
this.gettablogourldata(chromesettingresponseArray); this.gettablogourldata(chromesettingresponseArray);
} else { } else {
this.gettablogourlnull(); this.gettablogourlnull();
} }
} catch (e) { }catch (e) {
console.log("hoc获取游览器配置失败 重新请求开始读取配置"); console.log("hoc获取游览器配置失败 重新请求开始读取配置");
this.getAppdatausr(); this.getAppdatausr();
} }
}; };
getAppdatausr = () => { getAppdatausr=()=>{
let url = "/setting.json"; let url = "/setting.json";
axios.get(url).then((response) => { axios.get(url).then((response) => {
// console.log("app.js开始请求/setting.json"); // console.log("app.js开始请求/setting.json");
@ -301,8 +336,8 @@ export default function TPMIndexHOC(WrappedComponent) {
this.setState({ this.setState({
mygetHelmetapi: response.data.setting mygetHelmetapi: response.data.setting
}); });
localStorage.setItem('chromesetting', JSON.stringify(response.data.setting)); localStorage.setItem('chromesetting',JSON.stringify(response.data.setting));
localStorage.setItem('chromesettingresponse', JSON.stringify(response)); localStorage.setItem('chromesettingresponse',JSON.stringify(response));
try { try {
if (response.data.setting.tab_logo_url) { if (response.data.setting.tab_logo_url) {
this.gettablogourldata(response); this.gettablogourldata(response);
@ -328,6 +363,10 @@ export default function TPMIndexHOC(WrappedComponent) {
}).catch((error) => { }).catch((error) => {
this.gettablogourlnull(); this.gettablogourlnull();
});
}
fetchUser = () => { fetchUser = () => {
let url = `/users/get_user_info.json` let url = `/users/get_user_info.json`
let courseId; let courseId;
@ -401,19 +440,28 @@ export default function TPMIndexHOC(WrappedComponent) {
courseId = parseInt(type[2]) courseId = parseInt(type[2])
// url += `?course_id=${courseId}` // url += `?course_id=${courseId}`
} }
} else { var datay={};
datay = { if(JSON.stringify(yslurlobject) ==="{}"){
course_id: isNaN(courseId) ? undefined : courseId, datay={
school: 1, course_id:isNaN(courseId)?undefined:courseId,
chinaoocTimestamp: this.state.dataquerys.chinaoocTimestamp, school:1
websiteName: this.state.dataquerys.websiteName,
chinaoocKey: this.state.dataquerys.chinaoocKey,
} }
}else{
datay={
course_id:isNaN(courseId)?undefined:courseId,
school:1,
chinaoocTimestamp:yslurlobject.chinaoocTimestamp,
websiteName:yslurlobject.websiteName,
chinaoocKey:yslurlobject.chinaoocKey,
} }
axios.get(url, { }
params: axios.get(url,{params:
datay datay
}).then((response) => { },
{
// withCredentials: true
}
).then((response) => {
/* /*
{ {
"username": "黄井泉", "username": "黄井泉",
@ -425,7 +473,7 @@ export default function TPMIndexHOC(WrappedComponent) {
"tidding_count": 0 "tidding_count": 0
} }
*/ */
if (response === undefined) { if(response=== undefined){
return return
} }
if (response.data) { if (response.data) {
@ -436,7 +484,7 @@ export default function TPMIndexHOC(WrappedComponent) {
course_identity: response.data.course_identity >= 0 ? response.data.course_identity : undefined, course_identity: response.data.course_identity >= 0 ? response.data.course_identity : undefined,
course_public: response.data.course_public, course_public: response.data.course_public,
name: response.data.course_name, name: response.data.course_name,
userid: response.data.user_id userid:response.data.user_id
}, },
}) })
@ -448,15 +496,18 @@ export default function TPMIndexHOC(WrappedComponent) {
}) })
}; };
//截取url 数据的 //截取url 数据的
foo = (url) => { foo=(url)=> {
var json = {}; var json = {};
var regExp = /[\?\&](\w+)(=?)(\w*)/g; var regExp = /[\?\&](\w+)(=?)(\w*)/g;
var arr; var arr;
do { do {
arr = regExp.exec(url); arr = regExp.exec(url);
// console.log(arr); // arr = [完整的字符串, key, 等号或'', value或'']
if (arr) { if (arr) {
var key = arr[1]; var key = arr[1];
var value = arr[3]; var value = arr[3];
// arr[2] === ''时, value = undefined
if (!arr[2]) if (!arr[2])
value = undefined; value = undefined;
@ -469,13 +520,13 @@ export default function TPMIndexHOC(WrappedComponent) {
hideLoginDialog = () => { hideLoginDialog = () => {
this.setState({ this.setState({
isRender: false, isRender: false,
isloginCancel: undefined isloginCancel:undefined
}) })
} }
showLoginDialog = () => { showLoginDialog = () => {
this.setState({ this.setState({
isRender: true, isRender: true,
isloginCancel: "iscancel" isloginCancel:"iscancel"
}) })
} }
//验证登录是否成功方法 //验证登录是否成功方法
@ -500,9 +551,9 @@ export default function TPMIndexHOC(WrappedComponent) {
AccountPhoneemailtype: true AccountPhoneemailtype: true
}) })
} }
hideAccountPhoneemailtype = () => { hideAccountPhoneemailtype=()=>{
this.setState({ this.setState({
AccountPhoneemailtype: false AccountPhoneemailtype:false
}) })
} }
//验证是否完善资料 //验证是否完善资料
@ -537,20 +588,20 @@ export default function TPMIndexHOC(WrappedComponent) {
ShowOnlinePdf = (url) => { ShowOnlinePdf = (url) => {
return axios({ return axios({
method: 'get', method:'get',
url: url, url:url,
responseType: 'arraybuffer', responseType: 'arraybuffer',
}).then((result) => { }).then((result)=>{
var binaryData = []; var binaryData = [];
binaryData.push(result.data); binaryData.push(result.data);
this.url = window.URL.createObjectURL(new Blob(binaryData, { type: "application/pdf" })); this.url =window.URL.createObjectURL(new Blob(binaryData, {type:"application/pdf"}));
window.open(this.url); window.open(this.url);
}) })
} }
DownloadFileA = (title, url) => { DownloadFileA=(title,url)=>{
let link = document.createElement('a'); let link = document.createElement('a');
document.body.appendChild(link); document.body.appendChild(link);
link.href = url; link.href =url;
link.download = title; link.download = title;
//兼容火狐浏览器 //兼容火狐浏览器
let evt = document.createEvent("MouseEvents"); let evt = document.createEvent("MouseEvents");
@ -559,8 +610,8 @@ export default function TPMIndexHOC(WrappedComponent) {
document.body.removeChild(link); document.body.removeChild(link);
} }
DownloadOpenPdf = (type, url) => { DownloadOpenPdf=(type,url)=>{
type === true ? window.open(url) : window.location.href = url; type===true?window.open(url):window.location.href=url;
} }
slowDownload = (url, tip) => { slowDownload = (url, tip) => {
this._gLoadingTip = tip || '正在生成文件,请稍后...'; this._gLoadingTip = tip || '正在生成文件,请稍后...';
@ -578,11 +629,11 @@ export default function TPMIndexHOC(WrappedComponent) {
} }
}) })
} }
yslslowCheckresults = (tip) => { yslslowCheckresults =(tip) =>{
this._gLoadingTip = tip || '成绩计算中,请稍候...'; this._gLoadingTip = tip || '成绩计算中,请稍候...';
this.setState({ globalLoading: true }) this.setState({ globalLoading: true })
} }
yslslowCheckresultsNo = () => { yslslowCheckresultsNo =() =>{
this.setState({ globalLoading: false }) this.setState({ globalLoading: false })
} }
@ -594,15 +645,15 @@ export default function TPMIndexHOC(WrappedComponent) {
this.setState({ globalLoading: false }) this.setState({ globalLoading: false })
} }
MdifHasAnchorJustScorll = () => { MdifHasAnchorJustScorll=()=>{
//mdhash滚动 //mdhash滚动
let anchor = decodeURI(this.props.location.hash).replace('#', ''); let anchor = decodeURI(this.props.location.hash).replace('#', '');
// 对应id的话, 滚动到相应位置 // 对应id的话, 滚动到相应位置
if (!!anchor) { if (!!anchor) {
let anchorElement = document.getElementsByName(anchor); let anchorElement = document.getElementsByName(anchor);
if (anchorElement) { if (anchorElement) {
if (anchorElement.length > 0) { if (anchorElement.length>0){
anchorElement[anchorElement.length - 1].scrollIntoView(); anchorElement[anchorElement.length-1].scrollIntoView();
} }
} }
} }
@ -620,45 +671,6 @@ export default function TPMIndexHOC(WrappedComponent) {
} }
} }
render() {
let { Headertop, Footerdown, isRender, AccountProfiletype, AccountPhoneemailtype } = this.state;
const common = {
isSuperAdmin: this.isSuperAdmin,
isAdminOrCreator: this.isAdminOrCreator,
isClassManagement: this.isClassManagement,
isCourseAdmin: this.isCourseAdmin,
isAdmin: this.isAdmin,
isAdminOrTeacher: this.isAdminOrTeacher,
isStudent: this.isStudent,
isAdminOrStudent: this.isAdminOrStudent,
isNotMember: this.isNotMember,
isCourseEnd: this.isCourseEnd,
isUserid: this.state.coursedata && this.state.coursedata.userid,
fetchUser: this.fetchUser,
showLoginDialog: this.showLoginDialog,
checkIfLogin: this.checkIfLogin,
showProfileCompleteDialog: this.showProfileCompleteDialog,
showhideAccountPhoneemailDialog: this.showhideAccountPhoneemailDialog,
checkIfProfileCompleted: this.checkIfProfileCompleted,
showaccountprofileDialog: this.showaccountprofileDialog,
checkIfProfessionalCertification: this.checkIfProfessionalCertification,
showProfessionalCertificationDialog: this.showProfessionalCertificationDialog,
ShowOnlinePdf: (url) => this.ShowOnlinePdf(url),
DownloadFileA: (title, url) => this.DownloadFileA(title, url),
DownloadOpenPdf: (type, url) => this.DownloadOpenPdf(type, url),
slowDownload: this.slowDownload,
showGlobalLoading: this.showGlobalLoading,
hideGlobalLoading: this.hideGlobalLoading,
yslslowCheckresults: this.yslslowCheckresults,
yslslowCheckresultsNo: this.yslslowCheckresultsNo,
MdifHasAnchorJustScorll: this.MdifHasAnchorJustScorll,
scrollToAnchor: this.scrollToAnchor
render() { render() {
let{Headertop,Footerdown, isRender, AccountProfiletype,AccountPhoneemailtype}=this.state; let{Headertop,Footerdown, isRender, AccountProfiletype,AccountPhoneemailtype}=this.state;
const common = { const common = {
@ -744,11 +756,12 @@ export default function TPMIndexHOC(WrappedComponent) {
.newContainers{ .newContainers{
min-width: 1200px; min-width: 1200px;
max-width: unset; max-width: unset;
margin: 0 auto; height: 100%;
min-height: 100%;
overflow: hidden; overflow: hidden;
position: realtive;
} }
.newHeaders{ .newHeaders{
// position: fixed;
max-width: unset; max-width: unset;
background: #24292D !important; background: #24292D !important;
width: 100%; width: 100%;
@ -764,6 +777,7 @@ export default function TPMIndexHOC(WrappedComponent) {
} }
.indexHOC > .ant-spin-nested-loading { .indexHOC > .ant-spin-nested-loading {
background: #000; background: #000;
height: 100%;
} }
.indexHOC > .ant-spin-nested-loading > div > .ant-spin .ant-spin-dot { .indexHOC > .ant-spin-nested-loading > div > .ant-spin .ant-spin-dot {
top: 50% !important; top: 50% !important;
@ -780,11 +794,13 @@ export default function TPMIndexHOC(WrappedComponent) {
}</style> }</style>
{this.state.globalLoading ? <Loading /> :
<React.Fragment>
<NewHeader {...this.state} {...this.props}></NewHeader> <NewHeader {...this.state} {...this.props}></NewHeader>
<div className="newContainers"> <Spin spinning={this.state.globalLoading} delay={0} className="globalSpin"
<WrappedComponent initCommonState={(user) => this.initCommonState(user)} size="large"
tip= {this._gLoadingTip || "加载中..."}
>
<div className="newContainer newContainers">
<WrappedComponent initCommonState={(user)=>this.initCommonState(user)}
{...this.props} {...this.state} {...this.props} {...this.state}
showShixun={this.showShixun} aboutFocus={this.aboutFocus} showShixun={this.showShixun} aboutFocus={this.aboutFocus}
{...common} {...common}
@ -792,16 +808,16 @@ export default function TPMIndexHOC(WrappedComponent) {
</WrappedComponent> </WrappedComponent>
</div> </div>
</Spin>
<NewFooter <NewFooter
{...this.state} {...this.props} {...this.state} {...this.props}
Footerdown={Footerdown} Footerdown={Footerdown}
/> />
</React.Fragment>
}
</div> </div>
); );
} }
} }
} }

Loading…
Cancel
Save