-
Notifications
You must be signed in to change notification settings - Fork 2k
Site Overview: Add manage contact info to domain card #105107
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
base: DOTDASH-250/domains-card-manage-dns
Are you sure you want to change the base?
Site Overview: Add manage contact info to domain card #105107
Conversation
Jetpack Cloud live (direct link)
Automattic for Agencies live (direct link)
|
This PR modifies the release build for the following Calypso Apps: For info about this notification, see here: PCYsg-OT6-p2
To test WordPress.com changes, run |
Here is how your PR affects size of JS and CSS bundles shipped to the user's browser: App Entrypoints (~151 bytes added 📈 [gzipped])
Common code that is always downloaded and parsed every time the app is loaded, no matter which route is used. Sections (~164 bytes added 📈 [gzipped])
Sections contain code specific for a given set of routes. Is downloaded and parsed only when a particular route is navigated to. Async-loaded Components (~80 bytes added 📈 [gzipped])
React components that are loaded lazily, when a certain part of UI is displayed for the first time. Legend What is parsed and gzip size?Parsed Size: Uncompressed size of the JS and CSS files. This much code needs to be parsed and stored in memory. Generated by performance advisor bot at iscalypsofastyet.com. |
06506ca
to
e8ce4a5
Compare
e8ce4a5
to
e69c6a7
Compare
@@ -6,7 +6,6 @@ export type { DomainSuggestion, DomainSuggestionQuery }; | |||
|
|||
export const DomainTypes = { | |||
MAPPED: 'mapping', | |||
REGISTERED: 'registered', |
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.
This one is computed domain type by ! wpcom_domain && has_registration
. Try to get rid of it and use the raw data to determine whether the domain is registered.
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.
But why? It's already provided by the backend; why do the computation again?
@@ -19,7 +19,7 @@ export function getDomainId( domain: Domain ): string { | |||
function Domains() { | |||
const { user } = useAuth(); | |||
const fields = useFields(); | |||
const actions = useActions( { user } ); | |||
const actions = useActions( { user, supportsBulk: true } ); |
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.
Not sure if it's in the scope of this PR; but I can't seem to use bulk selection in this top-level Domains screen 🤔
@@ -6,7 +6,6 @@ export type { DomainSuggestion, DomainSuggestionQuery }; | |||
|
|||
export const DomainTypes = { | |||
MAPPED: 'mapping', | |||
REGISTERED: 'registered', |
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.
But why? It's already provided by the backend; why do the computation again?
Part of DOTDASH-249
Proposed Changes
Manage contact information
action to the domain dataviews on domain cardWhy are these changes being made?
Testing Instructions
/v2/sites/:site
on your site with custom domain...
on the custom domain on the domain cardManage contact information
Pre-merge Checklist