-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
[Domain Management] Add My Domains to Me Screen #21701
Merged
Merged
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
8f729de
Add my domains button to Me Screen
alpavanoglu b99ce54
Add `MyDomainsViewController`
alpavanoglu 4a5d6e2
Merge branch 'trunk' into 21425-my-domains-and-menu
alpavanoglu 412e092
Add feature flag check
alpavanoglu 2e1eb93
Revert remote flag default value to false
alpavanoglu 5e1e53b
Remove `UIMenu` logic
alpavanoglu 9bc1487
Remove the strings enum & WP target
alpavanoglu 0084f27
Remove `MyDomainsViewController` from WP target
alpavanoglu 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
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
24 changes: 24 additions & 0 deletions
24
WordPress/Classes/ViewRelated/Me/MyDomains/MyDomainsViewController.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,24 @@ | ||
import UIKit | ||
|
||
final class MyDomainsViewController: UIViewController { | ||
override func viewDidLoad() { | ||
super.viewDidLoad() | ||
title = Strings.title | ||
|
||
WPStyleGuide.configureColors(view: view, tableView: nil) | ||
let action = UIAction { _ in | ||
// Present add domain screen. | ||
} | ||
navigationItem.rightBarButtonItem = .init(systemItem: .add, primaryAction: action) | ||
} | ||
} | ||
|
||
extension MyDomainsViewController { | ||
enum Strings { | ||
static let title = NSLocalizedString( | ||
"domain.management.title", | ||
value: "My Domains", | ||
comment: "Domain Management Screen Title" | ||
) | ||
} | ||
} |
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
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.
[Question] Why are we using macros here? Have you considered using
AppConfiguration.isJetpack
?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.
I can answer this question as it was my suggestion @hassaanelgarem.
Without the macro, the
MyDomainsViewController
files and all the files that depend on it would have to be added to WordPress target too. Even though the My Domains screen is for Jetpack only.And if we remove those files from WordPress target, then the WordPress app won't build.
@alpavanoglu considered using
isJetpack
flag but that doesn't fix this problem.