blob: 08e5241a9f018e4531f0141fd2f33ee920dbe277 [file] [log] [blame]
// Copyright 2022 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#import "ios/chrome/browser/discover_feed/feed_model_configuration.h"
#import "base/check_op.h"
#if !defined(__has_feature) || !__has_feature(objc_arc)
#error "This file requires ARC support."
#endif
@implementation FeedModelConfiguration
#pragma mark - Public
+ (instancetype)discoverFeedModelConfiguration {
return [[self alloc] initWithFeedType:FeedTypeDiscover
followingFeedSortType:FollowingFeedSortTypeUnspecified];
}
+ (instancetype)followingModelConfigurationWithSortType:
(FollowingFeedSortType)sortType {
DCHECK_NE(sortType, FollowingFeedSortTypeUnspecified);
return [[self alloc] initWithFeedType:FeedTypeFollowing
followingFeedSortType:sortType];
}
#pragma mark - Private
// Initializes `self` with a `feedType` and a `sortType`.
- (instancetype)initWithFeedType:(FeedType)feedType
followingFeedSortType:(FollowingFeedSortType)sortType {
if (self = [super init]) {
_feedType = feedType;
_followingFeedSortType = sortType;
}
return self;
}
@end