How to include third party libraries / modules in SAPUI5
Hi all,
In the JavaScript there already exists many libraries with a lot out of the box functionalities that make the developments easier. When working on complex SAPUI5 apps, you’ll probably use at least one third party JavaScript library. Two libraries that I often use:
- Lodash
- Contains functions that makes it easier to work with arrays
- https://lodash.com/
- MomentJS
- A library with additional date and time functionalities
- https://momentjs.com
In this blog I’ll explain how you can use these libraries in your SAPUI5 app. I’ll use the library MomentJs to show you how.
First go to the website of Moment.js: https://momentjs.com/
Click on: “moment-with-locales.min.js”
Copy the content of the page.
In your UI5 project create a folder “libs”. This is the place to put in all the third party libraries.
In the folder “libs” we create a file “moment.js”
In this file we paste the code that we’ve copied from the MomentJS website.
The project structure will look like this.
One of the ways to include this library into your project could be including the library in the index.html page. Please, don’t do this, this will not work when your UI5 app is used in the Fiori Launchpad. The Fiori Launchpad will start your app from the Component.js and not from the Index.html .
We have to include the library in the JavaScript files where we want to use it, in this example we’ll use it in the controller. You include the library by using the define functionality. In the define function you add the path to the file that contains the code of the library, in this case it will be “SAPUI5ExternalLibs/libs/moment” ( “<Namespace of the project>/<Path to the folder where it’s located>/<Name of the file>” ).
The value in the define function will be undefined and should be different from the global name of the library. Therefore we used the name “momentjs”. The global name of the library is “moment” in this case so we cannot use that.
You can read more details about this in the API Refrence
https://sapui5.hana.ondemand.com/#docs/api/symbols/sap.ui.html#.define
Third Party Modules Although third party modules don’t use UI5 APIs, they still can be listed as dependencies in a sap.ui.define call. They will be requested and executed like UI5 modules, but their module value will be undefined.If the currently defined module needs to access the module value of such a third party module, it can access the value via its global name (if the module supports such a usage).Note that UI5 temporarily deactivates an existing AMD loader while it executes third party modules known to support AMD. This sounds contradictarily at a first glance as UI5 wants to support AMD, but for now it is necessary to fully support UI5 apps that rely on global names for such modules. |
After that we can use moment in our controller by using the global name of the library. In this example I use moment to add 18 days to today and get the name of that day in English, French and Dutch.
As you can see, the SAPWebIDE still gives errors when using the library although we’ve included correctly! To fix this errors we have to add the following line at the top of the controller:
/* global moment:true */
Where “moment” is the name of the global library. For lodash it would look like this:
/* global _:true */
“_” is the global name for the lodash library.
This will fix the errors!
In the view we just bind some text fields to the JSONModel
And this will give the following result.
A basic example to show you how to include libraries in your SAPUI5 project in the SAPWebIDE without having errors!
Additional note/question:
In the SAPWebIDE innovation version there is grunt integration for running JavaScript tasks. It would be great to also have a package manager like bower or like the NPM integration for Cordova plugins in Mobile apps.
|
Kind regards,
Wouter
Hi Wouter,
how does this compare to using the manifest.json to add external libraries to your project (as seen in the answer here: http://stackoverflow.com/questions/28016642/adding-a-custom-library-as-a-dependency-in-sap-fiori ) ?
Hi Mark,
In the stackoverflow topic I think they are talking about SAPUI5 libraries. In this blog I'm talking about non SAPUI5 JavaScript libraries. When you add the libary as a SAPUI5 library it wil search for a library.js file. The non-SAPUI5 JavaScript libraries don't have those files.
Hope it helps.
Kind regards,
Wouter
I was also talking about external js libraries. I think you can include them by using the resources in manifest.json.
Then the library is loaded automatically by the require mechanism ( according to help documentation)
Hi Wouter,
As mentioned by Mark, I have used third party libraries like "underscore.js" in projects and linked that as resources in manifest.json file. With this I can access "underscore" global name "_" in all the controllers without the need for injecting library again using AMD in each controller....
can you let me know the difference between manifest.json resources and your approach?
Regards
Srikanth
The difference between the manifest and my approach:
Kind regards,
Wouter
Thanks Wouter for the info..
Hi Srikanth KV
Could you please tell me how are you using it? Are you adding the min.js code of library locally in the project or using directly with the url in manifest.json. I am not able to use with the url, similar to example mentioned below
Hi Wouter, Thank you for this great post. I'm using your approach to include C3.js in my project. I have some questions though:
in order to prevent the "error". Where can I find a documentation about the usage of such syntax? The API ref doesn't explain much.
Thanks in advance!
Some good questions.
Kr,
Wouter
I just realized the syntax for the global variables is from ESLint rather than from Web IDE. The documentation can be found here: https://eslint.org/docs/user-guide/configuring/language-options#specifying-globals which answers my last two questions.
Hi Wouter,
I'm using HANA WebIDE for UI5 development and XSOData services for data retrieval.
Tried using your approach for 'moment.js' and 'lodash', at runtime the libs are not loaded, but with the same code when executed on my local PC with IIS server it works fine.
I think the issue here is not the approach of including the libraries but something else,Can you help me with this.
Here is what I did so far:
Thanks in Advance
Hi Srikanth,
I didn't tried it in the HANA Web IDE yet. Which version are you using? Already the same SAP Web IDE as for Fiori apps or an older version? What version of SAPUI5 SDK are you using in the HANA Web IDE? What if you try to use the latest online sdk?
Regards,
Wouter
Hi Wouter,
Sorry for the late reply. I have tried using CDN version of SAPUI5 SDK also and facing the same issue.
Regards
Srikanth
Can I just use
Will also work. But better to use the define function.
Hi ,
I have used the same method to load the Ramda js and it got loaded, i can see the fiel in the Sources tab in chrome developers tool. But the global variable R is undefined what could be the reason ?
Thanks,
Naga
The name for the library should be different in the define function then the original name.
Hi Wouter,
You define momentjs as an argument to the define function but in the controller you use the global moment() instead of momentjs(). Is there a reason for this? I would expect momentjs() to be the correct usage.
I have tested this on my own and both usages work. In which case, why add the momentjs argument in the first place if it is not being used?
That's what I've read in the documentation. maybe this has been changed in the newer version.
Hi Wouter,
Great post, I think I'm getting close but I'm getting the errors further below in Chrome. This is what I have in my controller:
I've added moment.js to my "lib" folder and this is what I'm getting in the Chrome console:
Any clues? I'm stumped, thanks in advance for your help.
Jim
Could you share your project via plunker?
In your function declaration, you are injecting momentjs and then ur trying to access it as moment variable, I think that is your main issue. Change your momentjs to moment and then it should work
Did you fix it? we are getting errors of the like. All of the sudden, third party libraries aren't working anymore.
Hi.
I have a additional requirement for leaflet drawing for constructor control to include this script into my FLP app.
This works for me:
Gr,
Wouter
I just realized it’s not a good practice anyway to include JS files in
manifest.json
/sap.ui5/resources/js
since those files will be loaded via sync XHRs. I’m sure this will be fixed in future versions of UI5 (Update: fixed since 1.93 but also deprecated since 1.94)but until then, it’s better to include the third-party libraries insap.ui.define
or.require
in order to load them asynchronously.Hi Wouter,
thank you very much for your tutorial. I am able to import moment.js into my SAPUI5-app. With sap.ui.define in my controller or as js resource in manifest, both ways work fine when I run my app in SAP Web IDE. When I deploy my app to SAP CP and run it inside a Fiori Launchpad, it does not work. I am getting an error: "Uncaught ReferenceError: moment is not defined". I am wondering if I or FLP is doing something wrong. Can you confirm, that your code is still running in FLP?
Best regards,
Christian.
For me both ways work in Fiori on premise... Not yet tried it in Cloud FLP.. You should raise a QA for that
Hi Wouter,
thank you for your answer. I wrote a QA, for those who are interested.
Best regards,
Christian.
I got an answer from SAP-Support. There is some additional coding necessary, to load a library in Fiori Launchpads. I posted the code here.
Hi Wouter,
I tried following steps mentioned in your blog but still i am unable to load the library. I am trying to use SAPUI6 World map library in my application. Please find the screenshot below and would appreciate if you can please help me with this
Is there something that i am missing.
Thanks alot for your help and support
Regards
Ali Q
Dear Wouter,
we are currently starting UI5 development on Cloud Foundry for adding the applications to cFLP and are also trying to include 3rd party libs like MomentJS into our application.
We followed your steps above, but unfortunately we get URL generated like
https://sapui5.hana.ondemand.com/resources/<namespace><appName>/libs/moment.js
which apparently don't fit, since they do not reference the library from our deployed application, but from hana.ondemand.com.
We also tried to work with UI5's uiloader:
but apparently that doesn't seem to change anything.
Did you for yourself already had the opportunity to try loading 3rd party libs on CF envirionment and maybe have some hints for us?
Kind regards,
Sascha.
Hi Sascha Rissel
If you add the following code to the Compoment.js, for example Moment will be loaded via cdn.
The definition of the shim ensures that the import is executed correctly in controllers using sap.ui.define and that the module (e.g. Moment) is contained in the variable of the import.
Kind regards,
Simon
Hi Simon,
so far so good. Is there a possibility to include a third party library thats installed within node_modules (dep. via package.json)? I've read about 'Project Shims' but I couldn't quite make it work. Any Idea/Example or possible pointers to examples?
Best Regards,
Marco
Did you find a solution here? Is it possible to use thirdparty libraries through the package.json?
Hi all;
Maybe you can try this one:
Best regards.
Eyüp.
Hi,
I get this error!!!
Error
Here is my project structure:
Project Structure