ember-arcgis-portal-components

1.3.5 • Public • Published

ember-arcgis-portal-components

npm version build status apache licensed

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

screenshot

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.

Documentation

Contributing

The components in this addon are used in MANY MANY places. As such, changes made to existing components, especially any external API surfaces is prone to having catastrophic downstream effects. Thus - before making any changes, please read and understand the design document. We are working on adding more unit and integration tests, but this will be an on-going process. Until we have a very high-level of coverage, modifications to these components should be considered a high-risk activity.

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:

  1. Injections
  2. Component stuff (classNames, tagName, etc)
  3. Component lifecycle hooks (init, didInsertElement)
    • roughly in the order they happen
  4. Properties
  5. Computed properties
  6. Functions
  7. Actions

Examples

Default Usage (selectAction)

{{item-picker
      selectAction=(action "onSelectItem")}}

The selectAction handler will be passed the selected item, and it may be passed a second options param which will contain contextually specific content. For example, if the item selected is a Feature Service, then the Preview will show a layer picker list. The selected layer will be pass in the options as {layer: {...}}

actions: {
  onSelectItem(item, options) {
    ...
  }
}

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

  • ember build

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 (c) 2018 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.

Package Sidebar

Install

npm i ember-arcgis-portal-components

Weekly Downloads

55

Version

1.3.5

License

Apache-2.0

Unpacked Size

591 kB

Total Files

60

Last publish

Collaborators

  • bddavidson
  • benstoltz
  • dbouwman
  • mjuniper
  • tomwayson