mirror of
https://github.com/atom/atom.git
synced 2026-04-06 03:02:13 -04:00
Serializing and deserializing closed pane items was turning into a pain with the new telepath changes that are phasing out this kind of on the fly serialization. Reopening by uri saves memory and simplifies panes enormously. If we want non-uri reopening we can revisit it later when telepath models are better integrated.
161 lines
4.0 KiB
CoffeeScript
161 lines
4.0 KiB
CoffeeScript
{$, View} = require './space-pen-extensions'
|
|
Pane = require './pane'
|
|
telepath = require 'telepath'
|
|
|
|
# Private: Manages the list of panes within a {WorkspaceView}
|
|
module.exports =
|
|
class PaneContainer extends View
|
|
atom.deserializers.add(this)
|
|
|
|
### Internal ###
|
|
@acceptsDocuments: true
|
|
|
|
@deserialize: (state) ->
|
|
container = new PaneContainer(state)
|
|
container.removeEmptyPanes()
|
|
container
|
|
|
|
@content: ->
|
|
@div class: 'panes'
|
|
|
|
initialize: (state) ->
|
|
if state instanceof telepath.Document
|
|
@state = state
|
|
@setRoot(atom.deserializers.deserialize(@state.get('root')))
|
|
else
|
|
@state = atom.site.createDocument(deserializer: 'PaneContainer')
|
|
|
|
@subscribe @state, 'changed', ({newValues, siteId}) =>
|
|
return if siteId is @state.siteId
|
|
if newValues.hasOwnProperty('root')
|
|
if rootState = newValues.root
|
|
@setRoot(deserialize(rootState))
|
|
else
|
|
@setRoot(null)
|
|
|
|
@subscribe this, 'pane:attached', (event, pane) =>
|
|
@triggerActiveItemChange() if @getActivePane() is pane
|
|
|
|
@subscribe this, 'pane:removed', (event, pane) =>
|
|
@triggerActiveItemChange() unless @getActivePane()?
|
|
|
|
@subscribe this, 'pane:became-active', =>
|
|
@triggerActiveItemChange()
|
|
|
|
@subscribe this, 'pane:active-item-changed', (event, item) =>
|
|
@triggerActiveItemChange() if @getActivePaneItem() is item
|
|
|
|
triggerActiveItemChange: ->
|
|
@trigger 'pane-container:active-pane-item-changed', [@getActivePaneItem()]
|
|
|
|
serialize: ->
|
|
state = @state.clone()
|
|
state.set('root', @getRoot()?.serialize())
|
|
state
|
|
|
|
getState: -> @state
|
|
|
|
### Public ###
|
|
|
|
focusNextPane: ->
|
|
panes = @getPanes()
|
|
if panes.length > 1
|
|
currentIndex = panes.indexOf(@getFocusedPane())
|
|
nextIndex = (currentIndex + 1) % panes.length
|
|
panes[nextIndex].focus()
|
|
true
|
|
else
|
|
false
|
|
|
|
focusPreviousPane: ->
|
|
panes = @getPanes()
|
|
if panes.length > 1
|
|
currentIndex = panes.indexOf(@getFocusedPane())
|
|
previousIndex = currentIndex - 1
|
|
previousIndex = panes.length - 1 if previousIndex < 0
|
|
panes[previousIndex].focus()
|
|
true
|
|
else
|
|
false
|
|
|
|
makeNextPaneActive: ->
|
|
panes = @getPanes()
|
|
currentIndex = panes.indexOf(@getActivePane())
|
|
nextIndex = (currentIndex + 1) % panes.length
|
|
panes[nextIndex].makeActive()
|
|
|
|
itemDestroyed: (item) ->
|
|
@trigger 'item-destroyed', item
|
|
|
|
getRoot: ->
|
|
@children().first().view()
|
|
|
|
setRoot: (root, {suppressPaneItemChangeEvents}={}) ->
|
|
@empty()
|
|
if root?
|
|
@append(root)
|
|
root.makeActive?()
|
|
@state.set(root: root?.getState())
|
|
|
|
removeChild: (child) ->
|
|
throw new Error("Removing non-existant child") unless @getRoot() is child
|
|
@setRoot(null)
|
|
@trigger 'pane:removed', [child] if child instanceof Pane
|
|
|
|
saveAll: ->
|
|
pane.saveItems() for pane in @getPanes()
|
|
|
|
confirmClose: ->
|
|
saved = true
|
|
for pane in @getPanes()
|
|
for item in pane.getItems()
|
|
if not pane.promptToSaveItem(item)
|
|
saved = false
|
|
break
|
|
saved
|
|
|
|
getPanes: ->
|
|
@find('.pane').views()
|
|
|
|
indexOfPane: (pane) ->
|
|
@getPanes().indexOf(pane.view())
|
|
|
|
paneAtIndex: (index) ->
|
|
@getPanes()[index]
|
|
|
|
eachPane: (callback) ->
|
|
callback(pane) for pane in @getPanes()
|
|
paneAttached = (e) -> callback($(e.target).view())
|
|
@on 'pane:attached', paneAttached
|
|
off: => @off 'pane:attached', paneAttached
|
|
|
|
getFocusedPane: ->
|
|
@find('.pane:has(:focus)').view()
|
|
|
|
getActivePane: ->
|
|
@find('.pane.active').view() ? @find('.pane:first').view()
|
|
|
|
getActivePaneItem: ->
|
|
@getActivePane()?.activeItem
|
|
|
|
getActiveView: ->
|
|
@getActivePane()?.activeView
|
|
|
|
paneForUri: (uri) ->
|
|
for pane in @getPanes()
|
|
view = pane.itemForUri(uri)
|
|
return pane if view?
|
|
null
|
|
|
|
adjustPaneDimensions: ->
|
|
if root = @getRoot()
|
|
root.css(width: '100%', height: '100%', top: 0, left: 0)
|
|
root.adjustDimensions()
|
|
|
|
removeEmptyPanes: ->
|
|
for pane in @getPanes() when pane.getItems().length == 0
|
|
pane.remove()
|
|
|
|
afterAttach: ->
|
|
@adjustPaneDimensions()
|