Custom Formatters - Bandyer/Bandyer-iOS-SDK GitHub Wiki

Table of contents:

Overview

The Kaleyra Video provides a set of UI screens ready to be used out of the box saving you from the hassle of making and mantaining complex UI screens that don't belong to your app domain. Examples of these UI screens are the ChannelViewController or the CallViewController. However, at the moment, those UI screens are not a lot customizable, you cannot change the layout of the call UI for example. One point of customization, though, is represented by formatters. ChannelViewController, CallViewController and in-app notifications can be customized a little bit when they present user related information.

Call UI with formatted title

If you take a look a the image above, you'll notice at the top of the screen the callee full name is shown. As you might recall from the customizing user information guide the BandyerSDK does know nothing about user information, so how is it possible the callee fullname is presented on the top of that screen? It happens that the Kaleyra Video SDK uses two customizable components, one for retrieving user information, the UserDetailsProvider (if you want to know how it works, you should head over to the Fetching user information section in the customizing user information guide), one for "formatting" the user information retrieved using the UserDetailsProvider, namely a formatter. The Kaleyra Video SDK allows you to change how user information are presented in three major places: the callee information in the call UI, the navigation bar item in the chat UI, and the in-app notification title. You can make those changes providing a custom NSFormatter subclass when you are about to present the CallViewController or the ChannelViewController. You can also provide your custom formatter to the In-app notifications coordinator.

NSFormatter

Your custom formatter is just an NSFormatter subclass, some data comes in (will get to that in a moment), a string comes out. The Kaleyra Video SDK will call the NSFormatter stringForObjectValue method providing a UserDetails or an array filled with UserDetails items as first argument. It is up to you to decide what the returned string should or should not contain.

The following snippet of code will show you how to use a custom formatter that concatenate the user's first and last name joined by an asterisk (for example, given the user is named "John Doe" the returned string will look like "John * Doe").

import Bandyer

class AsteriskFormatter: Formatter {

    override func string(for obj: Any?) -> String? {
        guard let items = obj as? [UserDetails], let item = items.first else {
            return nil
        }

        return (item.firstname ?? "") + " * " + (item.lastname ?? "")
    }
}

#import <Foundation/Foundation.h>
#import <Bandyer/Bandyer.h>

@interface AsteriskFormatter : NSFormatter

@end

@implementation AsteriskFormatter

- (NSString *)stringForObjectValue:(id)obj {
    
    NSArray<BDKUserDetails*>* items = (NSArray<BDKUserDetails*> *) obj;
    
    if (items != nil) 
    {
        BDKUserDetails * item = items.firstObject;
        if (item) 
        {
            NSString* firstName = item.firstname ? item.firstname : @"";
            NSString* lastName = item.lastname ? item.lastname : @"";
            return [NSString stringWithFormat:@"%@ * %@", firstName, lastName];
        }
    }
    
    return nil;
}

@end

The Call title formatter

To change visualization of user related properties inside a CallViewController you need to configure the CallWindow passing your custom formatter to the builder of the CallViewControllerConfiguration.

By default, if no callInfoTitleFormatter is set, the Kaleyra Video SDK will use a default one, concatenating the user's first and last name with an empty space (for example "John Doe" will be displayed).

let config = CallViewControllerConfigurationBuilder()
                 .withCallInfoTitleFormatter(AsteriskFormatter())
                 .build()

callWindow.setConfiguration(config)
BDKCallViewControllerConfiguration *config = BDKCallViewControllerConfigurationBuilder
                                                                              .create()
                                                                              .withCallInfoTitleFormatter([AsteriskFormatter new])
                                                                              .build();
          
[self.callWindow setConfiguration:config];

The Channel title formatter

To change visualization of user related properties inside ChannelViewController navigation title you need to configure the ChannelViewController instance, passing your custom formatter to the instance of ChannelViewControllerConfiguration.

By default, if no formatter is set, the Kaleyra Video SDK will use a default one, concatenating the user's first and last name with an empty space (for example "John Doe" will be displayed).

let config = ChannelViewControllerConfiguration(formatter: AsteriskFormatter())
channelViewController.configuration = configuration
BDKChannelViewControllerConfiguration* configuration = [BDKChannelViewControllerConfiguration alloc] formatter:[AsteriskFormatter new](/Bandyer/Bandyer-iOS-SDK/wiki/BDKChannelViewControllerConfiguration-alloc]-formatter:[AsteriskFormatter-new); 
channelViewController.configuration = configuration;

In-app notifications coordinator formatter

Likewise the InAppNotificationsCoordinator has a formatter property where you can set your custom formatter. As always, if you don't provide a custom formatter, a default one will be used instead. The following snippets of code will show how to setup the InAppNotificationsCoordinator formatter with the AsteriskFormatter used throughout this guide.

let formatter = AsteriskFormatter()
BandyerSDK.instance.notificationsCoordinator?.formatter = formatter
NSFormatter *formatter = [AsteriskFormatter new];
BandyerSDK.instance.notificationsCoordinator.formatter = formatter;