Skip to content
This repository was archived by the owner on Dec 15, 2022. It is now read-only.

Bolding file name if it’s not staged. #955

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion lib/directory-view.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,9 @@ class DirectoryView extends HTMLElement
@expand() if @directory.expansionState.isExpanded

updateStatus: ->
@classList.remove('status-ignored', 'status-modified', 'status-added')
@classList.remove('status-ignored', 'status-modified', 'status-added', 'status-unstaged')
@classList.add("status-#{@directory.status}") if @directory.status?
@classList.add("status-unstaged") if @directory.staged is false

subscribeToDirectory: ->
@subscriptions.add @directory.onDidAddEntries (addedEntries) =>
Expand Down
10 changes: 9 additions & 1 deletion lib/directory.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ class Directory
return unless repo?

newStatus = null
newStaged = null
if repo.isPathIgnored(@path)
newStatus = 'ignored'
else
Expand All @@ -97,8 +98,15 @@ class Directory
else if repo.isStatusNew(status)
newStatus = 'added'

if newStatus isnt @status
try
newStaged = repo.isStatusStaged(status) unless not status
catch error
# While git doesn’t expose isStatusStaged method
newStaged = (status & 15) > 0 unless not status

if newStatus isnt @status or newStaged isnt @staged
@status = newStatus
@staged = newStaged
@emitter.emit('did-status-change', newStatus)

# Is the given path ignored?
Expand Down
3 changes: 2 additions & 1 deletion lib/file-view.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,9 @@ class FileView extends HTMLElement
@updateStatus()

updateStatus: ->
@classList.remove('status-ignored', 'status-modified', 'status-added')
@classList.remove('status-ignored', 'status-modified', 'status-added', 'status-unstaged')
@classList.add("status-#{@file.status}") if @file.status?
@classList.add("status-unstaged") if @file.staged is false

getPath: ->
@fileName.dataset.path
Expand Down
10 changes: 9 additions & 1 deletion lib/file.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ class File
return unless repo?

newStatus = null
newStaged = null
if repo.isPathIgnored(@path)
newStatus = 'ignored'
else
Expand All @@ -61,8 +62,15 @@ class File
else if repo.isStatusNew(status)
newStatus = 'added'

if newStatus isnt @status
try
newStaged = repo.isStatusStaged(status) unless not status
catch error
# While git doesn’t expose isStatusStaged method
newStaged = (status & 15) > 0 unless not status

if newStatus isnt @status or newStaged isnt @staged
@status = newStatus
@staged = newStaged
@emitter.emit('did-status-change', newStatus)

isPathEqual: (pathToCompare) ->
Expand Down
6 changes: 6 additions & 0 deletions styles/tree-view.less
Original file line number Diff line number Diff line change
Expand Up @@ -93,3 +93,9 @@
}
}
}

.status-unstaged {
& > div, & > span {
font-weight: bold;
}
}