npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

capacitor-apprate-gfc

v1.0.1

Published

Le plugin capacitor-apprate-gfc est une implementation native qui permet aux utilisateurs d'évaluer facilement votre application

Downloads

12

Readme

AppRateGFC - Android

Version Npm

Le plugin capacitor-apprate-gfc est une implementation native qui permet aux utilisateurs d'évaluer facilement votre application. Vous pouvez maintenant utiliser ce package comme plugin Ionic Capacitor dans votre application.

Soutenez nos développements

Votre don nous permettra de développer plus de plugin open source mais également à maintenir ceux déjà publiés pour garantir une compatibilité avec les futures versions d'android, d'ios et de capacitor. Merci de votre soutien !

Je fais un don

Sommaire

  1. Plateformes prise en charge
  2. Installation
    2.1 Récuperation du package sur npm
    2.2 Ajout du plugin dans votre MainActivity.java
  3. Screenshot
  4. Méthodes du plugin
  5. Interfaces du plugin
    5.1 APPRATE_OPTS
    5.2 APPRATE_OPTS_CHECK
    5.3 BUTTON_STYLE
    5.4 APPRATE_INIT
    5.5 APP_PUBLISH_STATUT
    5.6 APPRATE_STATUT
  6. Enums du plugin
    6.1 MARKET_URL
    6.2 STATUT_BTN
  7. Utilisation du plugin
    7.1 Intégration du plugin
    7.2 Méthode init(options: APPRATE_OPTS)
    7.3 Méthode checkAppStatus(options: APPRATE_OPTS_CHECK)
    7.4 Méthode showDirectly()
    7.5 Méthode addListener('positifRateEvent')
    7.6 Méthode addListener('netralRateEvent')
    7.7 Méthode addListener('negativeRateEvent')
    7.8 Méthode addListener('appIsPublishEvent')
    7.9 Méthode addListener('isAllReadyShow')
  8. Ajouter une icone dans la popup
  9. Demo
  10. Nos autres plugins

1. Plateformes prise en charge

  • [x] Android

2. Installation

2.1 Récuperation du package sur npm

npm install capacitor-apprate-gfc --save

2.2 Ajout du plugin dans votre MainActivity.java

Le fichier MainActivity est disponible dans app/java/packageid/ depuis android studio

    // Autres imports...
    import com.gfc.apprategfc.AppRateGFC;
    
    public class MainActivity extends BridgeActivity {
      @Override
      public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
    
        this.init(savedInstanceState, new ArrayList<Class<? extends Plugin>>() {{
    
          add(AppRateGFC.class);  // Ajout du plugin AppRateGFC 
    
        }});
      }
    }

3. Screenshot

| AppRate Basic | AppRate Dark Mode | AppRate avec AppIcon | |---------------|-------------------|----------------------| |Screenshot_1 |Screenshot_2 |Screenshot_3 |

4. Méthodes du plugin

| Methodes | Android | |:-------- |:--------| | init(options: APPRATE_OPTS): Promise<APPRATE_INIT>; | Disponible| | checkAppStatus(options: APPRATE_OPTS_CHECK): Promise<APP_PUBLISH_STATUT>; | Disponible| | showDirectly(): Promise<{}>; | Disponible| | addListener(eventName: 'positifRateEvent', listenerFunc: (statut: APPRATE_STATUT) => void): PluginListenerHandle; | Disponible| | addListener(eventName: 'netralRateEvent', listenerFunc: (statut: APPRATE_STATUT) => void): PluginListenerHandle; | Disponible| | addListener(eventName: 'negativeRateEvent', listenerFunc: (statut: APPRATE_STATUT) => void): PluginListenerHandle; | Disponible| | addListener(eventName: 'appIsPublishEvent', listenerFunc: (statut: APP_PUBLISH_STATUT) => void): PluginListenerHandle; | Disponible| | addListener(eventName: 'isAllReadyShow', listenerFunc: (statut: boolean) => void): PluginListenerHandle; | Disponible|

5. Interfaces du plugin

5.1 APPRATE_OPTS

Nécessaire pour la méthode init()

