]> git.gir.st - VimFx.git/blob - extension/bootstrap.coffee
Remove unnecessary semi-colons
[VimFx.git] / extension / bootstrap.coffee
1 "use strict"
2
3 { utils: Cu, classes: Cc, interfaces: Ci } = Components
4
5 Cu.import "resource://gre/modules/Services.jsm"
6 Cu.import "resource://gre/modules/AddonManager.jsm"
7
8 # Populate the global namespace with console, require, and include
9 do (global = this) ->
10 baseURI = Services.io.newURI __SCRIPT_URI_SPEC__, null, null
11 getResourceURI = (path) -> Services.io.newURI path, null, baseURI
12
13 loader = Cc["@mozilla.org/moz/jssubscript-loader;1"].getService(Ci.mozIJSSubScriptLoader)
14
15 include = (src, scope = {}) ->
16 try
17 uri = getResourceURI src
18 loader.loadSubScript uri.spec, scope
19 catch error
20 dump "Failed to load #{ src }: #{ error }\n"
21
22 return scope
23
24
25 modules = {}
26 require = (src) ->
27 if modules[src]
28 return modules[src]
29 else
30 scope =
31 require: require
32 include: include
33 exports: {}
34
35 include "packages/#{ src }.js", scope
36
37 return modules[src] = scope.exports
38
39 global.include = include
40 global.require = require
41 global.getResourceURI = getResourceURI
42 global.regexpEscape = (s) -> s and s.replace(/[-\/\\^$*+?.()|[\]{}]/g, '\\$&')
43
44 # Include into global scope
45 include("includes/#{ name }.js", global) for name in [
46 'chrome',
47 'console',
48 'unload',
49 ]
50
51 # Init localization `underscore` method
52 global._ = require('l10n').l10n "vimfx.properties"
53
54 # Requires for startup/install
55 { loadCss } = require 'utils'
56 { addEventListeners } = require 'events'
57 { getPref } = require 'prefs'
58 { setButtonInstallPosition
59 , addToolbarButton } = require 'button'
60 { watchWindows } = require 'window-utils'
61
62 # Firefox will call this method on startup/enabling
63 global.startup = (data, reason) ->
64
65 if reason == ADDON_INSTALL
66 # Position the toolbar button right before the default Bookmarks button
67 # If Bookmarks button is hidden - then VimFx button will be appended to the toolbar
68 setButtonInstallPosition 'nav-bar', 'bookmarks-menu-button-container'
69
70 loadCss 'style'
71
72 watchWindows addEventListeners, 'navigator:browser'
73 watchWindows addToolbarButton, 'navigator:browser'
74
75 # Firefox will call this method on shutdown/disabling
76 global.shutdown = (data, reason) ->
77 # Don't bother to clean up if the browser is shutting down
78 if reason != APP_SHUTDOWN
79 unload()
80
81 global.install = (data, reason) ->
82
83 global.uninstall = (data, reason) ->
84
Imprint / Impressum