-
-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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
Disable posting comments when logged out #23971
Conversation
tybug
commented
Jun 19, 2023
before | after | web |
---|---|---|
![]() |
![]() |
![]() |
From the screenshots alone, the button should also change copy when logged out. You want |
if (!TextBox.ReadOnly) | ||
GetContainingInputManager().ChangeFocus(TextBox); |
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.
ChangeFocus(TextBox)
adds a text cursor even when TextBox.ReadOnly == true
. I'm not sure whether this is a framework-side bug and needs to be changed, but I've worked around it here.
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.
It's prooobably a framework bug. Instinctual reaction says that text box shouldn't unconditionally accept focus but the impact of changing that to something like !IsReadOnly && !Disabled.Value
would have to be tested.
The reason I held off on this is because those are actual buttons on web-side that activate the log-in popover. I wasn't sure how easy that would be to achieve osu-side, and I wasn't sure changing copy without also adding the corresponding functionality was appropriate. I'll see if I can add this. |
We do this elsewhere; see osu/osu.Game/Screens/Menu/ButtonSystem.cs Lines 163 to 183 in c467e6b
Should be pretty easy but if it turns out to increase scope/size of changes too much then we can deal with that as a follow up. That shouldn't be the case, though. Tests here would also be nice to see. |
Buttons don't support autosize to my knowledge, due to reasons. Honestly I don't think the text on the button changing is a deal-breaker, I'd just leave it for a future effort. If you do want to add it in this PR (and it hooks up to actually bringing the login overlay up) then I'd suggest making a separate button for it, rather than changing the text/behaviour of the existing one. Then choose which button to display based on context. |
I've split into two buttons as suggested, and added a test for logging in and out. The test currently fails due to how osu/osu.Game/Online/API/DummyAPIAccess.cs Lines 115 to 119 in aa96fef
Since This is not an issue outside of tests because, if I'm reading this right, osu/osu.Game/Online/API/APIAccess.cs Lines 498 to 505 in aa96fef
There's a similar but distinct issue with moving from offline to online. I propose the following patch to fix both of these issues: diff --git a/osu.Game/Online/API/DummyAPIAccess.cs b/osu.Game/Online/API/DummyAPIAccess.cs
index 16afef8e30..421af93e6a 100644
--- a/osu.Game/Online/API/DummyAPIAccess.cs
+++ b/osu.Game/Online/API/DummyAPIAccess.cs
@@ -34,7 +34,7 @@ public partial class DummyAPIAccess : Component, IAPIProvider
public string AccessToken => "token";
- public bool IsLoggedIn => State.Value == APIState.Online;
+ public bool IsLoggedIn => State.Value > APIState.Offline;
public string ProvidedUsername => LocalUser.Value.Username;
@@ -114,7 +114,13 @@ public void Login(string username, string password)
public void Logout()
{
- LocalUser.Value = new GuestUser();
+ // important that LocalUser is updated after state for bindable events firing.
+ // Matches APIAccess.
+ Schedule(() =>
+ {
+ LocalUser.Value = new GuestUser();
+ });
+
state.Value = APIState.Offline;
}
Does the above look ok as a separate PR? |
While it's unfortunate that we have to exercise correct ordering in diff --git a/osu.Game/Online/API/DummyAPIAccess.cs b/osu.Game/Online/API/DummyAPIAccess.cs
index 16afef8e30..896fa30ff8 100644
--- a/osu.Game/Online/API/DummyAPIAccess.cs
+++ b/osu.Game/Online/API/DummyAPIAccess.cs
@@ -34,7 +34,7 @@ public partial class DummyAPIAccess : Component, IAPIProvider
public string AccessToken => "token";
- public bool IsLoggedIn => State.Value == APIState.Online;
+ public bool IsLoggedIn => State.Value > APIState.Offline;
public string ProvidedUsername => LocalUser.Value.Username;
@@ -114,8 +114,8 @@ public void Login(string username, string password)
public void Logout()
{
- LocalUser.Value = new GuestUser();
state.Value = APIState.Offline;
+ LocalUser.Value = new GuestUser();
}
public IHubClientConnector GetHubConnector(string clientName, string endpoint, bool preferMessagePack) => null;
The stuff you mention about the As for whether it should be a separate PR - I don't know, feels almost like too much ceremony. I'd probably apply the above on |
wrt logging in and out
To be honest, I'm not sure why It seems no tests are broken by the above patch, so I've applied it here. |
It's required for thread safety. |
} | ||
|
||
protected override void LoadComplete() | ||
{ | ||
base.LoadComplete(); | ||
Current.BindValueChanged(_ => updateCommitButtonState(), true); | ||
User.BindValueChanged(_ => updateStateForLoggedIn(), 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.
Is there a reason we're binding to User
to get the api's State
?
diff --git a/osu.Game/Overlays/Comments/CommentEditor.cs b/osu.Game/Overlays/Comments/CommentEditor.cs
index 8dbafc0ea8..05bdac5966 100644
--- a/osu.Game/Overlays/Comments/CommentEditor.cs
+++ b/osu.Game/Overlays/Comments/CommentEditor.cs
@@ -14,7 +14,6 @@
using osu.Game.Graphics.UserInterface;
using osu.Game.Graphics.UserInterfaceV2;
using osu.Game.Online.API;
-using osu.Game.Online.API.Requests.Responses;
using osuTK;
using osuTK.Graphics;
@@ -36,14 +35,14 @@ public abstract partial class CommentEditor : CompositeDrawable
protected TextBox TextBox { get; private set; } = null!;
- protected readonly IBindable<APIUser> User = new Bindable<APIUser>();
-
[Resolved]
protected IAPIProvider API { get; private set; } = null!;
[Resolved]
private LoginOverlay? loginOverlay { get; set; }
+ private readonly IBindable<APIState> apiState = new Bindable<APIState>();
+
/// <summary>
/// Returns the text content of the main action button.
/// When <paramref name="isLoggedIn"/> is <see langword="true"/>, the text will apply to a button that posts a comment.
@@ -162,14 +161,14 @@ private void load(OverlayColourProvider colourProvider)
});
TextBox.OnCommit += (_, _) => commitButton.TriggerClick();
- User.BindTo(API.LocalUser);
+ apiState.BindTo(API.State);
}
protected override void LoadComplete()
{
base.LoadComplete();
Current.BindValueChanged(_ => updateCommitButtonState(), true);
- User.BindValueChanged(_ => updateStateForLoggedIn(), true);
+ apiState.BindValueChanged(updateStateForLoggedIn, true);
}
protected abstract void OnCommit(string text);
@@ -177,12 +176,14 @@ protected override void LoadComplete()
private void updateCommitButtonState() =>
commitButton.Enabled.Value = loadingSpinner.State.Value == Visibility.Hidden && !string.IsNullOrEmpty(Current.Value);
- private void updateStateForLoggedIn()
+ private void updateStateForLoggedIn(ValueChangedEvent<APIState> state)
{
- TextBox.PlaceholderText = GetPlaceholderText(API.IsLoggedIn);
- TextBox.ReadOnly = !API.IsLoggedIn;
+ bool isAvailable = state.NewValue > APIState.Offline;
+
+ TextBox.PlaceholderText = GetPlaceholderText(isAvailable);
+ TextBox.ReadOnly = !isAvailable;
- if (API.IsLoggedIn)
+ if (isAvailable)
{
commitButton.Show();
logInButton.Hide();
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 didn't put too much thought into it. My thinking was that changes in User
correspond to changes between just APIState.Offline
and APIState.Online
, but binding to state
may fire for other state changes where the user hasn't actually changed: for instance, maybe your wifi going out could result in your api state changing APIState.Failing
(I don't know whether this is actually how state
works), resulting in an extraneous update.
Of course, since the ui only checks API.IsLoggedIn
, no harm is done by firing the update function additional times for other states. It doesn't do any good, either, though.
If binding to state
is generally considered better practice for checking IsLoggedIn
then let's do that.
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.
Yep, using state is the correct way. Feels weird to be using an arbitrary piece of information (User
) to trigger an event then read the api state from a different field, after all.