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
67431313
Commit
67431313
authored
Aug 25, 2016
by
Alexander Trofimov
Committed by
GitHub
Aug 25, 2016
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #44 from ONLYOFFICE/release/v4.1.0
fix bug 17590
parents
db6f7129
fe814f19
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
45 additions
and
78 deletions
+45
-78
cell/view/CellEditorView.js
cell/view/CellEditorView.js
+42
-71
cell/view/StringRender.js
cell/view/StringRender.js
+3
-7
No files found.
cell/view/CellEditorView.js
View file @
67431313
...
@@ -330,7 +330,9 @@
...
@@ -330,7 +330,9 @@
if
(
saveValue
&&
"
function
"
===
typeof
opt
.
saveValueCallback
)
{
if
(
saveValue
&&
"
function
"
===
typeof
opt
.
saveValueCallback
)
{
var
isFormula
=
this
.
isFormula
();
var
isFormula
=
this
.
isFormula
();
// Для формул делаем пересчет всегда. Для остального - только если мы изменили что-то. http://bugzilla.onlyoffice.com/show_bug.cgi?id=31889
// Для формул делаем пересчет всегда. Для остального - только если мы изменили что-то. http://bugzilla.onlyoffice.com/show_bug.cgi?id=31889
if
(
0
<
this
.
undoList
.
length
||
isFormula
)
{
// Сюда же добавляется и ячейка с wrap-текстом, у которой выключен wrap.
// Иначе F2 по ячейке с '\n', у которой выключен wrap, не станет снова wrap. http://bugzilla.onlyoffice.com/show_bug.cgi?id=17590
if
(
0
<
this
.
undoList
.
length
||
isFormula
||
this
.
textFlags
.
wrapOnlyNL
)
{
// Делаем замену текста на автодополнение, если есть select и текст полностью совпал.
// Делаем замену текста на автодополнение, если есть select и текст полностью совпал.
if
(
this
.
selectionBegin
!==
this
.
selectionEnd
&&
!
isFormula
)
{
if
(
this
.
selectionBegin
!==
this
.
selectionEnd
&&
!
isFormula
)
{
var
s
=
this
.
_getFragmentsText
(
this
.
options
.
fragments
);
var
s
=
this
.
_getFragmentsText
(
this
.
options
.
fragments
);
...
@@ -347,7 +349,6 @@
...
@@ -347,7 +349,6 @@
}
}
}
}
ret
=
this
.
_wrapFragments
(
opt
.
fragments
);
// восстанавливаем символы \n
ret
=
opt
.
saveValueCallback
(
opt
.
fragments
,
this
.
textFlags
,
/*skip NL check*/
ret
);
ret
=
opt
.
saveValueCallback
(
opt
.
fragments
,
this
.
textFlags
,
/*skip NL check*/
ret
);
if
(
!
ret
)
{
if
(
!
ret
)
{
// При ошибке нужно выставить флаг, чтобы по стрелкам не закрывался редактор
// При ошибке нужно выставить флаг, чтобы по стрелкам не закрывался редактор
...
@@ -510,12 +511,6 @@
...
@@ -510,12 +511,6 @@
this
.
top
=
this
.
sides
.
cellY
;
this
.
top
=
this
.
sides
.
cellY
;
this
.
right
=
this
.
sides
.
r
[
0
];
this
.
right
=
this
.
sides
.
r
[
0
];
this
.
bottom
=
this
.
sides
.
b
[
0
];
this
.
bottom
=
this
.
sides
.
b
[
0
];
// Обновляем флаги, т.к. мы уже могли выставить wrap
this
.
textFlags
.
wrapText
=
this
.
options
.
flags
.
wrapText
;
if
(
this
.
textFlags
.
wrapText
)
{
this
.
textFlags
.
wrapOnlyNL
=
true
;
this
.
textFlags
.
wrapText
=
false
;
}
// ToDo вынести в отдельную функцию
// ToDo вынести в отдельную функцию
var
canExpW
=
true
,
canExpH
=
true
,
tm
,
expW
,
expH
,
fragments
=
this
.
_getRenderFragments
();
var
canExpW
=
true
,
canExpH
=
true
,
tm
,
expW
,
expH
,
fragments
=
this
.
_getRenderFragments
();
if
(
0
<
fragments
.
length
)
{
if
(
0
<
fragments
.
length
)
{
...
@@ -599,89 +594,87 @@
...
@@ -599,89 +594,87 @@
return
f
;
return
f
;
};
};
CellEditor
.
prototype
.
pasteText
=
function
(
text
)
{
CellEditor
.
prototype
.
pasteText
=
function
(
text
)
{
text
=
text
.
replace
(
/
\t
/g
,
"
"
);
text
=
text
.
replace
(
/
\t
/g
,
"
"
);
text
=
text
.
replace
(
/
\r
/g
,
""
);
text
=
text
.
replace
(
/
\r
/g
,
""
);
text
=
text
.
replace
(
/^
\n
+|
\n
+$/g
,
""
);
text
=
text
.
replace
(
/^
\n
+|
\n
+$/g
,
""
);
var
length
=
text
.
length
;
var
length
=
text
.
length
;
if
(
!
(
length
>
0
)
)
{
if
(
!
(
length
>
0
)
)
{
return
;
return
;
}
}
if
(
!
this
.
_checkMaxCellLength
(
length
)
)
{
if
(
!
this
.
_checkMaxCellLength
(
length
)
)
{
return
;
return
;
}
}
var
wrap
=
text
.
indexOf
(
"
\n
"
)
>=
0
;
var
wrap
=
-
1
!==
text
.
indexOf
(
kNewLine
)
;
if
(
this
.
selectionBegin
!==
this
.
selectionEnd
)
{
if
(
this
.
selectionBegin
!==
this
.
selectionEnd
)
{
this
.
_removeChars
();
this
.
_removeChars
();
}
}
else
{
else
{
this
.
undoList
.
push
({
fn
:
"
fake
"
,
args
:
[]});
this
.
undoList
.
push
(
{
fn
:
"
fake
"
,
args
:
[]}
);
}
//фейковый undo(потому что у нас делает undo по 2 действия)
}
//фейковый undo(потому что у нас делает undo по 2 действия)
// save info to undo/redo
// save info to undo/redo
this
.
undoList
.
push
(
{
fn
:
this
.
_removeChars
,
args
:
[
this
.
cursorPos
,
length
]}
);
this
.
undoList
.
push
(
{
fn
:
this
.
_removeChars
,
args
:
[
this
.
cursorPos
,
length
]}
);
this
.
redoList
=
[];
this
.
redoList
=
[];
var
opt
=
this
.
options
;
var
opt
=
this
.
options
;
var
nInsertPos
=
this
.
cursorPos
;
var
nInsertPos
=
this
.
cursorPos
;
var
fr
;
var
fr
;
fr
=
this
.
_findFragmentToInsertInto
(
nInsertPos
-
(
nInsertPos
>
0
?
1
:
0
)
);
fr
=
this
.
_findFragmentToInsertInto
(
nInsertPos
-
(
nInsertPos
>
0
?
1
:
0
)
);
if
(
fr
)
{
if
(
fr
)
{
var
oCurFragment
=
opt
.
fragments
[
fr
.
index
];
var
oCurFragment
=
opt
.
fragments
[
fr
.
index
];
if
(
fr
.
end
<=
nInsertPos
)
{
if
(
fr
.
end
<=
nInsertPos
)
{
oCurFragment
.
text
+=
text
;
oCurFragment
.
text
+=
text
;
}
}
else
{
else
{
var
sNewText
=
oCurFragment
.
text
.
substring
(
0
,
nInsertPos
);
var
sNewText
=
oCurFragment
.
text
.
substring
(
0
,
nInsertPos
);
sNewText
+=
text
;
sNewText
+=
text
;
sNewText
+=
oCurFragment
.
text
.
substring
(
nInsertPos
);
sNewText
+=
oCurFragment
.
text
.
substring
(
nInsertPos
);
oCurFragment
.
text
=
sNewText
;
oCurFragment
.
text
=
sNewText
;
}
}
this
.
cursorPos
=
nInsertPos
+
length
;
this
.
cursorPos
=
nInsertPos
+
length
;
this
.
_update
();
this
.
_update
();
}
}
if
(
wrap
)
{
if
(
wrap
)
{
this
.
_wrapText
();
this
.
_wrapText
();
this
.
_update
();
this
.
_update
();
}
}
};
};
CellEditor
.
prototype
.
paste
=
function
(
fragments
,
cursorPos
)
{
CellEditor
.
prototype
.
paste
=
function
(
fragments
,
cursorPos
)
{
if
(
!
(
fragments
.
length
>
0
)
)
{
if
(
!
(
fragments
.
length
>
0
)
)
{
return
;
return
;
}
}
var
length
=
this
.
_getFragmentsLength
(
fragments
);
var
length
=
this
.
_getFragmentsLength
(
fragments
);
if
(
!
this
.
_checkMaxCellLength
(
length
)
)
{
if
(
!
this
.
_checkMaxCellLength
(
length
)
)
{
return
;
return
;
}
}
var
wrap
=
fragments
.
some
(
function
(
val
)
{
var
wrap
=
fragments
.
some
(
function
(
val
)
{
return
val
.
text
.
indexOf
(
"
\n
"
)
>=
0
;
return
-
1
!==
val
.
text
.
indexOf
(
kNewLine
)
;
}
);
});
this
.
_cleanFragments
(
fragments
);
this
.
_cleanFragments
(
fragments
);
if
(
this
.
selectionBegin
!==
this
.
selectionEnd
)
{
if
(
this
.
selectionBegin
!==
this
.
selectionEnd
)
{
this
.
_removeChars
();
this
.
_removeChars
();
}
}
// save info to undo/redo
// save info to undo/redo
this
.
undoList
.
push
(
{
fn
:
this
.
_removeChars
,
args
:
[
this
.
cursorPos
,
length
]}
);
this
.
undoList
.
push
(
{
fn
:
this
.
_removeChars
,
args
:
[
this
.
cursorPos
,
length
]}
);
this
.
redoList
=
[];
this
.
redoList
=
[];
this
.
_addFragments
(
fragments
,
this
.
cursorPos
);
this
.
_addFragments
(
fragments
,
this
.
cursorPos
);
if
(
wrap
)
{
if
(
wrap
)
{
this
.
_wrapText
();
this
.
_wrapText
();
this
.
_update
();
this
.
_update
();
}
}
// Сделано только для вставки формулы в ячейку (когда не открыт редактор)
// Сделано только для вставки формулы в ячейку (когда не открыт редактор)
if
(
undefined
!==
cursorPos
)
{
if
(
undefined
!==
cursorPos
)
{
this
.
_moveCursor
(
kPosition
,
cursorPos
);
this
.
_moveCursor
(
kPosition
,
cursorPos
);
}
}
};
};
...
@@ -762,10 +755,6 @@
...
@@ -762,10 +755,6 @@
if
(
this
.
textFlags
.
textAlign
.
toLowerCase
()
===
"
justify
"
||
this
.
isFormula
()
)
{
if
(
this
.
textFlags
.
textAlign
.
toLowerCase
()
===
"
justify
"
||
this
.
isFormula
()
)
{
this
.
textFlags
.
textAlign
=
"
left
"
;
this
.
textFlags
.
textAlign
=
"
left
"
;
}
}
if
(
this
.
textFlags
.
wrapText
)
{
this
.
textFlags
.
wrapOnlyNL
=
true
;
this
.
textFlags
.
wrapText
=
false
;
}
this
.
_cleanFragments
(
opt
.
fragments
);
this
.
_cleanFragments
(
opt
.
fragments
);
this
.
textRender
.
setString
(
opt
.
fragments
,
this
.
textFlags
);
this
.
textRender
.
setString
(
opt
.
fragments
,
this
.
textFlags
);
...
@@ -1673,23 +1662,8 @@
...
@@ -1673,23 +1662,8 @@
return
asc_calcnpt
(
0
,
ppix
,
this
.
defaults
.
padding
);
return
asc_calcnpt
(
0
,
ppix
,
this
.
defaults
.
padding
);
};
};
CellEditor
.
prototype
.
_wrapFragments
=
function
(
frag
)
{
var
i
,
s
,
ret
=
false
;
for
(
i
=
0
;
i
<
frag
.
length
;
++
i
)
{
s
=
frag
[
i
].
text
;
if
(
s
.
indexOf
(
"
\
u00B6
"
)
>=
0
)
{
s
=
s
.
replace
(
/
\u
00B6/g
,
"
\n
"
);
ret
=
true
;
}
frag
[
i
].
text
=
s
;
}
return
ret
;
};
CellEditor
.
prototype
.
_wrapText
=
function
()
{
CellEditor
.
prototype
.
_wrapText
=
function
()
{
var
t
=
this
;
this
.
textFlags
.
wrapOnlyNL
=
true
;
t
.
textFlags
.
wrapOnlyNL
=
true
;
t
.
_wrapFragments
(
t
.
options
.
fragments
);
};
};
CellEditor
.
prototype
.
_addChars
=
function
(
str
,
pos
,
isRange
)
{
CellEditor
.
prototype
.
_addChars
=
function
(
str
,
pos
,
isRange
)
{
...
@@ -2001,23 +1975,20 @@
...
@@ -2001,23 +1975,20 @@
}
}
};
};
CellEditor
.
prototype
.
_cleanFragments
=
function
(
fr
)
{
CellEditor
.
prototype
.
_cleanFragments
=
function
(
fr
)
{
var
t
=
this
,
i
,
s
,
f
,
wrap
=
t
.
textFlags
.
wrapText
||
t
.
textFlags
.
wrapOnlyNL
;
var
t
=
this
,
i
,
s
,
f
,
wrap
=
t
.
textFlags
.
wrapText
||
t
.
textFlags
.
wrapOnlyNL
;
for
(
i
=
0
;
i
<
fr
.
length
;
++
i
)
{
for
(
i
=
0
;
i
<
fr
.
length
;
++
i
)
{
s
=
fr
[
i
].
text
;
s
=
fr
[
i
].
text
;
if
(
s
.
search
(
t
.
reNL
)
>=
0
)
{
if
(
!
wrap
&&
-
1
!==
s
.
indexOf
(
kNewLine
))
{
s
=
s
.
replace
(
t
.
reReplaceNL
,
wrap
?
"
\n
"
:
"
\
u00B6
"
);
this
.
_wrapText
();
}
if
(
s
.
search
(
t
.
reTab
)
>=
0
)
{
s
=
s
.
replace
(
t
.
reReplaceTab
,
"
"
);
}
}
fr
[
i
].
text
=
s
;
fr
[
i
].
text
=
s
;
f
=
fr
[
i
].
format
;
f
=
fr
[
i
].
format
;
if
(
f
.
fn
===
""
)
{
if
(
f
.
fn
===
""
)
{
f
.
fn
=
t
.
options
.
font
.
FontFamily
.
Name
;
f
.
fn
=
t
.
options
.
font
.
FontFamily
.
Name
;
}
}
if
(
f
.
fs
===
0
)
{
if
(
f
.
fs
===
0
)
{
f
.
fs
=
t
.
options
.
font
.
FontSize
;
f
.
fs
=
t
.
options
.
font
.
FontSize
;
}
}
}
}
...
...
cell/view/StringRender.js
View file @
67431313
...
@@ -156,8 +156,6 @@
...
@@ -156,8 +156,6 @@
/** @type RegExp */
/** @type RegExp */
this
.
reNL
=
/
[\r\n]
/
;
this
.
reNL
=
/
[\r\n]
/
;
/** @type RegExp */
/** @type RegExp */
this
.
reTab
=
/
[\t\v\f]
/
;
/** @type RegExp */
this
.
reSpace
=
/
[\n\r\u
2028
\u
2029
\t\v\f\u
0020
\u
2000
\u
2001
\u
2002
\u
2003
\u
2004
\u
2005
\u
2006
\u
2008
\u
2009
\u
200A
\u
200B
\u
205F
\u
3000
]
/
;
this
.
reSpace
=
/
[\n\r\u
2028
\u
2029
\t\v\f\u
0020
\u
2000
\u
2001
\u
2002
\u
2003
\u
2004
\u
2005
\u
2006
\u
2008
\u
2009
\u
200A
\u
200B
\u
205F
\u
3000
]
/
;
/** @type RegExp */
/** @type RegExp */
this
.
reReplaceNL
=
/
\r?\n
|
\r
/g
;
this
.
reReplaceNL
=
/
\r?\n
|
\r
/g
;
...
@@ -520,8 +518,7 @@
...
@@ -520,8 +518,7 @@
*/
*/
StringRender
.
prototype
.
_filterText
=
function
(
fragment
,
wrap
)
{
StringRender
.
prototype
.
_filterText
=
function
(
fragment
,
wrap
)
{
var
s
=
fragment
;
var
s
=
fragment
;
if
(
s
.
search
(
this
.
reNL
)
>=
0
)
{
s
=
s
.
replace
(
this
.
reReplaceNL
,
wrap
?
"
\n
"
:
"
\
u00B6
"
);}
if
(
s
.
search
(
this
.
reNL
)
>=
0
)
{
s
=
s
.
replace
(
this
.
reReplaceNL
,
wrap
?
"
\n
"
:
""
);}
if
(
s
.
search
(
this
.
reTab
)
>=
0
)
{
s
=
s
.
replace
(
this
.
reReplaceTab
,
wrap
?
"
"
:
"
\
u2192
"
);}
return
s
;
return
s
;
};
};
...
@@ -555,8 +552,7 @@
...
@@ -555,8 +552,7 @@
* @return {Number}
* @return {Number}
*/
*/
StringRender
.
prototype
.
_calcLineWidth
=
function
(
startPos
,
endPos
)
{
StringRender
.
prototype
.
_calcLineWidth
=
function
(
startPos
,
endPos
)
{
var
wrap
=
this
.
flags
&&
this
.
flags
.
wrapText
;
var
wrap
=
this
.
flags
&&
(
this
.
flags
.
wrapText
||
this
.
flags
.
wrapOnlyNL
);
var
wrapNL
=
this
.
flags
&&
this
.
flags
.
wrapOnlyNL
;
var
isAtEnd
,
j
,
chProp
,
tw
;
var
isAtEnd
,
j
,
chProp
,
tw
;
if
(
endPos
===
undefined
||
endPos
<
0
)
{
if
(
endPos
===
undefined
||
endPos
<
0
)
{
...
@@ -571,7 +567,7 @@
...
@@ -571,7 +567,7 @@
for
(
j
=
endPos
,
tw
=
0
,
isAtEnd
=
true
;
j
>=
startPos
;
--
j
)
{
for
(
j
=
endPos
,
tw
=
0
,
isAtEnd
=
true
;
j
>=
startPos
;
--
j
)
{
if
(
isAtEnd
)
{
if
(
isAtEnd
)
{
// skip space char at end of line
// skip space char at end of line
if
(
(
wrap
||
wrapNL
)
&&
this
.
reSpace
.
test
(
this
.
chars
[
j
])
)
{
continue
;}
if
(
(
wrap
)
&&
this
.
reSpace
.
test
(
this
.
chars
[
j
])
)
{
continue
;}
isAtEnd
=
false
;
isAtEnd
=
false
;
}
}
tw
+=
this
.
charWidths
[
j
];
tw
+=
this
.
charWidths
[
j
];
...
...
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