mirror of
https://github.com/Kong/insomnia
synced 2024-11-12 17:26:32 +00:00
61 lines
1.6 KiB
TypeScript
61 lines
1.6 KiB
TypeScript
import { autoBindMethodsForReact } from 'class-autobind-decorator';
|
|
import classnames from 'classnames';
|
|
import React, { PureComponent, ReactNode } from 'react';
|
|
|
|
import {
|
|
AUTOBIND_CFG,
|
|
COLLAPSE_SIDEBAR_REMS,
|
|
SIDEBAR_SKINNY_REMS,
|
|
} from '../../../common/constants';
|
|
import type { HotKeyRegistry } from '../../../common/hotkeys';
|
|
import type { Environment } from '../../../models/environment';
|
|
import type { Workspace } from '../../../models/workspace';
|
|
|
|
interface Props {
|
|
activeEnvironment: Environment | null;
|
|
children: ReactNode;
|
|
environmentHighlightColorStyle: string;
|
|
handleSetActiveEnvironment: (...args: any[]) => any;
|
|
hidden: boolean;
|
|
hotKeyRegistry: HotKeyRegistry;
|
|
isLoading: boolean;
|
|
showEnvironmentsModal: (...args: any[]) => any;
|
|
unseenWorkspaces: Workspace[];
|
|
width: number;
|
|
workspaces: Workspace[];
|
|
}
|
|
|
|
@autoBindMethodsForReact(AUTOBIND_CFG)
|
|
class Sidebar extends PureComponent<Props> {
|
|
render() {
|
|
const {
|
|
activeEnvironment,
|
|
children,
|
|
environmentHighlightColorStyle,
|
|
hidden,
|
|
width,
|
|
} = this.props;
|
|
return (
|
|
<aside
|
|
className={classnames('sidebar', 'theme--sidebar', {
|
|
'sidebar--hidden': hidden,
|
|
'sidebar--skinny': width < SIDEBAR_SKINNY_REMS,
|
|
'sidebar--collapsed': width < COLLAPSE_SIDEBAR_REMS,
|
|
})}
|
|
style={{
|
|
borderRight:
|
|
activeEnvironment &&
|
|
activeEnvironment.color &&
|
|
environmentHighlightColorStyle === 'sidebar-edge'
|
|
? '5px solid ' + activeEnvironment.color
|
|
: undefined,
|
|
}}
|
|
>
|
|
{children}
|
|
</aside>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default Sidebar;
|