mirror of
https://github.com/atom/atom.git
synced 2026-01-23 05:48:10 -05:00
683 lines
21 KiB
CoffeeScript
683 lines
21 KiB
CoffeeScript
crypto = require 'crypto'
|
|
ipc = require 'ipc'
|
|
os = require 'os'
|
|
path = require 'path'
|
|
remote = require 'remote'
|
|
screen = require 'screen'
|
|
shell = require 'shell'
|
|
|
|
_ = require 'underscore-plus'
|
|
{deprecate} = require 'grim'
|
|
{Model} = require 'theorist'
|
|
fs = require 'fs-plus'
|
|
|
|
{$} = require './space-pen-extensions'
|
|
WindowEventHandler = require './window-event-handler'
|
|
|
|
# Essential: Atom global for dealing with packages, themes, menus, and the window.
|
|
#
|
|
# An instance of this class is always available as the `atom` global.
|
|
module.exports =
|
|
class Atom extends Model
|
|
@version: 1 # Increment this when the serialization format changes
|
|
|
|
# Load or create the Atom environment in the given mode.
|
|
#
|
|
# * `mode` A {String} mode that is either 'editor' or 'spec' depending on the
|
|
# kind of environment you want to build.
|
|
#
|
|
# Returns an Atom instance, fully initialized
|
|
@loadOrCreate: (mode) ->
|
|
@deserialize(@loadState(mode)) ? new this({mode, @version})
|
|
|
|
# Deserializes the Atom environment from a state object
|
|
@deserialize: (state) ->
|
|
new this(state) if state?.version is @version
|
|
|
|
# Loads and returns the serialized state corresponding to this window
|
|
# if it exists; otherwise returns undefined.
|
|
@loadState: (mode) ->
|
|
statePath = @getStatePath(mode)
|
|
|
|
if fs.existsSync(statePath)
|
|
try
|
|
stateString = fs.readFileSync(statePath, 'utf8')
|
|
catch error
|
|
console.warn "Error reading window state: #{statePath}", error.stack, error
|
|
else
|
|
stateString = @getLoadSettings().windowState
|
|
|
|
try
|
|
JSON.parse(stateString) if stateString?
|
|
catch error
|
|
console.warn "Error parsing window state: #{statePath} #{error.stack}", error
|
|
|
|
# Returns the path where the state for the current window will be
|
|
# located if it exists.
|
|
@getStatePath: (mode) ->
|
|
switch mode
|
|
when 'spec'
|
|
filename = 'spec'
|
|
when 'editor'
|
|
{initialPath} = @getLoadSettings()
|
|
if initialPath
|
|
sha1 = crypto.createHash('sha1').update(initialPath).digest('hex')
|
|
filename = "editor-#{sha1}"
|
|
|
|
if filename
|
|
path.join(@getStorageDirPath(), filename)
|
|
else
|
|
null
|
|
|
|
# Get the directory path to Atom's configuration area.
|
|
#
|
|
# Returns the absolute path to ~/.atom
|
|
@getConfigDirPath: ->
|
|
@configDirPath ?= fs.absolute('~/.atom')
|
|
|
|
# Get the path to Atom's storage directory.
|
|
#
|
|
# Returns the absolute path to ~/.atom/storage
|
|
@getStorageDirPath: ->
|
|
@storageDirPath ?= path.join(@getConfigDirPath(), 'storage')
|
|
|
|
# Returns the load settings hash associated with the current window.
|
|
@getLoadSettings: ->
|
|
@loadSettings ?= JSON.parse(decodeURIComponent(location.search.substr(14)))
|
|
cloned = _.deepClone(@loadSettings)
|
|
# The loadSettings.windowState could be large, request it only when needed.
|
|
cloned.__defineGetter__ 'windowState', =>
|
|
@getCurrentWindow().loadSettings.windowState
|
|
cloned.__defineSetter__ 'windowState', (value) =>
|
|
@getCurrentWindow().loadSettings.windowState = value
|
|
cloned
|
|
|
|
@getCurrentWindow: ->
|
|
remote.getCurrentWindow()
|
|
|
|
workspaceViewParentSelector: 'body'
|
|
lastUncaughtError: null
|
|
|
|
###
|
|
Section: Properties
|
|
###
|
|
|
|
# Public: A {Clipboard} instance
|
|
clipboard: null
|
|
|
|
# Public: A {Config} instance
|
|
config: null
|
|
|
|
# Public: A {ContextMenuManager} instance
|
|
contextMenu: null
|
|
|
|
# A {DeserializerManager} instance
|
|
deserializers: null
|
|
|
|
# Public: A {KeymapManager} instance
|
|
keymaps: null
|
|
|
|
# Public: A {MenuManager} instance
|
|
menu: null
|
|
|
|
# Public: A {PackageManager} instance
|
|
packages: null
|
|
|
|
# Public: A {Project} instance
|
|
project: null
|
|
|
|
# Public: A {Syntax} instance
|
|
syntax: null
|
|
|
|
# Public: A {ThemeManager} instance
|
|
themes: null
|
|
|
|
# Public: A {Workspace} instance
|
|
workspace: null
|
|
|
|
# Public: A {WorkspaceView} instance
|
|
workspaceView: null
|
|
|
|
###
|
|
Section: Construction and Destruction
|
|
###
|
|
|
|
# Call .loadOrCreate instead
|
|
constructor: (@state) ->
|
|
{@mode} = @state
|
|
DeserializerManager = require './deserializer-manager'
|
|
@deserializers = new DeserializerManager()
|
|
|
|
# Sets up the basic services that should be available in all modes
|
|
# (both spec and application).
|
|
#
|
|
# Call after this instance has been assigned to the `atom` global.
|
|
initialize: ->
|
|
window.onerror = =>
|
|
@openDevTools()
|
|
@executeJavaScriptInDevTools('InspectorFrontendAPI.showConsole()')
|
|
@lastUncaughtError = Array::slice.call(arguments)
|
|
@emit 'uncaught-error', arguments...
|
|
|
|
@unsubscribe()
|
|
@setBodyPlatformClass()
|
|
|
|
@loadTime = null
|
|
|
|
Config = require './config'
|
|
KeymapManager = require './keymap-extensions'
|
|
PackageManager = require './package-manager'
|
|
Clipboard = require './clipboard'
|
|
Syntax = require './syntax'
|
|
ThemeManager = require './theme-manager'
|
|
ContextMenuManager = require './context-menu-manager'
|
|
MenuManager = require './menu-manager'
|
|
{devMode, safeMode, resourcePath} = @getLoadSettings()
|
|
configDirPath = @getConfigDirPath()
|
|
|
|
# Add 'exports' to module search path.
|
|
exportsPath = path.join(resourcePath, 'exports')
|
|
require('module').globalPaths.push(exportsPath)
|
|
# Still set NODE_PATH since tasks may need it.
|
|
process.env.NODE_PATH = exportsPath
|
|
|
|
# Make react.js faster
|
|
process.env.NODE_ENV ?= 'production' unless devMode
|
|
|
|
@config = new Config({configDirPath, resourcePath})
|
|
@keymaps = new KeymapManager({configDirPath, resourcePath})
|
|
@keymap = @keymaps # Deprecated
|
|
@packages = new PackageManager({devMode, configDirPath, resourcePath, safeMode})
|
|
@themes = new ThemeManager({packageManager: @packages, configDirPath, resourcePath, safeMode})
|
|
@contextMenu = new ContextMenuManager({resourcePath, devMode})
|
|
@menu = new MenuManager({resourcePath})
|
|
@clipboard = new Clipboard()
|
|
|
|
@syntax = @deserializers.deserialize(@state.syntax) ? new Syntax()
|
|
|
|
@subscribe @packages.onDidActivateAll => @watchThemes()
|
|
|
|
Project = require './project'
|
|
TextBuffer = require 'text-buffer'
|
|
@deserializers.add(TextBuffer)
|
|
TokenizedBuffer = require './tokenized-buffer'
|
|
DisplayBuffer = require './display-buffer'
|
|
Editor = require './editor'
|
|
|
|
@windowEventHandler = new WindowEventHandler
|
|
|
|
###
|
|
Section: Atom Metadata
|
|
###
|
|
|
|
# Public: Is the current window in development mode?
|
|
inDevMode: ->
|
|
@getLoadSettings().devMode
|
|
|
|
# Public: Is the current window running specs?
|
|
inSpecMode: ->
|
|
@getLoadSettings().isSpec
|
|
|
|
# Public: Get the version of the Atom application.
|
|
#
|
|
# Returns the version text {String}.
|
|
getVersion: ->
|
|
@appVersion ?= @getLoadSettings().appVersion
|
|
|
|
# Public: Determine whether the current version is an official release.
|
|
isReleasedVersion: ->
|
|
not /\w{7}/.test(@getVersion()) # Check if the release is a 7-character SHA prefix
|
|
|
|
# Public: Get the directory path to Atom's configuration area.
|
|
#
|
|
# Returns the absolute path to `~/.atom`.
|
|
getConfigDirPath: ->
|
|
@constructor.getConfigDirPath()
|
|
|
|
# Public: Get the load settings for the current window.
|
|
#
|
|
# Returns an {Object} containing all the load setting key/value pairs.
|
|
getLoadSettings: ->
|
|
@constructor.getLoadSettings()
|
|
|
|
# Public: Get the time taken to completely load the current window.
|
|
#
|
|
# This time include things like loading and activating packages, creating
|
|
# DOM elements for the editor, and reading the config.
|
|
#
|
|
# Returns the {Number} of milliseconds taken to load the window or null
|
|
# if the window hasn't finished loading yet.
|
|
getWindowLoadTime: ->
|
|
@loadTime
|
|
|
|
###
|
|
Section: Managing The Atom Window
|
|
###
|
|
|
|
# Public: Get the current window
|
|
getCurrentWindow: ->
|
|
@constructor.getCurrentWindow()
|
|
|
|
# Public: Get the size of current window.
|
|
#
|
|
# Returns an {Object} in the format `{width: 1000, height: 700}`
|
|
getSize: ->
|
|
[width, height] = @getCurrentWindow().getSize()
|
|
{width, height}
|
|
|
|
# Public: Set the size of current window.
|
|
#
|
|
# * `width` The {Number} of pixels.
|
|
# * `height` The {Number} of pixels.
|
|
setSize: (width, height) ->
|
|
@getCurrentWindow().setSize(width, height)
|
|
|
|
# Public: Get the position of current window.
|
|
#
|
|
# Returns an {Object} in the format `{x: 10, y: 20}`
|
|
getPosition: ->
|
|
[x, y] = @getCurrentWindow().getPosition()
|
|
{x, y}
|
|
|
|
# Public: Set the position of current window.
|
|
#
|
|
# * `x` The {Number} of pixels.
|
|
# * `y` The {Number} of pixels.
|
|
setPosition: (x, y) ->
|
|
ipc.send('call-window-method', 'setPosition', x, y)
|
|
|
|
# Public: Move current window to the center of the screen.
|
|
center: ->
|
|
ipc.send('call-window-method', 'center')
|
|
|
|
# Public: Focus the current window.
|
|
focus: ->
|
|
ipc.send('call-window-method', 'focus')
|
|
$(window).focus()
|
|
|
|
# Public: Show the current window.
|
|
show: ->
|
|
ipc.send('call-window-method', 'show')
|
|
|
|
# Public: Hide the current window.
|
|
hide: ->
|
|
ipc.send('call-window-method', 'hide')
|
|
|
|
# Public: Close the current window.
|
|
close: ->
|
|
@getCurrentWindow().close()
|
|
|
|
# Public: Reload the current window.
|
|
reload: ->
|
|
ipc.send('call-window-method', 'restart')
|
|
|
|
# Public: Returns a {Boolean} true when the current window is maximized.
|
|
isMaximixed: ->
|
|
@getCurrentWindow().isMaximized()
|
|
|
|
maximize: ->
|
|
ipc.send('call-window-method', 'maximize')
|
|
|
|
# Public: Is the current window in full screen mode?
|
|
isFullScreen: ->
|
|
@getCurrentWindow().isFullScreen()
|
|
|
|
# Public: Set the full screen state of the current window.
|
|
setFullScreen: (fullScreen=false) ->
|
|
ipc.send('call-window-method', 'setFullScreen', fullScreen)
|
|
if fullScreen then document.body.classList.add("fullscreen") else document.body.classList.remove("fullscreen")
|
|
|
|
# Public: Toggle the full screen state of the current window.
|
|
toggleFullScreen: ->
|
|
@setFullScreen(!@isFullScreen())
|
|
|
|
# Schedule the window to be shown and focused on the next tick.
|
|
#
|
|
# This is done in a next tick to prevent a white flicker from occurring
|
|
# if called synchronously.
|
|
displayWindow: ({maximize}={}) ->
|
|
setImmediate =>
|
|
@show()
|
|
@focus()
|
|
@setFullScreen(true) if @workspace.fullScreen
|
|
@maximize() if maximize
|
|
|
|
# Get the dimensions of this window.
|
|
#
|
|
# Returns an {Object} with the following keys:
|
|
# * `x` The window's x-position {Number}.
|
|
# * `y` The window's y-position {Number}.
|
|
# * `width` The window's width {Number}.
|
|
# * `height` The window's height {Number}.
|
|
getWindowDimensions: ->
|
|
browserWindow = @getCurrentWindow()
|
|
[x, y] = browserWindow.getPosition()
|
|
[width, height] = browserWindow.getSize()
|
|
maximized = browserWindow.isMaximized()
|
|
{x, y, width, height, maximized}
|
|
|
|
# Set the dimensions of the window.
|
|
#
|
|
# The window will be centered if either the x or y coordinate is not set
|
|
# in the dimensions parameter. If x or y are omitted the window will be
|
|
# centered. If height or width are omitted only the position will be changed.
|
|
#
|
|
# * `dimensions` An {Object} with the following keys:
|
|
# * `x` The new x coordinate.
|
|
# * `y` The new y coordinate.
|
|
# * `width` The new width.
|
|
# * `height` The new height.
|
|
setWindowDimensions: ({x, y, width, height}) ->
|
|
if width? and height?
|
|
@setSize(width, height)
|
|
if x? and y?
|
|
@setPosition(x, y)
|
|
else
|
|
@center()
|
|
|
|
# Returns true if the dimensions are useable, false if they should be ignored.
|
|
# Work around for https://github.com/atom/atom-shell/issues/473
|
|
isValidDimensions: ({x, y, width, height}={}) ->
|
|
width > 0 and height > 0 and x + width > 0 and y + height > 0
|
|
|
|
storeDefaultWindowDimensions: ->
|
|
dimensions = @getWindowDimensions()
|
|
if @isValidDimensions(dimensions)
|
|
localStorage.setItem("defaultWindowDimensions", JSON.stringify(dimensions))
|
|
|
|
getDefaultWindowDimensions: ->
|
|
{windowDimensions} = @getLoadSettings()
|
|
return windowDimensions if windowDimensions?
|
|
|
|
dimensions = null
|
|
try
|
|
dimensions = JSON.parse(localStorage.getItem("defaultWindowDimensions"))
|
|
catch error
|
|
console.warn "Error parsing default window dimensions", error
|
|
localStorage.removeItem("defaultWindowDimensions")
|
|
|
|
if @isValidDimensions(dimensions)
|
|
dimensions
|
|
else
|
|
{width, height} = screen.getPrimaryDisplay().workAreaSize
|
|
{x: 0, y: 0, width: Math.min(1024, width), height}
|
|
|
|
restoreWindowDimensions: ->
|
|
dimensions = @state.windowDimensions
|
|
unless @isValidDimensions(dimensions)
|
|
dimensions = @getDefaultWindowDimensions()
|
|
@setWindowDimensions(dimensions)
|
|
dimensions
|
|
|
|
storeWindowDimensions: ->
|
|
dimensions = @getWindowDimensions()
|
|
@state.windowDimensions = dimensions if @isValidDimensions(dimensions)
|
|
|
|
|
|
|
|
|
|
|
|
deserializeProject: ->
|
|
Project = require './project'
|
|
|
|
startTime = Date.now()
|
|
@project ?= @deserializers.deserialize(@state.project) ? new Project(path: @getLoadSettings().initialPath)
|
|
@deserializeTimings.project = Date.now() - startTime
|
|
|
|
deserializeWorkspaceView: ->
|
|
Workspace = require './workspace'
|
|
WorkspaceView = require './workspace-view'
|
|
|
|
startTime = Date.now()
|
|
@workspace = Workspace.deserialize(@state.workspace) ? new Workspace
|
|
@workspaceView = new WorkspaceView(@workspace)
|
|
@deserializeTimings.workspace = Date.now() - startTime
|
|
|
|
@keymaps.defaultTarget = @workspaceView[0]
|
|
$(@workspaceViewParentSelector).append(@workspaceView)
|
|
|
|
deserializePackageStates: ->
|
|
@packages.packageStates = @state.packageStates ? {}
|
|
delete @state.packageStates
|
|
|
|
deserializeEditorWindow: ->
|
|
@deserializeTimings = {}
|
|
@deserializePackageStates()
|
|
@deserializeProject()
|
|
@deserializeWorkspaceView()
|
|
|
|
# Call this method when establishing a real application window.
|
|
startEditorWindow: ->
|
|
{resourcePath, safeMode} = @getLoadSettings()
|
|
|
|
CommandInstaller = require './command-installer'
|
|
CommandInstaller.installAtomCommand resourcePath, false, (error) ->
|
|
console.warn error.message if error?
|
|
CommandInstaller.installApmCommand resourcePath, false, (error) ->
|
|
console.warn error.message if error?
|
|
|
|
dimensions = @restoreWindowDimensions()
|
|
@config.load()
|
|
@config.setDefaults('core', require('./workspace-view').configDefaults)
|
|
@config.setDefaults('editor', require('./editor-view').configDefaults)
|
|
@keymaps.loadBundledKeymaps()
|
|
@themes.loadBaseStylesheets()
|
|
@packages.loadPackages()
|
|
@deserializeEditorWindow()
|
|
|
|
@watchProjectPath()
|
|
|
|
@packages.activate()
|
|
@keymaps.loadUserKeymap()
|
|
@requireUserInitScript() unless safeMode
|
|
@menu.update()
|
|
|
|
maximize = dimensions?.maximized and process.platform isnt 'darwin'
|
|
@displayWindow({maximize})
|
|
|
|
unloadEditorWindow: ->
|
|
return if not @project and not @workspaceView
|
|
|
|
@state.syntax = @syntax.serialize()
|
|
@state.project = @project.serialize()
|
|
@state.workspace = @workspace.serialize()
|
|
@packages.deactivatePackages()
|
|
@state.packageStates = @packages.packageStates
|
|
@saveSync()
|
|
@windowState = null
|
|
|
|
removeEditorWindow: ->
|
|
return if not @project and not @workspaceView
|
|
|
|
@workspaceView?.remove()
|
|
@workspaceView = null
|
|
@project?.destroy()
|
|
@project = null
|
|
|
|
@windowEventHandler?.unsubscribe()
|
|
|
|
loadThemes: ->
|
|
@themes.load()
|
|
|
|
watchThemes: ->
|
|
@themes.onDidReloadAll =>
|
|
# Only reload stylesheets from non-theme packages
|
|
for pack in @packages.getActivePackages() when pack.getType() isnt 'theme'
|
|
pack.reloadStylesheets?()
|
|
null
|
|
|
|
# Notify the browser project of the window's current project path
|
|
watchProjectPath: ->
|
|
onProjectPathChanged = =>
|
|
ipc.send('window-command', 'project-path-changed', @project.getPath())
|
|
@subscribe @project, 'path-changed', onProjectPathChanged
|
|
onProjectPathChanged()
|
|
|
|
# Public: Open a new Atom window using the given options.
|
|
#
|
|
# Calling this method without an options parameter will open a prompt to pick
|
|
# a file/folder to open in the new window.
|
|
#
|
|
# * `options` An {Object} with the following keys:
|
|
# * `pathsToOpen` An {Array} of {String} paths to open.
|
|
# * `newWindow` A {Boolean}, true to always open a new window instead of
|
|
# reusing existing windows depending on the paths to open.
|
|
# * `devMode` A {Boolean}, true to open the window in development mode.
|
|
# Development mode loads the Atom source from the locally cloned
|
|
# repository and also loads all the packages in ~/.atom/dev/packages
|
|
# * `safeMode` A {Boolean}, true to open the window in safe mode. Safe
|
|
# mode prevents all packages installed to ~/.atom/packages from loading.
|
|
open: (options) ->
|
|
ipc.send('open', options)
|
|
|
|
# Public: Open a confirm dialog.
|
|
#
|
|
# ## Examples
|
|
#
|
|
# ```coffee
|
|
# atom.confirm
|
|
# message: 'How you feeling?'
|
|
# detailedMessage: 'Be honest.'
|
|
# buttons:
|
|
# Good: -> window.alert('good to hear')
|
|
# Bad: -> window.alert('bummer')
|
|
# ```
|
|
#
|
|
# * `options` An {Object} with the following keys:
|
|
# * `message` The {String} message to display.
|
|
# * `detailedMessage` The {String} detailed message to display.
|
|
# * `buttons` Either an array of strings or an object where keys are
|
|
# button names and the values are callbacks to invoke when clicked.
|
|
#
|
|
# Returns the chosen button index {Number} if the buttons option was an array.
|
|
confirm: ({message, detailedMessage, buttons}={}) ->
|
|
buttons ?= {}
|
|
if _.isArray(buttons)
|
|
buttonLabels = buttons
|
|
else
|
|
buttonLabels = Object.keys(buttons)
|
|
|
|
dialog = remote.require('dialog')
|
|
chosen = dialog.showMessageBox @getCurrentWindow(),
|
|
type: 'info'
|
|
message: message
|
|
detail: detailedMessage
|
|
buttons: buttonLabels
|
|
|
|
if _.isArray(buttons)
|
|
chosen
|
|
else
|
|
callback = buttons[buttonLabels[chosen]]
|
|
callback?()
|
|
|
|
showSaveDialog: (callback) ->
|
|
callback(showSaveDialogSync())
|
|
|
|
showSaveDialogSync: (defaultPath) ->
|
|
defaultPath ?= @project?.getPath()
|
|
currentWindow = @getCurrentWindow()
|
|
dialog = remote.require('dialog')
|
|
dialog.showSaveDialog currentWindow, {title: 'Save File', defaultPath}
|
|
|
|
|
|
###
|
|
Section: Managing the Dev Tools
|
|
###
|
|
|
|
# Public: Open the dev tools for the current window.
|
|
openDevTools: ->
|
|
ipc.send('call-window-method', 'openDevTools')
|
|
|
|
# Public: Toggle the visibility of the dev tools for the current window.
|
|
toggleDevTools: ->
|
|
ipc.send('call-window-method', 'toggleDevTools')
|
|
|
|
# Public: Execute code in dev tools.
|
|
executeJavaScriptInDevTools: (code) ->
|
|
ipc.send('call-window-method', 'executeJavaScriptInDevTools', code)
|
|
|
|
|
|
|
|
exit: (status) ->
|
|
app = remote.require('app')
|
|
app.emit('will-exit')
|
|
remote.process.exit(status)
|
|
|
|
setDocumentEdited: (edited) ->
|
|
ipc.send('call-window-method', 'setDocumentEdited', edited)
|
|
|
|
setRepresentedFilename: (filename) ->
|
|
ipc.send('call-window-method', 'setRepresentedFilename', filename)
|
|
|
|
|
|
saveSync: ->
|
|
stateString = JSON.stringify(@state)
|
|
if statePath = @constructor.getStatePath(@mode)
|
|
fs.writeFileSync(statePath, stateString, 'utf8')
|
|
else
|
|
@getCurrentWindow().loadSettings.windowState = stateString
|
|
|
|
# Public: Get the time taken to completely load the current window.
|
|
#
|
|
# This time include things like loading and activating packages, creating
|
|
# DOM elements for the editor, and reading the config.
|
|
#
|
|
# Returns the {Number} of milliseconds taken to load the window or null
|
|
# if the window hasn't finished loading yet.
|
|
getWindowLoadTime: ->
|
|
@loadTime
|
|
|
|
crashMainProcess: ->
|
|
remote.process.crash()
|
|
|
|
crashRenderProcess: ->
|
|
process.crash()
|
|
|
|
# Public: Visually and audibly trigger a beep.
|
|
beep: ->
|
|
shell.beep() if @config.get('core.audioBeep')
|
|
@workspaceView.trigger 'beep'
|
|
|
|
getUserInitScriptPath: ->
|
|
initScriptPath = fs.resolve(@getConfigDirPath(), 'init', ['js', 'coffee'])
|
|
initScriptPath ? path.join(@getConfigDirPath(), 'init.coffee')
|
|
|
|
requireUserInitScript: ->
|
|
if userInitScriptPath = @getUserInitScriptPath()
|
|
try
|
|
require(userInitScriptPath) if fs.isFileSync(userInitScriptPath)
|
|
catch error
|
|
console.error "Failed to load `#{userInitScriptPath}`", error.stack, error
|
|
|
|
# Public: Require the module with the given globals.
|
|
#
|
|
# The globals will be set on the `window` object and removed after the
|
|
# require completes.
|
|
#
|
|
# * `id` The {String} module name or path.
|
|
# * `globals` An optinal {Object} to set as globals during require.
|
|
requireWithGlobals: (id, globals={}) ->
|
|
existingGlobals = {}
|
|
for key, value of globals
|
|
existingGlobals[key] = window[key]
|
|
window[key] = value
|
|
|
|
require(id)
|
|
|
|
for key, value of existingGlobals
|
|
if value is undefined
|
|
delete window[key]
|
|
else
|
|
window[key] = value
|
|
|
|
# Deprecated: Callers should be converted to use atom.deserializers
|
|
registerRepresentationClass: ->
|
|
deprecate("Callers should be converted to use atom.deserializers")
|
|
|
|
# Deprecated: Callers should be converted to use atom.deserializers
|
|
registerRepresentationClasses: ->
|
|
deprecate("Callers should be converted to use atom.deserializers")
|
|
|
|
setBodyPlatformClass: ->
|
|
document.body.classList.add("platform-#{process.platform}")
|