The WebWidget SDK allows integrating the Fit Analytics Size Advisor widget into your own iOS app.
As a first step, we suggest that you familiarize yourself with the Fit Analytics web-based Size Advisor service by:
The integration method currently supported by this SDK is based on loading HTML/JS-based widget code in a separate WKWebView instance and establishing communication between the host app and the embedded web widget.
The SDK introduces a layer that imitates a web-based (JavaScript) integration of the Fit Analytics widget by:
Preferably, you can also include the purchase reporting for the order confirmation page/view.
Prerequisities:
Step 1. Make sure you already have cocoapods installed in your system. Otherwise you can follow the steps in cocoapods documentation to install https://cocoapods.org/
Step 2. To initialize the pod in your project use pod init
command to create a Podfile with smart defaults.
Step 3. Now you can install the dependencies in your project by using pod install
command.
Step 4. Make sure you always open Xcode Workspace instead of Xcode Project. You can do it by using open YourApp.xcworkspace command in terminal.
Alternatively you can use the pre-built universal binary framework. It's available for download with each release (since v0.4.2).
It comes in two build flavors: 1) all - which includes binary code for both devices (arm7x, arm64) and simulators (i386, x86_64) 2) device_only - which includes just device-specific binaries (arm7x, arm64). The device-specific flavor is meant for final builds that are meant to be released in App store (which disallows the simulator binary code in apps).
You can find the minimal example project that uses the binary framework in UniversalFramework/Framework Example subdirectory of the repository.
Step 1. Download the framework package from the (release page)[https://github.com/UPcload/FitAnalytics-WebWidget-iOS/releases]
Step 2. Unpack the binary framework and add to the XCode project via "Add files ..." context menu.
Step 3. When including header files (see below) add them in the form
#import <FitAnalytics_WebWidget/FITAWebWidget.h>
...
instead of
#import "FITAWebWidget.h"
...
We're presuming a simple app with the single main ViewController class.
Import the FitAWebWidget.h and the FITAWebWidgetHandler.h header file into your ViewController.m
#import "FITAWebWidget.h"
#import “FITAWebWidgetHandler.h"
The view controller class implements the FITAWebWidgetHandler interface, so that the widget callback can be implemented directly on it.
@interface ViewController ()<FITAWebWidgetHandler>
Add a property for storing the reference to the widget.
@property (nonatomic, strong) FITAWebWidget *widget;
Add a property for the WKWebView reference. This is the WKWebView instance that will contain the load widget container page.
@property (weak, nonatomic) IBOutlet WKWebView *wkWebView;
Initialize the widget controller with the WKWebView instance and assign self as the callback handler.
self.widget = [[FITAWebWidget alloc] initWithWKWebView:self.wkWebView handler:self];
Since iOS 12.x update, when using WKWebView, all widget interactions are reliable only when the widget container WebView is connected to the view hierarchy. When the WebView is in a disconnected state (i.e. it has no superview) all HTTP requests inside it begin to fail/timeout silently. To avoid this issue, always keep the WebView connected in the hierarchy and hide it visually (by setting the hidden
property and the frame dimensions to zero). We are still looking into a better solution and/or workaround.
- (BOOL)load
Begin loading the HTML widget container page.
[self.widget load];
- (BOOL)create:productSerial options:NSDictionary
Create and (optionally) initialize it with product serial and other options.
Create a widget instance inside the container page by passing the productSerial
and options
. Options can be nil
or a dictionary of various options arguments. Important supported options are listed here.
This method should be called only after the WebWidgetDidBecomeReady callback has been called (or inside the callback) and will return a true
when the widget was successfully created.
[self.widget create:@"example-123456" options:@{ "sizes": @[ @"S", @"XL" ] }];
- (void)open
Show the actual widget. It may trigger loading additional resources over network, and will show the widget only after all assets have been loaded. When the opening is finished, the WebWidgetDidOpen callback will be called on the callback handler.
[self.widget open];
- (void)openWithOptions:productSerial options:NSDictionary
Configure the widget with new productSerial and/or options and show it. See open
above for more details.
[self.widget open:@"example-123456" options:@{ "sizes": @[ @"S", @"XL" ] ];
- (void) close
Close the widget and remove the widget markup. Will trigger the webWidgetDidClose callback when it finishes.
[self.widget close];
- (void) recommend
Request a recommendation. The recommended size and additional details will be returned as arguments to the WebWidgetDidRecommend callback.
[self.widget recommend];
- (void) recommendWithOptions:productSerial options:NSDictionary
Configure the widget with the new productSerial and/or widget options and request a recommendation. See recommend
above for more details.
[self.widget recommend:@"example-123456" options:nil];
- (void)reconfigure:productSerial options:NSDictionary
Configure the widget with the new productSerial and/or widget options. If the productSerial
argument is non-nil and is different from the last provided product serial, this will trigger a request for the product information. After the new product info is loaded, the webWidgetDidLoadProduct will be called. If the product serial is invalid or the product isn't supported by Fit Analytics, the webWidgetDidFailLoadingProduct will be called.
[self.widget reconfigure:@"example-123456" options:nil];
// OR
[self.widget reconfigure:nil options:@{ "sizes": @[ @"XL" ] ];
Reconfigure the widget with a new product serial and/or widget options object.
- (void)webWidgetDidBecomeReady:(FITAWebWidget *)widget;
This method will be called when widget container inside the WebView has successfully loaded and is ready to accept commands.
- (void)webWidgetInitialized:(FITAWebWidget *)widget;
This method will be called when widget container inside the WebView has successfully loaded.
widget
.. The widget controller instance
- (void)webWidgetDidFailLoading:(FITAWebWidget *)widget withError:(NSError *)error;
This method will be called when widget inside the WebView has failed to load or initialize for some reason.
widget
.. The widget controller instanceerror
.. The error instance- (void)webWidgetDidLoadProduct:(FITAWebWidget *)widget productId:(NSString *)productId details:(NSDictionary *)details;
This method will be called when the widget has successfully loaded the product info. A successful load means that the product is supported by Fit Analytics and the widget should be able to provide a size recommendation for it.
widget
.. The widget controller instanceproductId
.. The ID of the productdetails
.. The details object.
- (void)webWidgetDidFailLoadingProduct:(FITAWebWidget *)widget productId:(NSString *)productId details:(NSDictionary *)details;
This method will be called when widget failed to load the product info or the product is not supported.
widget
.. The widget controller instanceproductId
.. The ID of the productdetails
.. The details object.
- (void)webWidgetDidOpen:(FITAWebWidget *)widget productId:(NSString *)productId;
This method will be called when the widget has successfully opened after the open
method call.
widget
.. The widget controller instanceproductId
.. The ID of the product
- (void)webWidgetDidClose:(FITAWebWidget *)widget productId:(NSString *)productId size:(nullable NSString *)size details:(nullable NSDictionary *)details;
This method will be called when user of the widget has specifically requested closing of the widget by clicking on the close button.
widget
.. The widget controller instanceproductId
.. The ID of the productsize
.. The last recommended size of the product, if there was a recommendation. null
if there wasn't any recommendation.details
.. The details object.
- (void)webWidgetDidAddToCart:(FITAWebWidget *)widget productId:(NSString *)productId size:(nullable NSString *)size details:(nullable NSDictionary *)details;
This method will be called when user of the widget has specifically clicked on the add-to-cart inside the widget.
widget
.. The widget controller instanceproductId
.. The ID of the productsize
.. The size of the product that should be added to cart.details
.. The details object.
- (void)webWidgetDidRecommend:(FITAWebWidget *)widget productId:(NSString *)productId size:(nullable NSString *)size details:(nullable NSDictionary *)details;
This method will be called after the getRecommendation
call on the FITAWebWidget controller, when the widget has received and processed the size recommendation.
productId
.. The ID of the productsize
.. The recommended size of the product.details
.. The details object.@interface FitAnalyticsWidgetOptions : NSObject
/**
* (Shop Session ID) .. a first-party client generated session ID (can be a cookie): we use it to track purchases and keep our data more consistent (we **do NOT** use it to track or identify users)
*/
@property (nonatomic, strong) NSString *shopSessionId;
/**
* The shop prefix, this is a value that we set internally so we can identify your shop with the product.
*/
@property (nonatomic, strong) NSString *shopPrefix;
/**
* The product serial number, which is used to identify the product in the Fit Analytics database.
* If `shopPrefix` is not set, we are going to infer the shop prefix based on the product serial number prefix. E.G. `shopprefix-abcd1234`
*/
@property (nonatomic, strong) NSString *productSerial;
/**
* Product thumbnail image URL.
*/
@property (nonatomic, strong) NSString *thumb;
/**
* All the sizes of your product, each size should be a key in the object, and the value should be a boolean indicating if the size is available or not.
* They keys should match with the keys in the products' feed.
* E.G. @{
* @"M": @YES,
* @"L": @NO
* };
* means that the product is available in size M but not in size L.
*/
@property (nonatomic, strong) NSDictionary<NSString *, BOOL *> *manufacturedSizes;
/**
* In stock sizes for the current product.
* E.G. @[ @"S", @"XL" ]
*/
@property (nonatomic, strong) NSArray<NSString *> *sizes;
/**
* The user identifier based on the shop's user id, for example in case the user is logged in.
*/
@property (nonatomic, strong) NSString *userId;
/**
* ISO 639-1
* E.G. "en"
*/
@property (nonatomic, strong) NSString *language;
/**
* ISO 3166-1
* E.G. "GB"
*/
@property (nonatomic, strong) NSString *shopCountry;
/**
* Metric system
* 0: imperial
* 1: metric
* 2: british
* If it is not set it will be inferred from the shop country.
*/
@property (nonatomic) NSInteger metric;
- (void)close:(NSString *)productSerial size:(NSString *)size;
- (void)error:(NSString *)productSerial;
- (void)cart:(NSString *)productSerial size:(NSString *)size;
- (void)recommend:(NSString *)productSerial size:(NSString *)size;
- (void)load:(NSString *)productSerial;
@property (nonatomic, strong) NSString *userAge;
/**
* m: man
* w: women
*/
@property (nonatomic, strong) NSString *userGender;
/**
* Even if the `metric` property is set to a different numerical system, the user's weight and height should be in kilograms and centimeters respectively.
*/
@property (nonatomic, strong) NSString *userWeight;
@property (nonatomic, strong) NSString *userHeight;
/**
* Women bra measurements
* The values described bellow can be obtained from the user's profile after they have filled in their bra measurements.
* It is a large subset of possible bra measurements to be described, usually you feed the widget with the measurements available from the profile
*/
@property (nonatomic, strong) NSString *userBraBust;
@property (nonatomic, strong) NSString *userBraCup;
@property (nonatomic, strong) NSString *userBraSystem;
/**
* Enforces the mobile view, so in tablets you will see the phone widget layout.
*/
@property (nonatomic, assign) BOOL showMobile;
@end
Providing purchase data not only provides you with insights but also continually enhances the value Fit Finder and our personalized recommendations add to your e-commerce platform. Therefore, we highly recommend you to set up purchase reporting on your end.
The reporting is done by sending a simple HTTP request.
The usual report is a collection of attributes such as the order ID, the product serial for each purchased item, purchased size, price, currency, etc.
The most common attributes are:
@interface FitAnalyticsPurchaseOptions : NSObject
/**
* (Shop Session ID) .. a first-party client generated session ID (can be a cookie): we use it to track purchases and keep our data more consistent (we **do NOT** use it to track or identify users)
* (value **MUST** conform with the one passed in the PDP for the same shopping session)
*/
@property (nonatomic, strong) NSString *shopSessionId;
/**
* The product serial number, which is used to identify the product in the Fit Analytics database.
* If `shopPrefix` is not set, we are going to infer the shop prefix based on the product serial number prefix. E.G. `shopprefix-abcd1234`
*/
@property (nonatomic, strong) NSString *productSerial;
/**
* (optional) the size-specific identifier
*/
@property (nonatomic, strong) NSString *shopArticleCode;
/**
* Acts as a size code identifier that we can use when gathering data per size
*/
@property (nonatomic, strong) NSString *ean;
/**
* Shops' internal order identifier.
*/
@property (nonatomic, strong) NSString *orderId;
/**
* It should match the size that is available in the product's feed.
*/
@property (nonatomic, strong) NSString *purchasedSize;
/**
* The user identifier based on the shop's user id, for example in case the user is logged in.
*/
@property (nonatomic, strong) NSString *userId;
/**
* ISO 639-1
* E.G. "en"
*/
@property (nonatomic, strong) NSString *language;
/**
* ISO 3166-1
* E.G. "GB"
*/
@property (nonatomic, strong) NSString *shopCountry;
@property (nonatomic, assign) NSNumber *price;
@property (nonatomic, assign) NSNumber *quantity;
/**
* E.G. "EUR" | "USD" | "GBP"
*/
@property (nonatomic, strong) NSString *currency;
@end
Import the FITAPurchaseReport.h and the FITAPurchaseReporter.h header file.
#import "FITAPurchaseReport.h"
#import "FITAPurchaseReporter.h"
Create a new instance of the purchase reporter (FITAPurchaseReporter).
FITAPurchaseReporter *reporter = [[FITAPurchaseReporter alloc] init];
For each line item present in the customer's order, create a new instance of FITAPurchaseReport and send it via reporter.
FITAPurchaseReport *report = [[FITAPurchaseReport alloc] init];
report.orderId = @"0034";
report.userId = @"003242A32A";
report.productSerial = @"test-55322214";
report.purchasedSize = @"XXL";
report.shopSessionId = @"0a1b2c3d"
// add additional attributes, such as shopCountry, lanugage etc. here.
[reporter sendReport:report];
Alternatively, you can initialize the report instance with a dictionary. That can be useful for setting shared defaults, for example.
NSDictionary *reportDefaults = @{
@"orderId": @"0034",
@"userId": @"003242A32A"
};
FITAPurchaseReport *report = [[FITAPurchaseReport alloc] initWithDictionary:reportDefaults];
report.productSerial = @"test-55322214";
report.purchasedSize = @"XXL";
[reporter sendReport:report];
If you wish to wait until reporting has finished, you can pass a callback function.
[reporter sendReport:report done:^(NSError *error) {
if (error != nil)
NSLog("ERROR: %@", error);
else
NSLog("SUCCESS");
}]
The Info.plist
file includes usage descriptions for the following data collected by the SDK: