Refactor map for menu removal
Some checks failed
FarmMaps.Develop/FarmMapsLib/develop There was a failure building this commit
Some checks failed
FarmMaps.Develop/FarmMapsLib/develop There was a failure building this commit
This commit is contained in:
@@ -13,7 +13,6 @@
|
||||
searchMinified:searchMinified$|async,
|
||||
selectedItem:selectedItem$|async,
|
||||
queryState:queryState$|async,
|
||||
menuVisible:menuVisible$|async,
|
||||
searchCollapsed:searchCollapsed$|async,
|
||||
clearEnabled:clearEnabled$|async,
|
||||
period:period$|async,
|
||||
@@ -64,19 +63,6 @@
|
||||
</div>
|
||||
</div>
|
||||
</fm-side-panel>
|
||||
<fm-side-panel [visible]="state.menuVisible" class="menu">
|
||||
<div class="container-fluid">
|
||||
<div class="body">
|
||||
<div class="d-flex flex-row">
|
||||
<div class="mt-2 mb-2 flex-grow-1 logo"><router-outlet name="side-panel-logo"></router-outlet></div>
|
||||
<div class="mt-2 mb-2 ml-2"><button type="button" class="btn btn-outline-secondary" (click)="handleToggleMenu($event)"><i class="fa fa-times" aria-hidden="true"></i></button></div>
|
||||
</div>
|
||||
<div class="d-flex flex-column cards">
|
||||
<router-outlet name="side-panel-menu"></router-outlet>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</fm-side-panel>
|
||||
</ng-container>
|
||||
|
||||
|
||||
|
@@ -1,171 +1,167 @@
|
||||
@import "../../_theme.scss";
|
||||
@import "~bootstrap/scss/bootstrap.scss";
|
||||
|
||||
aol-map { position:absolute;width:100%;height:100%;}
|
||||
|
||||
.arrow {
|
||||
top: 3rem;
|
||||
}
|
||||
|
||||
.popover {
|
||||
max-height:22rem;
|
||||
min-width:15rem;
|
||||
}
|
||||
|
||||
.popover-body {
|
||||
max-height:19rem;
|
||||
overflow:hidden;
|
||||
overflow-y:auto;
|
||||
}
|
||||
|
||||
.card-title {
|
||||
font-size:1rem;
|
||||
}
|
||||
|
||||
.menu-card {
|
||||
margin-left:-7px;
|
||||
padding-left:7px;
|
||||
margin-right:-7px;
|
||||
padding-right:7px;
|
||||
margin-bottom:7px;
|
||||
}
|
||||
|
||||
.icon-top {
|
||||
font-size: 6rem;
|
||||
text-align: center;
|
||||
height: 9.75rem;
|
||||
}
|
||||
|
||||
.icon-top i {
|
||||
padding-top: 1.875rem;
|
||||
}
|
||||
|
||||
.card-title {
|
||||
white-space:nowrap;
|
||||
overflow:hidden;
|
||||
text-overflow:ellipsis;
|
||||
}
|
||||
|
||||
|
||||
.control-container {
|
||||
position: absolute;
|
||||
right: 1em;
|
||||
bottom: 1em;
|
||||
}
|
||||
|
||||
switch2d3d {
|
||||
position: absolute;
|
||||
right: 1em;
|
||||
bottom: 1em;
|
||||
}
|
||||
|
||||
.panel-wrapper {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: stretch;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.panel-top {
|
||||
display: block;
|
||||
height:0;
|
||||
}
|
||||
|
||||
.panel-bottom {
|
||||
overflow:auto;
|
||||
flex:1;
|
||||
}
|
||||
|
||||
.no-results {
|
||||
font-weight:bold;
|
||||
}
|
||||
|
||||
.no-results > span {
|
||||
font-style:italic;
|
||||
}
|
||||
|
||||
div.header {
|
||||
display:flex;
|
||||
padding-top:1em;
|
||||
margin-bottom:1em;
|
||||
}
|
||||
|
||||
div.header button {
|
||||
margin-left:1em;
|
||||
}
|
||||
|
||||
.logo {
|
||||
overflow: hidden;
|
||||
max-height: 2.5em;
|
||||
}
|
||||
|
||||
timespan {
|
||||
position: absolute;
|
||||
transition: left 0.5s;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
background-color: rgba(255, 255, 255, 0.5);
|
||||
}
|
||||
|
||||
timespan.menuVisible {
|
||||
left: 22rem;
|
||||
}
|
||||
|
||||
:host ::ng-deep .timespan div.clearfix {
|
||||
transition: height 0.5s;
|
||||
}
|
||||
|
||||
:host ::ng-deep .menu .side-panel {
|
||||
z-index: 100;
|
||||
background-color: rgb(245,245,245);
|
||||
}
|
||||
|
||||
@media screen and (min-width:44rem) {
|
||||
.panel-top {
|
||||
height: 8.1rem;
|
||||
}
|
||||
}
|
||||
|
||||
.map {
|
||||
transition: margin-left 0.3s;
|
||||
}
|
||||
|
||||
.shortcut-icon {
|
||||
display: inline-block;
|
||||
text-align: center;
|
||||
margin: 0.5rem;
|
||||
cursor:pointer;
|
||||
}
|
||||
|
||||
.shortcut-icon > .icon {
|
||||
width: 3rem;
|
||||
height: 3rem;
|
||||
background-color: #731e64;
|
||||
display: inline-block;
|
||||
text-align: center;
|
||||
line-height: 3rem;
|
||||
color: #ffffff;
|
||||
font-size: 2rem;
|
||||
}
|
||||
|
||||
.shortcut-icon > .caption {
|
||||
text-align: center;
|
||||
width: 4rem;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
color: theme-color();
|
||||
}
|
||||
|
||||
.shortcut-icon > .farm-icon {
|
||||
background-color: #731E64;
|
||||
}
|
||||
|
||||
.shortcut-icon > .trijntje-icon {
|
||||
background-color: #FAA33F;
|
||||
}
|
||||
|
||||
/*.panel-visible {
|
||||
margin-left:22rem;
|
||||
}*/
|
||||
@import "../../_theme.scss";
|
||||
@import "~bootstrap/scss/bootstrap.scss";
|
||||
|
||||
aol-map { position:absolute;width:100%;height:100%;}
|
||||
|
||||
.arrow {
|
||||
top: 3rem;
|
||||
}
|
||||
|
||||
.popover {
|
||||
max-height:22rem;
|
||||
min-width:15rem;
|
||||
}
|
||||
|
||||
.popover-body {
|
||||
max-height:19rem;
|
||||
overflow:hidden;
|
||||
overflow-y:auto;
|
||||
}
|
||||
|
||||
.card-title {
|
||||
font-size:1rem;
|
||||
}
|
||||
|
||||
.menu-card {
|
||||
margin-left:-7px;
|
||||
padding-left:7px;
|
||||
margin-right:-7px;
|
||||
padding-right:7px;
|
||||
margin-bottom:7px;
|
||||
}
|
||||
|
||||
.icon-top {
|
||||
font-size: 6rem;
|
||||
text-align: center;
|
||||
height: 9.75rem;
|
||||
}
|
||||
|
||||
.icon-top i {
|
||||
padding-top: 1.875rem;
|
||||
}
|
||||
|
||||
.card-title {
|
||||
white-space:nowrap;
|
||||
overflow:hidden;
|
||||
text-overflow:ellipsis;
|
||||
}
|
||||
|
||||
|
||||
.control-container {
|
||||
position: absolute;
|
||||
right: 1em;
|
||||
bottom: 1em;
|
||||
}
|
||||
|
||||
switch2d3d {
|
||||
position: absolute;
|
||||
right: 1em;
|
||||
bottom: 1em;
|
||||
}
|
||||
|
||||
.panel-wrapper {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: stretch;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.panel-top {
|
||||
display: block;
|
||||
height:0;
|
||||
}
|
||||
|
||||
.panel-bottom {
|
||||
overflow:auto;
|
||||
flex:1;
|
||||
}
|
||||
|
||||
.no-results {
|
||||
font-weight:bold;
|
||||
}
|
||||
|
||||
.no-results > span {
|
||||
font-style:italic;
|
||||
}
|
||||
|
||||
div.header {
|
||||
display:flex;
|
||||
padding-top:1em;
|
||||
margin-bottom:1em;
|
||||
}
|
||||
|
||||
div.header button {
|
||||
margin-left:1em;
|
||||
}
|
||||
|
||||
.logo {
|
||||
overflow: hidden;
|
||||
max-height: 2.5em;
|
||||
}
|
||||
|
||||
timespan {
|
||||
position: absolute;
|
||||
transition: left 0.5s;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
background-color: rgba(255, 255, 255, 0.5);
|
||||
}
|
||||
|
||||
timespan.menuVisible {
|
||||
left: 22rem;
|
||||
}
|
||||
|
||||
:host ::ng-deep .timespan div.clearfix {
|
||||
transition: height 0.5s;
|
||||
}
|
||||
|
||||
|
||||
@media screen and (min-width:44rem) {
|
||||
.panel-top {
|
||||
height: 8.1rem;
|
||||
}
|
||||
}
|
||||
|
||||
.map {
|
||||
transition: margin-left 0.3s;
|
||||
}
|
||||
|
||||
.shortcut-icon {
|
||||
display: inline-block;
|
||||
text-align: center;
|
||||
margin: 0.5rem;
|
||||
cursor:pointer;
|
||||
}
|
||||
|
||||
.shortcut-icon > .icon {
|
||||
width: 3rem;
|
||||
height: 3rem;
|
||||
background-color: #731e64;
|
||||
display: inline-block;
|
||||
text-align: center;
|
||||
line-height: 3rem;
|
||||
color: #ffffff;
|
||||
font-size: 2rem;
|
||||
}
|
||||
|
||||
.shortcut-icon > .caption {
|
||||
text-align: center;
|
||||
width: 4rem;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
color: theme-color();
|
||||
}
|
||||
|
||||
.shortcut-icon > .farm-icon {
|
||||
background-color: #731E64;
|
||||
}
|
||||
|
||||
.shortcut-icon > .trijntje-icon {
|
||||
background-color: #FAA33F;
|
||||
}
|
||||
|
||||
/*.panel-visible {
|
||||
margin-left:22rem;
|
||||
}*/
|
||||
|
@@ -138,7 +138,6 @@ export class MapComponent implements OnInit, OnDestroy,AfterViewInit {
|
||||
this.clearEnabled$ = this.store.select(mapReducers.selectGetClearEnabled);
|
||||
this.searchCollapsed$ = this.store.select(mapReducers.selectGetSearchCollapsed);
|
||||
this.searchMinified$ = this.store.select(mapReducers.selectGetSearchMinified);
|
||||
this.menuVisible$ = this.store.select(mapReducers.selectGetMenuVisible);
|
||||
this.openedModalName$ = this.store.select(commonReducers.selectOpenedModalName);
|
||||
this.query$ = this.store.select(mapReducers.selectGetQuery);
|
||||
this.extent$ = this.store.select(mapReducers.selectGetExtent);
|
||||
@@ -213,7 +212,7 @@ export class MapComponent implements OnInit, OnDestroy,AfterViewInit {
|
||||
}
|
||||
|
||||
handleToggleMenu(event) {
|
||||
this.store.dispatch(new mapActions.ToggleMenu());
|
||||
this.store.dispatch(new commonActions.ToggleMenu());
|
||||
}
|
||||
|
||||
handleToggleBaseLayers(event:MouseEvent) {
|
||||
|
Reference in New Issue
Block a user