[★] Cleaned up the Makefile and got the source code inline builder working.
This commit is contained in:
parent
5d8009bf31
commit
1c89e0bc2d
8
Makefile
8
Makefile
|
@ -1,6 +1,12 @@
|
||||||
|
all: static/index.html static/index.js static/officehours.js
|
||||||
|
|
||||||
static/%.html: source/%.haml
|
static/%.html: source/%.haml
|
||||||
haml --unix-newlines --no-escape-attrs --double-quote-attributes $< > $@
|
haml --unix-newlines --no-escape-attrs --double-quote-attributes $< > $@
|
||||||
|
|
||||||
|
static/%.js: source/%.coffee
|
||||||
|
coffee --compile -o $(dir $@) $<
|
||||||
|
|
||||||
|
clean:
|
||||||
|
rm static/*.html static/*.js
|
||||||
|
|
||||||
|
|
||||||
|
|
5
main.hy
5
main.hy
|
@ -25,6 +25,11 @@
|
||||||
(defn home []
|
(defn home []
|
||||||
(send-from-directory "static" "index.html")))
|
(send-from-directory "static" "index.html")))
|
||||||
|
|
||||||
|
(with-decorator
|
||||||
|
(.route app "/oh/hours/<start:start>")
|
||||||
|
(print start)
|
||||||
|
(jsonify { start: start }))
|
||||||
|
|
||||||
;(with-decorator
|
;(with-decorator
|
||||||
; (.route app "/")
|
; (.route app "/")
|
||||||
; (defn hello []
|
; (defn hello []
|
||||||
|
|
|
@ -0,0 +1,12 @@
|
||||||
|
require.config
|
||||||
|
paths:
|
||||||
|
'underscore': './lib/lodash'
|
||||||
|
'jquery': './lib/jquery.min'
|
||||||
|
'backbone': './lib/backbone-min'
|
||||||
|
'json2': './lib/json2'
|
||||||
|
shim:
|
||||||
|
'backbone': ['json2']
|
||||||
|
|
||||||
|
require ['backbone', 'json2'], () ->
|
||||||
|
require ['officehours'], (start) ->
|
||||||
|
$(start)
|
|
@ -0,0 +1,46 @@
|
||||||
|
define [
|
||||||
|
'jquery',
|
||||||
|
'underscore'
|
||||||
|
'backbone'
|
||||||
|
], ($, _, Backbone) ->
|
||||||
|
|
||||||
|
monday = (d) ->
|
||||||
|
d = new Date d
|
||||||
|
day = d.getDay()
|
||||||
|
diff = d.getDate() - day + (if day == 0 then -6 else 1)
|
||||||
|
new Date d.setDate diff
|
||||||
|
|
||||||
|
class Officehours
|
||||||
|
start: null,
|
||||||
|
|
||||||
|
url: ->
|
||||||
|
if start isintanceof Date then "/oh/hours/#{urlEncode start}" else "/oh/hours/"
|
||||||
|
|
||||||
|
initialize:
|
||||||
|
@start = monday(new Date)
|
||||||
|
|
||||||
|
# This is going to go with the Google idea of a view and overlays:
|
||||||
|
# given a parent object, and precise definitions of the base
|
||||||
|
# Calendar, OfficeHours and Appointments views, draw
|
||||||
|
|
||||||
|
class Appointments extends Backbone.View
|
||||||
|
|
||||||
|
class OfficeHours extends Backbone.View
|
||||||
|
|
||||||
|
class DayView extends Backbone.View
|
||||||
|
|
||||||
|
|
||||||
|
class CalendarView extends Backbone.View
|
||||||
|
className 'calendar'
|
||||||
|
|
||||||
|
|
||||||
|
events
|
||||||
|
'click .forward': "nextWeek"
|
||||||
|
'click .backward': "lastWeek"
|
||||||
|
|
||||||
|
initialize: (options) ->
|
||||||
|
|
||||||
|
|
||||||
|
->
|
||||||
|
officehours = new OfficeHours
|
||||||
|
$.when(officehours.fetch()).then(console.log(officehours.get('start')))
|
Loading…
Reference in New Issue