Bug 19268

Summary: Profiles panel should make recording the first profile more obvious
Product: WebKit Reporter: Adam Roben (:aroben) <aroben>
Component: Web Inspector (Deprecated)Assignee: Nobody <webkit-unassigned>
Status: RESOLVED FIXED    
Severity: Normal CC: mnaganov, pfeldman, timothy
Priority: P2    
Version: 528+ (Nightly build)   
Hardware: All   
OS: All   
Attachments:
Description Flags
UI mock
none
Proposed patch
none
Now using '--binary' for localizedStrings
timothy: review-
generalized version
timothy: review-
comment addressed timothy: review+, timothy: commit-queue-

Description Adam Roben (:aroben) 2008-05-27 08:40:32 PDT
The Inspector's Profiles panel should make how to record your first profile more obvious. Currently you're presented with a blank panel. You have to magically know to press the button in the status bar that contains a large gray dot. It would be much better if we had some text like "Record a profile using the Start Profiling button".
Comment 1 Mikhail Naganov 2010-01-13 05:01:42 PST
Created attachment 46447 [details]
UI mock

How about something like this?
Comment 2 Timothy Hatcher 2010-01-13 05:16:44 PST
This seems fine. I don't think we need to have a dot in the text button though. I would reduce the sillouette image a little too, maybe 10%.
Comment 3 Mikhail Naganov 2010-01-14 08:31:23 PST
Created attachment 46572 [details]
Proposed patch

How it looks like:
 - with single profile type: http://tinypic.com/r/izss4n/6
 - with a couple of profile types: http://tinypic.com/r/2rpy802/6
Comment 4 Mikhail Naganov 2010-01-14 08:35:49 PST
Created attachment 46573 [details]
Now using '--binary' for localizedStrings
Comment 5 Timothy Hatcher 2010-01-14 08:54:19 PST
Comment on attachment 46573 [details]
Now using '--binary' for localizedStrings


> +++ b/WebCore/inspector/front-end/ProfilesWelcomeView.js

I think this should not be specific to Profiles panel, and should be generic for use by other Panels.


> +    registerProfileType: function(profileType)

This can be generalized to take just an HTML message, then it isn't Profiles specific.


> +        } else {
> +            messageElement.innerHTML = message;
> +        }

No braces here.


> +.panel-enabler-view.profiles.welcome {
> +.panel-enabler-view.profiles.welcome img {
> +.panel-enabler-view.profiles.welcome .instructions {
> +.panel-enabler-view.profiles.welcome .profile-type-message {
> +.panel-enabler-view.welcome button {

These selectors don't need .profiles in them. They can be generic to all welcome views.

I think this is fine as, but I would like to see it be more generic.
Comment 6 Mikhail Naganov 2010-01-14 10:02:09 PST
Created attachment 46581 [details]
generalized version

not adding to commit-queue because it contains a binary diff made by git, which isn't supposed to be successfully applied by svn.
Comment 7 Timothy Hatcher 2010-01-14 10:42:18 PST
Comment on attachment 46581 [details]
generalized version


> +            function messageButtonClicked()
> +            {
> +                profileType.buttonClicked.call(profileType);
> +            }

This does not need to use .call(). You can also just use profileType.buttonClicked.bind(profileType) and pass it to addEventListener.

Fix that and I'll r+.
Comment 8 Mikhail Naganov 2010-01-14 12:36:11 PST
Created attachment 46598 [details]
comment addressed

yes, that's simpler
Comment 9 Pavel Feldman 2010-01-15 03:20:43 PST
Committing to http://svn.webkit.org/repository/webkit/trunk ...
	M	WebCore/ChangeLog
	M	WebCore/English.lproj/localizedStrings.js
	M	WebCore/WebCore.gypi
	M	WebCore/WebCore.vcproj/WebCore.vcproj
	M	WebCore/inspector/front-end/ProfileView.js
	M	WebCore/inspector/front-end/ProfilesPanel.js
	M	WebCore/inspector/front-end/WebKit.qrc
	A	WebCore/inspector/front-end/WelcomeView.js
	M	WebCore/inspector/front-end/inspector.css
	M	WebCore/inspector/front-end/inspector.html
Committed r53328