Skip to content

Commit 08358ef

Browse files
committed
Conform UserFeedback to WIdgetProviding. Clean up code
1 parent 328acf4 commit 08358ef

File tree

8 files changed

+21
-42
lines changed

8 files changed

+21
-42
lines changed

Production/govuk_ios/Builders/ViewControllerBuilder.swift

-2
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,6 @@ class ViewControllerBuilder {
3232
configService: configService,
3333
topicWidgetViewModel: topicWidgetViewModel,
3434
feedbackAction: feedbackAction,
35-
searchAction: searchAction,
36-
recentActivityAction: recentActivityAction,
3735
widgetBuilder: widgetBuilder
3836
)
3937
return HomeViewController(

Production/govuk_ios/Resources/Widgets.json

+9-4
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,27 @@
22
"widgets" : [
33
{
44
"name" : "TestWidget.TestWidgetProvider",
5-
"rank" : 3,
5+
"rank" : 4,
66
"enabled" : true
77
},
88
{
99
"name" : "TestWidget.TestWebWidgetProvider",
10-
"rank" : 2,
10+
"rank" : 3,
1111
"enabled" : true
1212
},
1313
{
1414
"name" : "govuk_ios.SearchWidgetProvider",
15-
"rank" : 0,
15+
"rank" : 1,
1616
"enabled" : true
1717
},
1818
{
1919
"name" : "govuk_ios.RecentActivityWidgetProvider",
20-
"rank" : 1,
20+
"rank" : 2,
21+
"enabled" : true
22+
},
23+
{
24+
"name" : "govuk_ios.UserFeedbackWidgetProvider",
25+
"rank" : 0,
2126
"enabled" : true
2227
}
2328
]

Production/govuk_ios/Services/WidgetBuilder.swift

+2
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,8 @@ class WidgetBuilder: NSObject {
8282
return searchAction
8383
case "recentActivity":
8484
return recentActivityAction
85+
case "userFeedback":
86+
return feedbackAction
8587
default:
8688
return { }
8789
}

Production/govuk_ios/ViewModels/HomeViewModel.swift

-16
Original file line numberDiff line numberDiff line change
@@ -7,32 +7,16 @@ struct HomeViewModel {
77
let configService: AppConfigServiceInterface
88
let topicWidgetViewModel: TopicsWidgetViewModel
99
let feedbackAction: () -> Void
10-
let searchAction: () -> Void
11-
let recentActivityAction: () -> Void
1210

1311
let widgetBuilder: WidgetBuilder
1412

1513
var widgets: [WidgetView] {
1614
widgetBuilder.getAll() +
1715
[
18-
feedbackWidget,
1916
topicsWidget
2017
].compactMap { $0 }
2118
}
2219

23-
private var feedbackWidget: WidgetView {
24-
let title = String.home.localized("feedbackWidgetTitle")
25-
let viewModel = WidgetViewModel(
26-
title: title,
27-
action: feedbackAction
28-
)
29-
let content = UserFeedbackView(viewModel: viewModel)
30-
let widget = WidgetView(useContentAccessibilityInfo: true)
31-
widget.backgroundColor = UIColor.govUK.fills.surfaceCardSelected
32-
widget.addContent(content)
33-
return widget
34-
}
35-
3620
private var topicsWidget: WidgetView? {
3721
guard widgetEnabled(feature: .topics)
3822
else { return nil }

Production/govuk_ios/Views/Home/UserFeedbackWidgetProvider.swift

+6-4
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,16 @@ import GOVKit
33

44
class UserFeedbackWidgetProvider: NSObject,
55
WidgetProviding {
6-
var title: String = "Google"
7-
var urlString: String? = "https://www.gooogle.com"
8-
var actionType: WidgetAction = .url
6+
var title: String = String.home.localized("feedbackWidgetTitle")
7+
var urlString: String?
8+
var actionType: WidgetAction = .custom("userFeedback")
99
var widget: WidgetView
1010
var startViewController: UIViewController.Type?
1111

1212
override init() {
13-
self.widget = WidgetView(useContentAccessibilityInfo: true)
13+
let localWidget = WidgetView(useContentAccessibilityInfo: true)
14+
localWidget.backgroundColor = UIColor.govUK.fills.surfaceCardSelected
15+
self.widget = localWidget
1416
super.init()
1517
}
1618

Tests/govuk_ios/govuk_ios_snapshot_tests/Specs/ViewControllers/HomeViewControllerSnapshotTests.swift

-2
Original file line numberDiff line numberDiff line change
@@ -126,8 +126,6 @@ class HomeViewControllerSnapshotTests: SnapshotTestCase {
126126
configService: MockAppConfigService(),
127127
topicWidgetViewModel: topicsViewModel,
128128
feedbackAction: { },
129-
searchAction: { },
130-
recentActivityAction: { },
131129
widgetBuilder: WidgetBuilder(analytics: MockAnalyticsService(),
132130
configService: MockAppConfigService(),
133131
topicWidgetViewModel: topicsViewModel,

Tests/govuk_ios/govuk_ios_unit_tests/Specs/ViewControllers/HomeViewControllerTests.swift

+3-9
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,11 @@ struct HomeViewControllerTests {
2121
configService: MockAppConfigService(),
2222
topicWidgetViewModel: topicsViewModel,
2323
feedbackAction: { },
24-
searchAction: { () -> Void in _ = true },
25-
recentActivityAction: { },
2624
widgetBuilder: WidgetBuilder(analytics: MockAnalyticsService(),
2725
configService: MockAppConfigService(),
2826
topicWidgetViewModel: topicsViewModel,
2927
feedbackAction: { },
30-
searchAction: { },
28+
searchAction: { () -> Void in _ = true },
3129
recentActivityAction: { })
3230
)
3331
let subject = HomeViewController(viewModel: viewModel)
@@ -49,13 +47,11 @@ struct HomeViewControllerTests {
4947
configService: MockAppConfigService(),
5048
topicWidgetViewModel: topicsViewModel,
5149
feedbackAction: { },
52-
searchAction: { () -> Void in _ = true },
53-
recentActivityAction: { },
5450
widgetBuilder: WidgetBuilder(analytics: MockAnalyticsService(),
5551
configService: MockAppConfigService(),
5652
topicWidgetViewModel: topicsViewModel,
5753
feedbackAction: { },
58-
searchAction: { },
54+
searchAction: { () -> Void in _ = true },
5955
recentActivityAction: { })
6056
)
6157
let subject = HomeViewController(viewModel: viewModel)
@@ -81,13 +77,11 @@ struct HomeViewControllerTests {
8177
configService: MockAppConfigService(),
8278
topicWidgetViewModel: topicsViewModel,
8379
feedbackAction: { },
84-
searchAction: { () -> Void in _ = true },
85-
recentActivityAction: { },
8680
widgetBuilder: WidgetBuilder(analytics: MockAnalyticsService(),
8781
configService: MockAppConfigService(),
8882
topicWidgetViewModel: topicsViewModel,
8983
feedbackAction: { },
90-
searchAction: { },
84+
searchAction: { () -> Void in _ = true },
9185
recentActivityAction: { })
9286
)
9387
let subject = HomeViewController(viewModel: viewModel)

Tests/govuk_ios/govuk_ios_unit_tests/Specs/ViewModels/HomeViewModelTests.swift

+1-5
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,11 @@ struct HomeViewModelTests {
2121
configService: MockAppConfigService(),
2222
topicWidgetViewModel: topicsViewModel,
2323
feedbackAction: { },
24-
searchAction: { () -> Void in _ = true },
25-
recentActivityAction: { },
2624
widgetBuilder: WidgetBuilder(analytics: MockAnalyticsService(),
2725
configService: MockAppConfigService(),
2826
topicWidgetViewModel: topicsViewModel,
2927
feedbackAction: { },
30-
searchAction: { },
28+
searchAction: { () -> Void in _ = true },
3129
recentActivityAction: { })
3230
)
3331
let widgets = subject.widgets
@@ -52,8 +50,6 @@ struct HomeViewModelTests {
5250
configService: configService,
5351
topicWidgetViewModel: topicsViewModel,
5452
feedbackAction: { },
55-
searchAction: { },
56-
recentActivityAction: { },
5753
widgetBuilder: WidgetBuilder(analytics: MockAnalyticsService(),
5854
configService: MockAppConfigService(),
5955
topicWidgetViewModel: topicsViewModel,

0 commit comments

Comments
 (0)