-
Notifications
You must be signed in to change notification settings - Fork 894
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #20211 from brave/bookmark_panel_header
Added header to bookmarks panel
- Loading branch information
Showing
17 changed files
with
367 additions
and
37 deletions.
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
Binary file added
BIN
+791 Bytes
app/theme/default_100_percent/brave/sidebar_bookmarks_panel_header.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.66 KB
app/theme/default_200_percent/brave/sidebar_bookmarks_panel_header.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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
41 changes: 41 additions & 0 deletions
41
browser/ui/views/side_panel/bookmarks/brave_bookmarks_side_panel_coordinator.cc
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,41 @@ | ||
/* Copyright (c) 2023 The Brave Authors. All rights reserved. | ||
* This Source Code Form is subject to the terms of the Mozilla Public | ||
* License, v. 2.0. If a copy of the MPL was not distributed with this file, | ||
* You can obtain one at https://mozilla.org/MPL/2.0/. */ | ||
|
||
#include "brave/browser/ui/views/side_panel/bookmarks/brave_bookmarks_side_panel_coordinator.h" | ||
|
||
#include "base/functional/bind.h" | ||
#include "brave/browser/ui/views/side_panel/brave_bookmarks_side_panel_view.h" | ||
#include "chrome/browser/ui/views/side_panel/side_panel_entry.h" | ||
#include "chrome/browser/ui/views/side_panel/side_panel_registry.h" | ||
#include "chrome/grit/generated_resources.h" | ||
#include "components/omnibox/browser/vector_icons.h" | ||
#include "ui/base/l10n/l10n_util.h" | ||
#include "ui/base/models/image_model.h" | ||
#include "ui/views/vector_icons.h" | ||
|
||
BraveBookmarksSidePanelCoordinator::BraveBookmarksSidePanelCoordinator( | ||
Browser* browser) | ||
: BrowserUserData<BraveBookmarksSidePanelCoordinator>(*browser) {} | ||
|
||
BraveBookmarksSidePanelCoordinator::~BraveBookmarksSidePanelCoordinator() = | ||
default; | ||
|
||
void BraveBookmarksSidePanelCoordinator::CreateAndRegisterEntry( | ||
SidePanelRegistry* global_registry) { | ||
global_registry->Register(std::make_unique<SidePanelEntry>( | ||
SidePanelEntry::Id::kBookmarks, | ||
l10n_util::GetStringUTF16(IDS_BOOKMARK_MANAGER_TITLE), | ||
ui::ImageModel::FromVectorIcon(omnibox::kStarIcon, ui::kColorIcon), | ||
base::BindRepeating( | ||
&BraveBookmarksSidePanelCoordinator::CreateBookmarksPanelView, | ||
base::Unretained(this)))); | ||
} | ||
|
||
std::unique_ptr<views::View> | ||
BraveBookmarksSidePanelCoordinator::CreateBookmarksPanelView() { | ||
return std::make_unique<BraveBookmarksSidePanelView>(&GetBrowser()); | ||
} | ||
|
||
BROWSER_USER_DATA_KEY_IMPL(BraveBookmarksSidePanelCoordinator); |
50 changes: 50 additions & 0 deletions
50
browser/ui/views/side_panel/bookmarks/brave_bookmarks_side_panel_coordinator.h
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,50 @@ | ||
/* Copyright (c) 2023 The Brave Authors. All rights reserved. | ||
* This Source Code Form is subject to the terms of the Mozilla Public | ||
* License, v. 2.0. If a copy of the MPL was not distributed with this file, | ||
* You can obtain one at https://mozilla.org/MPL/2.0/. */ | ||
|
||
#ifndef BRAVE_BROWSER_UI_VIEWS_SIDE_PANEL_BOOKMARKS_BRAVE_BOOKMARKS_SIDE_PANEL_COORDINATOR_H_ | ||
#define BRAVE_BROWSER_UI_VIEWS_SIDE_PANEL_BOOKMARKS_BRAVE_BOOKMARKS_SIDE_PANEL_COORDINATOR_H_ | ||
|
||
#include <memory> | ||
|
||
#include "chrome/browser/ui/browser_user_data.h" | ||
|
||
class Browser; | ||
class SidePanelRegistry; | ||
|
||
namespace views { | ||
class View; | ||
} // namespace views | ||
|
||
// Introduced to give custom contents view(BraveBookmarksSidePanelView) for | ||
// bookmarks panel entry. That contents view includes bookmarks panel specific | ||
// header view and web view. | ||
// Note that this is not the subclass of upstream BookmarksSidePanelCoordinator. | ||
// As it inherits BrowserUserData, subclassig doesn't work well when its | ||
// instance is created via BrowserUserData<>::CreateForBrowser(). So, new | ||
// coordinator class is introduced and | ||
// BookmarksSidePanelCoordinator::CreateBookmarksWebView() is reused from | ||
// BraveBookmarksSidePanelView. That's why BraveBookmarksSidePanelView is set | ||
// as BookmarksSidePanelCoordinator's friend. | ||
class BraveBookmarksSidePanelCoordinator | ||
: public BrowserUserData<BraveBookmarksSidePanelCoordinator> { | ||
public: | ||
explicit BraveBookmarksSidePanelCoordinator(Browser* browser); | ||
BraveBookmarksSidePanelCoordinator( | ||
const BraveBookmarksSidePanelCoordinator&) = delete; | ||
BraveBookmarksSidePanelCoordinator& operator=( | ||
const BraveBookmarksSidePanelCoordinator&) = delete; | ||
~BraveBookmarksSidePanelCoordinator() override; | ||
|
||
void CreateAndRegisterEntry(SidePanelRegistry* global_registry); | ||
|
||
private: | ||
friend class BrowserUserData<BraveBookmarksSidePanelCoordinator>; | ||
|
||
std::unique_ptr<views::View> CreateBookmarksPanelView(); | ||
|
||
BROWSER_USER_DATA_KEY_DECL(); | ||
}; | ||
|
||
#endif // BRAVE_BROWSER_UI_VIEWS_SIDE_PANEL_BOOKMARKS_BRAVE_BOOKMARKS_SIDE_PANEL_COORDINATOR_H_ |
128 changes: 128 additions & 0 deletions
128
browser/ui/views/side_panel/brave_bookmarks_side_panel_view.cc
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,128 @@ | ||
/* Copyright (c) 2023 The Brave Authors. All rights reserved. | ||
* This Source Code Form is subject to the terms of the Mozilla Public | ||
* License, v. 2.0. If a copy of the MPL was not distributed with this file, | ||
* You can obtain one at https://mozilla.org/MPL/2.0/. */ | ||
|
||
#include "brave/browser/ui/views/side_panel/brave_bookmarks_side_panel_view.h" | ||
|
||
#include <memory> | ||
|
||
#include "base/memory/raw_ref.h" | ||
#include "brave/browser/ui/color/brave_color_id.h" | ||
#include "brave/components/vector_icons/vector_icons.h" | ||
#include "brave/grit/brave_generated_resources.h" | ||
#include "brave/grit/brave_theme_resources.h" | ||
#include "chrome/browser/ui/singleton_tabs.h" | ||
#include "chrome/browser/ui/views/side_panel/bookmarks/bookmarks_side_panel_coordinator.h" | ||
#include "chrome/browser/ui/views/side_panel/read_later_side_panel_web_view.h" | ||
#include "chrome/common/webui_url_constants.h" | ||
#include "chrome/grit/generated_resources.h" | ||
#include "ui/base/l10n/l10n_util.h" | ||
#include "ui/base/models/image_model.h" | ||
#include "ui/base/resource/resource_bundle.h" | ||
#include "ui/gfx/font_list.h" | ||
#include "ui/gfx/geometry/insets.h" | ||
#include "ui/views/background.h" | ||
#include "ui/views/controls/button/image_button.h" | ||
#include "ui/views/controls/image_view.h" | ||
#include "ui/views/controls/label.h" | ||
#include "ui/views/controls/separator.h" | ||
#include "ui/views/layout/flex_layout.h" | ||
#include "ui/views/layout/layout_types.h" | ||
|
||
namespace { | ||
|
||
// Renders icon, title and launch button. | ||
class BookmarksSidePanelHeaderView : public views::View { | ||
public: | ||
explicit BookmarksSidePanelHeaderView(Browser* browser) { | ||
constexpr int kHeaderInteriorMargin = 16; | ||
SetLayoutManager(std::make_unique<views::FlexLayout>()) | ||
->SetOrientation(views::LayoutOrientation::kHorizontal) | ||
.SetInteriorMargin(gfx::Insets(kHeaderInteriorMargin)) | ||
.SetMainAxisAlignment(views::LayoutAlignment::kStart) | ||
.SetCrossAxisAlignment(views::LayoutAlignment::kCenter); | ||
|
||
ui::ResourceBundle& rb = ui::ResourceBundle::GetSharedInstance(); | ||
auto* header_image = AddChildView( | ||
std::make_unique<views::ImageView>(ui::ImageModel::FromImageSkia( | ||
*rb.GetImageSkiaNamed(IDR_SIDEBAR_BOOKMARKS_PANEL_HEADER)))); | ||
constexpr int kSpacingBetweenHeaderImageAndLabel = 8; | ||
header_image->SetProperty( | ||
views::kMarginsKey, | ||
gfx::Insets::TLBR(0, 0, 0, kSpacingBetweenHeaderImageAndLabel)); | ||
header_image->SetProperty( | ||
views::kFlexBehaviorKey, | ||
views::FlexSpecification(views::MinimumFlexSizeRule::kPreferred, | ||
views::MaximumFlexSizeRule::kPreferred)); | ||
|
||
auto* header_label = AddChildView(std::make_unique<views::Label>( | ||
l10n_util::GetStringUTF16(IDS_BOOKMARK_MANAGER_TITLE))); | ||
header_label->SetFontList(gfx::FontList("Poppins, Semi-Bold 16px")); | ||
header_label->SetEnabledColorId(kColorSidebarPanelHeaderTitle); | ||
header_label->SetProperty( | ||
views::kFlexBehaviorKey, | ||
views::FlexSpecification(views::MinimumFlexSizeRule::kPreferred, | ||
views::MaximumFlexSizeRule::kPreferred)); | ||
auto* spacer = AddChildView(std::make_unique<views::View>()); | ||
spacer->SetProperty( | ||
views::kFlexBehaviorKey, | ||
views::FlexSpecification(views::MinimumFlexSizeRule::kScaleToZero, | ||
views::MaximumFlexSizeRule::kUnbounded) | ||
.WithOrder(2)); | ||
// Safe to use Unretained(this) here as |button| will be destroyed before | ||
// this class. | ||
auto* button = AddChildView(std::make_unique<views::ImageButton>( | ||
base::BindRepeating(&BookmarksSidePanelHeaderView::OnButtonPressed, | ||
base::Unretained(this), browser))); | ||
button->SetTooltipText(l10n_util::GetStringUTF16( | ||
IDS_SIDEBAR_READING_LIST_PANEL_HEADER_BOOKMARKS_BUTTON_TOOLTIP)); | ||
|
||
constexpr int kHeaderButtonSize = 20; | ||
button->SetImageModel( | ||
views::Button::STATE_NORMAL, | ||
ui::ImageModel::FromVectorIcon( | ||
kLeoLaunchIcon, kColorSidebarPanelHeaderButton, kHeaderButtonSize)); | ||
button->SetImageModel( | ||
views::Button::STATE_HOVERED, | ||
ui::ImageModel::FromVectorIcon(kLeoLaunchIcon, | ||
kColorSidebarPanelHeaderButtonHovered, | ||
kHeaderButtonSize)); | ||
|
||
SetBackground( | ||
views::CreateThemedSolidBackground(kColorSidebarPanelHeaderBackground)); | ||
} | ||
|
||
~BookmarksSidePanelHeaderView() override = default; | ||
BookmarksSidePanelHeaderView(const BookmarksSidePanelHeaderView&) = delete; | ||
BookmarksSidePanelHeaderView& operator=(const BookmarksSidePanelHeaderView&) = | ||
delete; | ||
|
||
private: | ||
void OnButtonPressed(Browser* browser, const ui::Event& event) { | ||
ShowSingletonTab(browser, GURL(chrome::kChromeUIBookmarksURL)); | ||
} | ||
}; | ||
|
||
} // namespace | ||
|
||
BraveBookmarksSidePanelView::BraveBookmarksSidePanelView(Browser* browser) { | ||
SetLayoutManager(std::make_unique<views::FlexLayout>()) | ||
->SetOrientation(views::LayoutOrientation::kVertical); | ||
AddChildView(std::make_unique<BookmarksSidePanelHeaderView>(browser)); | ||
AddChildView(std::make_unique<views::Separator>()) | ||
->SetColorId(kColorSidebarPanelHeaderSeparator); | ||
|
||
// Reuse upstream's bookmarks panl nwebui. | ||
auto* web_view = | ||
AddChildView(BookmarksSidePanelCoordinator::GetOrCreateForBrowser(browser) | ||
->CreateBookmarksWebView()); | ||
web_view->SetProperty( | ||
views::kFlexBehaviorKey, | ||
views::FlexSpecification(views::MinimumFlexSizeRule::kPreferred, | ||
views::MaximumFlexSizeRule::kUnbounded)); | ||
|
||
StartObservingWebWebViewVisibilityChange(web_view); | ||
} | ||
|
||
BraveBookmarksSidePanelView::~BraveBookmarksSidePanelView() = default; |
23 changes: 23 additions & 0 deletions
23
browser/ui/views/side_panel/brave_bookmarks_side_panel_view.h
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,23 @@ | ||
/* Copyright (c) 2023 The Brave Authors. All rights reserved. | ||
* This Source Code Form is subject to the terms of the Mozilla Public | ||
* License, v. 2.0. If a copy of the MPL was not distributed with this file, | ||
* You can obtain one at https://mozilla.org/MPL/2.0/. */ | ||
|
||
#ifndef BRAVE_BROWSER_UI_VIEWS_SIDE_PANEL_BRAVE_BOOKMARKS_SIDE_PANEL_VIEW_H_ | ||
#define BRAVE_BROWSER_UI_VIEWS_SIDE_PANEL_BRAVE_BOOKMARKS_SIDE_PANEL_VIEW_H_ | ||
|
||
#include "brave/browser/ui/views/side_panel/brave_side_panel_view_base.h" | ||
|
||
class Browser; | ||
|
||
// Gives bookmarks panel specific header view with web view. | ||
class BraveBookmarksSidePanelView : public BraveSidePanelViewBase { | ||
public: | ||
explicit BraveBookmarksSidePanelView(Browser* browser); | ||
~BraveBookmarksSidePanelView() override; | ||
BraveBookmarksSidePanelView(const BraveBookmarksSidePanelView&) = delete; | ||
BraveBookmarksSidePanelView& operator=(const BraveBookmarksSidePanelView&) = | ||
delete; | ||
}; | ||
|
||
#endif // BRAVE_BROWSER_UI_VIEWS_SIDE_PANEL_BRAVE_BOOKMARKS_SIDE_PANEL_VIEW_H_ |
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
Oops, something went wrong.