blob: e5e94d87480d4e8477ff58e39c76066d6b4793ed [file] [log] [blame] [edit]
// Copyright 2016-present the Material Components for iOS authors. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#import <UIKit/UIKit.h>
#import "MaterialPalettes.h"
#import "MaterialSnackbar.h"
#import "supplemental/SnackbarExampleSupplemental.h"
@interface SnackbarSimpleExample : SnackbarExample <MDCSnackbarManagerDelegate>
@end
@implementation SnackbarSimpleExample {
BOOL _legacyMode;
BOOL _dynamicType;
}
- (void)viewDidLoad {
[super viewDidLoad];
if (!self.colorScheme) {
self.colorScheme =
[[MDCSemanticColorScheme alloc] initWithDefaults:MDCColorSchemeDefaultsMaterial201804];
}
if (!self.typographyScheme) {
self.typographyScheme =
[[MDCTypographyScheme alloc] initWithDefaults:MDCTypographySchemeDefaultsMaterial201804];
}
[self setupExampleViews:@[
@"Simple Snackbar", @"Snackbar with Action Button", @"Snackbar with Long Text",
@"Attributed Text Example", @"Color Themed Snackbar", @"Customize Font Example",
@"De-Customize Example", @"Customized Message Using Block", @"Non Transient Snackbar",
@"Snackbar Presented On Custom View"
]];
self.title = @"Snackbar";
_legacyMode = YES;
_dynamicType = NO;
self.navigationItem.rightBarButtonItems = @[
[[UIBarButtonItem alloc] initWithTitle:@"Legacy"
style:UIBarButtonItemStylePlain
target:self
action:@selector(toggleModes)],
[[UIBarButtonItem alloc] initWithTitle:@"DT Off"
style:UIBarButtonItemStylePlain
target:self
action:@selector(toggleDynamicType)]
];
MDCSnackbarManager.defaultManager.delegate = self;
}
- (void)viewWillDisappear:(BOOL)animated {
[super viewWillDisappear:animated];
// Push or pop, when the view controller goes away we should dismiss snackbars because snackbars
// with actions will not self dismiss in voice over.
[MDCSnackbarManager.defaultManager dismissAndCallCompletionBlocksWithCategory:nil];
}
- (void)toggleModes {
_legacyMode = !_legacyMode;
if (_legacyMode) {
[self.navigationItem.rightBarButtonItems.firstObject setTitle:@"Legacy"];
} else {
[self.navigationItem.rightBarButtonItems.firstObject setTitle:@"New"];
}
MDCSnackbarMessage.usesLegacySnackbar = _legacyMode;
}
- (void)toggleDynamicType {
_dynamicType = !_dynamicType;
if (_dynamicType) {
[self.navigationItem.rightBarButtonItems.lastObject setTitle:@"DT On"];
} else {
[self.navigationItem.rightBarButtonItems.lastObject setTitle:@"DT Off"];
}
[MDCSnackbarManager.defaultManager mdc_setAdjustsFontForContentSizeCategory:_dynamicType];
}
#pragma mark - Event Handling
- (void)showSimpleSnackbar:(id)sender {
MDCSnackbarMessage *message = [[MDCSnackbarMessage alloc] init];
message.text = @"Snackbar Message";
message.focusOnShow = YES;
[MDCSnackbarManager.defaultManager showMessage:message];
}
- (void)showSnackbarWithAction:(id)sender {
MDCSnackbarMessage *message = [[MDCSnackbarMessage alloc] init];
message.text = @"Snackbar Message";
MDCSnackbarMessageAction *action = [[MDCSnackbarMessageAction alloc] init];
action.title = @"Tap Me";
message.action = action;
message.enableRippleBehavior = YES;
[MDCSnackbarManager.defaultManager showMessage:message];
}
- (void)showLongSnackbarMessage:(id)sender {
MDCSnackbarMessage *message = [[MDCSnackbarMessage alloc] init];
message.text = @"A red flair silhouetted the jagged edge of a sublime wing.";
MDCSnackbarMessageAction *action = [[MDCSnackbarMessageAction alloc] init];
MDCSnackbarMessageActionHandler actionHandler = ^() {
MDCSnackbarMessage *answerMessage = [[MDCSnackbarMessage alloc] init];
answerMessage.text = @"The sky was cloudless and of a deep dark blue.";
[MDCSnackbarManager.defaultManager showMessage:answerMessage];
};
action.handler = actionHandler;
action.title = @"Action";
message.action = action;
[MDCSnackbarManager.defaultManager showMessage:message];
}
- (void)showBoldSnackbar:(id)sender {
MDCSnackbarMessage *message = [[MDCSnackbarMessage alloc] init];
NSMutableAttributedString *text = [[NSMutableAttributedString alloc] init];
[text appendAttributedString:[[NSAttributedString alloc]
initWithString:@"Boldly"
attributes:@{MDCSnackbarMessageBoldAttributeName : @YES}]];
[text appendAttributedString:[[NSAttributedString alloc]
initWithString:@" go where no one has gone before."]];
message.attributedText = text;
[MDCSnackbarManager.defaultManager showMessage:message];
}
- (void)showColorThemedSnackbar:(id)sender {
MDCSnackbarMessage *message = [[MDCSnackbarMessage alloc] init];
message.text = @"Snackbar Message";
MDCSnackbarMessageAction *action = [[MDCSnackbarMessageAction alloc] init];
action.title = @"Tap Me";
message.action = action;
[MDCSnackbarManager.defaultManager setButtonTitleColor:MDCPalette.purplePalette.tint400
forState:UIControlStateNormal];
[MDCSnackbarManager.defaultManager setButtonTitleColor:MDCPalette.purplePalette.tint700
forState:UIControlStateHighlighted];
MDCSnackbarManager.defaultManager.messageTextColor = MDCPalette.greenPalette.tint500;
[MDCSnackbarManager.defaultManager showMessage:message];
}
- (void)showCustomizedSnackbar:(id)sender {
UIFont *customMessageFont = [UIFont fontWithName:@"Zapfino" size:14];
NSAssert(customMessageFont, @"Unable to instantiate font");
MDCSnackbarManager.defaultManager.messageFont = customMessageFont;
UIFont *customButtonFont = [UIFont fontWithName:@"ChalkDuster" size:14];
NSAssert(customButtonFont, @"Unable to instantiate font");
MDCSnackbarManager.defaultManager.buttonFont = customButtonFont;
MDCSnackbarMessage *message = [[MDCSnackbarMessage alloc] init];
message.text = @"Customized Fonts";
MDCSnackbarMessageAction *action = [[MDCSnackbarMessageAction alloc] init];
action.title = @"Fancy";
message.action = action;
[MDCSnackbarManager.defaultManager showMessage:message];
}
- (void)showDecustomizedSnackbar:(id)sender {
MDCSnackbarManager.defaultManager.messageFont = nil;
MDCSnackbarManager.defaultManager.buttonFont = nil;
[MDCSnackbarManager.defaultManager setButtonTitleColor:nil forState:UIControlStateNormal];
[MDCSnackbarManager.defaultManager setButtonTitleColor:nil forState:UIControlStateHighlighted];
MDCSnackbarManager.defaultManager.messageTextColor = nil;
MDCSnackbarMessage *message = [[MDCSnackbarMessage alloc] init];
message.text = @"Back to the standard snackbar";
MDCSnackbarMessageAction *action = [[MDCSnackbarMessageAction alloc] init];
action.title = @"Okay";
message.action = action;
[MDCSnackbarManager.defaultManager showMessage:message];
}
- (void)showCustomizedSnackbarWithActionUsingBlock:(id)sender {
MDCSnackbarMessage *message = [[MDCSnackbarMessage alloc] init];
message.text = @"Snackbar Message";
MDCSnackbarMessageAction *action = [[MDCSnackbarMessageAction alloc] init];
action.title = @"Tap Me";
message.action = action;
message.enableRippleBehavior = YES;
message.snackbarMessageWillPresentBlock =
^(MDCSnackbarMessage *snackbarMessage, MDCSnackbarMessageView *messageView) {
messageView.backgroundColor = UIColor.blueColor;
messageView.messageTextColor = UIColor.whiteColor;
for (MDCButton *button in messageView.actionButtons) {
[button setTitleColor:UIColor.whiteColor forState:UIControlStateNormal];
[button setTitleColor:UIColor.whiteColor forState:UIControlStateHighlighted];
}
};
[MDCSnackbarManager.defaultManager showMessage:message];
}
- (void)showNonTransientSnackbar:(id)sender {
MDCSnackbarMessage *message = [[MDCSnackbarMessage alloc] init];
message.text = @"Snackbar Message";
message.automaticallyDismisses = NO;
message.enableRippleBehavior = YES;
[MDCSnackbarManager.defaultManager showMessage:message];
}
- (void)showSimpleSnackbarOnCustomPresentationHostView:(id)sender {
MDCSnackbarMessage *message = [[MDCSnackbarMessage alloc] init];
message.text = @"Snackbar Message";
message.focusOnShow = YES;
message.presentationHostViewOverride = self.collectionView;
[MDCSnackbarManager.defaultManager showMessage:message];
}
#pragma mark - UICollectionView
- (void)collectionView:(UICollectionView *)collectionView
didSelectItemAtIndexPath:(NSIndexPath *)indexPath {
[super collectionView:collectionView didSelectItemAtIndexPath:indexPath];
switch (indexPath.row) {
case 0:
[self showSimpleSnackbar:nil];
break;
case 1:
[self showSnackbarWithAction:nil];
break;
case 2:
[self showLongSnackbarMessage:nil];
break;
case 3:
[self showBoldSnackbar:nil];
break;
case 4:
[self showColorThemedSnackbar:nil];
break;
case 5:
[self showCustomizedSnackbar:nil];
break;
case 6:
[self showDecustomizedSnackbar:nil];
break;
case 7:
[self showCustomizedSnackbarWithActionUsingBlock:nil];
break;
case 8:
[self showNonTransientSnackbar:nil];
break;
case 9:
[self showSimpleSnackbarOnCustomPresentationHostView:nil];
break;
default:
break;
}
}
- (void)willPresentSnackbarWithMessageView:(nullable MDCSnackbarMessageView *)messageView {
NSLog(@"A snackbar will be presented");
}
@end
@implementation SnackbarSimpleExample (CatalogByConvention)
+ (NSDictionary *)catalogMetadata {
return @{
@"breadcrumbs" : @[ @"Snackbar", @"Snackbar" ],
@"description" : @"Snackbars provide brief messages about app processes at the bottom of "
@"the screen.",
@"primaryDemo" : @YES,
@"presentable" : @YES,
};
}
@end
@implementation SnackbarSimpleExample (SnapshotTestingByConvention)
- (NSDictionary<NSString *, void (^)(void)> *)testRunners {
NSMutableDictionary<NSString *, void (^)(void)> *runners = [NSMutableDictionary dictionary];
NSInteger index = 0;
for (NSString *choice in self.choices) {
NSIndexPath *indexPath = [NSIndexPath indexPathForRow:index inSection:0];
runners[choice] = ^{
[self collectionView:self.collectionView didSelectItemAtIndexPath:indexPath];
};
index++;
}
return runners;
}
@end