-
-
Notifications
You must be signed in to change notification settings - Fork 219
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Refactor status bars #485
Open
stefan-toubia
wants to merge
5
commits into
BetterThanTomorrow:dev
Choose a base branch
from
stefan-toubia:stefan/refactor-status-bars
base: dev
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Refactor status bars #485
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
070f222
Move statusbar file
stefan-toubia d5108fe
Refactor color config
stefan-toubia b0a0d06
Split status bars to individual files
stefan-toubia 7746aae
Refactor status bars
stefan-toubia 38b2207
Rename status bar item classes
stefan-toubia File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
import { workspace, WorkspaceConfiguration } from 'vscode'; | ||
|
||
export interface ColorsConfig { | ||
disconnected: string, | ||
launching: string, | ||
connected: string, | ||
typeStatus: string, | ||
active: string, | ||
inactive: string, | ||
error: string | ||
} | ||
|
||
export class ConfigReader { | ||
private changeEventDisposable; | ||
constructor() { | ||
this.changeEventDisposable = workspace.onDidChangeConfiguration(configChange => { | ||
if(configChange.affectsConfiguration("calva.statusColor")){ | ||
this._colors = this.readColorConfig(); | ||
} | ||
}); | ||
} | ||
|
||
private _colors: ColorsConfig; | ||
|
||
get colors() { | ||
if(this._colors === undefined){ | ||
this._colors = this.readColorConfig(); | ||
} | ||
return this._colors; | ||
} | ||
|
||
private readColorConfig(): ColorsConfig { | ||
let colorConfig = workspace.getConfiguration('calva.statusColor'); | ||
return { | ||
disconnected: this.colorValue("disconnectedColor", colorConfig), | ||
launching: this.colorValue("launchingColor", colorConfig), | ||
// TODO: Fix config typo | ||
connected: this.colorValue("connectedSatusColor", colorConfig), | ||
typeStatus: this.colorValue("typeStatusColor", colorConfig), | ||
// TODO: Create config entries | ||
active: "white", | ||
inactive: "#b3b3b3", | ||
error: "#FF2D00" | ||
} | ||
} | ||
|
||
private colorValue(section: string, currentConf: WorkspaceConfiguration):string { | ||
let { defaultValue, globalValue, workspaceFolderValue, workspaceValue} = currentConf.inspect(section); | ||
return workspaceFolderValue || workspaceValue || globalValue || defaultValue; | ||
} | ||
|
||
dispose() { | ||
this.changeEventDisposable.dispose(); | ||
} | ||
} | ||
|
||
// TODO: This should be somewhere else | ||
const configReader = new ConfigReader(); | ||
export default configReader; | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
import { window, StatusBarAlignment, StatusBarItem } from "vscode"; | ||
import * as state from '../state'; | ||
import * as util from '../utilities'; | ||
|
||
export class CljsBuildStatusBarItem { | ||
private statusBarItem: StatusBarItem; | ||
constructor(alignment: StatusBarAlignment) { | ||
this.statusBarItem = window.createStatusBarItem(alignment); | ||
this.statusBarItem.command = "calva.switchCljsBuild"; | ||
} | ||
|
||
update() { | ||
const current = state.deref(); | ||
const cljsBuild = current.get('cljsBuild'); | ||
const connected = current.get("connected"); | ||
const sessionType = util.getREPLSessionType(); | ||
|
||
let text = null; | ||
let tooltip = null; | ||
|
||
if(connected && sessionType === 'cljs' && state.extensionContext.workspaceState.get('cljsReplTypeHasBuilds')) { | ||
if (cljsBuild !== null) { | ||
this.statusBarItem.text = cljsBuild; | ||
this.statusBarItem.tooltip = "Click to switch CLJS build REPL"; | ||
} else { | ||
this.statusBarItem.text = "no build connected" | ||
this.statusBarItem.tooltip = "Click to connect to a CLJS build REPL"; | ||
} | ||
} | ||
|
||
this.statusBarItem.text = text; | ||
this.statusBarItem.tooltip = tooltip; | ||
|
||
if(this.statusBarItem.text) { | ||
this.statusBarItem.show(); | ||
} else { | ||
this.statusBarItem.hide(); | ||
} | ||
} | ||
|
||
dispose() { | ||
this.statusBarItem.dispose(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
import { window, StatusBarAlignment, StatusBarItem } from "vscode"; | ||
import configReader from "../configReader"; | ||
import * as state from '../state'; | ||
import * as util from '../utilities'; | ||
|
||
export class ConnectionStatusBarItem { | ||
private statusBarItem: StatusBarItem; | ||
|
||
constructor(alignment: StatusBarAlignment) { | ||
this.statusBarItem = window.createStatusBarItem(alignment); | ||
} | ||
|
||
update() { | ||
let current = state.deref(); | ||
const colors = configReader.colors; | ||
|
||
let text = "nREPL $(zap)"; | ||
let tooltip = "Click to jack-in or connect"; | ||
let command = "calva.jackInOrConnect"; | ||
let color = colors.disconnected; | ||
|
||
if (current.get('connected')) { | ||
text = "nREPL $(zap)"; | ||
color = colors.connected; | ||
tooltip = `nrepl://${current.get('hostname')}:${current.get('port')} (Click to reset connection)`; | ||
} else if (util.getLaunchingState()) { | ||
color = colors.launching; | ||
text = "Launching REPL using " + util.getLaunchingState(); | ||
tooltip = "Click to interrupt jack-in or Connect to REPL Server"; | ||
command = "calva.disconnect"; | ||
} else if (util.getConnectingState()) { | ||
color = colors.launching; | ||
text = "nREPL - trying to connect"; | ||
tooltip = "Click to interrupt jack-in or Connect to REPL Server"; | ||
command = "calva.disconnect"; | ||
} | ||
|
||
this.statusBarItem.text = text; | ||
this.statusBarItem.tooltip = tooltip; | ||
this.statusBarItem.command = command; | ||
this.statusBarItem.color = color; | ||
|
||
this.statusBarItem.show(); | ||
} | ||
|
||
dispose() { | ||
this.statusBarItem.dispose(); | ||
} | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I like that you are improving the config reading. This is just a note to us all to be alert to how this work can be continued. There are a few other config watchers, I think. And also we are reading up most config in the
state
module, where I do not think it really belongs.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, and maybe it would be a good idea to consume the config reader from
state
to keep aligned with the single source of truth. Config reader could emit change events to be picked up by state. Or if using redux, dispatch config change actions. Tomato/Tomato.