mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-24 16:17:57 -05:00
e2d08fa7cf
Partially fix ActivateLicensesModal.spec [IN PROGRESS] Don't display deleted users Move userID to classroom.deletedMembers on user delete (not retroactive) Fix PDF links for course guides, remove old PDFs from repo Remove deprecated SalesView Remove underline for not-yet-linked student names Only show class select when there's more than one Ignore case when sorting student names Use student.broadName instead of name for display and sorting Fix initial load not showing progress after joining a course (hacky) Fix text entry for enrollment number input Fix enrollment statistics Fix enrollment stats completely (and add back in per-class unenrolled count) Add deletedMembers to classroom schema More fixes to enrollment stats (don't count nonmember prepaids) Don't use 0 as implicit false for openSpots Update suggested number of credit to buy automatically Fix classroom edit form ignoring cleared values Add alert text when more users selected than enrollments available Alert user when trying to assign course to unenrolled students Alert user when assigning course to nobody Add some tests for TeacherClassView bulk assign alerts Fix TeacherClassView tests failing without demos Use model/collection.fakeRequests :D Remove unused comment Fix handling of improperly sorted deleted users on clientside Add test for moving deleted users to deletedMembers Add script for moving all deleted classroom members to classroom.deletedMembers Completely rewrite tallying up enrollment statistics Fix some tests to not be dependent on logged-in user Address PR comments Fix default number of enrollments to buy Fix i18n for not enough enrollments Use custom error message for classroom name length
176 lines
7 KiB
CoffeeScript
176 lines
7 KiB
CoffeeScript
app = require 'core/application'
|
|
RootView = require 'views/core/RootView'
|
|
template = require 'templates/courses/courses-view'
|
|
StudentLogInModal = require 'views/courses/StudentLogInModal'
|
|
StudentSignUpModal = require 'views/courses/StudentSignUpModal'
|
|
ChangeCourseLanguageModal = require 'views/courses/ChangeCourseLanguageModal'
|
|
ChooseLanguageModal = require 'views/courses/ChooseLanguageModal'
|
|
CourseInstance = require 'models/CourseInstance'
|
|
CocoCollection = require 'collections/CocoCollection'
|
|
Course = require 'models/Course'
|
|
Classroom = require 'models/Classroom'
|
|
Classrooms = require 'collections/Classrooms'
|
|
LevelSession = require 'models/LevelSession'
|
|
Campaign = require 'models/Campaign'
|
|
utils = require 'core/utils'
|
|
|
|
# TODO: Test everything
|
|
|
|
module.exports = class CoursesView extends RootView
|
|
id: 'courses-view'
|
|
template: template
|
|
|
|
events:
|
|
'click #log-in-btn': 'onClickLogInButton'
|
|
'click #start-new-game-btn': 'onClickStartNewGameButton'
|
|
'click #join-class-btn': 'onClickJoinClassButton'
|
|
'submit #join-class-form': 'onSubmitJoinClassForm'
|
|
'click #change-language-link': 'onClickChangeLanguageLink'
|
|
|
|
initialize: ->
|
|
@courseInstances = new CocoCollection([], { url: "/db/user/#{me.id}/course_instances", model: CourseInstance})
|
|
@courseInstances.comparator = (ci) -> return ci.get('classroomID') + ci.get('courseID')
|
|
@listenToOnce @courseInstances, 'sync', @onCourseInstancesLoaded
|
|
@supermodel.loadCollection(@courseInstances)
|
|
@classrooms = new CocoCollection([], { url: "/db/classroom", model: Classroom })
|
|
@supermodel.loadCollection(@classrooms, { data: {memberID: me.id} })
|
|
@ownedClassrooms = new Classrooms()
|
|
@ownedClassrooms.fetchMine({data: {project: '_id'}})
|
|
@supermodel.trackCollection(@ownedClassrooms)
|
|
@courses = new CocoCollection([], { url: "/db/course", model: Course})
|
|
@supermodel.loadCollection(@courses)
|
|
@campaigns = new CocoCollection([], { url: "/db/campaign", model: Campaign })
|
|
@supermodel.loadCollection(@campaigns, { data: { type: 'course' }})
|
|
|
|
onCourseInstancesLoaded: ->
|
|
map = {}
|
|
for courseInstance in @courseInstances.models
|
|
courseID = courseInstance.get('courseID')
|
|
if map[courseID]
|
|
courseInstance.sessions = map[courseID]
|
|
continue
|
|
map[courseID] = courseInstance.sessions = new CocoCollection([], {
|
|
url: courseInstance.url() + '/my-course-level-sessions',
|
|
model: LevelSession
|
|
})
|
|
courseInstance.sessions.comparator = 'changed'
|
|
@supermodel.loadCollection(courseInstance.sessions, { data: { project: 'state.complete level.original playtime changed' }})
|
|
|
|
@hocCourseInstance = @courseInstances.findWhere({hourOfCode: true})
|
|
if @hocCourseInstance
|
|
@courseInstances.remove(@hocCourseInstance)
|
|
|
|
onLoaded: ->
|
|
super()
|
|
if utils.getQueryVariable('_cc', false) and not me.isAnonymous()
|
|
@joinClass()
|
|
|
|
onClickStartNewGameButton: ->
|
|
if me.isAnonymous()
|
|
@openSignUpModal()
|
|
else
|
|
modal = new ChooseLanguageModal()
|
|
@openModalView(modal)
|
|
@listenToOnce modal, 'set-language', =>
|
|
@startHourOfCodePlay()
|
|
application.tracker?.trackEvent 'Automatic start hour of code play', category: 'Courses', label: 'set language'
|
|
application.tracker?.trackEvent 'Start New Game', category: 'Courses'
|
|
|
|
onClickLogInButton: ->
|
|
modal = new StudentLogInModal()
|
|
@openModalView(modal)
|
|
modal.on 'want-to-create-account', @openSignUpModal, @
|
|
application.tracker?.trackEvent 'Started Student Login', category: 'Courses'
|
|
|
|
openSignUpModal: ->
|
|
modal = new StudentSignUpModal({ willPlay: true })
|
|
@openModalView(modal)
|
|
modal.once 'click-skip-link', (=>
|
|
@startHourOfCodePlay()
|
|
application.tracker?.trackEvent 'Automatic start hour of code play', category: 'Courses', label: 'skip link'
|
|
), @
|
|
application.tracker?.trackEvent 'Started Student Signup', category: 'Courses'
|
|
|
|
startHourOfCodePlay: ->
|
|
@$('#main-content').hide()
|
|
@$('#begin-hoc-area').removeClass('hide')
|
|
hocCourseInstance = new CourseInstance()
|
|
hocCourseInstance.upsertForHOC()
|
|
@listenToOnce hocCourseInstance, 'sync', ->
|
|
url = hocCourseInstance.firstLevelURL()
|
|
app.router.navigate(url, { trigger: true })
|
|
|
|
onSubmitJoinClassForm: (e) ->
|
|
e.preventDefault()
|
|
@joinClass()
|
|
|
|
onClickJoinClassButton: (e) ->
|
|
@joinClass()
|
|
|
|
joinClass: ->
|
|
return if @state
|
|
@state = 'enrolling'
|
|
@errorMessage = null
|
|
@classCode = @$('#class-code-input').val() or utils.getQueryVariable('_cc', false)
|
|
if not @classCode
|
|
@state = null
|
|
@errorMessage = 'Please enter a code.'
|
|
@renderSelectors '#join-class-form'
|
|
return
|
|
@renderSelectors '#join-class-form'
|
|
newClassroom = new Classroom()
|
|
newClassroom.joinWithCode(@classCode)
|
|
newClassroom.on 'sync', @onJoinClassroomSuccess, @
|
|
newClassroom.on 'error', @onJoinClassroomError, @
|
|
|
|
onJoinClassroomError: (classroom, jqxhr, options) ->
|
|
@state = null
|
|
application.tracker?.trackEvent 'Failed to join classroom with code', category: 'Courses', status: jqxhr.status
|
|
if jqxhr.status is 422
|
|
@errorMessage = 'Please enter a code.'
|
|
else if jqxhr.status is 404
|
|
@errorMessage = 'Code not found.'
|
|
else
|
|
@errorMessage = "#{jqxhr.responseText}"
|
|
@renderSelectors '#join-class-form'
|
|
|
|
onJoinClassroomSuccess: (newClassroom, data, options) ->
|
|
application.tracker?.trackEvent 'Joined classroom', {
|
|
category: 'Courses'
|
|
classCode: @classCode
|
|
classroomID: newClassroom.id
|
|
classroomName: newClassroom.get('name')
|
|
ownerID: newClassroom.get('ownerID')
|
|
}
|
|
@classrooms.add(newClassroom)
|
|
@render()
|
|
@classroomJustAdded = newClassroom.id
|
|
|
|
classroomCourseInstances = new CocoCollection([], { url: "/db/course_instance", model: CourseInstance })
|
|
classroomCourseInstances.fetch({ data: {classroomID: newClassroom.id} })
|
|
@listenToOnce classroomCourseInstances, 'sync', ->
|
|
# join any course instances in the classroom which are free to join
|
|
jqxhrs = []
|
|
for courseInstance in classroomCourseInstances.models
|
|
course = @courses.get(courseInstance.get('courseID'))
|
|
if course.get('free')
|
|
jqxhrs.push = courseInstance.addMember(me.id)
|
|
courseInstance.sessions = new Backbone.Collection()
|
|
@courseInstances.add(courseInstance)
|
|
$.when(jqxhrs...).done =>
|
|
# This is a hack to work around previous hacks
|
|
# TODO: Do joinWithCode properly (before page load)
|
|
# TODO: Do data flow properly (so going to the class URL works and we don't need to just refresh)
|
|
location.search = ""
|
|
# @state = null
|
|
# @render()
|
|
# location.hash = ''
|
|
# f = -> location.hash = '#just-added-text'
|
|
# # quick and dirty scroll to just-added classroom
|
|
# setTimeout(f, 10)
|
|
|
|
onClickChangeLanguageLink: ->
|
|
application.tracker?.trackEvent 'Student clicked change language', category: 'Courses'
|
|
modal = new ChangeCourseLanguageModal()
|
|
@openModalView(modal)
|
|
modal.once 'hidden', @render, @
|