Commit 80c97c65 by Prem Sichanugrist

Refactor module loading using class detection

parent 8624927f
...@@ -32,9 +32,7 @@ class Module(XModule): ...@@ -32,9 +32,7 @@ class Module(XModule):
return ["video"] return ["video"]
def video_list(self): def video_list(self):
l = self.youtube.split(',') return self.youtube
l = [i.split(":") for i in l]
return json.dumps(dict(l))
def get_html(self): def get_html(self):
return render_to_string('video.html',{'streams':self.video_list(), return render_to_string('video.html',{'streams':self.video_list(),
......
class window.Calculator class Calculator
@bind: -> constructor: ->
calculator = new Calculator $('.calc').click @toggle
$('.calc').click calculator.toggle $('form#calculator').submit(@calculate).submit (e) ->
$('form#calculator').submit(calculator.calculate).submit (e) ->
e.preventDefault() e.preventDefault()
$('div.help-wrapper a').hover(calculator.helpToggle).click (e) -> $('div.help-wrapper a').hover(@helpToggle).click (e) ->
e.preventDefault() e.preventDefault()
toggle: -> toggle: ->
......
class window.Courseware class window.Courseware
@bind: -> constructor: ->
@Navigation.bind() new CoursewareNavigation
new Calculator
class @Navigation new FeedbackForm
@bind: -> @renderModules()
if $('#accordion').length
navigation = new Navigation @start: ->
active = $('#accordion ul:has(li.active)').index('#accordion ul') new Courseware
$('#accordion').bind('accordionchange', navigation.log).accordion
active: if active >= 0 then active else 1 renderModules: ->
header: 'h3' $('.course-content .video').each ->
autoHeight: false id = $(this).attr('id').replace(/video_/, '')
$('#open_close_accordion a').click navigation.toggle new Video id, $(this).data('streams')
$('#accordion').show()
log: (event, ui) ->
log_event 'accordion',
newheader: ui.newHeader.text()
oldheader: ui.oldHeader.text()
toggle: ->
$('.course-wrapper').toggleClass('closed')
class window.FeedbackForm class FeedbackForm
@bind: -> constructor: ->
$('#feedback_button').click -> $('#feedback_button').click ->
data = data =
subject: $('#feedback_subject').val() subject: $('#feedback_subject').val()
......
...@@ -5,8 +5,7 @@ $ -> ...@@ -5,8 +5,7 @@ $ ->
window.onTouchBasedDevice = -> window.onTouchBasedDevice = ->
navigator.userAgent.match /iPhone|iPod|iPad/i navigator.userAgent.match /iPhone|iPod|iPad/i
Calculator.bind()
Courseware.bind()
FeedbackForm.bind()
$("a[rel*=leanModal]").leanModal() $("a[rel*=leanModal]").leanModal()
if $('body').hasClass('courseware')
Courseware.start()
...@@ -351,7 +351,6 @@ section.course-content { ...@@ -351,7 +351,6 @@ section.course-content {
float: left; float: left;
max-height: 460px; max-height: 460px;
overflow: auto; overflow: auto;
padding-top: 10px;
width: flex-grid(3, 9); width: flex-grid(3, 9);
li { li {
......
class CoursewareNavigation
constructor: ->
if $('#accordion').length
active = $('#accordion ul:has(li.active)').index('#accordion ul')
$('#accordion').bind('accordionchange', @log).accordion
active: if active >= 0 then active else 1
header: 'h3'
autoHeight: false
$('#open_close_accordion a').click @toggle
$('#accordion').show()
log: (event, ui) ->
log_event 'accordion',
newheader: ui.newHeader.text()
oldheader: ui.oldHeader.text()
toggle: ->
$('.course-wrapper').toggleClass('closed')
...@@ -40,20 +40,20 @@ class window.Sequence ...@@ -40,20 +40,20 @@ class window.Sequence
@position = new_position @position = new_position
@toggleArrows() @toggleArrows()
goto: (e) => goto: (event) =>
e.preventDefault() event.preventDefault()
new_position = $(e.srcElement).data('element') new_position = $(event.target).data('element')
log_event("seq_goto", old: @position, new: new_position, id: @id) log_event("seq_goto", old: @position, new: new_position, id: @id)
@render new_position @render new_position
next: (e) => next: (event) =>
e.preventDefault() event.preventDefault()
new_position = @position + 1 new_position = @position + 1
log_event("seq_next", old: @position, new: new_position, id: @id) log_event("seq_next", old: @position, new: new_position, id: @id)
@render new_position @render new_position
previous: (e) => previous: (event) =>
e.preventDefault() event.preventDefault()
new_position = @position - 1 new_position = @position - 1
log_event("seq_prev", old: @position, new: new_position, id: @id) log_event("seq_prev", old: @position, new: new_position, id: @id)
@render new_position @render new_position
......
class window.Video class Video
constructor: (@id, videos) -> constructor: (@id, videos) ->
@element = $("#video_#{@id}") @element = $("#video_#{@id}")
@parseVideos videos @parseVideos videos
...@@ -14,9 +14,10 @@ class window.Video ...@@ -14,9 +14,10 @@ class window.Video
parseVideos: (videos) -> parseVideos: (videos) ->
@videos = {} @videos = {}
$.each videos, (speed, url) => $.each videos.split(/,/), (index, video) =>
speed = parseFloat(speed).toFixed(2).replace /\.00$/, '.0' video = video.split(/:/)
@videos[speed] = url speed = parseFloat(video[0]).toFixed(2).replace /\.00$/, '.0'
@videos[speed] = video[1]
parseSpeed: -> parseSpeed: ->
@setSpeed($.cookie('video_speed')) @setSpeed($.cookie('video_speed'))
......
class Courseware::Navigation
constructor: ->
if $('#accordion').length
active = $('#accordion ul:has(li.active)').index('#accordion ul')
$('#accordion').bind('accordionchange', @log).accordion
active: if active >= 0 then active else 1
header: 'h3'
autoHeight: false
$('#open_close_accordion a').click @toggle
$('#accordion').show()
log: (event, ui) ->
log_event 'accordion',
newheader: ui.newHeader.text()
oldheader: ui.oldHeader.text()
toggle: ->
$('.course-wrapper').toggleClass('closed')
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
<h1> ${name} </h1> <h1> ${name} </h1>
% endif % endif
<div id="video_${id}" class="video"> <div id="video_${id}" class="video" data-streams="${streams}">
<div class="tc-wrapper"> <div class="tc-wrapper">
<article class="video-wrapper"> <article class="video-wrapper">
<section class="video-player"> <section class="video-player">
...@@ -41,14 +41,6 @@ ...@@ -41,14 +41,6 @@
</div> </div>
</div> </div>
<%block name="js_extra">
<script type="text/javascript">
$(function(){
new Video('${id}', ${streams});
});
</script>
</%block>
<ol class="video-mod"> <ol class="video-mod">
% for t in annotations: % for t in annotations:
<li id="video-${annotations.index(t)}"> <li id="video-${annotations.index(t)}">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment