|
|
@ -234,54 +234,54 @@ class DefaultLayout extends Component { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
render() { |
|
|
|
render() { |
|
|
|
const { location } = this.props; |
|
|
|
const { location } = this.props; |
|
|
|
const { pathname } = location; |
|
|
|
const { pathname } = location; |
|
|
|
let renderSidebar = false |
|
|
|
let renderSidebar = false |
|
|
|
|
|
|
|
|
|
|
|
if (pathname.includes("/dashboard-project")) { |
|
|
|
if (pathname.includes("/dashboard-project")) { |
|
|
|
// Remove the base URL and hash
|
|
|
|
// Remove the base URL and hash
|
|
|
|
const path = pathname.replace("/dashboard-project/", ""); |
|
|
|
const path = pathname.replace("/dashboard-project/", ""); |
|
|
|
|
|
|
|
|
|
|
|
// Split the remaining path by "/"
|
|
|
|
// Split the remaining path by "/"
|
|
|
|
const parts = path.split("/"); |
|
|
|
const parts = path.split("/"); |
|
|
|
if (parts[2] == "1") { |
|
|
|
if (parts[2] == "1") { |
|
|
|
renderSidebar = true |
|
|
|
renderSidebar = true |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
return ( |
|
|
|
return ( |
|
|
|
<div className="app"> |
|
|
|
<div className="app"> |
|
|
|
<div className="app-body"> |
|
|
|
<div className="app-body"> |
|
|
|
{!window.location.href.includes("dashboard-project") || renderSidebar ? ( |
|
|
|
{!window.location.href.includes("dashboard-project") || renderSidebar ? ( |
|
|
|
<AppSidebar minimized={this.state.minimized} fixed display="lg"> |
|
|
|
<AppSidebar minimized={this.state.minimized} fixed display="lg"> |
|
|
|
{/* <div class="sidebar-header"> |
|
|
|
{/* <div class="sidebar-header"> |
|
|
|
<Suspense fallback={this.loading()}> |
|
|
|
<Suspense fallback={this.loading()}> |
|
|
|
<DefaultHeader history={this.props.history} onLogout={e => this.signOut(e)} /> |
|
|
|
<DefaultHeader history={this.props.history} onLogout={e => this.signOut(e)} /> |
|
|
|
</Suspense> |
|
|
|
</Suspense> |
|
|
|
</div> */} |
|
|
|
</div> */} |
|
|
|
<hr /> |
|
|
|
<hr /> |
|
|
|
<AppSidebarHeader /> |
|
|
|
<AppSidebarHeader /> |
|
|
|
<AppSidebarForm /> |
|
|
|
<AppSidebarForm /> |
|
|
|
<Suspense> |
|
|
|
<Suspense> |
|
|
|
{this.getMenu()} |
|
|
|
{this.getMenu()} |
|
|
|
</Suspense> |
|
|
|
</Suspense> |
|
|
|
<AppSidebarFooter /> |
|
|
|
<AppSidebarFooter /> |
|
|
|
{this.state.minimized ? null :
|
|
|
|
{this.state.minimized ? null : |
|
|
|
<UncontrolledDropdown direction="down"> |
|
|
|
<UncontrolledDropdown direction="down"> |
|
|
|
<DropdownToggle nav> |
|
|
|
<DropdownToggle nav> |
|
|
|
<i className="nav-icon fa fa-user-circle"></i> {localStorage.getItem('user_name')} |
|
|
|
<i className="nav-icon fa fa-user-circle"></i> {localStorage.getItem('user_name')} |
|
|
|
</DropdownToggle> |
|
|
|
</DropdownToggle> |
|
|
|
<DropdownMenu right> |
|
|
|
<DropdownMenu right> |
|
|
|
<DropdownItem color="primary" size="sm" onClick={() => handleChangeLng("id")}>ID</DropdownItem> |
|
|
|
<DropdownItem color="primary" size="sm" onClick={() => handleChangeLng("id")}>ID</DropdownItem> |
|
|
|
<DropdownItem color="success" size="sm" onClick={() => handleChangeLng("en")}>EN</DropdownItem> |
|
|
|
<DropdownItem color="success" size="sm" onClick={() => handleChangeLng("en")}>EN</DropdownItem> |
|
|
|
<DropdownItem href="#/settings"><i className="fa fa-user"></i>Profile</DropdownItem> |
|
|
|
<DropdownItem href="#/settings"><i className="fa fa-user"></i>Profile</DropdownItem> |
|
|
|
<DropdownItem onClick={e => this.signOut(e)}><i className="fa fa-sign-out"></i> Logout</DropdownItem> |
|
|
|
<DropdownItem onClick={e => this.signOut(e)}><i className="fa fa-sign-out"></i> Logout</DropdownItem> |
|
|
|
</DropdownMenu> |
|
|
|
</DropdownMenu> |
|
|
|
</UncontrolledDropdown>} |
|
|
|
</UncontrolledDropdown>} |
|
|
|
<button className='sidebar-minimizer mt-auto' type='button' onClick={this.toggleMinimized}> |
|
|
|
<button className='sidebar-minimizer mt-auto' type='button' onClick={this.toggleMinimized}> |
|
|
|
</button> |
|
|
|
</button> |
|
|
|
</AppSidebar> |
|
|
|
</AppSidebar> |
|
|
|
) : null } |
|
|
|
) : null} |
|
|
|
<main className="main"> |
|
|
|
<main className="main"> |
|
|
|
{this.state.breadrCrumbReady ? this.getAppBreadcrumb() : null} |
|
|
|
{this.state.breadrCrumbReady ? this.getAppBreadcrumb() : null} |
|
|
|
<Container fluid> |
|
|
|
<Container fluid> |
|
|
|