Giter Club home page Giter Club logo

yanalytics-firebase-ios's Introduction

Y—Analytics Firebase A Firebase implementation of Y—Analytics' AnalyticsEngine protocol.

This framework links the Firebase iOS SDK to implement a Firebase version of Y—Analytics' AnalyticsEngine protocol.

Licensing

Y—Analytics Firebase is licensed under the Apache 2.0 license.

Firebase iOS SDK is licensed under the Apache 2.0 license

Documentation

Documentation is automatically generated from source code comments and rendered as a static website hosted via GitHub Pages at: https://yml-org.github.io/yanalytics-firebase-ios/

Usage

FirebaseAnalyticsEngine

FirebaseAnalyticsEngine implements the AnalyticsEngine protocol, and in its track(event:) method it maps the AnalyticsEvent enum to the appropriate Firebase methods.

Internally the Firebase SDK is just using singleton objects, but the goal of Y—Analytics is to use Dependency Injection of a generic wrapper. This allows your project code to be loosely coupled to your choice of analytics provider. It also facilitates unit testing and a healthy app architecture.

Just be aware that even if you declare multiple instances of FirebaseAnalyticsEngine, that they all reference the same Firebase SDK singleton.

When unit testing various components of your project, you should inject an instance of MockAnalyticsEngine instead of the Firebase engine. This allows your unit tests to run without any Firebase dependency and allows you to verify which events are tracked and when.

Simple use case: GoogleService-Info.plist file

If you include the standard Google plist file in your project, you may initialize FirebaseAnalyticsEngine like this:

import YAnalyticsFirebase

final class AppCoordinator {
    let engine: AnalyticsEngine = FirebaseAnalyticsEngine()

    func trackSomething(someData: [String: Any]?) {
        engine.track(
            event: .event(name: "Something", parameters: someData)
        )
    }
}

Configuration

The Firebase iOS SDK lets you initialize using three methods:

  1. options
  2. name and options
  3. neither (GoogleService-Info.plist)

FirebaseAnalyticsEngineConfiguration supports the same three matching options.

import FirebaseCore
import YAnalyticsFirebase

final class AppCoordinator {
    let engine: AnalyticsEngine = {
        let options: FirebaseOptions = ...
        let config = FirebaseAnalyticsConfiguration(options: options)
        return FirebaseAnalyticsEngine(configuration: config)
    }()
}

Dependencies

Y—AnalyticsFirebase depends upon our Y—Analytics framework (which is also open source and Apache 2.0 licensed).

Installation

You can add Y—Analytics Firebase to an Xcode project by adding it as a package dependency.

  1. From the File menu, select Add Packages...
  2. Enter "https://github.com/yml-org/yanalytics-firebase-ios" into the package repository URL text field
  3. Click Add Package

Contributing to Y—Analytics Firebase

Requirements

SwiftLint (linter)

brew install swiftlint

Jazzy (documentation)

sudo gem install jazzy

Setup

Clone the repo and open Package.swift in Xcode.

Versioning strategy

We utilize semantic versioning.

{major}.{minor}.{patch}

e.g.

1.0.5

Branching strategy

We utilize a simplified branching strategy for our frameworks.

  • main (and development) branch is main
  • both feature (and bugfix) branches branch off of main
  • feature (and bugfix) branches are merged back into main as they are completed and approved.
  • main gets tagged with an updated version # for each release

Branch naming conventions:

feature/{ticket-number}-{short-description}
bugfix/{ticket-number}-{short-description}

e.g.

feature/CM-44-button
bugfix/CM-236-textview-color

Pull Requests

Prior to submitting a pull request you should:

  1. Compile and ensure there are no warnings and no errors.
  2. Run all unit tests and confirm that everything passes.
  3. Check unit test coverage and confirm that all new / modified code is fully covered.
  4. Run swiftlint from the command line and confirm that there are no violations.
  5. Run jazzy from the command line and confirm that you have 100% documentation coverage.
  6. Consider using git rebase -i HEAD~{commit-count} to squash your last {commit-count} commits together into functional chunks.
  7. If HEAD of the parent branch (typically main) has been updated since you created your branch, use git rebase main to rebase your branch.
    • Never merge the parent branch into your branch.
    • Always rebase your branch off of the parent branch.

When submitting a pull request:

  • Use the provided pull request template and populate the Introduction, Purpose, and Scope fields at a minimum.
  • If you're submitting before and after screenshots, movies, or GIF's, enter them in a two-column table so that they can be viewed side-by-side.

When merging a pull request:

  • Make sure the branch is rebased (not merged) off of the latest HEAD from the parent branch. This keeps our git history easy to read and understand.
  • Make sure the branch is deleted upon merge (should be automatic).

Releasing new versions

  • Tag the corresponding commit with the new version (e.g. 1.0.5)
  • Push the local tag to remote

Generating Documentation (via Jazzy)

You can generate your own local set of documentation directly from the source code using the following command from Terminal:

jazzy

This generates a set of documentation under /docs. The default configuration is set in the default config file .jazzy.yaml file.

To view additional documentation options type:

jazzy --help

A GitHub Action automatically runs each time a commit is pushed to main that runs Jazzy to generate the documentation for our GitHub page at: https://yml-org.github.io/yanalytics-firebase-ios/

yanalytics-firebase-ios's People

Contributors

mpospese avatar sahilsainiyml avatar

Stargazers

 avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

yanalytics-firebase-ios's Issues

Add SPI Shields

  • Add shields.io badges to README for
    • swift version
    • platform compatibility
  • In the above order
  • Immediately below the banner image but above the italicized tagline

Hide Pull Request Template

Hide the Pull Request Template file by moving it to the .github directory.

Rename PULL_REQUEST_TEMPLATE.md to .github/pull_request_template.md
Update link in README under the ### Pull Requests section to reflect the new name and location.

Add Dependencies section to README

Insert the following in between Usage and Installation sections:

Dependencies
----------

Y—AnalyticsFirebase depends upon our [Y—Analytics](https://github.com/yml-org/yanalytics-ios) framework (which is also open source and Apache 2.0 licensed).

Remove secrets from repo

Remove the GoogleService-Info.plist file from Tests/YAnalyticsFirebaseTests/Resources in the repo.
Replace it as a secret that writes the file to the correct location as a part of the GitHubAction in .github/workflows/run_linter_and_unit_tests.yml so that when the action runs the unit tests, the tests pass.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.