|
| 1 | +const {CompositeDisposable} = require('atom') |
| 2 | +const {repositoryForPath} = require('./helpers') |
| 3 | + |
| 4 | +const MAX_BUFFER_LENGTH_TO_DIFF = 2 * 1024 * 1024 |
| 5 | + |
| 6 | +module.exports = |
| 7 | +class GitDiffView { |
| 8 | + constructor (editor) { |
| 9 | + this.updateDiffs = this.updateDiffs.bind(this) |
| 10 | + this.editor = editor |
| 11 | + this.subscriptions = new CompositeDisposable() |
| 12 | + this.decorations = {} |
| 13 | + this.markers = [] |
| 14 | + } |
| 15 | + |
| 16 | + start () { |
| 17 | + const editorElement = this.editor.getElement() |
| 18 | + |
| 19 | + this.subscribeToRepository() |
| 20 | + |
| 21 | + this.subscriptions.add( |
| 22 | + this.editor.onDidStopChanging(this.updateDiffs), |
| 23 | + this.editor.onDidChangePath(this.updateDiffs), |
| 24 | + atom.project.onDidChangePaths(() => this.subscribeToRepository()), |
| 25 | + atom.commands.add(editorElement, 'git-diff:move-to-next-diff', () => this.moveToNextDiff()), |
| 26 | + atom.commands.add(editorElement, 'git-diff:move-to-previous-diff', () => this.moveToPreviousDiff()), |
| 27 | + atom.config.onDidChange('git-diff.showIconsInEditorGutter', () => this.updateIconDecoration()), |
| 28 | + atom.config.onDidChange('editor.showLineNumbers', () => this.updateIconDecoration()), |
| 29 | + editorElement.onDidAttach(() => this.updateIconDecoration()), |
| 30 | + this.editor.onDidDestroy(() => { |
| 31 | + this.cancelUpdate() |
| 32 | + this.removeDecorations() |
| 33 | + this.subscriptions.dispose() |
| 34 | + }) |
| 35 | + ) |
| 36 | + |
| 37 | + this.updateIconDecoration() |
| 38 | + this.scheduleUpdate() |
| 39 | + } |
| 40 | + |
| 41 | + moveToNextDiff () { |
| 42 | + const cursorLineNumber = this.editor.getCursorBufferPosition().row + 1 |
| 43 | + let nextDiffLineNumber = null |
| 44 | + let firstDiffLineNumber = null |
| 45 | + if (this.diffs) { |
| 46 | + for (const {newStart} of this.diffs) { |
| 47 | + if (newStart > cursorLineNumber) { |
| 48 | + if (nextDiffLineNumber == null) nextDiffLineNumber = newStart - 1 |
| 49 | + nextDiffLineNumber = Math.min(newStart - 1, nextDiffLineNumber) |
| 50 | + } |
| 51 | + |
| 52 | + if (firstDiffLineNumber == null) firstDiffLineNumber = newStart - 1 |
| 53 | + firstDiffLineNumber = Math.min(newStart - 1, firstDiffLineNumber) |
| 54 | + } |
| 55 | + } |
| 56 | + |
| 57 | + // Wrap around to the first diff in the file |
| 58 | + if (atom.config.get('git-diff.wrapAroundOnMoveToDiff') && nextDiffLineNumber == null) { |
| 59 | + nextDiffLineNumber = firstDiffLineNumber |
| 60 | + } |
| 61 | + |
| 62 | + this.moveToLineNumber(nextDiffLineNumber) |
| 63 | + } |
| 64 | + |
| 65 | + updateIconDecoration () { |
| 66 | + const gutter = this.editor.getElement().querySelector('.gutter') |
| 67 | + if (gutter) { |
| 68 | + if (atom.config.get('editor.showLineNumbers') && atom.config.get('git-diff.showIconsInEditorGutter')) { |
| 69 | + gutter.classList.add('git-diff-icon') |
| 70 | + } else { |
| 71 | + gutter.classList.remove('git-diff-icon') |
| 72 | + } |
| 73 | + } |
| 74 | + } |
| 75 | + |
| 76 | + moveToPreviousDiff () { |
| 77 | + const cursorLineNumber = this.editor.getCursorBufferPosition().row + 1 |
| 78 | + let previousDiffLineNumber = -1 |
| 79 | + let lastDiffLineNumber = -1 |
| 80 | + if (this.diffs) { |
| 81 | + for (const {newStart} of this.diffs) { |
| 82 | + if (newStart < cursorLineNumber) { |
| 83 | + previousDiffLineNumber = Math.max(newStart - 1, previousDiffLineNumber) |
| 84 | + } |
| 85 | + lastDiffLineNumber = Math.max(newStart - 1, lastDiffLineNumber) |
| 86 | + } |
| 87 | + } |
| 88 | + |
| 89 | + // Wrap around to the last diff in the file |
| 90 | + if (atom.config.get('git-diff.wrapAroundOnMoveToDiff') && previousDiffLineNumber === -1) { |
| 91 | + previousDiffLineNumber = lastDiffLineNumber |
| 92 | + } |
| 93 | + |
| 94 | + this.moveToLineNumber(previousDiffLineNumber) |
| 95 | + } |
| 96 | + |
| 97 | + moveToLineNumber (lineNumber) { |
| 98 | + if (lineNumber != null && lineNumber >= 0) { |
| 99 | + this.editor.setCursorBufferPosition([lineNumber, 0]) |
| 100 | + this.editor.moveToFirstCharacterOfLine() |
| 101 | + } |
| 102 | + } |
| 103 | + |
| 104 | + subscribeToRepository () { |
| 105 | + this.repository = repositoryForPath(this.editor.getPath()) |
| 106 | + if (this.repository) { |
| 107 | + this.subscriptions.add(this.repository.onDidChangeStatuses(() => { |
| 108 | + this.scheduleUpdate() |
| 109 | + })) |
| 110 | + this.subscriptions.add(this.repository.onDidChangeStatus(changedPath => { |
| 111 | + if (changedPath === this.editor.getPath()) this.scheduleUpdate() |
| 112 | + })) |
| 113 | + } |
| 114 | + } |
| 115 | + |
| 116 | + cancelUpdate () { |
| 117 | + clearImmediate(this.immediateId) |
| 118 | + } |
| 119 | + |
| 120 | + scheduleUpdate () { |
| 121 | + this.cancelUpdate() |
| 122 | + this.immediateId = setImmediate(this.updateDiffs) |
| 123 | + } |
| 124 | + |
| 125 | + updateDiffs () { |
| 126 | + if (this.editor.isDestroyed()) return |
| 127 | + this.removeDecorations() |
| 128 | + const path = this.editor && this.editor.getPath() |
| 129 | + if (path && this.editor.getBuffer().getLength() < MAX_BUFFER_LENGTH_TO_DIFF) { |
| 130 | + this.diffs = this.repository && this.repository.getLineDiffs(path, this.editor.getText()) |
| 131 | + if (this.diffs) this.addDecorations(this.diffs) |
| 132 | + } |
| 133 | + } |
| 134 | + |
| 135 | + addDecorations (diffs) { |
| 136 | + for (const {newStart, oldLines, newLines} of diffs) { |
| 137 | + const startRow = newStart - 1 |
| 138 | + const endRow = (newStart + newLines) - 1 |
| 139 | + if (oldLines === 0 && newLines > 0) { |
| 140 | + this.markRange(startRow, endRow, 'git-line-added') |
| 141 | + } else if (newLines === 0 && oldLines > 0) { |
| 142 | + if (startRow < 0) { |
| 143 | + this.markRange(0, 0, 'git-previous-line-removed') |
| 144 | + } else { |
| 145 | + this.markRange(startRow, startRow, 'git-line-removed') |
| 146 | + } |
| 147 | + } else { |
| 148 | + this.markRange(startRow, endRow, 'git-line-modified') |
| 149 | + } |
| 150 | + } |
| 151 | + } |
| 152 | + |
| 153 | + removeDecorations () { |
| 154 | + for (let marker of this.markers) marker.destroy() |
| 155 | + this.markers = [] |
| 156 | + } |
| 157 | + |
| 158 | + markRange (startRow, endRow, klass) { |
| 159 | + const marker = this.editor.markBufferRange([[startRow, 0], [endRow, 0]], {invalidate: 'never'}) |
| 160 | + this.editor.decorateMarker(marker, {type: 'line-number', class: klass}) |
| 161 | + this.markers.push(marker) |
| 162 | + } |
| 163 | +} |
0 commit comments