12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- /*
- * Copyright (C) 2015 - present Instructure, Inc.
- *
- * This file is part of Canvas.
- *
- * Canvas is free software: you can redistribute it and/or modify it under
- * the terms of the GNU Affero General Public License as published by the Free
- * Software Foundation, version 3 of the License.
- *
- * Canvas is distributed in the hope that it will be useful, but WITHOUT ANY
- * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
- * A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
- * details.
- *
- * You should have received a copy of the GNU Affero General Public License along
- * with this program. If not, see <http://www.gnu.org/licenses/>.
- */
- import React from 'react'
- import PropTypes from 'prop-types'
- import GradingStandardCollection from 'jsx/grading/gradingStandardCollection'
- import GradingPeriodSetCollection from 'jsx/grading/GradingPeriodSetCollection'
- import $ from 'jquery'
- import I18n from 'i18n!grading_periods'
- const { bool, string, shape } = PropTypes;
- class AccountTabContainer extends React.Component {
- static propTypes = {
- readOnly: bool.isRequired,
- urls: shape({
- gradingPeriodSetsURL: string.isRequired,
- gradingPeriodsUpdateURL: string.isRequired,
- enrollmentTermsURL: string.isRequired,
- deleteGradingPeriodURL: string.isRequired
- }).isRequired,
- }
- componentDidMount () {
- $(this.tabContainer).children('.ui-tabs-minimal').tabs();
- }
- render () {
- return (
- <div ref={(el) => { this.tabContainer = el; }}>
- <h1>{I18n.t('Grading')}</h1>
- <div className="ui-tabs-minimal">
- <ul>
- <li><a href="#grading-periods-tab" className="grading_periods_tab"> {I18n.t('Grading Periods')}</a></li>
- <li><a href="#grading-standards-tab" className="grading_standards_tab"> {I18n.t('Grading Schemes')}</a></li>
- </ul>
- <div
- ref={(el) => { this.gradingPeriods = el; }}
- id="grading-periods-tab"
- >
- <GradingPeriodSetCollection
- urls={this.props.urls}
- readOnly={this.props.readOnly}
- />
- </div>
- <div
- ref={(el) => { this.gradingStandards = el; }}
- id="grading-standards-tab"
- >
- <GradingStandardCollection />
- </div>
- </div>
- </div>
- );
- }
- }
- export default AccountTabContainer
|