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
710a99c8
Commit
710a99c8
authored
Feb 27, 2017
by
Ilya Kirillov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Deleted test function with builder script.
parent
96fc81d5
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
163 deletions
+1
-163
word/apiBuilder.js
word/apiBuilder.js
+1
-163
No files found.
word/apiBuilder.js
View file @
710a99c8
...
...
@@ -5150,165 +5150,3 @@
return
new
ApiDocumentContent
(
oDocContent
);
};
}(
window
,
null
));
\ No newline at end of file
function
TEST_BUILDER_REPORT
()
{
var
oApi
=
editor
;
var
oDocument
=
oApi
.
GetDocument
();
var
oCommentsReport
=
oDocument
.
GetCommentsReport
();
console
.
log
(
oCommentsReport
);
var
oReviewReport
=
oDocument
.
GetReviewReport
();
console
.
log
(
oReviewReport
);
var
oParagraph
=
oApi
.
CreateParagraph
();
oDocument
.
Push
(
oParagraph
);
oParagraph
.
AddText
(
"
Comments report
"
);
var
nRows
=
1
;
for
(
var
sUserName
in
oCommentsReport
)
{
nRows
+=
oCommentsReport
[
sUserName
].
length
;
}
var
nCols
=
6
;
var
oTable
=
oApi
.
CreateTable
(
nCols
,
nRows
);
oDocument
.
Push
(
oTable
);
function
privateFillCell
(
nCurRow
,
nCurCol
,
sText
)
{
var
oRow
=
oTable
.
GetRow
(
nCurRow
);
var
oCell
=
oRow
.
GetCell
(
nCurCol
);
var
oCellContent
=
oCell
.
GetContent
();
var
oRun
=
oCellContent
.
GetElement
(
0
).
AddText
(
sText
);
return
{
Cell
:
oCell
,
Run
:
oRun
};
}
privateFillCell
(
0
,
0
,
"
Name
"
);
privateFillCell
(
0
,
1
,
"
Date
"
);
privateFillCell
(
0
,
2
,
""
);
privateFillCell
(
0
,
3
,
"
Solved
"
);
privateFillCell
(
0
,
4
,
"
Text
"
);
privateFillCell
(
0
,
5
,
"
Quote text
"
);
var
nCurRow
=
1
;
for
(
var
sUserName
in
oCommentsReport
)
{
var
arrUserComments
=
oCommentsReport
[
sUserName
];
var
arrCells
=
[];
for
(
var
nIndex
=
0
,
nCount
=
arrUserComments
.
length
;
nIndex
<
nCount
;
++
nIndex
,
++
nCurRow
)
{
var
oCommentInfo
=
oCommentsReport
[
sUserName
][
nIndex
];
arrCells
.
push
(
privateFillCell
(
nCurRow
,
0
,
""
).
Cell
);
privateFillCell
(
nCurRow
,
1
,
(
new
Date
(
oCommentInfo
[
"
Date
"
])).
toLocaleString
());
privateFillCell
(
nCurRow
,
2
,
oCommentInfo
[
"
IsAnswer
"
]
===
true
?
"
answer
"
:
"
comment
"
);
if
(
oCommentInfo
[
"
IsAnswer
"
]
!==
true
)
{
if
(
oCommentInfo
[
"
IsSolved
"
]
===
true
)
privateFillCell
(
nCurRow
,
3
,
"
yes
"
).
Run
.
SetColor
(
0
,
255
,
0
);
else
privateFillCell
(
nCurRow
,
3
,
"
no
"
).
Run
.
SetColor
(
255
,
0
,
0
);
}
privateFillCell
(
nCurRow
,
4
,
oCommentInfo
[
"
CommentMessage
"
]
?
oCommentInfo
[
"
CommentMessage
"
]
:
""
);
privateFillCell
(
nCurRow
,
5
,
oCommentInfo
[
"
QuoteText
"
]
?
oCommentInfo
[
"
QuoteText
"
]
:
""
);
}
var
oMergedCell
=
oTable
.
MergeCells
(
arrCells
);
if
(
oMergedCell
)
{
var
oCellContent
=
oMergedCell
.
GetContent
();
oCellContent
.
GetElement
(
0
).
AddText
(
sUserName
);
}
else
if
(
arrCells
.
length
>
0
)
{
var
oCellContent
=
arrCells
[
0
].
GetContent
();
oCellContent
.
GetElement
(
0
).
AddText
(
sUserName
);
}
}
oTable
.
SetStyle
(
oDocument
.
GetStyle
(
"
Bordered
"
));
oParagraph
=
oApi
.
CreateParagraph
();
oDocument
.
Push
(
oParagraph
);
oParagraph
.
AddText
(
"
Review report
"
);
nRows
=
1
;
for
(
var
sUserName
in
oReviewReport
)
{
nRows
+=
oReviewReport
[
sUserName
].
length
;
}
nCols
=
4
;
oTable
=
oApi
.
CreateTable
(
nCols
,
nRows
);
oDocument
.
Push
(
oTable
);
privateFillCell
(
0
,
0
,
"
Name
"
);
privateFillCell
(
0
,
1
,
"
Date
"
);
privateFillCell
(
0
,
2
,
"
Action
"
);
privateFillCell
(
0
,
3
,
""
);
var
nCurRow
=
1
;
for
(
var
sUserName
in
oReviewReport
)
{
var
arrUserChanges
=
oReviewReport
[
sUserName
];
var
arrCells
=
[];
for
(
var
nIndex
=
0
,
nCount
=
arrUserChanges
.
length
;
nIndex
<
nCount
;
++
nIndex
,
++
nCurRow
)
{
var
oChangeInfo
=
arrUserChanges
[
nIndex
];
arrCells
.
push
(
privateFillCell
(
nCurRow
,
0
,
""
).
Cell
);
privateFillCell
(
nCurRow
,
1
,
(
new
Date
(
oChangeInfo
[
"
Date
"
])).
toLocaleString
());
var
sType
=
oChangeInfo
[
"
Type
"
];
if
(
"
TextAdd
"
===
sType
)
{
privateFillCell
(
nCurRow
,
2
,
"
Added text
"
);
privateFillCell
(
nCurRow
,
3
,
oChangeInfo
[
"
Value
"
]);
}
else
if
(
"
TextRem
"
===
sType
)
{
privateFillCell
(
nCurRow
,
2
,
"
Removed text
"
);
privateFillCell
(
nCurRow
,
3
,
oChangeInfo
[
"
Value
"
]).
Run
.
SetStrikeout
(
true
);
}
else
if
(
"
TextPr
"
===
sType
)
{
privateFillCell
(
nCurRow
,
2
,
"
Formatted text
"
);
}
else
if
(
"
ParaAdd
"
===
sType
)
{
privateFillCell
(
nCurRow
,
2
,
"
Added paragraph
"
);
}
else
if
(
"
ParaRem
"
===
sType
)
{
privateFillCell
(
nCurRow
,
2
,
"
Removed paragraph
"
);
}
else
if
(
"
ParaPr
"
===
sType
)
{
privateFillCell
(
nCurRow
,
2
,
"
Formatted paragraph
"
);
}
else
{
privateFillCell
(
nCurRow
,
2
,
"
Unknown change
"
);
}
}
var
oMergedCell
=
oTable
.
MergeCells
(
arrCells
);
if
(
oMergedCell
)
{
var
oCellContent
=
oMergedCell
.
GetContent
();
oCellContent
.
GetElement
(
0
).
AddText
(
sUserName
);
}
else
if
(
arrCells
.
length
>
0
)
{
var
oCellContent
=
arrCells
[
0
].
GetContent
();
oCellContent
.
GetElement
(
0
).
AddText
(
sUserName
);
}
}
oTable
.
SetStyle
(
oDocument
.
GetStyle
(
"
Bordered
"
));
oDocument
.
Document
.
Recalculate_FromStart
();
}
\ No newline at end of file
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