Skip to content
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

feat(ux/#2496): Configurable statusbar #3402

Open
wants to merge 25 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
cd08482
feat(ux): Configurable mode indicator (#2496)
andr3h3nriqu3s11 Apr 9, 2021
21a2c5d
Started work
andr3h3nriqu3s11 Apr 10, 2021
775b3e8
Update settings.md, ConfigurationDefaults.re, and 3 more files...
andr3h3nriqu3s11 Apr 11, 2021
91793e1
Formated
andr3h3nriqu3s11 Apr 11, 2021
42dd87d
Added possible extencion control(need testing), changed configuration…
andr3h3nriqu3s11 Apr 11, 2021
cb9822c
Notification now works on It self without moving items around
andr3h3nriqu3s11 Apr 12, 2021
745c3f8
Refactoring
andr3h3nriqu3s11 Apr 12, 2021
b3e5bac
Changed extencion items detection from id to id || command
andr3h3nriqu3s11 Apr 12, 2021
203c4ec
Started working on the 1st to items of the list
andr3h3nriqu3s11 Apr 12, 2021
600c48a
Added "compact" mode for notifications
andr3h3nriqu3s11 Apr 13, 2021
402e3cf
Fixes and update to the docs
andr3h3nriqu3s11 Apr 14, 2021
6792f0b
Format and removed logs
andr3h3nriqu3s11 Apr 14, 2021
c552736
Merge branch 'master' into feat/ux/configurable-statusbar
andr3h3nriqu3s11 Apr 14, 2021
34bd310
Fixed "left/rigth" to "start/end"
andr3h3nriqu3s11 Apr 14, 2021
9744bff
Fixed if configuration was alone the text din't appear
andr3h3nriqu3s11 Apr 14, 2021
c3475c1
Merge branch 'master' into feat/ux/configurable-statusbar
andr3h3nriqu3s11 Apr 15, 2021
2bde61c
Merge branch 'master' into feat/ux/configurable-statusbar
andr3h3nriqu3s11 Apr 17, 2021
de6585b
Merge with master
andr3h3nriqu3s11 Apr 22, 2021
5b75ef2
Merge branch 'master' into feat/ux/configurable-statusbar
andr3h3nriqu3s11 Jun 20, 2021
b43dcce
Merge branch 'master' into feat/ux/configurable-statusbar
andr3h3nriqu3s11 Jun 30, 2021
df930d9
Merge branch 'master' into feat/ux/configurable-statusbar
andr3h3nriqu3s11 Jul 2, 2021
aa2b3ee
Formated
andr3h3nriqu3s11 Jul 12, 2021
efcd50b
Merge branch 'master' into feat/ux/configurable-statusbar
andr3h3nriqu3s11 Jul 12, 2021
c69fb1e
Merge branch 'master' into feat/ux/configurable-statusbar
andr3h3nriqu3s11 Jul 24, 2021
f10f07b
Merge branch 'master' into feat/ux/configurable-statusbar
andr3h3nriqu3s11 Aug 15, 2021
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
47 changes: 45 additions & 2 deletions docs/docs/configuration/settings.md
Original file line number Diff line number Diff line change
Expand Up @@ -179,8 +179,6 @@ The configuration file, `configuration.json` is in the Oni2 directory, whose loc

- `workbench.sideBar.visible` __(_bool_ default: `true`)__ - Controls the visibility of the sidebar.

- `workbench.statusBar.visible` __(_bool_ default: `true`)__ - Controls the visibility of the status bar.

- `window.menuBarVisibility` __(_"visible" | "hidden"_ default: `"visible"`)__ - Controls the visibility of the menu bar.

- `window.titleBarStyle` __(_"native" | "custom"_ default: `"native"` on Windows, `"custom"` otherwise)__ - Controls whether the titlebar is custom-rendered.
Expand All @@ -191,6 +189,51 @@ The configuration file, `configuration.json` is in the Oni2 directory, whose loc

- `oni.layout.singleTabMode` __(_bool_ default: `false`)__ - When `true`, groups will only hold a single editor, and closing this editor will always close the group. It will also hide the editor tabs, and therefore essentially hide the concept of editor groups.

#### Status Bar

- `workbench.statusBar.visible` __(_bool_ default: `true`)__ - Controls the visibility of the status bar.

##### Status Bar Items
- `workbench.statusBar.items` - Controls the position and visibility of the individual items on the status bar.

```JSON
"workbench.statusBar.items": {
"start": ["notificationCount", "macro", "...", "diagnosticCount", "git"],
"end": ["...", "lineEndings", "indentation", "fileType", "position", "modeIndicator"],
"showOnNotification": ["modeIndicator", "notificationCount"],
"hidden": [],
"notificationMode": "default",
}
```

- `start` __(_[ __items__ ]_ default: `["notificationCount", "macro", "...", "diagnosticCount", "git"]`)__ - Defines the first group of items that appear.

- `end` __(_[ __items__ ]_ default: `["...", "lineEndings", "indentation", "fileType", "position", "modeIndicator"]`)__ - Defines the group of items that appears at the end of the status bar.

- `showOnNotification` __(_[ __items__ ]_ default: `["notificationCount", "modeIndicator"]`)__ - Defines the group of items that are hidden by the notification popup text. Only works on `notificationMode` `default|keepPosition`

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Would be great to document the 'notificationMode' and 'hidden' properties here, too!

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done! 👍

Although I would ask for anyone to check the docs that I made, because I am not good with words...

- `hidden` __(_[ __items__ ]_ default: `[ ]`)__ - Defines the group of items that are always hiden.

- Possible __Items__:
- _"notificationCount"_ - Notification Count icon and counter
- _"macro"_ - The vim macro indicator
- _"leftItems/rightItems"_ - Items that generated based on other factors, like extensions
- _"diagnosticCount"_ - Problem icon and counter
- _"git"_ - Source control information
- _"lineEndings"_ - Line endings information
- _"indentation"_ - Indentation information
- _"fileType"_ - File type information
- _"position"_ - Position information
- _"modeIndicator"_ - Vim mode indicator
- _"..."_ - The rest of the items in that group, as by the default, that are not defined in other groups
- _Extension Item ID_ - Any known extension item ID can be used to as an item.

- `notificationMode` __(_"default | keepPosition | compact | compact+"_ default: `[ ]`)__ - Defines how the notification popup.
- _"default"_ - The notification popup hides the __items__ on the `showOnNotification`, and reorganizes the items to be together based on if they are on `showOnNotification`.
- _"keepPosition"_ - The notification popup hides the __items__ on the `showOnNotification`.
- _"compact"_ - The notification popups take the minimum space available, but notifications can stack up on the status bar.
- _"compact+"_ - The same as `compact` but notification popups do not stack up.

### Proxy

Onivim 2 can be configured to send requests through an HTTP/HTTPs proxy with the following configuration:
Expand Down
6 changes: 6 additions & 0 deletions src/Core/ConfigurationDefaults.re
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,12 @@ let getDefaultConfigString = configName =>
"workbench.sideBar.location": "left",
"workbench.sideBar.visible": true,
"workbench.statusBar.visible": true,
"workbench.statusBar.items": {
"start": ["notificationCount", "macro", "...", "diagnosticCount", "git"],
"showOnNotification": ["modeIndicator", "notificationCount"],
"end": ["...", "lineEndings", "indentation", "fileType", "position", "modeIndicator"],
"hidden": [],
},
"workbench.tree.indent": 2,
"vim.useSystemClipboard": ["yank"]
}
Expand Down
39 changes: 29 additions & 10 deletions src/Feature/Notification/Feature_Notification.re
Original file line number Diff line number Diff line change
Expand Up @@ -392,6 +392,15 @@ module View = {
transform(Transform.[TranslateY(yOffset)]),
];

let containerCompact = (~background, ~yOffset) => [
position(`Relative),
backgroundColor(background),
flexDirection(`Row),
alignItems(`Center),
paddingHorizontal(10),
transform(Transform.[TranslateY(yOffset)]),
];

let text = (~foreground) => [
textWrap(TextWrapping.NoWrap),
marginLeft(6),
Expand All @@ -413,6 +422,8 @@ module View = {
~background,
~foreground,
~font: UiFont.t,
~onlyAnimation: bool,
~compact: bool,
(),
) => {
let yOffset = model.yOffset;
Expand All @@ -433,16 +444,24 @@ module View = {
| None => React.empty
};

<View ?key style={Styles.container(~background, ~yOffset)}>
<icon />
<source />
<Text
style={Styles.text(~foreground)}
fontFamily={font.family}
fontSize=11.
text={model.message}
/>
</View>;
onlyAnimation
? <View ?key style={Styles.container(~background, ~yOffset)} />
: <View
?key
style={
compact
? Styles.containerCompact(~background, ~yOffset)
: Styles.container(~background, ~yOffset)
}>
<icon />
<source />
<Text
style={Styles.text(~foreground)}
fontFamily={font.family}
fontSize=11.
text={model.message}
/>
</View>;
};
};
// LIST
Expand Down
2 changes: 2 additions & 0 deletions src/Feature/Notification/Feature_Notification.rei
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,8 @@ module View: {
~background: Color.t,
~foreground: Color.t,
~font: UiFont.t,
~onlyAnimation: bool,
~compact: bool,
unit
) =>
React.element(React.node);
Expand Down
Loading