openmct/platform/import-export
Andrew Henry a09da30768
New eslint rules auto fix (#3058)
* no-implicit-coercion and no-unneeded-ternary

* End every line with a semicolon

* Spacing and formatting

* Enabled semi-spacing

* Applies npm run lint:fix to code after master merge

* Fix merge issues

* Switched operator-linebreak to 'before'

Co-authored-by: Joshi <simplyrender@gmail.com>
2020-07-31 12:11:03 -07:00
..
src/actions New eslint rules auto fix (#3058) 2020-07-31 12:11:03 -07:00
test/actions New eslint rules auto fix (#3058) 2020-07-31 12:11:03 -07:00
bundle.js enable plugin path (#2549) 2019-11-21 13:11:09 -08:00
README.md Added brief readmes for all plugins. (#2184) 2018-10-03 18:55:27 -07:00

Import / Export Plugin

The Import/Export plugin allows objects to be exported as JSON files. This allows for sharing of objects between users who are not using a shared persistence store. It also allows object trees to be backed up. Additionally, object trees exported using this tool can then be exposed as read-only static root trees using the Static Root Plugin.

Upon installation it will add two new context menu actions to allow import and export of objects. Initiating the Export action on an object will produce a JSON file that includes the object and all of its composed children. Selecting Import on an object will allow the user to import a previously exported object tree as a child of the selected object.

Installation

openmct.install(openmct.plugins.ImportExport())