SDK

Storage

This is an add-on feature of Notificare. Before you can use this functionality you must subscribed to the Storage add-on as described here.

In this page you'll learn how to transform any type of content you upload to Notificare into timely and relevant content for each individual user of your app. Before you can retrieve and display text or media files in your app, you need to create asset groups in our dashboard. This is covered in our guides located here.

Once you have create one or more asset groups, to retrieve a certain asset group, use the following method (make sure that you always call this method after onReady):

this.eventEmitter.addListener('ready', (data) => {
   Notificare.fetchAssets("GROUP_NAME", (error, data) => {

    });
});

Because you can create groups with the same name but with different time, location or segmentation criteria, this method will give you different assets for different users.

However your app is responsible for handling the assets correctly. In order to do that you will need to handle each asset accordingly. Here's an example how that is usually done:

this.eventEmitter.addListener('ready', (data) => {
   Notificare.fetchAssets("GROUP_NAME", (error, data) => {

        data.forEach((asset) => {

            if (asset.key == null) {

                //If asset only contains text handle the title and description
            } else {

                if (asset.contentType == "image/jpeg" ||
                                asset.contentType == "image/gif" ||
                                asset.contentType == "image/png") {


                    //Handle an image
                } else if(asset.contentType == "video/mp4"){

                    //Handle a video
                } else if(asset.contentType == "application/pdf"){

                    //Handle a pdf
                } else if(asset.contentType == "application/json"){

                    //Handle a json file
                } else if(asset.contentType == "text/javascript"){

                    //Handle a javascript file
                } else if(asset.contentType == "text/css"){

                    //Handle a css
                } else if(asset.contentType == "text/html"){

                    //Handle a HTML file
                }

            }

        });

    });
});