Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
editoria
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Yannis Barlas
editoria
Commits
c8062d93
Commit
c8062d93
authored
8 years ago
by
john
Browse files
Options
Downloads
Patches
Plain Diff
handle deletions when collapsed and on an existing track annotation
parent
f1e9d6d8
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
app/components/SimpleEditor/ContainerEditor.js
+1
-0
1 addition, 0 deletions
app/components/SimpleEditor/ContainerEditor.js
app/components/SimpleEditor/elements/track_change/TrackChangesProvider.js
+55
-13
55 additions, 13 deletions
...impleEditor/elements/track_change/TrackChangesProvider.js
with
56 additions
and
13 deletions
app/components/SimpleEditor/ContainerEditor.js
+
1
−
0
View file @
c8062d93
...
...
@@ -101,6 +101,7 @@ class ContainerEditor extends SubstanceContainerEditor {
const
trackChangesProvider
=
this
.
context
.
trackChangesProvider
const
options
=
{
key
:
(
direction
===
'
left
'
)
?
'
BACKSPACE
'
:
'
DELETE
'
,
move
:
direction
,
status
:
'
delete
'
}
...
...
This diff is collapsed.
Click to expand it.
app/components/SimpleEditor/elements/track_change/TrackChangesProvider.js
+
55
−
13
View file @
c8062d93
...
...
@@ -7,6 +7,7 @@ import {
import
{
createAnnotation
,
deleteCharacter
as
deleteChar
,
expandAnnotation
,
truncateAnnotation
}
from
'
substance
'
...
...
@@ -25,10 +26,9 @@ class TrackChangesProvider {
handleAdd
(
options
)
{
const
{
event
,
status
}
=
options
if
(
status
!==
'
add
'
)
return
// console.log('adding')
const
isSelectionCollapsed
=
this
.
isSelectionCollapsed
()
// const mode = this.getMode()
let
selection
if
(
isSelectionCollapsed
)
{
...
...
@@ -71,32 +71,57 @@ class TrackChangesProvider {
}
handleDelete
(
options
)
{
const
{
move
,
status
}
=
options
const
{
key
,
move
,
status
}
=
options
if
(
status
!==
'
delete
'
)
return
// console.log('deleting')
const
mode
=
this
.
getMode
()
const
isSelectionCollapsed
=
this
.
isSelectionCollapsed
()
let
selection
const
direction
=
{
cursorTo
:
(
move
===
'
left
'
)
?
'
start
'
:
'
end
'
,
key
:
key
,
move
:
move
}
if
(
isSelectionCollapsed
)
{
if
(
!
mode
)
{
const
notOnTrack
=
this
.
isNotOnTrackAnnotation
()
if
(
notOnTrack
)
{
selection
=
this
.
setSelectionPlusOne
(
direction
.
move
)
this
.
createDeleteAnnotation
(
selection
)
this
.
moveCursorTo
(
direction
.
cursorTo
)
return
}
if
(
mode
===
'
delete
'
)
{
selection
=
this
.
setSelectionPlusOne
(
direction
.
move
)
const
annotation
=
this
.
getAnnotationByStatus
(
'
delete
'
)
this
.
expandTrackAnnotation
(
selection
,
annotation
)
this
.
moveCursorTo
(
direction
.
cursorTo
)
return
}
else
{
const
isOnAdd
=
this
.
isOnAnnotation
(
'
add
'
)
const
isOnDelete
=
this
.
isOnAnnotation
(
'
delete
'
)
if
(
isOnDelete
)
{
selection
=
this
.
setSelectionPlusOne
(
direction
.
move
)
const
annotation
=
this
.
getAnnotationByStatus
(
'
delete
'
)
this
.
expandTrackAnnotation
(
selection
,
annotation
)
this
.
moveCursorTo
(
direction
.
cursorTo
)
return
}
if
(
isOnAdd
)
{
const
annotation
=
this
.
getAnnotationByStatus
(
'
add
'
)
const
isOnLeftEdge
=
this
.
isOnLeftEdge
(
annotation
)
const
isOnRightEdge
=
this
.
isOnRightEdge
(
annotation
)
const
key
=
direction
.
key
if
(
(
isOnLeftEdge
&&
key
===
'
BACKSPACE
'
)
||
(
isOnRightEdge
&&
key
===
'
DELETE
'
)
)
{
selection
=
this
.
setSelectionPlusOne
(
direction
.
move
)
this
.
createDeleteAnnotation
(
selection
)
this
.
moveCursorTo
(
direction
.
cursorTo
)
return
}
this
.
deleteCharacter
(
direction
.
move
)
return
}
}
}
else
{
selection
=
this
.
getSelection
()
...
...
@@ -168,6 +193,18 @@ class TrackChangesProvider {
},
{
action
:
'
type
'
})
}
deleteCharacter
(
direction
)
{
const
surface
=
this
.
getSurface
()
const
info
=
{
action
:
'
delete
'
}
const
transformation
=
(
tx
,
args
)
=>
{
args
.
direction
=
direction
return
deleteChar
(
tx
,
args
)
}
surface
.
transaction
(
transformation
,
info
)
}
/*
ANNOTATION HELPERS
...
...
@@ -223,6 +260,11 @@ class TrackChangesProvider {
return
(
selection
.
startOffset
===
annotation
.
startOffset
)
}
isOnRightEdge
(
annotation
)
{
const
selection
=
this
.
getSelection
()
return
(
selection
.
endOffset
===
annotation
.
endOffset
)
}
isNotOnTrackAnnotation
()
{
const
mode
=
this
.
getMode
()
return
(
mode
===
null
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment