This repository was archived by the owner on Dec 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 276
/
Copy pathmain.js
132 lines (113 loc) · 4.75 KB
/
main.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
let SettingsView = null
let settingsView = null
let statusView = null
const PackageManager = require('./package-manager')
let packageManager = null
const SnippetsProvider = {
getSnippets () { return atom.config.scopedSettingsStore.propertySets }
}
const CONFIG_URI = 'atom://config'
module.exports = {
handleURI (parsed) {
switch (parsed.pathname) {
case '/show-package': this.showPackage(parsed.query.package)
}
},
showPackage (packageName) {
atom.workspace.open(`atom://config/packages/${packageName}`)
},
activate () {
atom.workspace.addOpener(uri => {
if (uri.startsWith(CONFIG_URI)) {
if (settingsView == null || settingsView.destroyed) {
settingsView = this.createSettingsView({uri})
} else {
const pane = atom.workspace.paneForItem(settingsView)
if (pane) pane.activate()
}
settingsView.showPanelForURI(uri)
return settingsView
}
})
atom.commands.add('atom-workspace', {
'settings-view:open' () { atom.workspace.open(CONFIG_URI) },
'settings-view:core' () { atom.workspace.open(`${CONFIG_URI}/core`) },
'settings-view:editor' () { atom.workspace.open(`${CONFIG_URI}/editor`) },
'settings-view:show-keybindings' () { atom.workspace.open(`${CONFIG_URI}/keybindings`) },
'settings-view:change-themes' () { atom.workspace.open(`${CONFIG_URI}/themes`) },
'settings-view:install-packages-and-themes' () { atom.workspace.open(`${CONFIG_URI}/install`) },
'settings-view:view-installed-themes' () { atom.workspace.open(`${CONFIG_URI}/themes`) },
'settings-view:uninstall-themes' () { atom.workspace.open(`${CONFIG_URI}/themes`) },
'settings-view:view-installed-packages' () { atom.workspace.open(`${CONFIG_URI}/packages`) },
'settings-view:uninstall-packages' () { atom.workspace.open(`${CONFIG_URI}/packages`) },
'settings-view:check-for-package-updates' () { atom.workspace.open(`${CONFIG_URI}/updates`) }
})
if (process.platform === 'win32' && require('atom').WinShell != null) {
atom.commands.add('atom-workspace', {'settings-view:system' () { atom.workspace.open(`${CONFIG_URI}/system`) }})
}
if (!localStorage.getItem('hasSeenDeprecatedNotification')) {
if (packageManager == null) packageManager = new PackageManager()
packageManager.getInstalled().then(packages => {
if (packages.user && packages.user.length) this.showDeprecatedNotification(packages)
})
}
},
deactivate () {
if (settingsView) settingsView.destroy()
if (statusView) statusView.destroy()
settingsView = null
packageManager = null
statusView = null
},
consumeStatusBar (statusBar) {
if (packageManager == null) packageManager = new PackageManager()
packageManager.getOutdated().then(updates => {
if (packageManager) {
const PackageUpdatesStatusView = require('./package-updates-status-view')
statusView = new PackageUpdatesStatusView()
statusView.initialize(statusBar, packageManager, updates)
}
})
},
consumeSnippets (snippets) {
if (typeof snippets.getUnparsedSnippets === 'function') {
SnippetsProvider.getSnippets = snippets.getUnparsedSnippets.bind(snippets)
}
if (typeof snippets.getUserSnippetsPath === 'function') {
SnippetsProvider.getUserSnippetsPath = snippets.getUserSnippetsPath.bind(snippets)
}
},
createSettingsView (params) {
if (SettingsView == null) SettingsView = require('./settings-view')
if (packageManager == null) packageManager = new PackageManager()
params.packageManager = packageManager
params.snippetsProvider = SnippetsProvider
settingsView = new SettingsView(params)
return settingsView
},
showDeprecatedNotification (packages) {
localStorage.setItem('hasSeenDeprecatedNotification', true)
const deprecatedPackages = packages.user.filter(({name, version}) => atom.packages.isDeprecatedPackage(name, version))
if (!deprecatedPackages.length) return
let were = 'were'
let have = 'have'
let packageText = 'packages'
if (packages.length === 1) {
packageText = 'package'
were = 'was'
have = 'has'
}
const notification = atom.notifications.addWarning(`${deprecatedPackages.length} ${packageText} ${have} deprecations and ${were} not loaded.`, {
description: 'This message will show only one time. Deprecated packages can be viewed in the settings view.',
detail: (deprecatedPackages.map(pack => pack.name)).join(', '),
dismissable: true,
buttons: [{
text: 'View Deprecated Packages',
onDidClick () {
atom.commands.dispatch(atom.views.getView(atom.workspace), 'settings-view:view-installed-packages')
notification.dismiss()
}
}]
})
}
}