Commit Graph

63435 Commits

Author SHA1 Message Date
Sahil Batra
255eee255b events: Pass group in functions called for updating the group.
We now pass group in functions called while handling group update
events, instead of fetching the groups in those function as we
will need the old setting value in future commits.
2025-01-24 14:51:51 -08:00
Sahil Batra
62ab21bd79 node-tests: Improve user group event tests.
Tests for testing user group events does not stub "user_groups"
module anymore as it is mainly used to handle data and it is
easy to test the events without stubbing them.
2025-01-24 14:51:51 -08:00
Sahil Batra
14b7bde954 settings: Extract type for all realm level group settings.
Zod schema and type for realm level group settings is moved
to group_permission_settings.ts as we would define types for
stream and group settings there and the change would also help
in avoiding import cycles in further commits.
2025-01-24 14:51:51 -08:00
Pratik Chanda
f744625e4c tooltip: Add counts in tooltip for views in left sidebar.
Earlier, tooltip in left sidebar views had only the navigation list
title shown inside it.

This commit adds more information to the tooltip by including their
respective counts.

Fixes: zulip#25901.

Co-authored-by: ecxtacy <dc.dhruvchouhan@gmail.com>
2025-01-24 14:16:16 -08:00
Pratik Chanda
6c03d839f7 left_sidebar: Refactor tooltip logic for left sidebar navigation list.
Earlier, left sidebar navigation had two separate tooltip logic to
handle the same tooltip template.

This commit refactors it to use a single tooltip logic for the left
sidebar navigation.
2025-01-24 14:16:16 -08:00
whilstsomebody
733ab5f2f8 reactions: Remove emoji container when reaction count is 0.
While adding a new reaction, we create a new JQuery element
called "message_reaction_container" and append it to the
view to display the emoji.

Previously, when the reaction count became zero for an emoji,
we used to just remove the emoji but not the JQuery element
mentioned above, requiring a reload to remove it. This
inconsistency introduced a bug in the UI. causing unwanted
spaces between emojies as this element used to get accumulated.

This commit resolves the bug by introducing logic to remove
reaction containers with no reactions.

Fixes: #32983
2025-01-24 13:32:35 -08:00
apoorvapendse
6586d9078e copy_and_paste: Paste Excel copied content as image and text.
This ensures that using `^V` pastes the content from excel as
an image.
To get normal text in a formatted manner one can use
`^⇧V`.

The earlier conditions in `is_single_image` caused
the classification to fail in case of Excel pasted
content, which is why we check for the for the XML
namespaces associated with Microsoft in the pasted
HTML.

Fixes #32968.
2025-01-24 11:10:38 -08:00
Steve Howell
63cab557b5 event types: Introduce BaseEvent class. 2025-01-23 16:33:10 -08:00
Aman Agrawal
b8e8c06bef message_summary: Add minor comment. 2025-01-23 16:29:42 -08:00
Aman Agrawal
673281aae8 message_fetch: Extract function to modify narrow before server query. 2025-01-23 16:29:42 -08:00
Steve Howell
a9b7b0e692 test helper: Use subscribe_via_post.
The shorter name more clearly describes what
it does and that it's the more expensive sibling
of simple subscribe.
2025-01-23 16:10:37 -08:00
Steve Howell
aaa8279cb8 testing doc: Update common setup methods.
The names of helpers have evolved over time.

I add a few, and I remove `common_subscribe_to_streams`,
since most tests just want the simpler subscribe.

Note that `subscribe`, while not full stack, does
excercise `bulk_add_subscriptions`. So there is no
real danger of having unrealistic test data.

Almost all of our uses of `common_subscribe_to_streams`
are in test_subs.py, so it's already effectively
our policy to use subscribe in most cases. And
test_subs does more than a thorough job of actually
exercising the API.
2025-01-23 16:10:37 -08:00
Steve Howell
0f8f5fafe1 test_example.py: Add new example with mock.patch.
The original mocking example now uses time_machine, so I slimmed
down a lot of its comments, and then I created another
mocking example so that we still touch on mocking in
terms of mock.patch.

