mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
Load history view using mainAreaManager
This commit is contained in:
parent
9fa80ad757
commit
b99eaecf82
2 changed files with 4 additions and 25 deletions
|
@ -351,10 +351,3 @@ define [
|
|||
|
||||
getCurrentDocId: () ->
|
||||
@current_doc_id
|
||||
|
||||
show: () ->
|
||||
$("#editor").show()
|
||||
|
||||
hide: () ->
|
||||
$("#editor").hide()
|
||||
|
||||
|
|
|
@ -13,11 +13,9 @@ define [
|
|||
constructor: (@ide) ->
|
||||
@project_id = window.userSettings.project_id
|
||||
@$el = $(@template)
|
||||
$("#editorWrapper").append(@$el)
|
||||
@hideEl()
|
||||
|
||||
@ide.editor.on "change:doc", () =>
|
||||
@hideEl()
|
||||
@ide.mainAreaManager.addArea
|
||||
identifier: "trackChanges"
|
||||
element: @$el
|
||||
|
||||
@ide.editor.on "resize", () =>
|
||||
@diffView?.resize()
|
||||
|
@ -58,10 +56,9 @@ define [
|
|||
if @diffView?
|
||||
@diffView.destroy()
|
||||
|
||||
@showEl()
|
||||
@ide.mainAreaManager.change "trackChanges"
|
||||
|
||||
hide: () ->
|
||||
@hideEl()
|
||||
@ide.fileTreeManager.openDoc(@doc_id)
|
||||
|
||||
autoSelectDiff: () ->
|
||||
|
@ -113,9 +110,7 @@ define [
|
|||
to = null
|
||||
|
||||
for change in @changes.models.slice(toIndex, fromIndex + 1)
|
||||
console.log "considering change"
|
||||
for doc in change.get("docs")
|
||||
console.log "considering doc", doc.id, doc_id
|
||||
if doc.id == doc_id
|
||||
if from? and to?
|
||||
from = Math.min(from, doc.fromV)
|
||||
|
@ -124,18 +119,9 @@ define [
|
|||
from = doc.fromV
|
||||
to = doc.toV
|
||||
break
|
||||
console.log "Done", from, to
|
||||
|
||||
return {from, to}
|
||||
|
||||
showEl: ->
|
||||
@ide.editor.hide()
|
||||
@$el.show()
|
||||
|
||||
hideEl: () ->
|
||||
@ide.editor.show()
|
||||
@$el.hide()
|
||||
|
||||
restore: (change) ->
|
||||
name = @ide.fileTreeManager.getNameOfEntityId(@doc_id)
|
||||
date = moment(change.get("start_ts")).format("Do MMM YYYY, h:mm:ss a")
|
||||
|
|
Loading…
Reference in a new issue