1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
|
var SiteRouter = Router.extend({
el: "body",
events: {
"click [data-role='show-signup-modal']": 'signup',
"click [data-role='show-signin-modal']": 'signin',
"click [data-role='new-project-modal']": 'newProject',
"click [data-role='edit-project-modal']": 'editProject',
"click [data-role='edit-profile-modal']": 'editProfile',
"click [data-role='new-document-modal']": 'newDocument',
"click [data-role='edit-document-modal']": 'editDocument',
"click [data-role='delete-document-modal']": 'destroyDocument',
"click [data-role='show-layouts-modal']": 'showLayoutsModal',
},
routes: {
"/login": 'signin',
"/signup": 'signup',
"/project/new": 'newProject',
"/profile": 'profile',
"/profile/edit": 'editProfile',
"/about/:name/edit": 'editDocument',
"/about/new": 'newDocument',
"/editor": 'launchEditor',
"/builder": 'showLayoutsModal',
"/builder/new": 'launchBuilder',
"/builder/:name": 'launchBuilder',
},
initialize: function(){
this.signUpModal = new SignUpModal()
this.signInModal = new SignInModal()
this.layoutsModal = new LayoutsModal()
this.editProjectModal = new EditProjectModal()
this.editProfileModal = new EditProfileModal()
this.documentModal = new DocumentModal()
this.confirmModal = new ConfirmModal()
this.alertModal = new AlertModal()
this.route()
$("body").removeClass("loading")
},
launchBuilder: function(){
app.mode.builder = true
app.launch()
this.builderView = new BuilderView()
this.builderView.load()
},
showLayoutsModal: function(e){
e && e.preventDefault()
window.history.pushState(null, document.title, "/builder")
this.layoutsModal.load("builder")
},
launchEditor: function(){
app.mode.editor = true
app.launch()
this.editorView = new EditorView()
this.editorView.load()
},
signup: function(e){
e && e.preventDefault()
window.history.pushState(null, document.title, "/signup")
this.signUpModal.load()
},
signin: function(e){
e && e.preventDefault()
window.history.pushState(null, document.title, "/login")
this.signInModal.load()
},
newProject: function(e){
e && e.preventDefault()
window.history.pushState(null, document.title, "/project/new")
this.layoutsModal.load()
},
editProject: function(e){
e && e.preventDefault()
window.history.pushState(null, document.title, "/project/edit")
this.editProjectModal.load()
},
profile: function(e){
var classes = ['one', 'two', 'three', 'four',
'five', 'six', 'seven', 'eight',
'nine', 'ten', 'eleven', 'twelve',
'thirteen'];
$(".bio").addClass(choice(classes));
},
editProfile: function(e){
e && e.preventDefault()
window.history.pushState(null, document.title, "/profile/edit")
this.editProfileModal.load()
},
newDocument: function(e){
e && e.preventDefault()
var name = e ? $(e.currentTarget).data("name") : "new"
window.history.pushState(null, document.title, "/about/new")
this.documentModal.load(name, true)
},
editDocument: function(e, name){
e && e.preventDefault()
var name = e ? $(e.currentTarget).data("name") : name
window.history.pushState(null, document.title, "/about/" + name + "/edit")
this.documentModal.load(name, false)
},
destroyDocument: function(e, name){
e && e.preventDefault()
var name = e ? $(e.currentTarget).data("name") : name
this.confirmModal.confirm("Are you sure you want to delete " + name + "?", $.proxy(function(){
this.documentModal.destroy(name, $.proxy(function(){
this.alertModal.alert("Document deleted!", $.proxy(function(){
window.location.href = "/about"
}, this))
}, this))
}, this))
// this.documentModal.destroy(name)
},
})
|