The new method reinforces the pattern of testing both the
sad path and happy path inside the same test.
2025-01-23 16:10:37 -08:00
Steve Howell
d6bd3f7abc test_example.py: Clean up minor things.
I flipped an assert to have actual/expected in standard
Zulip order, renamed some variables, and tightened up
a few comments.
2025-01-23 16:10:37 -08:00
Tim Abbott
dd430e2b56 scroll_util: Fix typo caught by codespell. 2025-01-23 16:07:52 -08:00
Alya Abbott
1367f305b2 help: Update docs on permissions to subscribe other users to channels. 2025-01-23 16:02:26 -08:00
Alya Abbott
6fdbea5ee8 settings: Clarify option label for who can subscribe others to channels.
Also add help link.
2025-01-23 16:02:26 -08:00
Shubham Padia
2fdb4fe53c stream: Add conditional note to can_add_subscribers_group.
Fixes #33156.
If the stream is set to on the private settings for privacy, we add a
parenthesis text `must be subscribed`.
We had to use JS to change the string since just having a conditional in
the handlebars template would not ensure that the parenthesis text
appears or disappears on changing the value.
2025-01-23 15:57:16 -08:00
Shubham Padia
82c04ebe9e stream_types: Add admin permissions note below advanced configurations.
We've also removed the label_parens_text of `in addition to organization
administrators` wherever applicable.
2025-01-23 15:57:16 -08:00
Aman Agrawal
3d6baaf450 stream_list: Scroll selected topic into view when zoomed in.
This is useful for keyboard users when use `n` to navigate to the
next topic with zoomed in topic list.
2025-01-23 15:53:16 -08:00
Aman Agrawal
a5e2a7b4e4 topic_list: Fix top selected element not visible on system scroll.
Fixed by accounting for the fixed header in the topic list.
2025-01-23 15:53:16 -08:00
Aman Agrawal
dd33ad11f5 scroll_util: Account for $elem not direct child of scroll container.
When using `position` to get the scroll offset, it uses `offsetParent`
to calculate the offset which is not necessary the scroll container.

To account for this case, we use `offset` to correctly calculate
the position of element relative to the document.
2025-01-23 15:53:09 -08:00
Aman Agrawal
25cb87cdc3 left_sidebar: Fix bottom item not visible in left sidebar.
The last topic is not visible in left sidebar in zoomed_in state.
This is due to height of `views-label-container` not being accounted
for when calculating scrollable height of the topics list.
2025-01-23 15:51:31 -08:00
Sahil Batra
1c07c013ae groups: Do not include "Everyone on internet" group in typeaheads.
There is no reason to show "Everyone on internet" group in
group members, stream subscribers, silent mention and DM
recipient typeaheads since specatators cannot be added to
groups or streams, cannot be involved in DMs and cannot be
mentioned.
2025-01-23 15:41:19 -08:00
Sahil Batra
233b776ea5 stream-settings: Show system groups in subscribers form typeahead.
We now show role-based system groups in the subscribers typeahead
in stream creation and stream edit UI.
2025-01-23 07:53:18 +05:30
Karl Stolley
eda9b1a271 me_messages: Improve grid for me-message alignment. 2025-01-22 16:18:31 -08:00
Karl Stolley
1878758baf message_row: Prevent avatar margin from shifting grid row. 2025-01-22 16:18:31 -08:00
Karl Stolley
38c6b82022 message_row: Refine action-button layout to better scale. 2025-01-22 16:18:31 -08:00
Karl Stolley
90279af1ea action_buttons: Remove noop font-size declaration.
A 16px conversion at 16px/1em is unnecessary, and there are no
other font-size declarations in the area. So the base font-size
should be inherited as expected, allowing the button icons to
scale.
2025-01-22 16:18:31 -08:00
Karl Stolley
aecd3dff7d topic_edit: Remove show/hide logic on edit button.
This logic is superfluous, as action buttons are hidden unless
hovered, and when hovered, the `display: none` this sets is
overridden anyway.

Additionally, removing this avoids interference with the flexbox
presenting the action icons, which was causing elements in the
sender line (sender, as well as the timestamp) to visibly shift
out of place when editing the topic, only to see the layout
corrected upon hovering in the action-button area.
2025-01-22 16:18:31 -08:00
Greg Price
9883e41436 docs: Clarify design-discussions as to #mobile-design vs. #design.
We have an increasing number of design discussions about mobile
these days (which is great), and that means I've started to
regularly point people to this page -- particularly the section
"Guidelines for code contributors" -- as part of pointing them to
the #mobile-design channel to ask a design question.

In that context it seems confusing that it only talks about #design
and not #mobile-design.  We do mention the latter elsewhere on the
page, but I still feel I have to explain the discrepancy when
pointing to this section.  Fix it here instead.

This introduces to our docs the concept of "a design channel",
meaning #design and #mobile-design and sometimes #zulip-terminal.
2025-01-22 16:16:33 -08:00
Greg Price
fa06616f71 docs: Pull out named links for channels in design-discussions page.
This helps keep the source a bit more readable; and we'll shortly
add another pair of occurrences of these.
2025-01-22 16:16:19 -08:00
Shubham Padia
d79020f8e0 right_sidebar: Use em for empty list message font-size. 2025-01-22 16:15:57 -08:00
Niloth P
4fbe893431 css: Extend .markdown .zulip-icon styling outside .content. 2025-01-22 16:14:14 -08:00
Aman Agrawal
753181bee9 message_list_view: Check if the sticky header is not from overlays.
When `message_row`s can be stacked on top of each other if draft
or scheduled messages overlay is open. To avoid selecting
message from them, we filter them out.
2025-01-22 16:10:29 -08:00
Prakhar Pratyush
033c706a03 search: Add support for empty string topic.
This commit adds support to display `realm_empty_topic_display_name`
value (in italics) in the search suggestions & search input pills
for topics having the actual value of empty string.
2025-01-22 16:09:46 -08:00
Prakhar Pratyush
0534bc44f0 user_topics_search: Add support to search for empty string topics.
We show `realm_empty_topic_display_name` for empty string
topics in the SETTINGS/TOPICS table.

This commit makes it possible for users to search for
the `realm_empty_topic_display_name` value to filter out empty
string topics.
2025-01-22 16:09:46 -08:00
Prakhar Pratyush
e63d9f1e89 inbox-search: Add support to search for empty string topics.
We show `realm_empty_topic_display_name` for empty string
topics in the inbox view.

This commit makes it possible for users to search for
the `realm_empty_topic_display_name` value to filter out empty
string topics.
2025-01-22 16:09:46 -08:00
Prakhar Pratyush
8a1b1590ad recent_view_search: Add support to search for empty string topics.
We show `realm_empty_topic_display_name` for empty string topics
in the recent conversations view.

This commit makes it possible for users to search for
the `realm_empty_topic_display_name` value to filter out empty
string topics.
2025-01-22 16:09:46 -08:00
Alya Abbott
8c409caa3a help: Update default channels documentation.
- Add intro describing how it works.
- Fix instructions for adding default channels.
2025-01-22 15:59:56 -08:00
Alya Abbott
8b5cb07724 help: Tweak to reflect group-based permissions. 2025-01-22 15:59:56 -08:00
Prakhar Pratyush
3706940df6 compose_closed_ui: Unify translation strings for reply button label.
This commit unifies translation strings for reply button label
to reduce translation effort.

Both the `has_empty_string_topic` and other cases now use a single
"Message <z-recipient-label></z-recipient-label>"`, with dynamic
content passed appropriately.
2025-01-22 15:55:23 -08:00
Prakhar Pratyush
181572021d get_stream_topics: Add support for empty topic name.
This commit is a part of the work to support empty
string as a topic name.

