2016-11-17 09:29:35 -05:00
|
|
|
#review-panel
|
2017-01-19 07:12:34 -05:00
|
|
|
a.rp-track-changes-indicator(
|
|
|
|
href
|
|
|
|
ng-if="editor.wantTrackChanges"
|
|
|
|
ng-click="toggleReviewPanel();"
|
|
|
|
ng-class="{ 'rp-track-changes-indicator-on-dark' : darkTheme }"
|
|
|
|
) Track changes is
|
|
|
|
strong on
|
|
|
|
|
2016-11-16 09:42:07 -05:00
|
|
|
.review-panel-toolbar
|
2017-01-05 12:15:27 -05:00
|
|
|
resolved-comments-dropdown(
|
2017-01-18 10:38:34 -05:00
|
|
|
class="rp-flex-block"
|
2017-01-13 09:27:45 -05:00
|
|
|
entries="reviewPanel.resolvedComments"
|
2017-01-05 12:15:27 -05:00
|
|
|
threads="reviewPanel.commentThreads"
|
2017-01-10 11:29:27 -05:00
|
|
|
resolved-ids="reviewPanel.resolvedThreadIds"
|
2017-01-06 07:00:17 -05:00
|
|
|
docs="docs"
|
2017-01-09 09:59:01 -05:00
|
|
|
on-open="refreshResolvedCommentsDropdown();"
|
2017-01-09 12:22:01 -05:00
|
|
|
on-unresolve="unresolveComment(threadId);"
|
2017-01-24 10:18:49 -05:00
|
|
|
on-delete="deleteThread(entryId, docId, threadId);"
|
2017-01-09 09:59:01 -05:00
|
|
|
is-loading="reviewPanel.dropdown.loading"
|
2017-01-12 05:52:39 -05:00
|
|
|
permissions="permissions"
|
2017-01-05 12:15:27 -05:00
|
|
|
)
|
2017-02-01 11:52:18 -05:00
|
|
|
span.review-panel-toolbar-label(ng-if="permissions.write", ng-click="fooBarBaz($event);")
|
2017-01-12 05:52:39 -05:00
|
|
|
span(ng-click="toggleTrackChanges(true)", ng-if="editor.wantTrackChanges === false") Track Changes is
|
|
|
|
strong off
|
|
|
|
span(ng-click="toggleTrackChanges(false)", ng-if="editor.wantTrackChanges === true") Track Changes is
|
|
|
|
strong on
|
|
|
|
review-panel-toggle(ng-if="editor.wantTrackChanges == editor.trackChanges", ng-model="editor.wantTrackChanges", on-toggle="toggleTrackChanges")
|
|
|
|
span.review-panel-toolbar-label.review-panel-toolbar-label-disabled(ng-if="!permissions.write")
|
|
|
|
span(ng-if="editor.wantTrackChanges === false") Track Changes is
|
|
|
|
strong off
|
|
|
|
span(ng-if="editor.wantTrackChanges === true") Track Changes is
|
|
|
|
strong on
|
2016-12-08 09:10:30 -05:00
|
|
|
span.review-panel-toolbar-spinner(ng-if="editor.wantTrackChanges != editor.trackChanges")
|
|
|
|
i.fa.fa-spin.fa-spinner
|
2016-11-23 09:34:55 -05:00
|
|
|
|
2016-11-17 07:09:07 -05:00
|
|
|
.rp-entry-list(
|
2016-11-16 10:23:29 -05:00
|
|
|
review-panel-sorted
|
|
|
|
ng-if="reviewPanel.subView === SubViews.CUR_FILE"
|
|
|
|
)
|
|
|
|
.rp-entry-list-inner
|
2016-11-16 09:42:07 -05:00
|
|
|
.rp-entry-wrapper(
|
|
|
|
ng-repeat="(entry_id, entry) in reviewPanel.entries[editor.open_doc_id]"
|
|
|
|
)
|
2016-11-16 10:47:05 -05:00
|
|
|
div(ng-if="entry.type === 'insert' || entry.type === 'delete'")
|
|
|
|
change-entry(
|
|
|
|
entry="entry"
|
|
|
|
user="users[entry.metadata.user_id]"
|
|
|
|
on-reject="rejectChange(entry_id);"
|
|
|
|
on-accept="acceptChange(entry_id);"
|
2016-11-16 11:13:39 -05:00
|
|
|
on-indicator-click="toggleReviewPanel();"
|
2017-01-26 11:11:02 -05:00
|
|
|
on-body-click="gotoEntry(editor.open_doc_id, entry)"
|
2017-01-12 05:52:39 -05:00
|
|
|
permissions="permissions"
|
2016-11-16 10:47:05 -05:00
|
|
|
)
|
2016-11-16 09:42:07 -05:00
|
|
|
|
2017-01-10 11:17:07 -05:00
|
|
|
div(ng-if="entry.type === 'comment'")
|
2016-11-16 10:47:05 -05:00
|
|
|
comment-entry(
|
|
|
|
entry="entry"
|
2016-12-16 11:42:41 -05:00
|
|
|
threads="reviewPanel.commentThreads"
|
2016-11-17 13:06:08 -05:00
|
|
|
on-resolve="resolveComment(entry, entry_id)"
|
|
|
|
on-reply="submitReply(entry, entry_id);"
|
2016-11-16 11:13:39 -05:00
|
|
|
on-indicator-click="toggleReviewPanel();"
|
2017-01-24 10:18:49 -05:00
|
|
|
on-save-edit="saveEdit(entry.thread_id, comment)"
|
|
|
|
on-delete="deleteComment(entry.thread_id, comment)"
|
2017-01-26 11:11:02 -05:00
|
|
|
on-body-click="gotoEntry(editor.open_doc_id, entry)"
|
2017-01-12 05:52:39 -05:00
|
|
|
permissions="permissions"
|
2017-01-17 10:55:18 -05:00
|
|
|
ng-if="!reviewPanel.loadingThreads"
|
2016-11-16 10:47:05 -05:00
|
|
|
)
|
|
|
|
|
2017-01-12 05:52:39 -05:00
|
|
|
div(ng-if="entry.type === 'add-comment' && permissions.comment")
|
2016-11-16 10:47:05 -05:00
|
|
|
add-comment-entry(
|
|
|
|
on-start-new="startNewComment();"
|
|
|
|
on-submit="submitNewComment(content);"
|
|
|
|
on-cancel="cancelNewComment();"
|
2016-11-16 11:13:39 -05:00
|
|
|
on-indicator-click="toggleReviewPanel();"
|
2016-11-16 10:47:05 -05:00
|
|
|
)
|
2016-11-16 09:42:07 -05:00
|
|
|
|
2016-11-17 07:09:07 -05:00
|
|
|
.rp-entry-list(
|
2016-11-17 06:47:20 -05:00
|
|
|
ng-if="reviewPanel.subView === SubViews.OVERVIEW"
|
|
|
|
)
|
2017-01-09 09:59:01 -05:00
|
|
|
.rp-loading(ng-if="reviewPanel.overview.loading")
|
2016-12-09 10:43:08 -05:00
|
|
|
i.fa.fa-spinner.fa-spin
|
2016-11-17 06:47:20 -05:00
|
|
|
.rp-overview-file(
|
2016-12-09 11:17:28 -05:00
|
|
|
ng-repeat="doc in docs"
|
2016-12-09 10:43:08 -05:00
|
|
|
ng-if="!reviewPanel.overview.loading"
|
2016-11-16 09:42:07 -05:00
|
|
|
)
|
2016-12-09 11:17:28 -05:00
|
|
|
.rp-overview-file-header(
|
|
|
|
ng-if="reviewPanel.entries[doc.doc.id] | notEmpty"
|
|
|
|
)
|
|
|
|
| {{ doc.path }}
|
2016-11-17 06:47:20 -05:00
|
|
|
.rp-entry-wrapper(
|
2016-12-09 11:17:28 -05:00
|
|
|
ng-repeat="(entry_id, entry) in reviewPanel.entries[doc.doc.id] | orderOverviewEntries"
|
2017-01-10 11:17:07 -05:00
|
|
|
ng-if="!(entry.type === 'comment' && reviewPanel.commentThreads[entry.thread_id].resolved === true)"
|
2016-11-16 09:42:07 -05:00
|
|
|
)
|
2016-11-17 06:47:20 -05:00
|
|
|
div(ng-if="entry.type === 'insert' || entry.type === 'delete'")
|
|
|
|
change-entry(
|
|
|
|
entry="entry"
|
|
|
|
user="users[entry.metadata.user_id]"
|
|
|
|
on-indicator-click="toggleReviewPanel();"
|
2017-01-16 09:31:51 -05:00
|
|
|
ng-click="gotoEntry(doc.doc.id, entry)"
|
2017-01-12 05:52:39 -05:00
|
|
|
permissions="permissions"
|
2016-11-16 09:42:07 -05:00
|
|
|
)
|
|
|
|
|
2017-01-10 11:17:07 -05:00
|
|
|
div(ng-if="entry.type === 'comment'")
|
2016-11-17 06:47:20 -05:00
|
|
|
comment-entry(
|
|
|
|
entry="entry"
|
2017-01-06 08:17:57 -05:00
|
|
|
threads="reviewPanel.commentThreads"
|
2016-11-17 13:06:08 -05:00
|
|
|
on-reply="submitReply(entry, entry_id);"
|
2017-01-24 10:18:49 -05:00
|
|
|
on-save-edit="saveEdit(entry.thread_id, comment)"
|
|
|
|
on-delete="deleteComment(entry.thread_id, comment)"
|
2016-11-17 06:47:20 -05:00
|
|
|
on-indicator-click="toggleReviewPanel();"
|
2017-01-16 09:31:51 -05:00
|
|
|
ng-click="gotoEntry(doc.doc.id, entry)"
|
2017-01-12 05:52:39 -05:00
|
|
|
permissions="permissions"
|
2016-11-16 09:42:07 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
.rp-nav
|
|
|
|
a.rp-nav-item(
|
|
|
|
href
|
|
|
|
ng-click="setSubView(SubViews.CUR_FILE);"
|
|
|
|
ng-class="{ 'rp-nav-item-active' : reviewPanel.subView === SubViews.CUR_FILE }"
|
|
|
|
)
|
|
|
|
i.fa.fa-file-text-o
|
|
|
|
span.rp-nav-label Current file
|
|
|
|
a.rp-nav-item(
|
|
|
|
href
|
|
|
|
ng-click="setSubView(SubViews.OVERVIEW);"
|
|
|
|
ng-class="{ 'rp-nav-item-active' : reviewPanel.subView === SubViews.OVERVIEW }"
|
|
|
|
)
|
|
|
|
i.fa.fa-list
|
|
|
|
span.rp-nav-label Overview
|
|
|
|
|
|
|
|
|
|
|
|
script(type='text/ng-template', id='changeEntryTemplate')
|
2016-11-16 11:13:39 -05:00
|
|
|
div
|
2016-11-16 11:21:24 -05:00
|
|
|
.rp-entry-callout(
|
|
|
|
ng-class="'rp-entry-callout-' + entry.type"
|
|
|
|
)
|
2016-11-16 11:13:39 -05:00
|
|
|
.rp-entry-indicator(
|
|
|
|
ng-switch="entry.type"
|
|
|
|
ng-class="{ 'rp-entry-indicator-focused': entry.focused }"
|
|
|
|
ng-click="onIndicatorClick();"
|
|
|
|
)
|
|
|
|
i.fa.fa-pencil(ng-switch-when="insert")
|
|
|
|
i.rp-icon-delete(ng-switch-when="delete")
|
|
|
|
.rp-entry(
|
|
|
|
ng-class="[ 'rp-entry-' + entry.type, (entry.focused ? 'rp-entry-focused' : '')]"
|
|
|
|
)
|
2017-01-04 10:24:49 -05:00
|
|
|
.rp-entry-body
|
2016-11-16 11:13:39 -05:00
|
|
|
.rp-entry-action-icon(ng-switch="entry.type")
|
|
|
|
i.fa.fa-pencil(ng-switch-when="insert")
|
|
|
|
i.rp-icon-delete(ng-switch-when="delete")
|
2017-01-04 10:24:49 -05:00
|
|
|
.rp-entry-details
|
|
|
|
.rp-entry-description(ng-switch="entry.type")
|
|
|
|
span(ng-switch-when="insert") Added
|
2017-01-13 10:30:31 -05:00
|
|
|
ins.rp-content-highlight {{ entry.content | limitTo:(isCollapsed ? contentLimit : entry.content.length) }}
|
|
|
|
a.rp-collapse-toggle(
|
|
|
|
href
|
|
|
|
ng-if="needsCollapsing"
|
|
|
|
ng-click="toggleCollapse();"
|
2017-01-16 09:06:47 -05:00
|
|
|
) {{ isCollapsed ? '... (show all)' : ' (show less)' }}
|
2017-01-04 10:24:49 -05:00
|
|
|
span(ng-switch-when="delete") Deleted
|
2017-01-13 10:30:31 -05:00
|
|
|
del.rp-content-highlight {{ entry.content | limitTo:(isCollapsed ? contentLimit : entry.content.length) }}
|
|
|
|
a.rp-collapse-toggle(
|
|
|
|
href
|
|
|
|
ng-if="needsCollapsing"
|
|
|
|
ng-click="toggleCollapse();"
|
2017-01-16 09:06:47 -05:00
|
|
|
) {{ isCollapsed ? '... (show all)' : ' (show less)' }}
|
2017-01-04 10:24:49 -05:00
|
|
|
.rp-entry-metadata
|
2017-01-05 12:15:27 -05:00
|
|
|
| {{ entry.metadata.ts | date : 'MMM d, y h:mm a' }} •
|
2017-01-04 10:24:49 -05:00
|
|
|
span.rp-entry-user(style="color: hsl({{ user.hue }}, 70%, 40%);") {{ user.name }}
|
2017-01-12 05:52:39 -05:00
|
|
|
.rp-entry-actions(ng-if="permissions.write")
|
2016-11-16 11:13:39 -05:00
|
|
|
a.rp-entry-button(href, ng-click="onReject();")
|
|
|
|
i.fa.fa-times
|
|
|
|
| Reject
|
|
|
|
a.rp-entry-button(href, ng-click="onAccept();")
|
|
|
|
i.fa.fa-check
|
|
|
|
| Accept
|
2016-11-16 09:42:07 -05:00
|
|
|
|
2016-11-16 10:12:58 -05:00
|
|
|
script(type='text/ng-template', id='commentEntryTemplate')
|
2017-01-12 06:25:36 -05:00
|
|
|
.rp-comment-wrapper(
|
|
|
|
ng-class="{ 'rp-comment-wrapper-resolving': state.animating }"
|
|
|
|
)
|
2017-01-05 06:50:43 -05:00
|
|
|
.rp-entry-callout.rp-entry-callout-comment
|
2016-11-16 11:13:39 -05:00
|
|
|
.rp-entry-indicator(
|
|
|
|
ng-class="{ 'rp-entry-indicator-focused': entry.focused }"
|
|
|
|
ng-click="onIndicatorClick();"
|
2016-11-16 10:12:58 -05:00
|
|
|
)
|
2016-11-16 10:47:05 -05:00
|
|
|
i.fa.fa-comment
|
2016-11-16 11:13:39 -05:00
|
|
|
.rp-entry.rp-entry-comment(
|
2017-01-12 06:25:36 -05:00
|
|
|
ng-class="{ 'rp-entry-focused': entry.focused, 'rp-entry-comment-resolving': state.animating }"
|
2016-11-16 11:13:39 -05:00
|
|
|
)
|
2017-01-24 10:18:49 -05:00
|
|
|
|
2017-01-24 10:56:08 -05:00
|
|
|
.rp-loading(ng-if="!threads[entry.thread_id].submitting && (!threads[entry.thread_id] || threads[entry.thread_id].messages.length == 0)")
|
2017-01-24 10:18:49 -05:00
|
|
|
| No comments
|
2017-01-26 11:11:02 -05:00
|
|
|
.rp-comment-loaded
|
2017-01-05 06:50:43 -05:00
|
|
|
.rp-comment(
|
2017-01-05 12:15:27 -05:00
|
|
|
ng-repeat="comment in threads[entry.thread_id].messages track by comment.id"
|
2017-01-05 06:50:43 -05:00
|
|
|
)
|
2017-01-24 10:18:49 -05:00
|
|
|
p.rp-comment-content
|
|
|
|
span(ng-if="!comment.editing")
|
|
|
|
span.rp-entry-user(
|
|
|
|
style="color: hsl({{ comment.user.hue }}, 70%, 40%);",
|
|
|
|
) {{ comment.user.name }}:
|
|
|
|
| {{ comment.content }}
|
|
|
|
textarea.rp-comment-input(
|
2017-01-25 08:51:33 -05:00
|
|
|
expandable-text-area
|
2017-01-24 10:18:49 -05:00
|
|
|
ng-if="comment.editing"
|
|
|
|
ng-model="comment.content"
|
|
|
|
ng-keypress="saveEditOnEnter($event, comment);"
|
|
|
|
ng-blur="saveEdit(comment)"
|
|
|
|
autofocus
|
|
|
|
stop-propagation="click"
|
|
|
|
)
|
|
|
|
.rp-entry-metadata(ng-if="!comment.editing")
|
|
|
|
span(ng-if="!comment.deleting") {{ comment.timestamp | date : 'MMM d, y h:mm a' }}
|
|
|
|
span.rp-comment-actions(ng-if="comment.user.isSelf && !comment.deleting")
|
|
|
|
| •
|
|
|
|
a(href, ng-click="startEditing(comment)") Edit
|
2017-01-24 11:03:32 -05:00
|
|
|
span(ng-if="threads[entry.thread_id].messages.length > 1")
|
|
|
|
| •
|
|
|
|
a(href, ng-click="confirmDelete(comment)") Delete
|
2017-01-24 10:18:49 -05:00
|
|
|
span.rp-confim-delete(ng-if="comment.user.isSelf && comment.deleting")
|
|
|
|
| Are you sure?
|
|
|
|
| •
|
|
|
|
a(href, ng-click="doDelete(comment)") Delete
|
|
|
|
| •
|
|
|
|
a(href, ng-click="cancelDelete(comment)") Cancel
|
|
|
|
|
|
|
|
.rp-loading(ng-if="threads[entry.thread_id].submitting")
|
2017-01-16 09:25:10 -05:00
|
|
|
i.fa.fa-spinner.fa-spin
|
2017-01-12 05:52:39 -05:00
|
|
|
.rp-comment-reply(ng-if="permissions.comment")
|
2016-11-16 10:47:05 -05:00
|
|
|
textarea.rp-comment-input(
|
2017-01-25 08:51:33 -05:00
|
|
|
expandable-text-area
|
2016-11-16 11:13:39 -05:00
|
|
|
ng-model="entry.replyContent"
|
|
|
|
ng-keypress="handleCommentReplyKeyPress($event);"
|
2016-11-18 10:08:16 -05:00
|
|
|
stop-propagation="click"
|
2016-11-17 13:06:08 -05:00
|
|
|
placeholder="{{ 'Hit \"Enter\" to reply' + (entry.resolved ? ' and re-open' : '') }}"
|
2016-11-16 10:47:05 -05:00
|
|
|
)
|
|
|
|
.rp-entry-actions
|
2017-01-16 12:06:57 -05:00
|
|
|
button.rp-entry-button(
|
|
|
|
ng-click="animateAndCallOnResolve();"
|
|
|
|
ng-if="permissions.comment && permissions.write"
|
|
|
|
)
|
2017-01-05 12:15:27 -05:00
|
|
|
i.fa.fa-inbox
|
2017-01-05 06:50:43 -05:00
|
|
|
| Resolve
|
2017-01-16 12:06:57 -05:00
|
|
|
button.rp-entry-button(
|
|
|
|
ng-click="onReply();"
|
|
|
|
ng-if="permissions.comment"
|
2017-01-16 12:14:06 -05:00
|
|
|
ng-disabled="!entry.replyContent.length"
|
|
|
|
)
|
2017-01-05 06:50:43 -05:00
|
|
|
i.fa.fa-reply
|
|
|
|
| Reply
|
2017-01-06 07:00:17 -05:00
|
|
|
|
|
|
|
script(type='text/ng-template', id='resolvedCommentEntryTemplate')
|
2017-01-06 10:24:33 -05:00
|
|
|
.rp-resolved-comment
|
2017-01-06 07:00:17 -05:00
|
|
|
div
|
2017-01-06 10:24:33 -05:00
|
|
|
.rp-resolved-comment-context
|
2017-01-06 07:00:17 -05:00
|
|
|
| Quoted text on
|
2017-01-10 07:16:58 -05:00
|
|
|
span.rp-resolved-comment-context-file {{ thread.docName }}
|
2017-01-13 10:37:24 -05:00
|
|
|
p.rp-resolved-comment-context-quote
|
|
|
|
span {{ thread.content | limitTo:(isCollapsed ? contentLimit : thread.content.length)}}
|
|
|
|
a.rp-collapse-toggle(
|
|
|
|
href
|
|
|
|
ng-if="needsCollapsing"
|
|
|
|
ng-click="toggleCollapse();"
|
2017-01-16 12:06:57 -05:00
|
|
|
) {{ isCollapsed ? '... (show all)' : ' (show less)' }}
|
2017-01-06 07:00:17 -05:00
|
|
|
.rp-comment(
|
|
|
|
ng-repeat="comment in thread.messages track by comment.id"
|
|
|
|
)
|
|
|
|
p.rp-comment-content
|
|
|
|
span.rp-entry-user(
|
|
|
|
style="color: hsl({{ comment.user.hue }}, 70%, 40%);"
|
|
|
|
ng-if="$first || comment.user.id !== thread.messages[$index - 1].user.id"
|
|
|
|
) {{ comment.user.name }}:
|
|
|
|
| {{ comment.content }}
|
|
|
|
.rp-entry-metadata
|
|
|
|
| {{ comment.timestamp | date : 'MMM d, y h:mm a' }}
|
2017-01-06 10:24:33 -05:00
|
|
|
.rp-comment.rp-comment-resolver
|
|
|
|
p.rp-comment-resolver-content
|
|
|
|
span.rp-entry-user(
|
|
|
|
style="color: hsl({{ thread.resolved_by_user.hue }}, 70%, 40%);"
|
|
|
|
) {{ thread.resolved_by_user.name }}:
|
|
|
|
| Marked as resolved.
|
|
|
|
.rp-entry-metadata
|
|
|
|
| {{ thread.resolved_at | date : 'MMM d, y h:mm a' }}
|
|
|
|
|
2017-01-12 05:52:39 -05:00
|
|
|
.rp-entry-actions(ng-if="permissions.comment && permissions.write")
|
2017-01-09 12:22:01 -05:00
|
|
|
a.rp-entry-button(
|
|
|
|
href
|
2017-01-10 07:16:58 -05:00
|
|
|
ng-click="onUnresolve({ 'threadId': thread.threadId });"
|
2017-01-09 12:22:01 -05:00
|
|
|
)
|
2017-01-06 07:00:17 -05:00
|
|
|
| Re-open
|
2017-01-24 10:18:49 -05:00
|
|
|
a.rp-entry-button(
|
|
|
|
href
|
|
|
|
ng-click="onDelete({ 'entryId': thread.entryId, 'docId': thread.docId, 'threadId': thread.threadId });"
|
|
|
|
)
|
|
|
|
| Delete
|
2017-01-06 07:00:17 -05:00
|
|
|
|
2016-11-16 11:13:39 -05:00
|
|
|
|
|
|
|
script(type='text/ng-template', id='addCommentEntryTemplate')
|
|
|
|
div
|
2016-11-16 11:21:24 -05:00
|
|
|
.rp-entry-callout.rp-entry-callout-add-comment
|
2016-11-16 11:13:39 -05:00
|
|
|
.rp-entry-indicator(
|
|
|
|
ng-if="!commentState.adding"
|
|
|
|
ng-click="startNewComment(); onIndicatorClick();"
|
2016-11-18 11:08:02 -05:00
|
|
|
tooltip="Add a comment"
|
|
|
|
tooltip-placement="right"
|
|
|
|
tooltip-append-to-body="true"
|
2016-11-16 11:13:39 -05:00
|
|
|
)
|
|
|
|
i.fa.fa-commenting
|
|
|
|
.rp-entry.rp-entry-add-comment(
|
|
|
|
ng-class="[ (state.isAdding ? 'rp-entry-adding-comment' : ''), (entry.focused ? 'rp-entry-focused' : '')]"
|
|
|
|
)
|
|
|
|
a.rp-add-comment-btn(
|
|
|
|
href
|
|
|
|
ng-if="!state.isAdding"
|
|
|
|
ng-click="startNewComment();"
|
|
|
|
)
|
|
|
|
i.fa.fa-comment
|
|
|
|
| Add comment
|
|
|
|
div(ng-if="state.isAdding")
|
|
|
|
.rp-new-comment
|
|
|
|
textarea.rp-comment-input(
|
2017-01-25 08:51:33 -05:00
|
|
|
expandable-text-area
|
2016-11-16 11:13:39 -05:00
|
|
|
ng-model="state.content"
|
|
|
|
ng-keypress="handleCommentKeyPress($event);"
|
|
|
|
placeholder="Add your comment here"
|
2017-01-16 09:17:56 -05:00
|
|
|
focus-on="comment:new:open"
|
2016-11-16 11:13:39 -05:00
|
|
|
)
|
|
|
|
.rp-entry-actions
|
2017-01-16 12:14:06 -05:00
|
|
|
button.rp-entry-button(
|
|
|
|
ng-click="cancelNewComment();"
|
|
|
|
)
|
2016-11-16 11:13:39 -05:00
|
|
|
i.fa.fa-times
|
|
|
|
| Cancel
|
2017-01-16 12:14:06 -05:00
|
|
|
button.rp-entry-button(
|
|
|
|
ng-click="submitNewComment()"
|
|
|
|
ng-disabled="!state.content.length"
|
|
|
|
)
|
2016-11-16 11:13:39 -05:00
|
|
|
i.fa.fa-comment
|
2017-01-05 12:15:27 -05:00
|
|
|
| Comment
|
|
|
|
|
|
|
|
script(type='text/ng-template', id='resolvedCommentsDropdownTemplate')
|
|
|
|
.resolved-comments
|
2017-01-11 05:53:46 -05:00
|
|
|
.resolved-comments-backdrop(
|
|
|
|
ng-class="{ 'resolved-comments-backdrop-visible' : state.isOpen }"
|
|
|
|
ng-click="state.isOpen = false"
|
|
|
|
)
|
2017-01-05 12:15:27 -05:00
|
|
|
a.resolved-comments-toggle(
|
|
|
|
href
|
2017-01-09 09:59:01 -05:00
|
|
|
ng-click="toggleOpenState();"
|
2017-01-12 07:37:44 -05:00
|
|
|
tooltip="Resolved Comments"
|
|
|
|
tooltip-placement="bottom"
|
|
|
|
tooltip-append-to-body="true"
|
|
|
|
)
|
2017-01-05 12:15:27 -05:00
|
|
|
i.fa.fa-inbox
|
|
|
|
.resolved-comments-dropdown(
|
|
|
|
ng-class="{ 'resolved-comments-dropdown-open' : state.isOpen }"
|
|
|
|
)
|
2017-01-09 09:59:01 -05:00
|
|
|
.rp-loading(ng-if="isLoading")
|
|
|
|
i.fa.fa-spinner.fa-spin
|
2017-01-11 06:25:18 -05:00
|
|
|
.resolved-comments-scroller(
|
2017-01-09 09:59:01 -05:00
|
|
|
ng-if="!isLoading"
|
2017-01-06 07:00:17 -05:00
|
|
|
)
|
|
|
|
resolved-comment-entry(
|
2017-01-12 07:44:54 -05:00
|
|
|
ng-repeat="thread in resolvedComments | orderBy:'resolved_at':true"
|
2017-01-06 07:00:17 -05:00
|
|
|
thread="thread"
|
2017-01-09 12:22:01 -05:00
|
|
|
on-unresolve="handleUnresolve(threadId);"
|
2017-01-24 10:18:49 -05:00
|
|
|
on-delete="handleDelete(entryId, docId, threadId);"
|
2017-01-12 05:52:39 -05:00
|
|
|
permissions="permissions"
|
2017-01-06 07:00:17 -05:00
|
|
|
)
|
2017-01-10 07:16:58 -05:00
|
|
|
.rp-loading(ng-if="!resolvedComments.length")
|
|
|
|
| No resolved threads.
|
2017-01-06 07:00:17 -05:00
|
|
|
|
2017-02-01 11:52:18 -05:00
|
|
|
script(type="text/ng-template", id="trackChangesUpgradeModalTemplate")
|
|
|
|
.modal-header
|
|
|
|
button.close(
|
|
|
|
type="button"
|
|
|
|
data-dismiss="modal"
|
|
|
|
ng-click="cancel()"
|
|
|
|
) ×
|
|
|
|
h3 Track Changes
|
|
|
|
.modal-body
|
|
|
|
.teaser-video-container
|
|
|
|
video.teaser-video(autoplay, loop)
|
|
|
|
source(src="/img/teasers/track-changes/teaser-track-changes.mp4", type="video/mp4")
|
|
|
|
img(src="/img/teasers/track-changes/teaser-track-changes.gif")
|
|
|
|
|
|
|
|
h4.teaser-title See changes in your documents, live
|
|
|
|
|
|
|
|
p.small(ng-show="startedFreeTrial")
|
|
|
|
| #{translate("refresh_page_after_starting_free_trial")}
|
|
|
|
|
|
|
|
.row
|
|
|
|
.col-md-10.col-md-offset-1
|
|
|
|
ul.list-unstyled
|
|
|
|
li
|
|
|
|
i.fa.fa-check
|
|
|
|
| Track any change, in real-time
|
|
|
|
|
|
|
|
li
|
|
|
|
i.fa.fa-check
|
|
|
|
| Review your peers' work
|
|
|
|
|
|
|
|
li
|
|
|
|
i.fa.fa-check
|
|
|
|
| Accept or reject each change individually
|
|
|
|
|
|
|
|
|
|
|
|
.row.text-center(ng-controller="FreeTrialModalController")
|
|
|
|
a.btn.btn-success(
|
|
|
|
href
|
|
|
|
ng-click="startFreeTrial('track-changes')"
|
|
|
|
) Try it for free
|
|
|
|
|
|
|
|
.modal-footer()
|
|
|
|
button.btn.btn-default(
|
|
|
|
ng-click="cancel()"
|
|
|
|
)
|
|
|
|
span #{translate("close")}
|