Skip to content

Instantly share code, notes, and snippets.

@seekshiva
Created May 22, 2013 12:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save seekshiva/5627234 to your computer and use it in GitHub Desktop.
Save seekshiva/5627234 to your computer and use it in GitHub Desktop.
jQuery ->
class DepartmentsView extends Backbone.View
el: "#content"
template: Handlebars.compile($("#departments-template").html())
initialize: ->
@app = window.app ? {}
@departments = new @app.DepartmentsCollection()
@departments.bind "reset", @render, @
@departments.fetch()
@
render: ->
depts = {}
@departments.models.map (dept) ->
depts[dept.id] = {
id: dept.get("id")
name: dept.get("name")
hod: dept.get("hod")
}
$(@el).html @template
depts: depts
$(@el).find("a").click @app.show_local_page
@
class DepartmentView extends Backbone.View
template: Handlebars.compile($("#department-template").html())
el: "#content"
initialize: (options) ->
@app = window.app ? {}
@department = new @app.DepartmentModel({id: options.id})
@department.bind "change", @render, @
@department.bind "destroy", @render, @
@department.fetch()
render: =>
$(@el).html @template
dept: @department.attributes
$(@el).find("a").click @app.show_local_page
@
class CourseView extends Backbone.View
template: Handlebars.compile($("#course-template").html())
el: "#content"
initialize: (options) ->
@app = window.app ? {}
@view = options.view
@course = new @app.CourseModel({id: options.id})
@course.bind "change", @render, @
@course.bind "destroy", @render, @
@course.fetch()
@
render: =>
find_template = (type)->
Handlebars.compile $("#course-" + type + "-template").html()
$(@el).html @template
course: @course.attributes
$("#specialized_view").html find_template(@view.type)
course: @course.attributes
$(@el).find("#specialized_view_selector li").removeClass("active")
$(@el).find("#view_course_" + @view.type).addClass("active")
$(@el).find("a:not(.local-nav a)").click @app.show_local_page
@
class TermView extends Backbone.View
template: Handlebars.compile($("#term-template").html())
el: "#content"
initialize: (options) ->
@app = window.app ? {}
@view = options.view
@term = new @app.TermModel({id: options.id})
@term.bind "change", @render, @
@term.fetch()
@
render: =>
#@updateSelector() if not @term_topics
find_template = (type)->
Handlebars.compile $("#term-" + type + "-template").html()
$(@el).html @template
term: @term.attributes
edit_mode: if @view.id == "edit" then "edit_mode" else ""
if @view.type == "topics"
@term_topics_view = new TermTopicsView(@)
else
$("#specialized_view").html find_template(@view.type)
term: @term.attributes
edit_mode: if @view.id == "edit" then "edit_mode" else ""
term_topics: @term_topics
selectors: @selectors
$(@el).find("#specialized_view_selector li").removeClass("active")
$(@el).find("#view_term_" + @view.type).addClass("active")
$(@el).find("a:not(.local-nav a)").click @app.show_local_page
@
class TermTopicsView extends Backbone.View
template: Handlebars.compile($("#term-topics-template").html())
el: "#specialized_view"
events:
"click #ct_status_selector > .btn": "updateSelector"
initialize: (term_view)=>
console.log @el
@term_view = term_view
@selectors =
ct_status:
"ct1": "active"
"ct2": "active"
"postct": "active"
@updateSelector()
updateSelector: (e)->
if e and e.target
timeframe = $(e.target).html().toLowerCase().replace(" ", "")
@selectors.ct_status[timeframe] = if @selectors.ct_status[timeframe] == "active" then "" else "active"
flag = false
for k,v of @selectors.ct_status
flag ||= (v == "active")
@selectors.ct_status[timeframe] = "active" if not flag
current_topic = 0
if @term_topics
for topic in @term_topics
if topic.active
current_topic = topic.id
@term_topics = []
flag = true
for topic in @term_view.term.attributes.topics
topic_clone = Object.create(topic)
topic_clone["sections"] = []
for section in topic.sections
if @selectors.ct_status[section.ct_status.toLowerCase().replace(" ", "")] == "active"
topic_clone.sections.push section
if topic_clone.sections.length or @view.id == "edit"
@term_topics.push(topic_clone)
if topic_clone.id == current_topic
topic_clone.active = true
flag = false
else
topic_clone.active = false
@term_topics[0].active = true if flag and @term_topics[0]
@render()
@
render: =>
$(@el).html @template
term: @term_view.term.attributes
edit_mode: if @term_view.view.id == "edit" then "edit_mode" else ""
term_topics: @term_topics
selectors: @selectors
$(@el).find(".tabbable > .nav > li").click (e)->
@app = window.app ? {}
current_topic = if e.target.hash then e.target.hash.substr(8) else e.target.parentNode.hash.substr(8)
for topic in @app.router.term_view.term_topics
topic.active = if topic.id.toString() == current_topic then true else false
class LoginView extends Backbone.View
template: Handlebars.compile($("#login-template").html())
el: "#content"
initialize: ->
@render()
render: ->
$(@el).html @template
@
class NotFoundView extends Backbone.View
template: Handlebars.compile($("#404-template").html())
el: "#content"
initialize: (path)->
@path = path
@render()
render: ->
$(@el).html @template
url: @path
@
@app = window.app ? {}
@app.DepartmentsView = DepartmentsView
@app.DepartmentView = DepartmentView
@app.CourseView = CourseView
@app.TermView = TermView
@app.LoginView = LoginView
@app.NotFoundView = NotFoundView
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment