-
-
Notifications
You must be signed in to change notification settings - Fork 762
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Refactor out ArticleViewController into extensions #4942
Open
l-olson1214
wants to merge
1
commit into
main
Choose a base branch
from
refactor-test
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
89 changes: 89 additions & 0 deletions
89
Wikipedia/Code/ArticleViewController + AltTextExperiment.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
import WMFComponents | ||
import WMF | ||
import CocoaLumberjackSwift | ||
import WMFData | ||
|
||
// MARK: - ArticleViewController + AltTextExperiment | ||
|
||
extension ArticleViewController { | ||
func setup() { | ||
if let altTextExperimentViewModel { | ||
self.navigationItem.titleView = nil | ||
self.title = altTextExperimentViewModel.localizedStrings.articleNavigationBarTitle | ||
|
||
let rightBarButtonItem = | ||
UIBarButtonItem( | ||
image: WMFSFSymbolIcon.for(symbol: .ellipsisCircle), | ||
primaryAction: nil, | ||
menu: overflowMenu | ||
) | ||
navigationItem.rightBarButtonItem = rightBarButtonItem | ||
rightBarButtonItem.tintColor = theme.colors.link | ||
|
||
self.navigationBar.updateNavigationItems() | ||
Comment on lines
+11
to
+23
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This one is a little tricky in that only the code in this conditional applies to Alt Text. Can you rework so that only this code lives in this extension, but the rest (else code, |
||
} else { | ||
setupWButton() | ||
setupSearchButton() | ||
} | ||
|
||
addNotificationHandlers() | ||
setupWebView() | ||
setupMessagingController() | ||
} | ||
|
||
private var overflowMenu: UIMenu { | ||
let learnMore = UIAction(title: CommonStrings.learnMoreTitle(), image: WMFSFSymbolIcon.for(symbol: .infoCircle), handler: { [weak self] _ in | ||
if let project = self?.project { | ||
EditInteractionFunnel.shared.logAltTextEditingInterfaceOverflowLearnMore(project: project) | ||
} | ||
self?.goToFAQ() | ||
}) | ||
|
||
let tutorial = UIAction(title: CommonStrings.tutorialTitle, image: WMFSFSymbolIcon.for(symbol: .lightbulbMin), handler: { [weak self] _ in | ||
if let project = self?.project { | ||
EditInteractionFunnel.shared.logAltTextEditingInterfaceOverflowTutorial(project: project) | ||
} | ||
self?.showTutorial() | ||
}) | ||
|
||
let reportIssues = UIAction(title: CommonStrings.problemWithFeatureTitle, image: WMFSFSymbolIcon.for(symbol: .flag), handler: { [weak self] _ in | ||
if let project = self?.project { | ||
EditInteractionFunnel.shared.logAltTextEditingInterfaceOverflowReport(project: project) | ||
} | ||
self?.reportIssue() | ||
}) | ||
|
||
let menuItems: [UIMenuElement] = [learnMore, tutorial, reportIssues] | ||
|
||
return UIMenu(title: String(), children: menuItems) | ||
} | ||
|
||
private func goToFAQ() { | ||
if let altTextExperimentViewModel { | ||
isReturningFromFAQ = true | ||
navigate(to: altTextExperimentViewModel.learnMoreURL, useSafari: false) | ||
} | ||
} | ||
|
||
private func showTutorial() { | ||
presentAltTextTooltipsIfNecessary(force: true) | ||
} | ||
|
||
private func reportIssue() { | ||
let emailAddress = "[email protected]" | ||
let emailSubject = WMFLocalizedString("alt-text-email-title", value: "Issue Report - Alt Text Feature", comment: "Title text for Alt Text pre-filled issue report email") | ||
let emailBodyLine1 = WMFLocalizedString("alt-text-email-first-line", value: "I've encountered a problem with the Alt Text feature:", comment: "Text for Alt Text pre-filled issue report email") | ||
let emailBodyLine2 = WMFLocalizedString("alt-text-email-second-line", value: "- [Describe specific problem]", comment: "Text for Alt Text pre-filled issue report email. This text is intended to be replaced by the user with a description of the problem they are encountering") | ||
let emailBodyLine3 = WMFLocalizedString("alt-text-email-third-line", value: "The behavior I would like to see is:", comment: "Text for Alt Text pre-filled issue report email") | ||
let emailBodyLine4 = WMFLocalizedString("alt-text-email-fourth-line", value: "- [Describe proposed solution]", comment: "Text for Alt Text pre-filled issue report email. This text is intended to be replaced by the user with a description of a user suggested solution") | ||
let emailBodyLine5 = WMFLocalizedString("alt-text-email-fifth-line", value: "[Screenshots or Links]", comment: "Text for Alt Text pre-filled issue report email. This text is intended to be replaced by the user with a screenshot or link.") | ||
let emailBody = "\(emailBodyLine1)\n\n\(emailBodyLine2)\n\n\(emailBodyLine3)\n\n\(emailBodyLine4)\n\n\(emailBodyLine5)" | ||
let mailto = "mailto:\(emailAddress)?subject=\(emailSubject)&body=\(emailBody)".addingPercentEncoding(withAllowedCharacters: .urlQueryAllowed) | ||
|
||
guard let encodedMailto = mailto, let mailtoURL = URL(string: encodedMailto), UIApplication.shared.canOpenURL(mailtoURL) else { | ||
WMFAlertManager.sharedInstance.showErrorAlertWithMessage(CommonStrings.noEmailClient, sticky: false, dismissPreviousAlerts: false) | ||
return | ||
} | ||
UIApplication.shared.open(mailtoURL) | ||
} | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A space in the filename slipped in here.