ember-arcgis-portal-components
Ember Components for interacting with ArcGIS Online/Enterprise items.
This repository contains standalone components from ArcGIS Hub for interacting with ArcGIS Online and Enterprise items, making it extremely simple to include a responsive search dialog in your own Ember, Bootstrap application.
Check out the live demo
Installation
ember install ember-arcgis-portal-components
Components
Item Picker
The item picker component allows a user to search a portal for items, see a preview of the item, and then get the item returned. While commonly used in a modal, the component can be used in any context.
Layer Picker
Layer picker is part of the item picker. It allows for items with multiple layers to display them as radio buttons. This will then allow the user to select which layer they would like to use. The layer picker will display by default if the item is type Feature Service
or Map Service
.
Generating a New Component
When generating a new component, please structure your files in the following order. This will help standardize the files and keep everything in an organized format:
- Injections
- Component stuff (classNames, tagName, etc)
- Component lifecycle hooks (init, didInsertElement)
- roughly in the order they happen
- Properties
- Computed properties
- Functions
- Actions
Options for Item Picker
Flag | Type | Required | Purpose |
---|
selectAction | Function (Closure Action) | Yes | This action is run when the Select button inside the item picker is pressed. This should be a closure action. |
searchItemsOnInit | Boolean | No | Allows the item picker to execute a search and show the results as soon as it is rendered. This searches the active catalog on launch. If no active catalog is set, it will use the first available catalog. |
selectMultiple | Boolean | No | Allows the item picker to select multiple items at once. An array of items will be passed to the closure action. |
catalog | Array | No | Allows the item picker to be filtered based on ArcGIS Online (AGO) queries. If the catalog array has more than one entry, a "facets" list will be shown on the left of the component, and it will use the name property. |
onSelectionValidator | Function (Closure Action) | No | Allows an application to do more in-depth validation of an item before using it. |
portalOpts | Object | No | Allows a different portal to be assigned to an item picker. |
rowComponent | String (Component) | No | Allows a different row layout to be passed into the item picker. |
Examples
Default Usage (selectAction)
{{item-picker
selectAction=(action "onSelectItem")}}
Search on Initialize (searchItemsOnInit)
{{item-picker
searchItemsOnInit=true
selectAction=(action "onSelectItem")}}
Multi-Select (selectMultiple)
{{item-picker
selectMultiple=true
selectAction=(action "onSelectItem")}}
Facets (catalog)
This code will have two facets on the left hand side of the component. All
and Waste Water Apps
In the controller:
facets: [
{
name: 'All',
params: {query: { access: 'public'}}
},
{
name: 'Waste Water Apps',
params: {
query: {
type: ['Web Mapping Application'],
typekeywords: ['-story'],
tags: ['Waste Water']
}
}
}
]
In the template:
{{item-picker
searchItemsOnInit=true
catalog=facets
selectAction=(action "onSelectItem")}}
Validation (onSelectionValidator)
In the controller:
actions: {
selectionValidator(item) {
if (item.something) {
return {
item: item,
status: 'error',
message: 'This item can not be used because ...'
}
} else {
return {
item: item,
status: 'ok'
};
}
}
}
In the template:
{{item-picker
selectAction=(action "onSelectItem")
onSelectionValidator=(action "selectionValidator") }}
Portal Options (portalOpts)
In the controller:
portalOpts: {
portalBaseUrl: 'https://someotherportal.com',
token: 'cb12---TOKEN-FOR-someotherportal.com---34..'
}
In the template:
{{item-picker
selectAction=(action "onSelectItem")
portalOpts=portalOpts }}
Custom Row Component (rowComponent)
In the template:
{{item-picker
selectAction=(action "onSelectItem")
rowComponent="name-of-custom-component" }}
Setup
git clone https://github.com/Esri/ember-arcgis-portal-components
cd ember-arcgis-portal-components
npm install
bower install
Running
Running Tests
npm test
(Runs ember try:each
to test your addon against multiple Ember versions)ember test
ember test --server
Building
For more information on using ember-cli, visit https://ember-cli.com/.
Contributing
Esri welcomes contributions from anyone and everyone. Please see our guidelines for contributing.
License
Copyright 2017 Esri
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and limitations under the License.
A copy of the license is available in the repository's LICENSE file.