Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
sdkjs
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boris Kocherov
sdkjs
Commits
e3a7cce9
Commit
e3a7cce9
authored
Dec 12, 2016
by
Ilya Kirillov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Worked on deleted index in a new undo scheme.
parent
792eb8d5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
13 deletions
+22
-13
word/Editor/CollaborativeEditing.js
word/Editor/CollaborativeEditing.js
+22
-13
No files found.
word/Editor/CollaborativeEditing.js
View file @
e3a7cce9
...
...
@@ -48,6 +48,8 @@ function CWordCollaborativeEditing()
this
.
m_aForeignCursorsXY
=
{};
this
.
m_aForeignCursorsToShow
=
{};
this
.
m_nAllChangesSavedIndex
=
0
;
this
.
m_aAllChanges
=
[];
// Список всех изменений
this
.
m_aOwnChangesIndexes
=
[];
// Список номеров своих изменений в общем списке, которые мы можем откатить
...
...
@@ -628,7 +630,7 @@ CWordCollaborativeEditing.prototype.private_AddOverallChange = function(oChange)
// Здесь мы должны смержить пришедшее изменение с одним из наших изменений
for
(
var
nIndex
=
0
,
nCount
=
this
.
m_oOwnChanges
.
length
;
nIndex
<
nCount
;
++
nIndex
)
{
if
(
false
===
oChange
.
Merge
(
this
.
m_oOwnChanges
[
nIndex
]))
if
(
oChange
&&
oChange
.
Merge
&&
false
===
oChange
.
Merge
(
this
.
m_oOwnChanges
[
nIndex
]))
return
false
;
}
...
...
@@ -637,20 +639,27 @@ CWordCollaborativeEditing.prototype.private_AddOverallChange = function(oChange)
};
CWordCollaborativeEditing
.
prototype
.
private_OnSendOwnChanges
=
function
(
arrChanges
,
nDeleteIndex
)
{
this
.
m_aOwnChangesIndexes
.
push
({
Position
:
this
.
m_aAllChanges
.
length
,
Count
:
arrChanges
.
length
});
this
.
m_aAllChanges
=
this
.
m_aAllChanges
.
concat
(
arrChanges
);
// TODO: Пока nDeleteIndex не учитывается, исправить.
// TODO: Тут возможен случай, когда arrChanges пустой. Возможно необходимо убрать несколько последних записей
// в массиве this.m_aOwnChangesIndexes
if
(
null
!==
nDeleteIndex
)
{
this
.
m_aAllChanges
.
length
=
this
.
m_nAllChangesSavedIndex
+
nDeleteIndex
;
}
else
{
this
.
m_nAllChangesSavedIndex
=
this
.
m_aAllChanges
.
length
;
}
// TODO: Пока мы делаем это как одну точку, которую надо откатить. Надо пробежаться по массиву и разбить его
// по отдельным действиям.
// по отдельным действиям. В принципе, данная схема срабатывает в быстром совместном редактировании,
// так что как правило две точки не успевают попасть в одно сохранение.
if
(
arrChanges
.
length
>
0
)
{
this
.
m_aOwnChangesIndexes
.
push
({
Position
:
this
.
m_aAllChanges
.
length
,
Count
:
arrChanges
.
length
});
this
.
m_aAllChanges
=
this
.
m_aAllChanges
.
concat
(
arrChanges
);
}
};
CWordCollaborativeEditing
.
prototype
.
Undo
=
function
()
{
...
...
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