Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
coopwire-hypothesis
Project
Project
Details
Activity
Releases
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
孙灵跃 Leon Sun
coopwire-hypothesis
Commits
511a352b
Commit
511a352b
authored
Mar 03, 2016
by
Sean Hammond
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #3041 from hypothesis/focus-sidebar-for-new-annots
Focus input field after creating a new annotation
parents
0053227a
dbbeadf8
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
56 additions
and
7 deletions
+56
-7
host.coffee
h/static/scripts/annotator/host.coffee
+7
-0
host-test.coffee
h/static/scripts/annotator/test/host-test.coffee
+31
-2
markdown.js
h/static/scripts/directive/markdown.js
+14
-4
thread.coffee
h/static/scripts/directive/thread.coffee
+4
-1
No files found.
h/static/scripts/annotator/host.coffee
View file @
511a352b
...
...
@@ -36,6 +36,13 @@ module.exports = class Host extends Guest
# Show the UI
@
frame
.
css
(
'display'
,
''
)
this
.
on
'beforeAnnotationCreated'
,
(
annotation
)
->
# When a new non-highlight annotation is created, focus
# the sidebar so that the text editor can be focused as
# soon as the annotation card appears
if
!
annotation
.
$highlight
app
[
0
].
contentWindow
.
focus
()
destroy
:
->
@
frame
.
remove
()
super
h/static/scripts/annotator/test/host-test.coffee
View file @
511a352b
...
...
@@ -10,7 +10,8 @@ describe 'Host', ->
CrossFrame
=
null
fakeCrossFrame
=
null
createHost
=
(
options
=
{})
->
createHost
=
(
options
=
{},
element
=
null
)
->
if
!
element
element
=
document
.
createElement
(
'div'
)
return
new
Host
(
element
,
options
)
...
...
@@ -41,6 +42,34 @@ describe 'Host', ->
host
.
publish
(
'panelReady'
)
assert
.
equal
(
host
.
frame
.
css
(
'display'
),
''
)
describe
'focus'
,
->
element
=
null
frame
=
null
host
=
null
beforeEach
->
element
=
document
.
createElement
(
'div'
)
document
.
body
.
appendChild
(
element
)
host
=
createHost
({},
element
)
frame
=
element
.
querySelector
(
'[name=hyp_sidebar_frame]'
)
sinon
.
spy
(
frame
.
contentWindow
,
'focus'
)
afterEach
->
frame
.
contentWindow
.
focus
.
restore
()
element
.
parentNode
.
removeChild
(
element
)
it
'focuses the sidebar when a new annotation is created'
,
->
host
.
publish
(
'beforeAnnotationCreated'
,
[{
$highlight
:
false
,
}])
assert
.
called
(
frame
.
contentWindow
.
focus
)
it
'does not focus the sidebar when a new highlight is created'
,
->
host
.
publish
(
'beforeAnnotationCreated'
,
[{
$highlight
:
true
,
}])
assert
.
notCalled
(
frame
.
contentWindow
.
focus
)
describe
'options'
,
->
it
'disables highlighting if showHighlights: false is given'
,
(
done
)
->
host
=
createHost
(
showHighlights
:
false
)
...
...
h/static/scripts/directive/markdown.js
View file @
511a352b
...
...
@@ -34,7 +34,7 @@ var loadMathJax = function() {
* the markdown editor.
*/
// @ngInject
module
.
exports
=
function
(
$filter
,
$sanitize
,
$sce
,
$timeout
)
{
module
.
exports
=
function
(
$filter
,
$sanitize
,
$sce
)
{
return
{
link
:
function
(
scope
,
elem
,
attr
,
ctrl
)
{
if
(
!
(
typeof
ctrl
!==
"undefined"
&&
ctrl
!==
null
))
{
return
;
}
...
...
@@ -63,6 +63,16 @@ module.exports = function($filter, $sanitize, $sce, $timeout) {
input
.
focus
();
}
function
focusInput
()
{
// When the visibility of the editor changes, focus it.
// A timeout is used so that focus() is not called until
// the visibility change has been applied (by adding or removing
// the relevant CSS classes)
setTimeout
(
function
()
{
input
.
focus
();
},
0
);
}
scope
.
insertBold
=
function
()
{
updateState
(
function
(
state
)
{
return
commands
.
toggleSpanStyle
(
state
,
'**'
,
'**'
,
'Bold'
);
...
...
@@ -145,7 +155,7 @@ module.exports = function($filter, $sanitize, $sce, $timeout) {
return
ctrl
.
$render
();
}
else
{
input
.
style
.
height
=
output
.
style
.
height
;
return
$timeout
(
function
()
{
return
input
.
focus
();
}
);
focusInput
(
);
}
}
};
...
...
@@ -265,12 +275,12 @@ module.exports = function($filter, $sanitize, $sce, $timeout) {
// Reset height of output div in case it has been changed.
// Re-render when it becomes uneditable.
// Auto-focus the input box when the widget becomes editable.
return
scope
.
$watch
(
'readOnly'
,
function
(
readOnly
)
{
scope
.
$watch
(
'readOnly'
,
function
(
readOnly
)
{
scope
.
preview
=
false
;
output
.
style
.
height
=
""
;
ctrl
.
$render
();
if
(
!
readOnly
)
{
input
.
focus
();
focusInput
();
}
});
},
...
...
h/static/scripts/directive/thread.coffee
View file @
511a352b
...
...
@@ -229,7 +229,10 @@ module.exports = [
ctrl
.
container
=
thread
if
ctrl
.
isNew
()
# Scroll the sidebar to show new annotations.
$location
.
hash
(
ctrl
.
id
)
# Note that only top level annotation cards have their ID set
annotationCard
=
document
.
getElementById
(
ctrl
.
id
)
if
annotationCard
annotationCard
.
scrollIntoView
();
scope
.
$digest
()
controller
:
ThreadController
...
...
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