1.2.2 • Published 3 years ago

@jaspero/jmsp-file-manager v1.2.2

Weekly downloads
-
License
-
Repository
-
Last release
3 years ago

JMS Plugins

A set of plugins for JMS.

Notes

A custom element intended for use on overview pages. It's a way for adding notes to any document. You would typically use it in layout.table.actions like this:

{
  "actions": [{
    "value": "it => '<jms-e-notes data-id=' + it.id + '></jms-e-notes>'"
  }]
}

or you can use the note-view element in a single instance:

{
  "instance": {
    "segments": [
      {
        "components": [{
          "selector": "note-view"
        }]
      }
    ]
  }
}

Setup

  1. Install the plugin npm i --save @jmsp/notes
  2. Import the JMSPNotesModule in the ModuleInstanceModule in your JMS project.

Quick Edit

Adds the capability for editing documents through a dialog.

Help FlyOut

A popup for help articles. It's module based and changes dynamically based on what module the user is currently on.

Setup

  1. Install the plugin npm i --save @jmsp/help
  2. Import the JMSPHelpModule in the DashboardModule in your JMS project. You can use JMSPHelpModule.forRoot() to configure height, width as well as top and left position.
  3. Add <jmsp-help-toggle></jmsp-help-toggle> somewhere in your project (it's mainly intended to go in the layout navigation).
  4. In order to be able to add articles through JMS you will need to install the projects module npm i --save @jaspero/jmsp-modules in setup as well and add HELP_PLUGIN_MODULE to modules.ts.
  5. Add translations. This is the english version:

      "HELP_PLUGIN": {
        "TITLE": "Help",
        "NO_MODULE_ARTICLES": "There aren't any articles available for this module.",
        "GENERAL_ARTICLES": "General",
        "READ_MORE": "Read More",
        "INSTANCE": {
          "GENERAL": "General",
          "CONTENT": "Content"
        },
        "TABLE": {
          "TITLE": "Title",
          "MODULE": "Module",
          "EXCERPT": "Excerpt"
        },
        "DEFINITIONS": {
          "TITLE": "Title",
          "EXCERPT": "Excerpt",
          "SHORT_DESCRIPTION": "Short Description",
          "CONTENT": "Content",
          "MODULE": "Module"
        }
      }

You can find an example implementation here.

GitHub Issues

A set of components for working with github issues.

File Manager

A module for managing storage

Setup

  1. Install the plugin npm i --save @jaspero/jmsp-file-manager
  2. ...
  3. Add translations. This is the english version:
    {
      "STORAGE_PLUGIN": {
        "DELETE_FILE": {
          "DESCRIPTION": "File '{{name}}' will be deleted!",
          "CONFIRM": "Delete"
        }
      }
    }    

Development

Creating a plugin

  1. Run ng g library [plugin-name] --prefix=jmsp
  2. Add @jaspero/jmsp- prefix in the projects package.json
  3. Add a release property. Example from notes plugin (remember to replace all references of "notes").
      "release": {
        "pkgRoot": "../../dist/@jaspero/jmsp-notes",
        "branch": "master",
        "verifyConditions": [
          "@semantic-release/changelog",
          "@semantic-release/npm",
          "@semantic-release/git"
        ],
        "prepare": [
          "@semantic-release/changelog",
          "@semantic-release/npm",
          "@semantic-release/git"
        ],
        "publish": [
          "@semantic-release/npm",
          [
            "@semantic-release/github",
            {
              "assets": [
                "dist/@jaspero/jmsp-notes"
              ]
            }
          ]
        ],
        "plugins": [
          "@semantic-release/commit-analyzer",
          "@semantic-release/release-notes-generator"
        ]
      }
  4. Create ng-package.prod.json. Example from notes plugin (remember to replace all references of "notes").
    {
      "$schema": "../../node_modules/ng-packagr/ng-package.schema.json",
      "dest": "../../dist/@jaspero/jmsp-notes",
      "lib": {
        "entryFile": "src/public-api.ts"
      }
    }
  5. In angular.json extend the architect.configurations.production with ng-package.prod.json
     "configurations": {
       "production": {
         "tsConfig": "projects/notes/tsconfig.lib.prod.json",
         "project": "projects/notes/ng-package.prod.json"
       }
     }
  6. Add build scripts for the library in to the root package.json
  7. Build the library and publish an initial version manually. This is required because since it's a scoped package it needs to be explicitly flagged as public. You can do this by running npm publish --access public in dist/@jaspero/[package-name].

License

MIT © Jaspero Ltd

1.2.0

3 years ago

1.2.2

3 years ago

1.2.1

3 years ago

1.1.1

3 years ago

1.1.0

3 years ago

1.0.0

3 years ago

0.0.1

3 years ago