Add SetSelectedItemLayer action
	
		
			
	
		
	
	
		
	
		
			All checks were successful
		
		
	
	
		
			
				
	
				FarmMaps.Develop/FarmMapsLib/pipeline/head This commit looks good
				
			
		
		
	
	
				
					
				
			
		
			All checks were successful
		
		
	
	FarmMaps.Develop/FarmMapsLib/pipeline/head This commit looks good
				
			This commit is contained in:
		| @@ -16,6 +16,7 @@ export const STARTSEARCHSUCCESS = '[Map] StartSearchSuccess'; | |||||||
| export const SELECTFEATURE = '[Map] SelectFeature'; | export const SELECTFEATURE = '[Map] SelectFeature'; | ||||||
| export const SELECTITEM = '[Map] SelectItem'; | export const SELECTITEM = '[Map] SelectItem'; | ||||||
| export const SELECTITEMSUCCESS = '[Map] SelectItemSuccess'; | export const SELECTITEMSUCCESS = '[Map] SelectItemSuccess'; | ||||||
|  | export const SETSELECTEDITEMLAYER = '[Map] SetSelectedItemLayer'; | ||||||
| export const SELECTTEMPORALITEMSSUCCESS = '[Map] SelectTemporalItemsSuccess'; | export const SELECTTEMPORALITEMSSUCCESS = '[Map] SelectTemporalItemsSuccess'; | ||||||
| export const NEXTTEMPORAL = '[Map] NextTemporal'; | export const NEXTTEMPORAL = '[Map] NextTemporal'; | ||||||
| export const PREVIOUSTEMPORAL = '[Map] PreviousTemporal'; | export const PREVIOUSTEMPORAL = '[Map] PreviousTemporal'; | ||||||
| @@ -181,6 +182,12 @@ export class AddLayer implements Action { | |||||||
|   constructor(public item:IItem,public layerIndex=-1) { } |   constructor(public item:IItem,public layerIndex=-1) { } | ||||||
| } | } | ||||||
|  |  | ||||||
|  | export class SetSelectedItemLayer implements Action { | ||||||
|  |   readonly type = SETSELECTEDITEMLAYER; | ||||||
|  |  | ||||||
|  |   constructor(public item:IItem,public layerIndex=-1) { } | ||||||
|  | } | ||||||
|  |  | ||||||
| export class SetVisibility implements Action { | export class SetVisibility implements Action { | ||||||
|   readonly type = SETVISIBILITY; |   readonly type = SETVISIBILITY; | ||||||
|  |  | ||||||
| @@ -299,5 +306,6 @@ export type Actions = SetMapState | |||||||
|   | SetStyle |   | SetStyle | ||||||
|   | ShowLayerSwitcher |   | ShowLayerSwitcher | ||||||
|   | SetReplaceUrl |   | SetReplaceUrl | ||||||
|   | SetFeatures; |   | SetFeatures | ||||||
|  |   | SetSelectedItemLayer; | ||||||
|  |  | ||||||
|   | |||||||
| @@ -194,6 +194,14 @@ export class MapEffects { | |||||||
|       } |       } | ||||||
|     )); |     )); | ||||||
|  |  | ||||||
|  |     @Effect() | ||||||
|  |     selectItemSuccessSetLayer$: Observable<Action> = this.actions$.pipe( | ||||||
|  |       ofType(mapActions.SELECTITEMSUCCESS), | ||||||
|  |       map((action:mapActions.SelectItemSuccess) =>  | ||||||
|  |          new mapActions.SetSelectedItemLayer(action.item) | ||||||
|  |         ) | ||||||
|  |       ); | ||||||
|  |  | ||||||
|   @Effect() |   @Effect() | ||||||
|   selectItemSuccess$: Observable<Action> = this.actions$.pipe( |   selectItemSuccess$: Observable<Action> = this.actions$.pipe( | ||||||
|     ofType(mapActions.SELECTITEMSUCCESS), |     ofType(mapActions.SELECTITEMSUCCESS), | ||||||
|   | |||||||
| @@ -163,18 +163,10 @@ export function reducer(state = initialState, action: mapActions.Actions | commo | |||||||
|     } |     } | ||||||
|     case mapActions.SELECTITEMSUCCESS: { |     case mapActions.SELECTITEMSUCCESS: { | ||||||
|       let a = action as mapActions.SelectItemSuccess; |       let a = action as mapActions.SelectItemSuccess; | ||||||
|       var itemLayer = null; |  | ||||||
|       if (a.item && "vnd.farmmaps.itemtype.layer,vnd.farmmaps.itemtype.shape.processed,vnd.farmmaps.itemtype.geotiff.processed".indexOf(a.item.itemType) >=0 ) { |  | ||||||
|         itemLayer = new ItemLayer(a.item); |  | ||||||
|         itemLayer.layerIndex =  a.item.data.layers?a.item.data.layers[0].index:-1; |  | ||||||
|       } else if (a.item && a.item.itemType == "vnd.farmmaps.itemtype.temporal") { |  | ||||||
|         itemLayer = new TemporalItemLayer(a.item); |  | ||||||
|       } |  | ||||||
|       return tassign(state, { |       return tassign(state, { | ||||||
|         inSearch:false, |         inSearch:false, | ||||||
|         selectedItem: a.item, |         selectedItem: a.item, | ||||||
|         parentItem: a.parentItem, |         parentItem: a.parentItem, | ||||||
|         selectedItemLayer: itemLayer, |  | ||||||
|         panelVisible: a.item != null, |         panelVisible: a.item != null, | ||||||
|         clearEnabled: a.item != null, |         clearEnabled: a.item != null, | ||||||
|         searchCollapsed: false, |         searchCollapsed: false, | ||||||
| @@ -182,6 +174,20 @@ export function reducer(state = initialState, action: mapActions.Actions | commo | |||||||
|         queryState: tassign(state.queryState, {itemCode:a.item ? a.item.code:null}) |         queryState: tassign(state.queryState, {itemCode:a.item ? a.item.code:null}) | ||||||
|       }); |       }); | ||||||
|     } |     } | ||||||
|  |     case mapActions.SETSELECTEDITEMLAYER: { | ||||||
|  |       let a = action as mapActions.SetSelectedItemLayer; | ||||||
|  |       var itemLayer = null; | ||||||
|  |       if (a.item && "vnd.farmmaps.itemtype.layer,vnd.farmmaps.itemtype.shape.processed,vnd.farmmaps.itemtype.geotiff.processed".indexOf(a.item.itemType) >=0 ) { | ||||||
|  |         itemLayer = new ItemLayer(a.item); | ||||||
|  |         itemLayer.layerIndex = a.layerIndex>=0?a.layerIndex:a.item.data.layers?a.item.data.layers[0].index:-1; | ||||||
|  |       } else if (a.item && a.item.itemType == "vnd.farmmaps.itemtype.temporal") { | ||||||
|  |         itemLayer = new TemporalItemLayer(a.item); | ||||||
|  |       } | ||||||
|  |  | ||||||
|  |       return tassign(state, { | ||||||
|  |         selectedItemLayer: itemLayer, | ||||||
|  |       }); | ||||||
|  |     } | ||||||
|     case mapActions.SELECTTEMPORALITEMSSUCCESS:{ |     case mapActions.SELECTTEMPORALITEMSSUCCESS:{ | ||||||
|       let a = action as mapActions.SelectTemporalItemsSuccess; |       let a = action as mapActions.SelectTemporalItemsSuccess; | ||||||
|       let selectedItemLayer=tassign(state.selectedItemLayer) as TemporalItemLayer; |       let selectedItemLayer=tassign(state.selectedItemLayer) as TemporalItemLayer; | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user