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
df01064e
Commit
df01064e
authored
Feb 26, 2013
by
VikParuchuri
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1536 from MITx/diana/rubric-hot-keys
Add in rubric hotkeys
parents
ab3eb99b
f9667849
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
69 additions
and
4 deletions
+69
-4
common/lib/xmodule/xmodule/js/src/combinedopenended/display.coffee
+47
-0
common/lib/xmodule/xmodule/js/src/peergrading/peer_grading_problem.coffee
+15
-3
lms/static/coffee/src/staff_grading/staff_grading.coffee
+7
-1
No files found.
common/lib/xmodule/xmodule/js/src/combinedopenended/display.coffee
View file @
df01064e
...
...
@@ -4,7 +4,47 @@ class @Rubric
@
initialize
:
(
location
)
->
$
(
'.rubric'
).
data
(
"location"
,
location
)
$
(
'input[class="score-selection"]'
).
change
@
tracking_callback
# set up the hotkeys
$
(
window
).
unbind
(
'keydown'
,
@
keypress_callback
)
$
(
window
).
keydown
@
keypress_callback
# display the 'current' carat
@
categories
=
$
(
'.rubric-category'
)
@
category
=
$
(
@
categories
.
first
())
@
category
.
prepend
(
'> '
)
@
category_index
=
0
@
keypress_callback
:
(
event
)
=>
# don't try to do this when user is typing in a text input
if
$
(
event
.
target
).
is
(
'input, textarea'
)
return
# for when we select via top row
if
event
.
which
>=
48
and
event
.
which
<=
57
selected
=
event
.
which
-
48
# for when we select via numpad
else
if
event
.
which
>=
96
and
event
.
which
<=
105
selected
=
event
.
which
-
96
# we don't want to do anything since we haven't pressed a number
else
return
# if we actually have a current category (not past the end)
if
(
@
category_index
<=
@
categories
.
length
)
# find the valid selections for this category
inputs
=
$
(
"input[name='score-selection-
#{
@
category_index
}
']"
)
max_score
=
inputs
.
length
-
1
if
selected
>
max_score
or
selected
<
0
return
inputs
.
filter
(
"input[value=
#{
selected
}
]"
).
click
()
# move to the next category
old_category_text
=
@
category
.
html
().
substring
(
5
)
@
category
.
html
(
old_category_text
)
@
category_index
++
@
category
=
$
(
@
categories
[
@
category_index
])
@
category
.
prepend
(
'> '
)
@
tracking_callback
:
(
event
)
->
target_selection
=
$
(
event
.
target
).
val
()
# chop off the beginning of the name so that we can get the number of the category
...
...
@@ -49,6 +89,7 @@ class @CombinedOpenEnded
constructor
:
(
element
)
->
@
element
=
element
@
reinitialize
(
element
)
$
(
window
).
keydown
@
keydown_handler
reinitialize
:
(
element
)
->
@
wrapper
=
$
(
element
).
find
(
'section.xmodule_CombinedOpenEndedModule'
)
...
...
@@ -306,6 +347,7 @@ class @CombinedOpenEnded
if
response
.
success
@
rubric_wrapper
.
html
(
response
.
rubric_html
)
@
rubric_wrapper
.
show
()
Rubric
.
initialize
(
@
location
)
@
answer_area
.
html
(
response
.
student_response
)
@
child_state
=
'assessing'
@
find_assessment_elements
()
...
...
@@ -318,6 +360,11 @@ class @CombinedOpenEnded
else
@
errors_area
.
html
(
@
out_of_sync_message
)
keydown_handler
:
(
e
)
=>
# only do anything when the key pressed is the 'enter' key
if
e
.
which
==
13
&&
@
child_state
==
'assessing'
&&
Rubric
.
check_complete
()
@
save_assessment
(
e
)
save_assessment
:
(
event
)
=>
event
.
preventDefault
()
if
@
child_state
==
'assessing'
&&
Rubric
.
check_complete
()
...
...
common/lib/xmodule/xmodule/js/src/peergrading/peer_grading_problem.coffee
View file @
df01064e
...
...
@@ -210,6 +210,9 @@ class @PeerGradingProblem
@
calibration_interstitial_page_button
=
$
(
'.calibration-interstitial-page-button'
)
@
flag_student_checkbox
=
$
(
'.flag-checkbox'
)
@
answer_unknown_checkbox
=
$
(
'.answer-unknown-checkbox'
)
$
(
window
).
keydown
@
keydown_handler
@
collapse_question
()
Collapsible
.
setCollapsibles
(
@
content_panel
)
...
...
@@ -251,9 +254,6 @@ class @PeerGradingProblem
fetch_submission_essay
:
()
=>
@
backend
.
post
(
'get_next_submission'
,
{
location
:
@
location
},
@
render_submission
)
gentle_alert
:
(
msg
)
=>
@
grading_message
.
fadeIn
()
@
grading_message
.
html
(
"<p>"
+
msg
+
"</p>"
)
construct_data
:
()
->
data
=
...
...
@@ -337,6 +337,14 @@ class @PeerGradingProblem
@
show_submit_button
()
@
grade
=
Rubric
.
get_total_score
()
keydown_handler
:
(
event
)
=>
if
event
.
which
==
13
&&
@
submit_button
.
is
(
':visible'
)
if
@
calibration
@
submit_calibration_essay
()
else
@
submit_grade
()
##########
...
...
@@ -473,6 +481,10 @@ class @PeerGradingProblem
# And now hook up an event handler again
$
(
"input[class='score-selection']"
).
change
@
graded_callback
gentle_alert
:
(
msg
)
=>
@
grading_message
.
fadeIn
()
@
grading_message
.
html
(
"<p>"
+
msg
+
"</p>"
)
collapse_question
:
()
=>
@
prompt_container
.
slideToggle
()
@
prompt_container
.
toggleClass
(
'open'
)
...
...
lms/static/coffee/src/staff_grading/staff_grading.coffee
View file @
df01064e
...
...
@@ -183,6 +183,8 @@ class @StaffGrading
@
breadcrumbs
=
$
(
'.breadcrumbs'
)
$
(
window
).
keydown
@
keydown_handler
@
question_header
=
$
(
'.question-header'
)
@
question_header
.
click
@
collapse_question
@
collapse_question
()
...
...
@@ -219,7 +221,7 @@ class @StaffGrading
setup_score_selection
:
=>
@
score_selection_container
.
html
(
@
rubric
)
$
(
'
.score-selection'
).
click
=>
@
graded_callback
()
$
(
'
input[class="score-selection"]'
).
change
=>
@
graded_callback
()
Rubric
.
initialize
(
@
location
)
...
...
@@ -229,6 +231,10 @@ class @StaffGrading
@
state
=
state_graded
@
submit_button
.
show
()
keydown_handler
:
(
e
)
=>
if
e
.
which
==
13
&&
!
@
list_view
&&
Rubric
.
check_complete
()
@
submit_and_get_next
()
set_button_text
:
(
text
)
=>
@
action_button
.
attr
(
'value'
,
text
)
...
...
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