Skip to content
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

Edit-message (2/n): Implement variant of content input without a typing notifier #1431

Merged
merged 2 commits into from
Apr 2, 2025

Conversation

chrisbobbe
Copy link
Collaborator

The edit-message compose box (#126) shouldn't send typing notifications like the regular compose box does.

(There's actually a different kind of typing notification that we'll want to implement eventually; that's #1350. But that's not for us to do now.)

This PR implements _ContentInput.noTypingNotifier, as prep for implementing the edit-message compose box.

Related: #126

@chrisbobbe chrisbobbe added the maintainer review PR ready for review by Zulip maintainers label Mar 21, 2025
@chrisbobbe chrisbobbe requested a review from PIG208 March 21, 2025 21:50
Copy link
Member

@PIG208 PIG208 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for the refactor! This will be helpful for implementing saved snippets as well; left a comment bringing that into the discussion.

// ignore: unused_element
factory _ContentInput.noTypingNotifier({
required Narrow narrow,
required SendableNarrow destination,
Copy link
Member

@PIG208 PIG208 Mar 24, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think ideally destination shouldn't be needed for this variant, but I can't think of a better alternative without making destination nullable in the base class _ContentInput and having null-checks in the mixin. (I think this—having a default constructor that allows all combinations, and factories with set values and assertions—is how some Flutter upstream widgets (e.g.: SwitchListTile) handle this.)

For editing messages, providing a reasonable value for destination might still be convenient for the caller (and will become a requirement when we get to supporting typing notifications for editing).

Saved snippets might need a variant that does not have typing notifier or autocompletion; in that case neither narrow nor destination should be needed from the caller, as there are no reasonable values other than null for them anyway:

  factory _ContentInput.savedSnippet({
    required ComposeBoxController controller,
    required String hintText,
  }) => _ContentInputNoTypingNotifier._(
    narrow: null,
    destination: null,
    controller: controller,
    hintText: hintText,
  );

Copy link
Member

@PIG208 PIG208 Mar 24, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Another approach would be dropping the mixin, moving the typing notifier logic to _ContentInputStateWithTypingNotifier, and moving the destination field to _ContentInputWithTypingNotifier. However, that won't help if we need the mixin in the future.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Another approach would be dropping the mixin, moving the typing notifier logic to _ContentInputStateWithTypingNotifier, and moving the destination field to _ContentInputWithTypingNotifier. However, that won't help if we need the mixin in the future.

Interesting! I'll push some wip commits trying this out.

@chrisbobbe chrisbobbe marked this pull request as draft March 24, 2025 23:41
@chrisbobbe
Copy link
Collaborator Author

Thanks for the review! I've pushed some NOMERGE commits with a way to have _ContentInputNoTypingNotifier without destination, following the direction you mentioned in #1431 (comment). It preserves the property that the build method is shared among the with- and without-typing-notifier variants.

Copy link
Member

@PIG208 PIG208 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks! This change LGTM. I guess destination might need dartdoc highlighting its relationship with typing notifications.

@@ -486,6 +533,10 @@ class _ContentInputState extends State<_ContentInput> with WidgetsBindingObserve
}
}


Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: remove extra newline

@chrisbobbe
Copy link
Collaborator Author

chrisbobbe commented Apr 1, 2025

Thanks for the review! Revision pushed, squashing in those commits.

@chrisbobbe chrisbobbe marked this pull request as ready for review April 1, 2025 01:39
@PIG208 PIG208 added integration review Added by maintainers when PR may be ready for integration and removed maintainer review PR ready for review by Zulip maintainers labels Apr 1, 2025
@PIG208 PIG208 assigned gnprice and unassigned PIG208 Apr 1, 2025
@PIG208 PIG208 requested a review from gnprice April 1, 2025 14:33
@PIG208
Copy link
Member

PIG208 commented Apr 1, 2025

Thanks! This LGTM.

Copy link
Member

@gnprice gnprice left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks!

One initial comment below, but then zooming out: this inheritance-based setup feels kind of complicated. I think we can split out the typing-notifier logic in a more idiomatic Flutter way by making it a separate widget:

-    return _ContentInput(
-      narrow: narrow,
+    return _TypingNotifier(
       destination: narrow,
       controller: controller,
-      hintText: _hintText(context));
+      child: _ContentInput(
+        narrow: narrow,
+        controller: controller,
+        hintText: _hintText(context)));

So what this PR revision calls _ContentInput.noTypingNotifier would be just _ContentInput. Does that seem like it would also meet the needs of your later changes?

I've just pushed to the PR branch some additional commits that make that change:
921538f wip nfc separate _TypingNotifier widget
1c69a68 wip nfc simplify inheritance back out
4c0369f wip nfc swap order
8805d48 compose [nfc]: Make _ContentInput stateless

I think the first three are probably best squashed into the main commit. PTAL.

Comment on lines 407 to 412
}) => _ContentInputWithTypingNotifier._(
narrow: narrow,
destination: destination,
controller: controller,
hintText: hintText,
);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: handy shorthand:

Suggested change
}) => _ContentInputWithTypingNotifier._(
narrow: narrow,
destination: destination,
controller: controller,
hintText: hintText,
);
}) = _ContentInputWithTypingNotifier._;

@chrisbobbe
Copy link
Collaborator Author

chrisbobbe commented Apr 2, 2025

That's great, thanks for the suggestion and those commits! That should work well; revision pushed, PTAL. 🙂

chrisbobbe and others added 2 commits April 1, 2025 20:15
…logic

This prepares for the edit-message compose box (upcoming), which
we'll want to implement without this typing-notifier logic. After
this change, we can accomplish that by using _ContentInput without
the new helper widget.

Co-authored-by: Greg Price <[email protected]>
The state that had been here now lives on the _TypingNotifier
widget.
@gnprice
Copy link
Member

gnprice commented Apr 2, 2025

Thanks, looks good. Added a Co-authored-by, and merging.

@gnprice gnprice force-pushed the pr-edit-message-2 branch from 97d67d3 to 6a75033 Compare April 2, 2025 03:17
@gnprice gnprice merged commit 6a75033 into zulip:main Apr 2, 2025
1 check passed
@chrisbobbe
Copy link
Collaborator Author

Indeed, thanks again!

@chrisbobbe chrisbobbe deleted the pr-edit-message-2 branch April 2, 2025 03:25
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
integration review Added by maintainers when PR may be ready for integration
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants