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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
/**
* Single Assignment View.
*
* @package LifterLMS/Scripts
*
* @since 3.17.0
* @version 5.4.0
*/
define( [
'Views/Popover',
'Views/PostSearch',
'Views/_Detachable',
'Views/_Editable',
'Views/_Trashable',
'Views/_Subview',
'Views/SettingsFields'
], function(
Popover,
PostSearch,
Detachable,
Editable,
Trashable,
Subview,
SettingsFields
) {
return Backbone.View.extend( _.defaults( {
/**
* Current view state.
*
* @type {String}
*/
state: 'default',
/**
* Current Subviews.
*
* @type {Object}
*/
views: {
settings: {
class: SettingsFields,
instance: null,
state: 'default',
},
},
el: '#llms-editor-assignment',
/**
* DOM Events.
*
* @since 3.17.1
*
* @return {Object}
*/
events: function() {
var addon_events = this.is_addon_available() ? window.llms_builder.assignments.get_view_events() : {};
return _.defaults( {
'click #llms-existing-assignment': 'add_existing_assignment_click',
'click #llms-new-assignment': 'add_new_assignment',
}, Detachable.events, Editable.events, Trashable.events, addon_events );
},
/**
* Wrapper Tag name.
*
* @type {String}
*/
tagName: 'div',
/**
* Get the underscore template.
*
* @type {[type]}
*/
template: wp.template( 'llms-assignment-template' ),
/**
* Initialization callback func (renders the element on screen).
*
* @since 3.17.0
* @since 3.17.2 Unknown.
*
* @return {Void}
*/
initialize: function( data ) {
this.lesson = data.lesson;
// initialize the model if the assignment is enabled or it's disabled but we still have data for a assignment
if ( 'yes' === this.lesson.get( 'assignment_enabled' ) || ! _.isEmpty( this.lesson.get( 'assignment' ) ) ) {
this.model = this.lesson.get( 'assignment' );
/**
* Todo Item.
*
* @todo this is a terrible terrible patch
* I've spent nearly 3 days trying to figure out how to not use this line of code
* ISSUE REPRODUCTION:
* Open course builder
* Open a lesson (A) and add a assignment
* Switch to a new lesson (B)
* Add a new assignment
* Return to lesson A and the assignment's parent will be set to LESSON B
* This will happen for *every* assignment in the builder...
* Adding this set_parent on init guarantees that the assignment's correct parent is set
* after adding new assignment's to other lessons
* it's awful and it's gross...
* I'm confused and tired and going to miss release dates again because of it
*/
this.model.set_parent( this.lesson );
}
this.on( 'model-trashed', this.on_trashed );
},
/**
* Compiles the template and renders the view.
*
* @since 3.17.0
* @since 3.17.7 Unknown.
*
* @return {Self} For chaining.
*/
render: function() {
this.$el.html( this.template( this.model ) );
if ( this.model && this.is_addon_available() ) {
this.stopListening( this.model, 'change:assignment_type', this.render );
this.render_subview( 'settings', {
el: '#llms-assignment-settings-fields',
model: this.model,
} );
// this.init_datepickers();
this.init_selects();
window.llms_builder.assignments.render_editor( this );
this.listenTo( this.model, 'change:assignment_type', this.render );
}
return this;
},
/**
* Adds a new assignment to a lesson which currently has no assignment associated with it.
*
* @since 3.17.0
*
* @return {Void}
*/
add_new_assignment: function() {
if ( this.is_addon_available() ) {
this.model = window.llms_builder.assignments.get_assignment( {
/* Translators: %1$s = associated lesson title */
title: LLMS.l10n.replace( '%1$s Assignment', {
'%1$s': this.lesson.get( 'title' ),
} ),
lesson_id: this.lesson.get( 'id' ),
} );
this.lesson.set( 'assignment_enabled', 'yes' );
this.lesson.set( 'assignment', this.model );
this.render();
} else {
this.show_ad_popover( '#llms-new-assignment' );
}
},
/**
* When an assignment is selected from the post select popover
* instantiate it and add it to the current lesson.
*
* @param {Object} event Data from the select2 select event.
*
* @since 3.17.0
* @since 5.4.0 Prepare assignment object for cloning and use author id instead of the quiz author object.
*/
add_existing_assignment: function( event ) {
this.post_search_popover.hide();
var assignment = event.data;
if ( 'clone' === event.action ) {
assignment = _.prepareAssignmentObjectForCloning( assignment );
} else {
// Use author id instead of the assignment author object.
assignment = _.prepareExistingPostObjectDataForAddingOrCloning( assignment );
assignment._forceSync = true;
}
assignment.lesson_id = this.lesson.get( 'id' )
assignment = window.llms_builder.construct.get_model( 'Assignment', assignment );
this.lesson.set( 'assignment_enabled', 'yes' );
this.lesson.set( 'assignment', assignment );
this.model = assignment;
this.render();
},
/**
* Open add existing assignment popover.
*
* @since 3.17.0
*
* @param {Object} event JS event object.
* @return {Void}
*/
add_existing_assignment_click: function( event ) {
event.preventDefault();
if ( this.is_addon_available() ) {
this.post_search_popover = new Popover( {
el: '#llms-existing-assignment',
args: {
backdrop: true,
closeable: true,
container: '.wrap.lifterlms.llms-builder',
dismissible: true,
placement: 'left',
width: 480,
title: LLMS.l10n.translate( 'Add Existing Assignment' ),
content: new PostSearch( {
post_type: 'llms_assignment',
searching_message: LLMS.l10n.translate( 'Search for existing assignments...' ),
} ).render().$el,
onHide: function() {
Backbone.pubSub.off( 'assignment-search-select' );
},
}
} );
this.post_search_popover.show();
Backbone.pubSub.once( 'assignment-search-select', this.add_existing_assignment, this );
} else {
this.show_ad_popover( '#llms-existing-assignment' );
}
},
/**
* Determine if Assignments addon is available to use.
*
* @since 3.17.0
*
* @return {Boolean}
*/
is_addon_available: function() {
return ( window.llms_builder.assignments );
},
/**
* Called when assignment is trashed.
*
* @since 3.17.0
*
* @param {Oject} assignment Assignment Model.
* @return {Void}
*/
on_trashed: function( assignment ) {
this.lesson.set( 'assignment_enabled', 'no' );
this.lesson.set( 'assignment', '' );
delete this.model;
this.render();
},
/**
* Shows a dirty dirty ad popover for advanced assignments.
*
* @since 3.17.0
*
* @param {Sring} el The jQuery selector string.
* @return {Void}
*/
show_ad_popover: function( el ) {
var h3 = LLMS.l10n.translate( 'Get Your Students Taking Action' ),
p = 'Great learning content is only half of teaching online. When your learners fully engage, they will take your content and move into action. Remove barriers for your learners by telling them what to do to apply what they just learned. Create graded assignments or simply give them a checklist of action items to complete before moving on.',
btn = LLMS.l10n.translate( 'Get Assignments Now!' ),
url = 'https://lifterlms.com/product/lifterlms-assignments?utm_source=LifterLMS%20Plugin&utm_medium=Assignment%20Builder%20Button&utm_campaign=Assignment%20Addon%20Upsell&utm_content=3.17.0';
this.ad_popover = new Popover( {
el: el,
args: {
backdrop: true,
closeable: true,
container: '.wrap.lifterlms.llms-builder',
dismissible: true,
// placement: 'left',
width: 380,
title: LLMS.l10n.translate( 'Unlock LifterLMS Assignments' ),
content: '<h3>' + h3 + '</h3><p>' + p + '</p><br><p><a class="llms-button-primary" href="' + url + '" target="_blank">' + btn + '</a></p>'
}
} );
this.ad_popover.show();
},
}, Detachable, Editable, Trashable, Subview, SettingsFields ) );
} );