Previously, empty string was not a valid topic name.

Adds `allow_empty_topic_name` boolean parameter to
`GET /users/me/{stream_id}/topics` endpoint to decide
whether the topic names in the fetched `topics` array
can be empty strings.

If False, the topic names in the fetched response will
have the value of `realm_empty_topic_display_name` field
in `POST /register` response replacing "".

Fixes part of #23291.
2025-01-22 15:54:11 -08:00
Shubham Padia
a76042ce39 invite: Any combination of default streams should be subscribe-able.
Fixes #32706.

A user with permission to invite users should be able to subscribe users
to any of the default streams whether they have the permission to do so
or not for each of those default streams or not. This should only happen
in the invite code path, and not the subscribe code path.

This commit also adds the ability to pick and chose default streams if
you do not have the permission to subscribe to any other channels.

Before this, if you did not have the permission to subscribe any other
channels, only the checkbox to subscribe to all the default streams at
once was available to you.

For the stream pill typeahead, we don't show streams that the user
cannot subscribe other users to. For more details, see

   https://chat.zulip.org/#narrow/channel/101-design/topic/can.20subscribe.20other.20users.20permission.20invite
2025-01-22 14:27:06 -08:00
Shubham Padia
3a728aea6f user_profile: Use can_subscribe to show streams in subscribe widget.
We were just checking the realm wide setting before to determine whether
to show the subscribe widget or not. `can_subscribe` of
`get_streams_for_user` had already been using `can_subscribe_others`,
so it was aleady following the new logic to determiner whether a user
can subscribe others to a channel. So there was no change needed there.
We were using the realm wide permsision to determiner whether to show
the widget or not, but now we use the number of subscribe-able
unsubscribed channels to determine whether the widget should be shown
or not.
2025-01-22 14:27:06 -08:00
Shubham Padia
117531a49b stream: Change tooltip message for disabled add subscriber element.
Previously, we only used to have a realm wide setting on whether a user
can add subscribers to a channel. In that case, if the user was not
allowed to add subscribers inspite of having the realm wide permissions,
that would mean it's a private channel that they don't have access to.
After adding the per-channel setting to add subscribers, that is no
longer the case and the tooltip message has been made more generic to
reflect that.
2025-01-22 14:27:06 -08:00
Shubham Padia
328db8d7ce stream_create: Remove redundant code to enable/disable add subscribers.
When creating streams, user creating the stream should always be able to
add subscribers.
https://chat.zulip.org/#narrow/channel/3-backend/topic/Can.20subscribe.20other.20users.20permission/near/2025587
2025-01-22 14:27:06 -08:00
Shubham Padia
1b8115d8e7 compose: Use can_subscribe_others to check permissions. 2025-01-22 14:27:06 -08:00
Shubham Padia
f40db2de28 stream_data: Use can_add_subscribers_group to check permissions. 2025-01-22 14:27:06 -08:00
Shubham Padia
2ccfe36f01 settings_data: Rename user_can_subscribe_other_users.
Rename it to `can_subscribe_others_to_all_streams` to accurately reflect
what it does.
2025-01-22 14:27:06 -08:00