Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
ce363853
Commit
ce363853
authored
Sep 26, 2012
by
Calen Pennington
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make inline editing save to mongo and then update the preview
parent
ff002e35
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
80 additions
and
75 deletions
+80
-75
cms/djangoapps/contentstore/views.py
+4
-1
cms/static/coffee/src/models/module.coffee
+5
-17
cms/static/coffee/src/views/module_edit.coffee
+44
-44
cms/static/js/base.js
+18
-5
common/lib/xmodule/xmodule/js/src/sequence/display.coffee
+1
-1
common/static/coffee/src/xmodule.coffee
+4
-3
common/templates/xmodule_edit.html
+3
-3
lms/static/coffee/src/courseware.coffee
+1
-1
No files found.
cms/djangoapps/contentstore/views.py
View file @
ce363853
...
@@ -327,7 +327,10 @@ def load_preview_module(request, preview_id, descriptor, instance_state, shared_
...
@@ -327,7 +327,10 @@ def load_preview_module(request, preview_id, descriptor, instance_state, shared_
module
,
module
,
"xmodule_edit.html"
,
"xmodule_edit.html"
,
{
{
'location'
:
descriptor
.
location
.
url
(),
'editor_content'
:
descriptor
.
get_html
(),
'editor_content'
:
descriptor
.
get_html
(),
'editor_type'
:
descriptor
.
js_module_name
,
'editor_class'
:
descriptor
.
__class__
.
__name__
,
# TODO (cpennington): Make descriptors know if they have data that can be editng
# TODO (cpennington): Make descriptors know if they have data that can be editng
'editable_data'
:
descriptor
.
definition
.
get
(
'data'
),
'editable_data'
:
descriptor
.
definition
.
get
(
'data'
),
'editable_class'
:
'editable'
if
descriptor
.
definition
.
get
(
'data'
)
else
''
,
'editable_class'
:
'editable'
if
descriptor
.
definition
.
get
(
'data'
)
else
''
,
...
@@ -396,7 +399,7 @@ def save_item(request):
...
@@ -396,7 +399,7 @@ def save_item(request):
export_to_github
(
course
,
"CMS Edit"
,
author_string
)
export_to_github
(
course
,
"CMS Edit"
,
author_string
)
descriptor
=
modulestore
()
.
get_item
(
item_location
)
descriptor
=
modulestore
()
.
get_item
(
item_location
)
preview_html
=
get_module_previews
(
request
,
descriptor
)
preview_html
=
get_module_previews
(
request
,
descriptor
)
[
0
]
return
HttpResponse
(
json
.
dumps
(
preview_html
))
return
HttpResponse
(
json
.
dumps
(
preview_html
))
...
...
cms/static/coffee/src/models/module.coffee
View file @
ce363853
...
@@ -5,24 +5,12 @@ class CMS.Models.Module extends Backbone.Model
...
@@ -5,24 +5,12 @@ class CMS.Models.Module extends Backbone.Model
children
:
''
children
:
''
metadata
:
{}
metadata
:
{}
loadModule
:
(
element
)
->
initialize
:
(
attributes
)
->
elt
=
$
(
element
).
find
(
'.xmodule_edit'
).
first
()
@
module
=
attributes
.
module
@
module
=
XModule
.
loadModule
(
elt
)
@
unset
(
'module'
)
# find the metadata edit region which should be setup server side,
delete
attributes
.
module
# so that we can wire up posting back those changes
super
(
attributes
)
@
metadata_elt
=
$
(
element
).
find
(
'.metadata_edit'
)
editUrl
:
->
"/edit_item?
#{
$
.
param
(
id
:
@
get
(
'id'
))
}
"
save
:
(
args
...)
->
save
:
(
args
...)
->
@
set
(
data
:
@
module
.
save
())
if
@
module
@
set
(
data
:
@
module
.
save
())
if
@
module
# cdodge: package up metadata which is separated into a number of input fields
# there's probably a better way to do this, but at least this lets me continue to move onwards
if
@
metadata_elt
_metadata
=
{}
# walk through the set of elments which have the 'xmetadata_name' attribute and
# build up a object to pass back to the server on the subsequent POST
_metadata
[
$
(
el
).
data
(
"metadata-name"
)]
=
el
.
value
for
el
in
$
(
'[data-metadata-name]'
,
@
metadata_elt
)
@
set
(
metadata
:
_metadata
)
super
(
args
...)
super
(
args
...)
cms/static/coffee/src/views/module_edit.coffee
View file @
ce363853
class
CMS
.
Views
.
ModuleEdit
extends
Backbone
.
View
class
CMS
.
Views
.
ModuleEdit
extends
Backbone
.
View
tagName
:
'section'
tagName
:
'div'
className
:
'edit-pane'
className
:
'xmodule_edit'
events
:
'click .cancel'
:
'cancel'
'click .module-edit'
:
'editSubmodule'
'click .save-update'
:
'save'
initialize
:
->
initialize
:
->
@
$el
.
load
@
model
.
editUrl
(),
=>
@
delegate
()
@
model
.
loadModule
(
@
el
)
@
$component_editor
=
@
$el
.
find
(
'.component-editor'
)
# Load preview modules
@
$metadata
=
@
$component_editor
.
find
(
'.metadata_edit'
)
XModule
.
loadModules
(
'display'
)
@
$children
=
@
$el
.
find
(
'#sortable'
)
delegate
:
->
@
enableDrag
()
id
=
@
$el
.
data
(
'id'
)
enableDrag
:
=>
events
=
{}
# Enable dragging things in the #sortable div (if there is one)
events
[
"click .component-editor[data-id=
#{
id
}
] .cancel-button"
]
=
'cancel'
if
@
$children
.
length
>
0
events
[
"click .component-editor[data-id=
#{
id
}
] .save-button"
]
=
'save'
@
$children
.
sortable
(
events
[
"click .component-actions[data-id=
#{
id
}
] .edit-button"
]
=
'edit'
placeholder
:
"ui-state-highlight"
update
:
(
event
,
ui
)
=>
@
delegateEvents
(
events
)
@
model
.
set
(
children
:
@
$children
.
find
(
'.module-edit'
).
map
(
(
idx
,
el
)
->
$
(
el
).
data
(
'id'
)
metadata
:
->
).
toArray
())
# cdodge: package up metadata which is separated into a number of input fields
)
# there's probably a better way to do this, but at least this lets me continue to move onwards
@
$children
.
disableSelection
()
_metadata
=
{}
if
@
$metadata
# walk through the set of elments which have the 'xmetadata_name' attribute and
# build up a object to pass back to the server on the subsequent POST
_metadata
[
$
(
el
).
data
(
"metadata-name"
)]
=
el
.
value
for
el
in
$
(
'[data-metadata-name]'
,
@
$metadata
)
_metadata
save
:
(
event
)
=>
save
:
(
event
)
=>
event
.
preventDefault
()
event
.
preventDefault
()
@
model
.
save
().
done
((
previews
)
=>
@
model
.
save
(
metadata
:
@
metadata
()
).
done
((
preview
)
=>
alert
(
"Your changes have been saved."
)
alert
(
"Your changes have been saved."
)
previews_section
=
@
$el
.
find
(
'.previews'
).
empty
()
$
.
each
(
previews
,
(
idx
,
preview
)
=>
preview_wrapper
=
$
(
'<section/>'
,
class
:
'preview'
).
append
preview
previews_section
.
append
preview_wrapper
)
XModule
.
loadModules
(
'display'
)
new_el
=
$
(
preview
)
@
$el
.
replaceWith
(
new_el
)
@
$el
=
new_el
@
delegate
()
@
model
.
module
=
XModule
.
loadModule
(
@
$el
)
XModule
.
loadModules
(
@
$el
)
).
fail
(
->
).
fail
(
->
alert
(
"There was an error saving your changes. Please try again."
)
alert
(
"There was an error saving your changes. Please try again."
)
)
)
cancel
:
(
event
)
->
cancel
:
(
event
)
->
event
.
preventDefault
()
event
.
preventDefault
()
CMS
.
popView
(
)
@
$el
.
removeClass
(
'editing'
)
@
enableDrag
(
)
@
$component_editor
.
slideUp
(
150
)
edit
Submodule
:
(
event
)
->
edit
:
(
event
)
->
event
.
preventDefault
()
event
.
preventDefault
()
previewType
=
$
(
event
.
target
).
data
(
'preview-type'
)
@
$el
.
addClass
(
'editing'
)
moduleType
=
$
(
event
.
target
).
data
(
'type'
)
@
$component_editor
.
slideDown
(
150
)
CMS
.
pushView
new
CMS
.
Views
.
ModuleEdit
model
:
new
CMS
.
Models
.
Module
id
:
$
(
event
.
target
).
data
(
'id'
)
type
:
if
moduleType
==
'None'
then
null
else
moduleType
previewType
:
if
previewType
==
'None'
then
null
else
previewType
@
enableDrag
()
cms/static/js/base.js
View file @
ce363853
...
@@ -14,12 +14,27 @@ $(document).ready(function() {
...
@@ -14,12 +14,27 @@ $(document).ready(function() {
$newComponentStep2
=
$
(
'.new-component-step-2'
);
$newComponentStep2
=
$
(
'.new-component-step-2'
);
$newComponentButton
=
$
(
'.new-component-button'
);
$newComponentButton
=
$
(
'.new-component-button'
);
$
(
document
).
bind
(
'XModule.loaded'
,
function
(
e
,
element
)
{
if
(
$
(
element
).
hasClass
(
'.xmodule_display'
))
{
return
}
var
previewType
=
$
(
element
).
data
(
'preview-type'
);
var
moduleType
=
$
(
element
).
data
(
'type'
);
new
CMS
.
Views
.
ModuleEdit
({
el
:
element
,
model
:
new
CMS
.
Models
.
Module
({
module
:
$
(
element
).
data
(
'module'
),
id
:
$
(
element
).
data
(
'id'
),
type
:
moduleType
==
'None'
?
null
:
moduleType
,
previewType
:
previewType
==
'None'
?
null
:
previewType
,
})
});
});
XModule
.
loadModules
()
$
(
'.expand-collapse-icon'
).
bind
(
'click'
,
toggleSubmodules
);
$
(
'.expand-collapse-icon'
).
bind
(
'click'
,
toggleSubmodules
);
$
(
'.visibility-options'
).
bind
(
'change'
,
setVisibility
);
$
(
'.visibility-options'
).
bind
(
'change'
,
setVisibility
);
$body
.
delegate
(
'.xmodule_edit .edit-button'
,
'click'
,
editComponent
);
$body
.
delegate
(
'.component-editor .save-button, .component-editor .cancel-button'
,
'click'
,
closeComponentEditor
);
$newComponentButton
.
bind
(
'click'
,
showNewComponentForm
);
$newComponentButton
.
bind
(
'click'
,
showNewComponentForm
);
$newComponentStep1
.
find
(
'.new-component-type a'
).
bind
(
'click'
,
showNewComponentProperties
);
$newComponentStep1
.
find
(
'.new-component-type a'
).
bind
(
'click'
,
showNewComponentProperties
);
$newComponentStep2
.
find
(
'.save-button'
).
bind
(
'click'
,
saveNewComponent
);
$newComponentStep2
.
find
(
'.save-button'
).
bind
(
'click'
,
saveNewComponent
);
...
@@ -28,8 +43,6 @@ $(document).ready(function() {
...
@@ -28,8 +43,6 @@ $(document).ready(function() {
$
(
'.unit-history ol a'
).
bind
(
'click'
,
showHistoryModal
);
$
(
'.unit-history ol a'
).
bind
(
'click'
,
showHistoryModal
);
$modal
.
bind
(
'click'
,
hideHistoryModal
);
$modal
.
bind
(
'click'
,
hideHistoryModal
);
$modalCover
.
bind
(
'click'
,
hideHistoryModal
);
$modalCover
.
bind
(
'click'
,
hideHistoryModal
);
XModule
.
loadModules
(
'display'
);
});
});
function
toggleSubmodules
(
e
)
{
function
toggleSubmodules
(
e
)
{
...
...
common/lib/xmodule/xmodule/js/src/sequence/display.coffee
View file @
ce363853
...
@@ -84,7 +84,7 @@ class @Sequence
...
@@ -84,7 +84,7 @@ class @Sequence
@
mark_active
new_position
@
mark_active
new_position
@
$
(
'#seq_content'
).
html
@
contents
.
eq
(
new_position
-
1
).
text
()
@
$
(
'#seq_content'
).
html
@
contents
.
eq
(
new_position
-
1
).
text
()
XModule
.
loadModules
(
'display'
,
@
$
(
'#seq_content'
))
XModule
.
loadModules
(
@
$
(
'#seq_content'
))
MathJax
.
Hub
.
Queue
([
"Typeset"
,
MathJax
.
Hub
,
"seq_content"
])
# NOTE: Actually redundant. Some other MathJax call also being performed
MathJax
.
Hub
.
Queue
([
"Typeset"
,
MathJax
.
Hub
,
"seq_content"
])
# NOTE: Actually redundant. Some other MathJax call also being performed
window
.
update_schematics
()
# For embedded circuit simulator exercises in 6.002x
window
.
update_schematics
()
# For embedded circuit simulator exercises in 6.002x
...
...
common/static/coffee/src/xmodule.coffee
View file @
ce363853
...
@@ -10,7 +10,8 @@
...
@@ -10,7 +10,8 @@
return
return
try
try
new
window
[
moduleType
](
element
)
$
(
element
).
data
(
'module'
,
new
window
[
moduleType
](
element
))
$
(
document
).
trigger
(
'XModule.loaded'
,
[
element
])
catch
error
catch
error
console
.
error
"Unable to load
#{
moduleType
}
:
#{
error
.
message
}
"
if
console
console
.
error
"Unable to load
#{
moduleType
}
:
#{
error
.
message
}
"
if
console
...
@@ -19,8 +20,8 @@
...
@@ -19,8 +20,8 @@
If container is provided, only load modules inside that element
If container is provided, only load modules inside that element
Type is one of 'display' or 'edit'
Type is one of 'display' or 'edit'
###
###
loadModules
:
(
type
,
container
)
->
loadModules
:
(
container
)
->
selector
=
".xmodule_
#{
type
}
"
selector
=
".xmodule_edit, .xmodule_display
"
if
container
?
if
container
?
modules
=
$
(
container
).
find
(
selector
)
modules
=
$
(
container
).
find
(
selector
)
...
...
common/templates/xmodule_edit.html
View file @
ce363853
<div
class=
"xmodule_edit xmodule_${
class_} ${editable_class}"
data-type=
"${module_name
}"
>
<div
class=
"xmodule_edit xmodule_${
editor_class} ${editable_class}"
data-type=
"${editor_type}"
data-id=
"${location
}"
>
<
%
include
file=
"xmodule_display.html"
/>
<
%
include
file=
"xmodule_display.html"
/>
% if editable_data:
% if editable_data:
<div
class=
"component-actions"
>
<div
class=
"component-actions"
data-id=
"${location}"
>
<a
href=
"#"
class=
"edit-button"
><span
class=
"edit-icon white"
></span>
Edit
</a>
<a
href=
"#"
class=
"edit-button"
><span
class=
"edit-icon white"
></span>
Edit
</a>
<a
href=
"#"
class=
"delete-button"
><span
class=
"delete-icon white"
></span>
Delete
</a>
<a
href=
"#"
class=
"delete-button"
><span
class=
"delete-icon white"
></span>
Delete
</a>
</div>
</div>
<div
class=
"component-editor"
>
<div
class=
"component-editor"
data-id=
"${location}"
>
${editor_content}
${editor_content}
<a
href=
"#"
class=
"save-button"
>
Save
</a>
<a
href=
"#"
class=
"save-button"
>
Save
</a>
<a
href=
"#"
class=
"cancel-button"
>
Cancel
</a>
<a
href=
"#"
class=
"cancel-button"
>
Cancel
</a>
...
...
lms/static/coffee/src/courseware.coffee
View file @
ce363853
...
@@ -11,7 +11,7 @@ class @Courseware
...
@@ -11,7 +11,7 @@ class @Courseware
new
Courseware
new
Courseware
render
:
->
render
:
->
XModule
.
loadModules
(
'display'
)
XModule
.
loadModules
()
$
(
'.course-content .histogram'
).
each
->
$
(
'.course-content .histogram'
).
each
->
id
=
$
(
this
).
attr
(
'id'
).
replace
(
/histogram_/
,
''
)
id
=
$
(
this
).
attr
(
'id'
).
replace
(
/histogram_/
,
''
)
try
try
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment