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

Highlight Menu in Navbar Menu #6558

Merged
merged 7 commits into from
Oct 18, 2022
Merged
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
1 change: 1 addition & 0 deletions CHANGELOG.unreleased.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ For upgrade instructions, please check the [migration guide](MIGRATIONS.released

### Changed
- Creating tasks in bulk now also supports referencing task types by their summary instead of id. [#6486](https://github.com/scalableminds/webknossos/pull/6486)
- Navbar changes: Move dropdown menu into separate Menu button. Removed toggle-button (cog icon)for left-hand side bar from navbar. [#6558](https://github.com/scalableminds/webknossos/pull/6558)

### Fixed
- Fixed a bug where some file requests replied with error 400 instead of 404, confusing some zarr clients. [#6515](https://github.com/scalableminds/webknossos/pull/6515)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -675,19 +675,22 @@ class TracingActionsView extends React.PureComponent<Props, State> {

const menu = <Menu>{elements}</Menu>;
return (
<div>
<>
<div className="antd-legacy-group">
{saveButton}
{finishAndNextTaskButton}
{reopenTaskButton}
{modals}
</div>
<div>
<Dropdown overlay={menu} trigger={["click"]}>
<ButtonComponent className="narrow">
Menu
<DownOutlined />
</ButtonComponent>
</Dropdown>
</div>
</div>
</>
);
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export default function ViewDatasetActionsView(props: Props) {
padding: "0 10px",
}}
>
<DownOutlined />
Menu <DownOutlined />
</ButtonComponent>
</Dropdown>
</div>
Expand Down
26 changes: 2 additions & 24 deletions frontend/javascripts/oxalis/view/layouting/tracing_layout_view.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Alert, Layout, Tooltip } from "antd";
import { SettingOutlined, WarningFilled } from "@ant-design/icons";
import { WarningFilled } from "@ant-design/icons";
import type { Dispatch } from "redux";
import { connect } from "react-redux";
import { RouteComponentProps, withRouter } from "react-router-dom";
Expand All @@ -13,7 +13,6 @@ import { RenderToPortal } from "oxalis/view/layouting/portal_utils";
import { updateUserSettingAction } from "oxalis/model/actions/settings_actions";
import ActionBarView from "oxalis/view/action_bar_view";
import ContextMenuContainer from "oxalis/view/context_menu";
import ButtonComponent from "oxalis/view/components/button_component";
import NmlUploadZoneContainer from "oxalis/view/nml_upload_zone_container";
import OxalisController from "oxalis/controller";
import type { ControllerStatus } from "oxalis/controller";
Expand All @@ -31,7 +30,6 @@ import {
} from "oxalis/view/input_catcher";
import { importTracingFiles } from "oxalis/view/right-border-tabs/skeleton_tab_view";
import {
layoutEmitter,
storeLayoutConfig,
setActiveLayout,
getLastActiveLayout,
Expand Down Expand Up @@ -62,7 +60,6 @@ type StateProps = {
is2d: boolean;
displayName: string;
organization: string;
isLeftBorderOpen: boolean;
};
type DispatchProps = {
setAutoSaveLayouts: (arg0: boolean) => void;
Expand Down Expand Up @@ -254,10 +251,6 @@ class TracingLayoutView extends React.PureComponent<PropsWithRouter, State> {
getLayoutNamesFromCurrentView = (layoutKey): Array<string> =>
this.props.storedLayouts[layoutKey] ? Object.keys(this.props.storedLayouts[layoutKey]) : [];

toggleLeftBorder = () => {
layoutEmitter.emit("toggleBorder", "left");
};

render() {
if (this.state.hasError) {
return (
Expand All @@ -279,7 +272,7 @@ class TracingLayoutView extends React.PureComponent<PropsWithRouter, State> {
this.props.is2d,
);
const currentLayoutNames = this.getLayoutNamesFromCurrentView(layoutType);
const { isDatasetOnScratchVolume, isUpdateTracingAllowed, isLeftBorderOpen } = this.props;
const { isDatasetOnScratchVolume, isUpdateTracingAllowed } = this.props;

const createNewTracing = async (
files: Array<File>,
Expand Down Expand Up @@ -333,20 +326,6 @@ class TracingLayoutView extends React.PureComponent<PropsWithRouter, State> {
display: "flex",
}}
>
<ButtonComponent
className={isLeftBorderOpen ? "highlight-togglable-button" : ""}
onClick={this.toggleLeftBorder}
shape="circle"
>
<SettingOutlined
className="without-icon-margin"
style={{
display: "flex",
alignItems: "center",
justifyContent: "center",
}}
/>
</ButtonComponent>
<ActionBarView
layoutProps={{
storedLayoutNamesForView: currentLayoutNames,
Expand Down Expand Up @@ -447,7 +426,6 @@ function mapStateToProps(state: OxalisState): StateProps {
is2d: is2dDataset(state.dataset),
displayName: state.tracing.name ? state.tracing.name : state.dataset.name,
organization: state.dataset.owningOrganization,
isLeftBorderOpen: state.uiInformation.borderOpenStatus.left,
};
}

Expand Down