Merge pull request #17214 from edx/alasdair/LEARNER-3429-learner-analytics-dashboard-styles

LEARNER-3429 Learner Analytics Dashboard Style updates
This commit is contained in:
AlasdairSwan
2018-01-18 12:01:24 -05:00
committed by GitHub
3 changed files with 43 additions and 30 deletions

View File

@@ -8,8 +8,9 @@ class Discussions extends React.Component {
}
getComparisons() {
const experiments = window.experimentVariables || {};
const {content_authored, profileImages} = this.props;
const content_average = 7;
const content_average = experiments.learnerAnalyticsDiscussionAverage || 4;
let average_percent = 1;
let authored_percent = 0;

View File

@@ -3,6 +3,7 @@
import PropTypes from 'prop-types';
import React from 'react';
import ReactDOM from 'react-dom';
import classNames from 'classnames';
import CircleChart from './CircleChart';
import CircleChartLegend from './CircleChartLegend';
import GradeTable from './GradeTable';
@@ -104,7 +105,11 @@ export function LearnerAnalyticsDashboard(props) {
<Discussions {...discussion_info} profileImages={profile_images} />
</div>
</div>
<div className="analytics-group sidebar">
<div className={classNames(
'analytics-group',
'sidebar',
{'week-streak': week_streak > 0}
)}>
<h2 className="group-heading">Timing</h2>
<h3 className="section-heading">Course due dates</h3>
<DueDates dates={schedule} assignmentCounts={assignmentCounts} />