Remove stateserializerservice from common-map
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:
parent
9c5955bc6f
commit
755475bff7
@ -2,7 +2,7 @@ import { Action } from '@ngrx/store';
|
|||||||
|
|
||||||
import { IMapState } from '../models/map.state';
|
import { IMapState } from '../models/map.state';
|
||||||
import { IItemLayer } from '../models/item.layer';
|
import { IItemLayer } from '../models/item.layer';
|
||||||
import { IQueryState } from '../models/query.state';
|
import { IQueryState } from '@farmmaps/common';
|
||||||
import { IItem } from '@farmmaps/common';
|
import { IItem } from '@farmmaps/common';
|
||||||
import { Feature,Style } from 'ol';
|
import { Feature,Style } from 'ol';
|
||||||
|
|
||||||
|
@ -20,7 +20,6 @@ import { IMapState} from './models/map.state';
|
|||||||
import { ISelectedFeatures } from './models/selected.features';
|
import { ISelectedFeatures } from './models/selected.features';
|
||||||
import { IItemLayer } from './models/item.layer';
|
import { IItemLayer } from './models/item.layer';
|
||||||
import { ItemLayer} from './models/item.layer';
|
import { ItemLayer} from './models/item.layer';
|
||||||
import { IQueryState } from './models/query.state';
|
|
||||||
import { IPeriodState } from './models/period.state';
|
import { IPeriodState } from './models/period.state';
|
||||||
|
|
||||||
// components
|
// components
|
||||||
@ -57,7 +56,6 @@ import { MapSearchComponent } from './components/map-search/map-search.component
|
|||||||
import { MapRoutingModule } from './common-map-routing.module';
|
import { MapRoutingModule } from './common-map-routing.module';
|
||||||
import { LegendComponent } from './components/legend/legend.component';
|
import { LegendComponent } from './components/legend/legend.component';
|
||||||
import { LayerVectorImageComponent } from './components/aol/layer-vector-image/layer-vector-image.component';
|
import { LayerVectorImageComponent } from './components/aol/layer-vector-image/layer-vector-image.component';
|
||||||
import { StateSerializerService } from './services/state-serializer.service';
|
|
||||||
import {FeatureIconService} from './services/feature-icon.service';
|
import {FeatureIconService} from './services/feature-icon.service';
|
||||||
import { GeolocationService } from './services/geolocation.service';
|
import { GeolocationService } from './services/geolocation.service';
|
||||||
import {DeviceOrientationService} from './services/device-orientation.service';
|
import {DeviceOrientationService} from './services/device-orientation.service';
|
||||||
@ -133,7 +131,6 @@ export {
|
|||||||
AbstractItemWidgetComponent,
|
AbstractItemWidgetComponent,
|
||||||
AbstractItemListItemComponent,
|
AbstractItemListItemComponent,
|
||||||
AbstractItemListComponent,
|
AbstractItemListComponent,
|
||||||
StateSerializerService,
|
|
||||||
FeatureIconService,
|
FeatureIconService,
|
||||||
GeolocationService,
|
GeolocationService,
|
||||||
DeviceOrientationService,
|
DeviceOrientationService,
|
||||||
@ -141,7 +138,6 @@ export {
|
|||||||
ISelectedFeatures,
|
ISelectedFeatures,
|
||||||
IItemLayer,
|
IItemLayer,
|
||||||
ItemLayer,
|
ItemLayer,
|
||||||
IQueryState,
|
|
||||||
IPeriodState,
|
IPeriodState,
|
||||||
ForChild,
|
ForChild,
|
||||||
ForItemType,
|
ForItemType,
|
||||||
@ -254,7 +250,6 @@ export class AppCommonMapModule {
|
|||||||
return {
|
return {
|
||||||
ngModule: AppCommonMapModule,
|
ngModule: AppCommonMapModule,
|
||||||
providers: [
|
providers: [
|
||||||
StateSerializerService,
|
|
||||||
FeatureIconService,
|
FeatureIconService,
|
||||||
GeolocationService,
|
GeolocationService,
|
||||||
DeviceOrientationService,
|
DeviceOrientationService,
|
||||||
|
@ -2,7 +2,7 @@ import { Component, Input, OnInit, ComponentFactoryResolver, ViewChild, SimpleCh
|
|||||||
import { Feature } from 'ol';
|
import { Feature } from 'ol';
|
||||||
import { FeatureListComponent,AbstractFeatureListComponent } from '../feature-list/feature-list.component';
|
import { FeatureListComponent,AbstractFeatureListComponent } from '../feature-list/feature-list.component';
|
||||||
import { WidgetHostDirective } from '../widget-host/widget-host.directive';
|
import { WidgetHostDirective } from '../widget-host/widget-host.directive';
|
||||||
import {IQueryState } from '../../models/query.state';
|
import {IQueryState } from '@farmmaps/common';
|
||||||
import * as mapReducers from '../../reducers/map.reducer';
|
import * as mapReducers from '../../reducers/map.reducer';
|
||||||
import * as mapActions from '../../actions/map.actions';
|
import * as mapActions from '../../actions/map.actions';
|
||||||
import { Store } from '@ngrx/store';
|
import { Store } from '@ngrx/store';
|
||||||
|
@ -8,7 +8,7 @@ import * as mapActions from '../../actions/map.actions';
|
|||||||
import { Observable, from } from 'rxjs';
|
import { Observable, from } from 'rxjs';
|
||||||
import { withLatestFrom } from 'rxjs/operators';
|
import { withLatestFrom } from 'rxjs/operators';
|
||||||
import { tassign } from 'tassign';
|
import { tassign } from 'tassign';
|
||||||
import { IQueryState } from '../../models/query.state';
|
import { IQueryState } from '@farmmaps/common';
|
||||||
|
|
||||||
|
|
||||||
@Injectable()
|
@Injectable()
|
||||||
|
@ -2,7 +2,7 @@ import { Component, Input, Output, OnInit, EventEmitter, SimpleChanges, OnChange
|
|||||||
import { Observable , of } from 'rxjs';
|
import { Observable , of } from 'rxjs';
|
||||||
import { debounceTime,distinctUntilChanged,tap,switchMap,merge,catchError} from 'rxjs/operators';
|
import { debounceTime,distinctUntilChanged,tap,switchMap,merge,catchError} from 'rxjs/operators';
|
||||||
import { TypeaheadService, TimespanService } from '@farmmaps/common';
|
import { TypeaheadService, TimespanService } from '@farmmaps/common';
|
||||||
import { IQueryState } from '../../models/query.state';
|
import { IQueryState } from '@farmmaps/common';
|
||||||
import { IPeriodState } from '../../models/period.state';
|
import { IPeriodState } from '../../models/period.state';
|
||||||
import { tassign } from 'tassign';
|
import { tassign } from 'tassign';
|
||||||
|
|
||||||
|
@ -12,12 +12,12 @@ import * as mapActions from '../../actions/map.actions';
|
|||||||
import { IMapState} from '../../models/map.state';
|
import { IMapState} from '../../models/map.state';
|
||||||
import { ISelectedFeatures } from '../../models/selected.features';
|
import { ISelectedFeatures } from '../../models/selected.features';
|
||||||
import { IItemLayer } from '../../models/item.layer';
|
import { IItemLayer } from '../../models/item.layer';
|
||||||
import { IQueryState } from '../../models/query.state';
|
import { IQueryState } from '@farmmaps/common';
|
||||||
import { IPeriodState } from '../../models/period.state';
|
import { IPeriodState } from '../../models/period.state';
|
||||||
import {IStyles} from '../../models/style.cache';
|
import {IStyles} from '../../models/style.cache';
|
||||||
import { IDroppedFile } from '../aol/file-drop-target/file-drop-target.component';
|
import { IDroppedFile } from '../aol/file-drop-target/file-drop-target.component';
|
||||||
import { IMetaData } from '../meta-data-modal/meta-data-modal.component';
|
import { IMetaData } from '../meta-data-modal/meta-data-modal.component';
|
||||||
import { StateSerializerService } from '../../services/state-serializer.service';
|
import { StateSerializerService } from '@farmmaps/common';
|
||||||
import { GeolocationService} from '../../services/geolocation.service';
|
import { GeolocationService} from '../../services/geolocation.service';
|
||||||
import {DeviceOrientationService} from '../../services/device-orientation.service';
|
import {DeviceOrientationService} from '../../services/device-orientation.service';
|
||||||
|
|
||||||
|
@ -1,12 +0,0 @@
|
|||||||
export interface IQueryState {
|
|
||||||
itemCode: string;
|
|
||||||
parentCode: string;
|
|
||||||
level: number;
|
|
||||||
itemType: string;
|
|
||||||
query: string;
|
|
||||||
tags: string;
|
|
||||||
bboxFilter: boolean;
|
|
||||||
startDate: Date;
|
|
||||||
endDate: Date;
|
|
||||||
bbox: number[];
|
|
||||||
}
|
|
@ -2,7 +2,7 @@ import { tassign } from 'tassign';
|
|||||||
import { IItem,Item } from '@farmmaps/common';
|
import { IItem,Item } from '@farmmaps/common';
|
||||||
import { IItemLayer,ItemLayer} from '../models/item.layer';
|
import { IItemLayer,ItemLayer} from '../models/item.layer';
|
||||||
import { IMapState} from '../models/map.state';
|
import { IMapState} from '../models/map.state';
|
||||||
import { IQueryState} from '../models/query.state';
|
import { IQueryState} from '@farmmaps/common';
|
||||||
import { IPeriodState} from '../models/period.state';
|
import { IPeriodState} from '../models/period.state';
|
||||||
import { IStyles} from '../models/style.cache';
|
import { IStyles} from '../models/style.cache';
|
||||||
import * as mapActions from '../actions/map.actions';
|
import * as mapActions from '../actions/map.actions';
|
||||||
|
@ -1,52 +0,0 @@
|
|||||||
import { Injectable, Query } from '@angular/core';
|
|
||||||
import { IQueryState } from '../models/query.state';
|
|
||||||
import { query } from '@angular/animations';
|
|
||||||
|
|
||||||
@Injectable()
|
|
||||||
export class StateSerializerService {
|
|
||||||
|
|
||||||
serialize(queryState: IQueryState): string {
|
|
||||||
|
|
||||||
var state = "";
|
|
||||||
state += (queryState.itemCode) ? queryState.itemCode : "";
|
|
||||||
state += ";";
|
|
||||||
state += (queryState.parentCode) ? queryState.parentCode + ";" + queryState.level.toString() : ";";
|
|
||||||
state += ";";
|
|
||||||
state += (queryState.itemType) ? queryState.itemType : "";
|
|
||||||
state += ";";
|
|
||||||
state += (queryState.query) ? encodeURIComponent( queryState.query ) : "";
|
|
||||||
state += ";";
|
|
||||||
state += (queryState.tags) ? encodeURIComponent( queryState.tags ) : "";
|
|
||||||
state += ";";
|
|
||||||
state += (queryState.bboxFilter) ? "1" : "0";
|
|
||||||
state += ";";
|
|
||||||
state += (queryState.startDate) ? JSON.stringify(queryState.startDate) : "";
|
|
||||||
state += ";";
|
|
||||||
state += (queryState.endDate) ? JSON.stringify(queryState.endDate) : "";
|
|
||||||
state += ";";
|
|
||||||
state += (queryState.bboxFilter && queryState.bbox && queryState.bbox.length>0) ? JSON.stringify(queryState.bbox) : "";
|
|
||||||
|
|
||||||
return btoa(state);
|
|
||||||
}
|
|
||||||
|
|
||||||
deserialize(queryState: string): IQueryState {
|
|
||||||
var state: IQueryState = { itemCode: null, parentCode: null, level: 1, itemType: null, query: null, tags: null, bboxFilter: false, startDate: null, endDate: null,bbox:[] };
|
|
||||||
var stateParts = atob(queryState).split(";");
|
|
||||||
if (stateParts.length == 10) {
|
|
||||||
if (stateParts[0] != "") state.itemCode = stateParts[0];
|
|
||||||
if (stateParts[1] != "") {
|
|
||||||
state.parentCode = stateParts[1];
|
|
||||||
state.level = parseInt(stateParts[2]);
|
|
||||||
}
|
|
||||||
if (stateParts[3] != "") state.itemType = stateParts[3];
|
|
||||||
if (stateParts[4] != "") state.query = decodeURIComponent(stateParts[4]);
|
|
||||||
if (stateParts[5] != "") state.tags = decodeURIComponent( stateParts[5]);
|
|
||||||
if (stateParts[6] != "") state.bboxFilter = parseInt(stateParts[6]) == 1;
|
|
||||||
if (stateParts[7] != "") state.startDate = new Date(Date.parse(JSON.parse(stateParts[7])));
|
|
||||||
if (stateParts[8] != "") state.endDate = new Date(Date.parse(JSON.parse(stateParts[8])));
|
|
||||||
if (stateParts[9] != "") state.bbox = JSON.parse(stateParts[9]);
|
|
||||||
}
|
|
||||||
|
|
||||||
return state;
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user