There are many tools for mobile app analytics such as Firebase, Google Analytics, Fabric Answers, Flurry, Mixpanel, etc. You might use one or more of those in your application. But most of those SDKs have some problems: if you use multiple analytics tools, your code will be messed up. And the SDKs take event name as a string and parameters as a dictionary which is not guaranteed by Swift compiler. It means that if you change the event definition, you should find all related code by your hand. It has an opportunity that cause a human error. Umbrella uses Swift enums and the associated values to solve these problems.
Features
💪 Taking advantages of Swift compiler by using an enum and associated values.
🎯 Logging events to multiple analytics providers at once.
First of all, you should define all of your events in a single enum. Let’s assume that we have three events that have associated parameters.
enum MyAppEvent {
case signup(username: String)
case viewContent(productID: Int)
case purchase(productID: Int, price: Float)
}
Then make the enum to conform the protocol EventType. It requires two functions: name(for:) and parameters(for:).
extension MyAppEvent: EventType {
/// An event name to be logged
func name(for provider: ProviderType) -> String? {
switch self {
case .signup: return "signup"
case .viewContent: return "view_content"
case .purchase: return "purchase"
}
}
/// Parameters to be logged
func parameters(for provider: ProviderType) -> [String: Any]? {
switch self {
case let .signup(username):
return ["username": username]
case let .viewContent(productID):
return ["product_id": productID]
case let .purchase(productID, price):
return ["product_id": productID, "price": price]
}
}
}
You can even provide different event names and parameters by providers.
Using Analytics
You can define an Analytics instance anywhere but it’s recommended to define at a global scope.
let analytics = Analytics<MyAppEvent>()
Then you should register providers. A prodiver is a wrapper for an actual analytics service such as Firebase and Fabric Answers. It’s recommended to register providers in application(_:didFinishLaunchingWithOptions:).
If there’s no provider you’re looking for, you can create an issue or create custom providers. It’s also welcomed to create a pull request for missing services 🎉
Creating Custom Providers
If there’s no built-in provider for the serivce you’re using, you can also create your own. It’s easy to create a provider: just create a class and conform to the protocol ProviderType.
final class MyAwesomeProvider: ProviderType {
func log(_ eventName: String, parameters: [String: Any]?) {
AwesomeAnalytics.logEvent(withName: eventName, parameters: parameters)
}
}
target 'UmbrellaFirebaseTests' do
platform :ios, '8.0'
pod 'Firebase/Analytics'
end
target 'UmbrellaMixpanelTests' do
platform :ios, '8.0'
pod 'Mixpanel'
end
+ target 'UmbrellaRaincoatTests' do
+ platform :ios, '8.0'
+ pod 'Raincoat'
+ end
Add a CocoaPods subspec in Umbrella.podspec.
s.subspec "Firebase" do |ss|
ss.source_files = "Sources/UmbrellaFirebase/*.swift"
ss.dependency "Umbrella/Core"
end
s.subspec "Mixpanel" do |ss|
ss.source_files = "Sources/UmbrellaMixpanel/*.swift"
ss.dependency "Umbrella/Core"
end
+ s.subspec "Raincoat" do |ss|
+ ss.source_files = "Sources/UmbrellaRaincoat/*.swift"
+ ss.dependency "Umbrella/Core"
+ end
Create a Xcode workspace and run tests. Don’t forget to check the code coverage to ensure that tests can cover the new provider.
$ make project
License
Umbrella is under MIT license. See the LICENSE file for more info.
☂️ Umbrella
Analytics abstraction layer for Swift. Inspired by Moya.
Table of Contents
Why?
There are many tools for mobile app analytics such as Firebase, Google Analytics, Fabric Answers, Flurry, Mixpanel, etc. You might use one or more of those in your application. But most of those SDKs have some problems: if you use multiple analytics tools, your code will be messed up. And the SDKs take event name as a string and parameters as a dictionary which is not guaranteed by Swift compiler. It means that if you change the event definition, you should find all related code by your hand. It has an opportunity that cause a human error. Umbrella uses Swift enums and the associated values to solve these problems.
Features
At a Glance
Before 🤢
After 😊
Getting Started
Defining Events
First of all, you should define all of your events in a single enum. Let’s assume that we have three events that have associated parameters.
Then make the enum to conform the protocol
EventType
. It requires two functions:name(for:)
andparameters(for:)
.You can even provide different event names and parameters by
provider
s.Using Analytics
You can define an
Analytics
instance anywhere but it’s recommended to define at a global scope.Then you should register providers. A prodiver is a wrapper for an actual analytics service such as Firebase and Fabric Answers. It’s recommended to register providers in
application(_:didFinishLaunchingWithOptions:)
.If you finished those steps, you can now log the events 🎉
Built-in Providers
There are several built-in providers.
If there’s no provider you’re looking for, you can create an issue or create custom providers. It’s also welcomed to create a pull request for missing services 🎉
Creating Custom Providers
If there’s no built-in provider for the serivce you’re using, you can also create your own. It’s easy to create a provider: just create a class and conform to the protocol
ProviderType
.Installation
Umbrella currently support CocoaPods only.
Contributing
Any discussions and pull requests are welcomed 💖
Generating Xcode Workspace
This will automatically generate
Umbrella.xcworkspace
and performpod install
.Creating New Provider
For example, imagine that we are going to create a new provider for an analytics service ‘Raincoat’.
Add a library and a target definition in
Package.swift
.Add a source file and a test file.
Add a CocoaPods dependency in
Podfile
.Add a CocoaPods subspec in
Umbrella.podspec
.Create a Xcode workspace and run tests. Don’t forget to check the code coverage to ensure that tests can cover the new provider.
License
Umbrella is under MIT license. See the LICENSE file for more info.