1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
ash / system / phonehub / enable_hotspot_quick_action_controller.cc [blame]
// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ash/system/phonehub/enable_hotspot_quick_action_controller.h"
#include "ash/constants/ash_features.h"
#include "ash/resources/vector_icons/vector_icons.h"
#include "ash/strings/grit/ash_strings.h"
#include "ash/style/ash_color_provider.h"
#include "ash/system/phonehub/phone_hub_metrics.h"
#include "ash/system/phonehub/quick_action_item.h"
#include "ui/base/l10n/l10n_util.h"
#include "ui/chromeos/styles/cros_tokens_color_mappings.h"
namespace ash {
using Status = phonehub::TetherController::Status;
using phone_hub_metrics::LogQuickActionClick;
using phone_hub_metrics::QuickAction;
EnableHotspotQuickActionController::EnableHotspotQuickActionController(
phonehub::TetherController* tether_controller)
: tether_controller_(tether_controller) {
DCHECK(tether_controller_);
tether_controller_->AddObserver(this);
}
EnableHotspotQuickActionController::~EnableHotspotQuickActionController() {
tether_controller_->RemoveObserver(this);
}
QuickActionItem* EnableHotspotQuickActionController::CreateItem() {
DCHECK(!item_);
item_ = new QuickActionItem(
this,
features::IsPhoneHubShortQuickActionPodsTitlesEnabled()
? IDS_ASH_PHONE_HUB_ENABLE_HOTSPOT_SHORTENED_TITLE
: IDS_ASH_PHONE_HUB_ENABLE_HOTSPOT_TITLE,
kPhoneHubEnableHotspotIcon);
OnTetherStatusChanged();
return item_;
}
void EnableHotspotQuickActionController::OnButtonPressed(bool is_now_enabled) {
LogQuickActionClick(is_now_enabled ? QuickAction::kToggleHotspotOff
: QuickAction::kToggleHotspotOn);
is_now_enabled ? tether_controller_->Disconnect()
: tether_controller_->AttemptConnection();
}
void EnableHotspotQuickActionController::OnTetherStatusChanged() {
UpdateQuickActionItemUi();
}
void EnableHotspotQuickActionController::SetState(ActionState state) {
item_->SetEnabled(true);
// Ensure that GetColorProvider() is not null as it will be used
// to set |sub_label_color|.
if (!item_->GetColorProvider()) {
return;
}
bool icon_enabled;
bool button_enabled;
int state_text_id;
int sub_label_text;
SkColor sub_label_color;
switch (state) {
case ActionState::kOff:
icon_enabled = false;
button_enabled = true;
state_text_id = IDS_ASH_PHONE_HUB_QUICK_ACTIONS_DISABLED_STATE_TOOLTIP;
sub_label_text = IDS_ASH_PHONE_HUB_QUICK_ACTIONS_OFF_STATE;
sub_label_color = item_->GetColorProvider()->GetColor(
cros_tokens::kCrosSysOnSurfaceVariant);
break;
case ActionState::kConnecting:
icon_enabled = true;
button_enabled = true;
state_text_id = IDS_ASH_PHONE_HUB_QUICK_ACTIONS_CONNECTING_STATE_TOOLTIP;
sub_label_text = IDS_ASH_PHONE_HUB_QUICK_ACTIONS_CONNECTING_STATE;
sub_label_color = item_->GetColorProvider()->GetColor(
cros_tokens::kCrosSysOnSurfaceVariant);
break;
case ActionState::kConnected:
icon_enabled = true;
button_enabled = true;
state_text_id = IDS_ASH_PHONE_HUB_QUICK_ACTIONS_CONNECTED_STATE_TOOLTIP;
sub_label_text = IDS_ASH_PHONE_HUB_QUICK_ACTIONS_CONNECTED_STATE;
sub_label_color =
item_->GetColorProvider()->GetColor(cros_tokens::kCrosSysPositive);
break;
case ActionState::kNoReception:
icon_enabled = false;
button_enabled = false;
state_text_id =
IDS_ASH_PHONE_HUB_ENABLE_HOTSPOT_NO_RECEPTION_STATE_TOOLTIP;
sub_label_text = IDS_ASH_PHONE_HUB_QUICK_ACTIONS_NOT_AVAILABLE_STATE;
sub_label_color = item_->GetColorProvider()->GetColor(
cros_tokens::kCrosSysOnSurfaceVariant);
break;
}
item_->SetToggled(icon_enabled);
item_->SetEnabled(button_enabled);
item_->SetSubLabel(l10n_util::GetStringUTF16(sub_label_text));
item_->SetSubLabelColor(sub_label_color);
if (state == ActionState::kNoReception) {
item_->SetTooltip(l10n_util::GetStringUTF16(state_text_id));
} else {
std::u16string tooltip_state =
l10n_util::GetStringFUTF16(state_text_id, item_->GetItemLabel());
item_->SetTooltip(l10n_util::GetStringFUTF16(
IDS_ASH_PHONE_HUB_QUICK_ACTIONS_TOGGLE_TOOLTIP, item_->GetItemLabel(),
tooltip_state));
}
}
void EnableHotspotQuickActionController::UpdateQuickActionItemUi() {
switch (tether_controller_->GetStatus()) {
case Status::kIneligibleForFeature:
item_->SetVisible(false);
return;
case Status::kConnectionUnavailable:
[[fallthrough]];
case Status::kConnectionAvailable:
SetState(ActionState::kOff);
break;
case Status::kConnecting:
SetState(ActionState::kConnecting);
break;
case Status::kConnected:
SetState(ActionState::kConnected);
break;
case Status::kNoReception:
SetState(ActionState::kNoReception);
break;
}
item_->SetVisible(true);
}
} // namespace ash