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 pathsystem-windows-panel.js
145 lines (130 loc) · 5.3 KB
/
system-windows-panel.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
133
134
135
136
137
138
139
140
141
142
143
144
145
/** @babel */
/** @jsx etch.dom */
import {WinShell, CompositeDisposable} from 'atom'
import etch from 'etch'
export default class SystemPanel {
constructor () {
etch.initialize(this)
this.subscriptions = new CompositeDisposable()
this.subscriptions.add(atom.commands.add(this.element, {
'core:move-up': () => { this.scrollUp() },
'core:move-down': () => { this.scrollDown() },
'core:page-up': () => { this.pageUp() },
'core:page-down': () => { this.pageDown() },
'core:move-to-top': () => { this.scrollToTop() },
'core:move-to-bottom': () => { this.scrollToBottom() }
}))
WinShell.fileHandler.isRegistered((i) => { this.refs.fileHandlerCheckbox.checked = i })
WinShell.fileContextMenu.isRegistered((i) => { this.refs.fileContextMenuCheckbox.checked = i })
WinShell.folderContextMenu.isRegistered((i) => { this.refs.folderContextMenuCheckbox.checked = i })
}
destroy () {
this.subscriptions.dispose()
return etch.destroy(this)
}
update () {}
render () {
return (
<div className='panels-item' tabIndex='0'>
<form className='general-panel section'>
<div className='settings-panel'>
<div className='section-container'>
<div className='block section-heading icon icon-device-desktop'>System Settings</div>
<div className='text icon icon-question'>These settings determine how Atom integrates with your operating system.</div>
<div className='section-body'>
<div className='control-group'>
<div className='controls'>
<div className='checkbox'>
<label for='system.windows.file-handler'>
<input
ref='fileHandlerCheckbox'
id='system.windows.file-handler'
className='input-checkbox'
type='checkbox'
onclick={(e) => { this.setRegistration(WinShell.fileHandler, e.target.checked) }} />
<div className='setting-title'>Register as file handler</div>
<div className='setting-description'>
Show {WinShell.appName} in the "Open with" application list for easy association with file types.
</div>
</label>
</div>
</div>
</div>
<div className='control-group'>
<div className='controls'>
<div className='checkbox'>
<label for='system.windows.shell-menu-files'>
<input
ref='fileContextMenuCheckbox'
id='system.windows.shell-menu-files'
className='input-checkbox'
type='checkbox'
onclick={(e) => { this.setRegistration(WinShell.fileContextMenu, e.target.checked) }} />
<div className='setting-title'>Show in file context menus</div>
<div className='setting-description'>
Add "Open with {WinShell.appName}" to the File Explorer context menu for files.
</div>
</label>
</div>
</div>
</div>
<div className='control-group'>
<div className='controls'>
<div className='checkbox'>
<label for='system.windows.shell-menu-folders'>
<input
ref='folderContextMenuCheckbox'
id='system.windows.shell-menu-folders'
className='input-checkbox'
type='checkbox'
onclick={(e) => {
this.setRegistration(WinShell.folderContextMenu, e.target.checked)
this.setRegistration(WinShell.folderBackgroundContextMenu, e.target.checked)
}} />
<div className='setting-title'>Show in folder context menus</div>
<div className='setting-description'>
Add "Open with {WinShell.appName}" to the File Explorer context menu for folders.
</div>
</label>
</div>
</div>
</div>
</div>
</div>
</div>
</form>
</div>
)
}
setRegistration (option, shouldBeRegistered) {
if (shouldBeRegistered) {
return option.register(function () {})
} else {
return option.deregister(function () {})
}
}
focus () {
this.element.focus()
}
show () {
this.element.style.display = ''
}
scrollUp () {
this.element.scrollTop -= document.body.offsetHeight / 20
}
scrollDown () {
this.element.scrollTop += document.body.offsetHeight / 20
}
pageUp () {
this.element.scrollTop -= this.element.offsetHeight
}
pageDown () {
this.element.scrollTop += this.element.offsetHeight
}
scrollToTop () {
this.element.scrollTop = 0
}
scrollToBottom () {
this.element.scrollTop = this.element.scrollHeight
}
}