| Propriété | Etat | Type | Defaut | Commentaire | |:----------|:-----|:-----|:-------|:------------| | appName | Obligatoire | string | null | Renseigne le nom de l'application | | appPackageId | Obligatoire | string | null | Renseigne l'id du package (ex: com.mon.application) | | storeUrl | Obligatoire | MARKET_URL | Object | Renseigne le store où est hébergée l'application | | titleAppRate | Obligatoire | string | null | Renseigne le titre (en rajoutant %@ dans le titre il sera remplacé par appName) | | messageAppRate | Obligatoire | string | null | Renseigne le message (en rajoutant %@ dans le message, il sera remplacé par appName) | | untilPrompt | Obligatoire | number | null | Renseigne le nombre d'ouverture de l'application avant affichage de la popup (conseil : 5 ouvertures) | | daysUntilPrompt | Obligatoire | number | null | Renseigne le nombre de jour avant affichage de la popup (conseil : 3 ouvertures) | | positifButtonStyle| Obligatoire | BUTTON_STYLE | Object | Renseigne le texte (Obligatoire) et la couleur (Optionel) du bouton positif (ouverture du store) | | netralButtonStyle | Obligatoire | BUTTON_STYLE | Object | Renseigne le texte (Obligatoire) et la couleur (Optionel) du bouton neutre (rappel) | | negatifButtonStyle| Obligatoire | BUTTON_STYLE | Object | Renseigne le texte (Obligatoire) et la couleur (Optionel) du bouton negatif (ne s'affichera plus jamais) | | darkMode | Optionel | boolean | false | Reseigne l'utilisation du theme Sombre | | addAppIcon | Optionel | boolean | false | Renseigne le souhait d'afficher l'icon de l'application dans la popup | | backgroundColor | Optionel | string | null | Renseigne la couleur de font de la popup. Les couleurs devront commencer par # et contenir 7 caractères (ex: #4A4747) |

Par defaut le thème sombre et le thème basic contient des couleurs. Si vous ne renseignez aucunes couleurs les boutons et le font utilisera ceux present dans lestyle de la popup. Chaque couleur peut etre changée.

5.2 APPRATE_OPTS_CHECK

Nécessaire pour la méthode checkAppStatus()

| Propriété | Etat | Type | Defaut | Commentaire | |:----------|:-----|:-----|:-------|:------------| | appPackageId | Obligatoire | string | null | Renseigne l'id du package (ex: com.mon.application) | | storeUrl | Obligatoire | MARKET_URL | Object | Renseigne le store où est hébergée l'application |

5.3 BUTTON_STYLE

Nécessaire pour la méthode init()

| Propriété | Etat | Type | Defaut | Commentaire | |:----------|:-----|:-----|:-------|:------------| | buttonActionText | Obligatoire | string | null | Renseigne le text du bouton | | buttonActionColor | Optionel | string | '#E35A5A' | Les couleurs devront commencer par # et contenir 7 caractères (ex: #FFFFFF) |

5.4 APPRATE_INIT

Nécessaire pour la méthode init()

| Propriété | Type | Commentaire | |:------------|:-----|:------------| | appRateInit | boolean | AppRate est initialisé ou non |

5.5 APP_PUBLISH_STATUT

Nécessaire pour la méthode checkAppStatus()

| Propriété | Type | Commentaire | |:------------|:-----|:------------| | appOnPlay | STATUT_APP | Est present ou non dans le store |

5.6 APPRATE_STATUT

Nécessaire pour les evenement positifRateEvent, netralRateEvent, negativeRateEvent

| Propriété | Type | Commentaire | |:----------|:-----|:------------| | rateStatut | STATUT_BTN | Bouton cliqué par l'utilisateur |

6. Enums du plugin

6.1 MARKET_URL

| Propriété | Valeur | |:----------|:-------| | GOOGLE_PLAY_MARKET | 'market://details?id=' | | GOOGLE_PLAY_URL | 'https://play.google.com/store/apps/details?id=' | | APPLE_STORE_MARKET | 'itms-apps://itunes.apple.com/app/id' |
| APPLE_STORE_URL | 'https://itunes.apple.com/en/lookup?bundleId=' | | AMAZON_STORE_ANDROID_URL | 'https://www.amazon.com/gp/mas/dl/android?p=' | | AMAZON_STORE_MARKET_ANDROID | 'amzn://apps/android?p=' | | HUAWEI_APP_GALLERY | 'appmarket://details?id=' |

6.2 STATUT_BTN

| Propriété | Valeur | |:----------|:-------| | POSITIVE | 0 | | NETRAL | 1 | | NEGATIVE | 2 |

7. Utilisation du plugin

7.1 Intégration du plugin

