-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathsplit-diff.coffee
575 lines (501 loc) · 22.2 KB
/
split-diff.coffee
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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
{CompositeDisposable, Directory, File} = require 'atom'
DiffView = require './diff-view'
FooterView = require './ui/footer-view'
SyncScroll = require './sync-scroll'
StyleCalculator = require './style-calculator'
configSchema = require './config-schema'
path = require 'path'
module.exports = SplitDiff =
diffView: null
config: configSchema
subscriptions: null
editorSubscriptions: null
lineEndingSubscription: null
contextMenuSubscriptions: null
isEnabled: false
wasEditor1Created: false
wasEditor2Created: false
wasEditor1SoftWrapped: false
wasEditor2SoftWrapped: false
hasGitRepo: false
docksToReopen: {left: false, right: false, bottom: false}
process: null
splitDiffResolves: []
options: {}
activate: (state) ->
@contextForService = this
styleCalculator = new StyleCalculator(atom.styles, atom.config)
styleCalculator.startWatching(
'split-diff-custom-styles',
['split-diff.colors.addedColor', 'split-diff.colors.removedColor'],
(config) ->
addedColor = config.get('split-diff.colors.addedColor')
addedColor.alpha = 0.4
addedWordColor = addedColor
addedWordColor.alpha = 0.5
removedColor = config.get('split-diff.colors.removedColor')
removedColor.alpha = 0.4
removedWordColor = removedColor
removedWordColor.alpha = 0.5
"\n
.split-diff-added-custom {\n
\tbackground-color: #{addedColor.toRGBAString()};\n
}\n
.split-diff-removed-custom {\n
\tbackground-color: #{removedColor.toRGBAString()};\n
}\n
.split-diff-word-added-custom .region {\n
\tbackground-color: #{addedWordColor.toRGBAString()};\n
}\n
.split-diff-word-removed-custom .region {\n
\tbackground-color: #{removedWordColor.toRGBAString()};\n
}\n"
)
@subscriptions = new CompositeDisposable()
@subscriptions.add atom.commands.add 'atom-workspace, .tree-view .selected, .tab.texteditor',
'split-diff:enable': (e) =>
@diffPanes(e)
e.stopPropagation()
'split-diff:next-diff': =>
if @isEnabled
@nextDiff()
else
@diffPanes()
'split-diff:prev-diff': =>
if @isEnabled
@prevDiff()
else
@diffPanes()
'split-diff:copy-to-right': =>
if @isEnabled
@copyToRight()
'split-diff:copy-to-left': =>
if @isEnabled
@copyToLeft()
'split-diff:disable': => @disable()
'split-diff:set-ignore-whitespace': => @toggleIgnoreWhitespace()
'split-diff:set-auto-diff': => @toggleAutoDiff()
'split-diff:toggle': => @toggle()
deactivate: ->
@disable()
@subscriptions.dispose()
# called by "toggle" command
# toggles split diff
toggle: () ->
if @isEnabled
@disable()
else
@diffPanes()
# called by "Disable" command
# removes diff and sync scroll, disposes of subscriptions
disable: () ->
@isEnabled = false
# remove listeners
if @editorSubscriptions?
@editorSubscriptions.dispose()
@editorSubscriptions = null
if @contextMenuSubscriptions?
@contextMenuSubscriptions.dispose()
@contextMenuSubscriptions = null
if @lineEndingSubscription?
@lineEndingSubscription.dispose()
@lineEndingSubscription = null
if @diffView?
if @wasEditor1Created
@diffView.cleanUpEditor(1)
else if @wasEditor1SoftWrapped
@diffView.restoreEditorSoftWrap(1)
if @wasEditor2Created
@diffView.cleanUpEditor(2)
else if @wasEditor2SoftWrapped
@diffView.restoreEditorSoftWrap(2)
@diffView.destroy()
@diffView = null
# remove views
if @footerView?
@footerView.destroy()
@footerView = null
if @syncScroll?
@syncScroll.dispose()
@syncScroll = null
# auto hide tree view while diffing #82
hideDocks = @options.hideDocks ? @_getConfig('hideDocks')
if hideDocks
if @docksToReopen.left
atom.workspace.getLeftDock().show()
if @docksToReopen.right
atom.workspace.getRightDock().show()
if @docksToReopen.bottom
atom.workspace.getBottomDock().show()
# reset all variables
@docksToReopen = {left: false, right: false, bottom: false}
@wasEditor1Created = false
@wasEditor2Created = false
@wasEditor1SoftWrapped = false
@wasEditor2SoftWrapped = false
@hasGitRepo = false
# called by "ignore whitespace toggle" command
toggleIgnoreWhitespace: ->
# if ignoreWhitespace is not being overridden
if !(@options.ignoreWhitespace?)
ignoreWhitespace = @_getConfig('ignoreWhitespace')
@_setConfig('ignoreWhitespace', !ignoreWhitespace)
@footerView?.setIgnoreWhitespace(!ignoreWhitespace)
# called by "auto diff toggle" command
toggleAutoDiff: ->
# if ignoreWhitespace is not being overridden
if !(@options.autoDiff?)
autoDiff = @_getConfig('autoDiff')
@_setConfig('autoDiff', !autoDiff)
@footerView?.setAutoDiff(!autoDiff)
# called by "Move to next diff" command
nextDiff: ->
if @diffView?
isSyncScrollEnabled = false
scrollSyncType = @options.scrollSyncType ? @_getConfig('scrollSyncType')
if scrollSyncType == 'Vertical + Horizontal' || scrollSyncType == 'Vertical'
isSyncScrollEnabled = true
selectedIndex = @diffView.nextDiff(isSyncScrollEnabled)
@footerView?.showSelectionCount( selectedIndex + 1 )
# called by "Move to previous diff" command
prevDiff: ->
if @diffView?
isSyncScrollEnabled = false
scrollSyncType = @options.scrollSyncType ? @_getConfig('scrollSyncType')
if scrollSyncType == 'Vertical + Horizontal' || scrollSyncType == 'Vertical'
isSyncScrollEnabled = true
selectedIndex = @diffView.prevDiff(isSyncScrollEnabled)
@footerView?.showSelectionCount( selectedIndex + 1 )
# called by "Copy to right" command
copyToRight: ->
if @diffView?
@diffView.copyToRight()
@footerView?.hideSelectionCount()
# called by "Copy to left" command
copyToLeft: ->
if @diffView?
@diffView.copyToLeft()
@footerView?.hideSelectionCount()
# called by the commands enable/toggle to do initial diff
# sets up subscriptions for auto diff and disabling when a pane is destroyed
# event is an optional argument of a file path to diff with current
# editorsPromise is an optional argument of a promise that returns with 2 editors
# options is an optional argument with optional properties that are used to override user's settings
diffPanes: (event, editorsPromise, options = {}) ->
@options = options
if !editorsPromise
if event?.currentTarget.classList.contains('tab') || event?.currentTarget.classList.contains('file')
elemWithPath = event.currentTarget.querySelector('[data-path]')
params = {}
if elemWithPath
params.path = elemWithPath.dataset.path
else if event.currentTarget.item
params.editor = event.currentTarget.item.copy() # copy here so still have it if disable closes it #124
@disable() # make sure we're in a good starting state
editorsPromise = @_getEditorsForDiffWithActive(params)
else
@disable() # make sure we're in a good starting state
editorsPromise = @_getEditorsForQuickDiff()
else
@disable() # make sure we're in a good starting state
editorsPromise.then ((editors) ->
if editors == null
return
@editorSubscriptions = new CompositeDisposable()
@_setupVisibleEditors(editors)
@diffView = new DiffView(editors)
# add listeners
@_setupEditorSubscriptions(editors)
# add the bottom UI panel
if !@footerView?
ignoreWhitespace = @options.ignoreWhitespace ? @_getConfig('ignoreWhitespace')
autoDiff = @options.autoDiff ? @_getConfig('autoDiff')
@footerView = new FooterView(ignoreWhitespace, @options.ignoreWhitespace?, autoDiff, @options.autoDiff?)
@footerView.createPanel()
@footerView.show()
# auto hide tree view while diffing #82
hideDocks = @options.hideDocks ? @_getConfig('hideDocks')
if hideDocks
@docksToReopen.left = atom.workspace.getLeftDock().isVisible()
@docksToReopen.right = atom.workspace.getRightDock().isVisible()
@docksToReopen.bottom = atom.workspace.getBottomDock().isVisible()
atom.workspace.getLeftDock().hide()
atom.workspace.getRightDock().hide()
atom.workspace.getBottomDock().hide()
# update diff if there is no git repo (no onchange fired)
if !@hasGitRepo
@updateDiff(editors)
# add application menu items
@contextMenuSubscriptions = new CompositeDisposable()
@contextMenuSubscriptions.add atom.menu.add [
{
'label': 'Packages'
'submenu': [
'label': 'Split Diff'
'submenu': [
{ 'label': 'Ignore Whitespace', 'command': 'split-diff:ignore-whitespace' }
{ 'label': 'Move to Next Diff', 'command': 'split-diff:next-diff' }
{ 'label': 'Move to Previous Diff', 'command': 'split-diff:prev-diff' }
{ 'label': 'Copy to Right', 'command': 'split-diff:copy-to-right'}
{ 'label': 'Copy to Left', 'command': 'split-diff:copy-to-left'}
]
]
}
]
@contextMenuSubscriptions.add atom.contextMenu.add {
'atom-text-editor': [{
'label': 'Split Diff',
'submenu': [
{ 'label': 'Ignore Whitespace', 'command': 'split-diff:ignore-whitespace' }
{ 'label': 'Move to Next Diff', 'command': 'split-diff:next-diff' }
{ 'label': 'Move to Previous Diff', 'command': 'split-diff:prev-diff' }
{ 'label': 'Copy to Right', 'command': 'split-diff:copy-to-right'}
{ 'label': 'Copy to Left', 'command': 'split-diff:copy-to-left'}
]
}]
}
).bind(this) # make sure the scope is correct
# called by both diffPanes and the editor subscription to update the diff
updateDiff: (editors) ->
@isEnabled = true
# if there is a diff being computed in the background, cancel it
if @process?
@process.kill()
@process = null
# force softwrap to be off if it somehow turned back on #143
turnOffSoftWrap = @options.turnOffSoftWrap ? @_getConfig('turnOffSoftWrap')
if turnOffSoftWrap
if editors.editor1.isSoftWrapped()
editors.editor1.setSoftWrapped(false)
if editors.editor2.isSoftWrapped()
editors.editor2.setSoftWrapped(false)
ignoreWhitespace = @options.ignoreWhitespace ? @_getConfig('ignoreWhitespace')
editorPaths = @_createTempFiles(editors)
@footerView?.setLoading()
# --- kick off background process to compute diff ---
{BufferedNodeProcess} = require 'atom'
command = path.resolve __dirname, "./compute-diff.js"
args = [editorPaths.editor1Path, editorPaths.editor2Path, ignoreWhitespace]
theOutput = ''
stdout = (output) =>
theOutput = output
computedDiff = JSON.parse(output)
@process.kill()
@process = null
@_resumeUpdateDiff(editors, computedDiff)
stderr = (err) =>
theOutput = err
exit = (code) =>
if code != 0
console.log('BufferedNodeProcess code was ' + code)
console.log(theOutput)
@process = new BufferedNodeProcess({command, args, stdout, stderr, exit})
# --- kick off background process to compute diff ---
# resumes after the compute diff process returns
_resumeUpdateDiff: (editors, computedDiff) ->
return unless @diffView?
@diffView.clearDiff()
if @syncScroll?
@syncScroll.dispose()
@syncScroll = null
# grab the settings for the diff
addedColorSide = @options.addedColorSide ? @_getConfig('colors.addedColorSide')
diffWords = @options.diffWords ? @_getConfig('diffWords')
ignoreWhitespace = @options.ignoreWhitespace ? @_getConfig('ignoreWhitespace')
overrideThemeColors = @options.overrideThemeColors ? @_getConfig('colors.overrideThemeColors')
@diffView.displayDiff(computedDiff, addedColorSide, diffWords, ignoreWhitespace, overrideThemeColors)
# give the marker layers to those registered with the service
while @splitDiffResolves?.length
@splitDiffResolves.pop()(@diffView.getMarkerLayers())
@footerView?.setNumDifferences(@diffView.getNumDifferences())
scrollSyncType = @options.scrollSyncType ? @_getConfig('scrollSyncType')
if scrollSyncType == 'Vertical + Horizontal'
@syncScroll = new SyncScroll(editors.editor1, editors.editor2, true)
@syncScroll.syncPositions()
else if scrollSyncType == 'Vertical'
@syncScroll = new SyncScroll(editors.editor1, editors.editor2, false)
@syncScroll.syncPositions()
# Gets the first two visible editors found or creates them as needed.
# Returns a Promise which yields a value of {editor1: TextEditor, editor2: TextEditor}
_getEditorsForQuickDiff: () ->
editor1 = null
editor2 = null
# try to find the first two editors
panes = atom.workspace.getCenter().getPanes()
for p in panes
activeItem = p.getActiveItem()
if atom.workspace.isTextEditor(activeItem)
if editor1 == null
editor1 = activeItem
else if editor2 == null
editor2 = activeItem
break
# auto open editor panes so we have two to diff with
if editor1 == null
editor1 = atom.workspace.buildTextEditor({autoHeight: false})
@wasEditor1Created = true
# add first editor to the first pane
panes[0].addItem(editor1)
panes[0].activateItem(editor1)
if editor2 == null
editor2 = atom.workspace.buildTextEditor({autoHeight: false})
@wasEditor2Created = true
rightPaneIndex = panes.indexOf(atom.workspace.paneForItem(editor1)) + 1
if panes[rightPaneIndex]
# add second editor to existing pane to the right of first editor
panes[rightPaneIndex].addItem(editor2)
panes[rightPaneIndex].activateItem(editor2)
else
# no existing pane so split right
atom.workspace.paneForItem(editor1).splitRight({items: [editor2]})
editor2.getBuffer().setLanguageMode(atom.grammars.languageModeForGrammarAndBuffer(editor1.getGrammar(), editor2.getBuffer()))
return Promise.resolve({editor1: editor1, editor2: editor2})
# Gets the active editor and opens the specified file to the right of it
# Returns a Promise which yields a value of {editor1: TextEditor, editor2: TextEditor}
_getEditorsForDiffWithActive: (params) ->
filePath = params.path
editorWithoutPath = params.editor
activeEditor = atom.workspace.getCenter().getActiveTextEditor()
if activeEditor?
editor1 = activeEditor
@wasEditor2Created = true
panes = atom.workspace.getCenter().getPanes()
# get index of pane following active editor pane
rightPaneIndex = panes.indexOf(atom.workspace.paneForItem(editor1)) + 1
# pane is created if there is not one to the right of the active editor
rightPane = panes[rightPaneIndex] || atom.workspace.paneForItem(editor1).splitRight()
if params.path
filePath = params.path
if editor1.getPath() == filePath
# if diffing with itself, set filePath to null so an empty editor is
# opened, which will cause a git diff
filePath = null
editor2Promise = atom.workspace.openURIInPane(filePath, rightPane)
return editor2Promise.then (editor2) ->
editor2.getBuffer().setLanguageMode(atom.grammars.languageModeForGrammarAndBuffer(editor1.getGrammar(), editor2.getBuffer()))
return {editor1: editor1, editor2: editor2}
else if editorWithoutPath
rightPane.addItem(editorWithoutPath)
return Promise.resolve({editor1: editor1, editor2: editorWithoutPath})
else
noActiveEditorMsg = 'No active file found! (Try focusing a text editor)'
atom.notifications.addWarning('Split Diff', {detail: noActiveEditorMsg, dismissable: false, icon: 'diff'})
return Promise.resolve(null)
return Promise.resolve(null)
# sets up any editor listeners
_setupEditorSubscriptions: (editors) ->
@editorSubscriptions?.dispose()
@editorSubscriptions = null
@editorSubscriptions = new CompositeDisposable()
# add listeners
autoDiff = @options.autoDiff ? @_getConfig('autoDiff')
if autoDiff
@editorSubscriptions.add editors.editor1.onDidStopChanging =>
@updateDiff(editors)
@editorSubscriptions.add editors.editor2.onDidStopChanging =>
@updateDiff(editors)
@editorSubscriptions.add editors.editor1.onDidDestroy =>
@disable()
@editorSubscriptions.add editors.editor2.onDidDestroy =>
@disable()
@editorSubscriptions.add atom.config.onDidChange 'split-diff', (event) =>
# need to redo editor subscriptions because some settings affect the listeners themselves
@_setupEditorSubscriptions(editors)
# update footer view ignore whitespace checkbox if setting has changed
if event.newValue.ignoreWhitespace != event.oldValue.ignoreWhitespace
@footerView?.setIgnoreWhitespace(event.newValue.ignoreWhitespace)
if event.newValue.autoDiff != event.oldValue.autoDiff
@footerView?.setAutoDiff(event.newValue.autoDiff)
@updateDiff(editors)
@editorSubscriptions.add editors.editor1.onDidChangeCursorPosition (event) =>
@diffView.handleCursorChange(event.cursor, event.oldBufferPosition, event.newBufferPosition)
@editorSubscriptions.add editors.editor2.onDidChangeCursorPosition (event) =>
@diffView.handleCursorChange(event.cursor, event.oldBufferPosition, event.newBufferPosition)
@editorSubscriptions.add editors.editor1.onDidAddCursor (cursor) =>
@diffView.handleCursorChange(cursor, -1, cursor.getBufferPosition())
@editorSubscriptions.add editors.editor2.onDidAddCursor (cursor) =>
@diffView.handleCursorChange(cursor, -1, cursor.getBufferPosition())
_setupVisibleEditors: (editors) ->
BufferExtender = require './buffer-extender'
buffer1LineEnding = (new BufferExtender(editors.editor1.getBuffer())).getLineEnding()
if @wasEditor2Created
# want to scroll a newly created editor to the first editor's position
atom.views.getView(editors.editor1).focus()
# set the preferred line ending before inserting text #39
if buffer1LineEnding == '\n' || buffer1LineEnding == '\r\n'
@lineEndingSubscription = new CompositeDisposable()
@lineEndingSubscription.add editors.editor2.onWillInsertText () ->
editors.editor2.getBuffer().setPreferredLineEnding(buffer1LineEnding)
@_setupGitRepo(editors)
# unfold all lines so diffs properly align
editors.editor1.unfoldAll()
editors.editor2.unfoldAll()
muteNotifications = @options.muteNotifications ? @_getConfig('muteNotifications')
turnOffSoftWrap = @options.turnOffSoftWrap ? @_getConfig('turnOffSoftWrap')
if turnOffSoftWrap
shouldNotify = false
if editors.editor1.isSoftWrapped()
@wasEditor1SoftWrapped = true
editors.editor1.setSoftWrapped(false)
shouldNotify = true
if editors.editor2.isSoftWrapped()
@wasEditor2SoftWrapped = true
editors.editor2.setSoftWrapped(false)
shouldNotify = true
if shouldNotify && !muteNotifications
softWrapMsg = 'Soft wrap automatically disabled so lines remain in sync.'
atom.notifications.addWarning('Split Diff', {detail: softWrapMsg, dismissable: false, icon: 'diff'})
else if !muteNotifications && (editors.editor1.isSoftWrapped() || editors.editor2.isSoftWrapped())
softWrapMsg = 'Warning: Soft wrap enabled! Lines may not align.\n(Try "Turn Off Soft Wrap" setting)'
atom.notifications.addWarning('Split Diff', {detail: softWrapMsg, dismissable: false, icon: 'diff'})
buffer2LineEnding = (new BufferExtender(editors.editor2.getBuffer())).getLineEnding()
if buffer2LineEnding != '' && (buffer1LineEnding != buffer2LineEnding) && editors.editor1.getLineCount() != 1 && editors.editor2.getLineCount() != 1 && !muteNotifications
# pop warning if the line endings differ and we haven't done anything about it
lineEndingMsg = 'Warning: Line endings differ!'
atom.notifications.addWarning('Split Diff', {detail: lineEndingMsg, dismissable: false, icon: 'diff'})
_setupGitRepo: (editors) ->
editor1Path = editors.editor1.getPath()
# only show git changes if the right editor is empty
if editor1Path? && (editors.editor2.getLineCount() == 1 && editors.editor2.lineTextForBufferRow(0) == '')
for directory, i in atom.project.getDirectories()
if editor1Path is directory.getPath() or directory.contains(editor1Path)
projectRepo = atom.project.getRepositories()[i]
if projectRepo?
projectRepo = projectRepo.getRepo(editor1Path) # fix repo for submodules #112
relativeEditor1Path = projectRepo.relativize(editor1Path)
gitHeadText = projectRepo.getHeadBlob(relativeEditor1Path)
if gitHeadText?
editors.editor2.selectAll()
editors.editor2.insertText(gitHeadText)
@hasGitRepo = true
break
# creates temp files so the compute diff process can get the text easily
_createTempFiles: (editors) ->
editor1Path = ''
editor2Path = ''
tempFolderPath = atom.getConfigDirPath() + '/split-diff'
editor1Path = tempFolderPath + '/split-diff 1'
editor1TempFile = new File(editor1Path)
editor1TempFile.writeSync(editors.editor1.getText())
editor2Path = tempFolderPath + '/split-diff 2'
editor2TempFile = new File(editor2Path)
editor2TempFile.writeSync(editors.editor2.getText())
editorPaths =
editor1Path: editor1Path
editor2Path: editor2Path
return editorPaths
_getConfig: (config) ->
atom.config.get("split-diff.#{config}")
_setConfig: (config, value) ->
atom.config.set("split-diff.#{config}", value)
# --- SERVICE API ---
getMarkerLayers: () ->
new Promise ((resolve, reject) ->
@splitDiffResolves.push(resolve)
).bind(this)
diffEditors: (editor1, editor2, options) ->
@diffPanes(null, Promise.resolve({editor1: editor1, editor2: editor2}), options)
provideSplitDiff: ->
getMarkerLayers: @getMarkerLayers.bind(@contextForService)
diffEditors: @diffEditors.bind(@contextForService)
disable: @disable.bind(@contextForService)