// Autres imports...
import{Plugins} from '@capacitor/core'
const {AppRateGFC} = Plugins;

7.2 Méthode init(options: APPRATE_OPTS)

    const optionAppRate: APPRATE_OPTS  = {
                  appName: 'AppRateGFCDemo',
                  appPackageId: 'com.gfc.apprategfcdemo',
                  storeUrl: MARKET_URL.GOOGLE_PLAY_MARKET,
                  titleAppRate: 'Voudriez-vous noter %@ ?',
                  messageAppRate: 'Si vous aimez utiliser %@ , voulez-vous prendre un moment pour l\'évaluer? Il ne faudra pas plus d\'une minute. Merci pour votre aide!',
                  untilPrompt: 5,
                  daysUntilPrompt: 5,
                  positifButtonStyle: {
                      buttonActionText: 'Oui',
                      buttonActionColor: '#09A495',
                  },
                  netralButtonStyle: {
                      buttonActionText: 'Plus tard',
                      buttonActionColor: '#313030',
                  },
                  negatifButtonStyle: {
                      buttonActionText: 'Non',
                      buttonActionColor: '#B92F2F',
                  },
                  darkMode: false,
                  addAppIcon: false,
                  backgroundColor: '#FFFFFF'
     };

    AppRateGFC.init(optionAppRate).then((result: APPRATE_INIT) => {
                if (result.appRateInit) {
                    // Votre code...
                }
            }).catch((error) => {
                // Votre code...
            });

7.3 Méthode checkAppStatus(options: APPRATE_OPTS_CHECK)

    const optsCheck = {
                    appPackageId: 'com.gfc.apprategfcdemo',
                    storeUrl: MARKET_URL.GOOGLE_PLAY_MARKET,
    };

    AppRateGFC.checkAppStatus(optsCheck).catch((error) => ({
        // Votre code...
    }));

7.4 Méthode showDirectly()

Pensez a lancer la methode init() avant d'appeler showDirectly()

   
    AppRateGFC.showDirectly().catch((error) => ({
        // Votre code...
    }));

7.5 Méthode addListener('positifRateEvent')

Cette évenement est déclenché lorsque l'utilisateur clique sur le bouton positif

    ngOnInit() {
        AppRateGFC.addListener('positifRateEvent', (statut: APPRATE_STATUT) => {
            // votre code...
        });
    }

7.6 Méthode addListener('netralRateEvent')

Cette évenement est déclenché lorsque l'utilisateur clique sur le bouton neutre

    ngOnInit() {
        AppRateGFC.addListener('netralRateEvent', (statut: APPRATE_STATUT) => {
            // votre code...
        });
    }

7.7 Méthode addListener('negativeRateEvent')

Cette évenement est déclenché lorsque l'utilisateur clique sur le bouton négatif

    ngOnInit() {
        AppRateGFC.addListener('negativeRateEvent', (statut: APPRATE_STATUT) => {
            // votre code...
        });
    }

7.8 Méthode addListener('appIsPublishEvent')

Cette évenement est déclenché lorsque l'on utilise la methode checkAppStatus(options: APPRATE_OPTS_CHECK)

    ngOnInit() {
        AppRateGFC.addListener('appIsPublishEvent', (statut: APP_PUBLISH_STATUT) => {
            if(status.appOnPlay)
            {
                // votre code...
            }           
        });
    }

7.9 Méthode addListener('isAllReadyShow')

Cette évenement est déclenché si l'utilisateur a déjà reçu la demande et s'il a cliqué le bouton positif ou negatif

    ngOnInit() {
        AppRateGFC.addListener('isAllReadyShow', (statut: boolean) => {
            // votre code...
        });
    }

8. Ajouter une icone dans la popup

Si vous souhaitez ajouter l'icone de votre application dans la popup il vous suffit de faire un clic droit sur le repertoire res dans capacitor-apprate-gfc/android/src/main/res Selectionner New -> Image Asset et ajouter l'icone de votre application.

9. Demo du plugin

Téléchargez notre demo.

10. Nos autres plugins

| Nom | Package | Version | Plateformes | |:----|:--------|:--------|:------------| | SnackBarGFC | capacitor-snackbar-gfc | Version Npm | Android | | DateTimePickerGFC | capacitor-datetimepicker-gfc | Version Npm | Android | | CalendarEventGFC | capacitor-calendarevent-gfc | Version Npm | Android |