Skip to content
This repository has been archived by the owner on Mar 13, 2024. It is now read-only.

MM-31275 New sidebar performance improvements #7207

Merged
merged 8 commits into from
Dec 14, 2020

Conversation

hmhealey
Copy link
Member

Here are some performance improvements around the new sidebar when the user is a member of many channels. I focused on two areas:

  1. The new sidebar and some other components re-rendering when the user clicks anywhere. This is new to 5.30.
  2. The sidebar lags heavily when scrolling. This existed in 5.29, and it may have gotten worse, but my master test server was in dev mode, so that may have made the lag worse.

When investigating the re-rendering:

  1. The new sidebar would entirely re-render when clicking anywhere in the app because that would trigger a MULTISELECT_CHANNEL_CLEAR action which caused state.views.channel_sidebar.multiselectedChannelIds to change even when it was already empty. That's fixed now.

  2. Similarly, some other random components would also re-render when clicking anywhere because of the same action. That happened because:

    1. Some selectors are not memoized properly, so they return new objects on every call.
    2. redux-offline makes every dispatched action trigger the store state to change, so mapStateToProps is called for all components on every action.

    Because of both of those, dispatching the MULTISELECT_CHANNEL_CLEAR on every click was causing some older components to re-render. Those should be fixed eventually (I have a list of tickets to write), but in the mean time, we just won't dispatch that action when it's not necessary.

When investigating the scrolling lag:

  1. I added a debounce to the onScroll handlers used by both the new and old sidebars to show the More Unreads Above/Below indicators. This didn't have a huge effect, but it might be helpful anyways.
  2. After a bunch of commenting out stuff, I found that the main source of the sidebar lag was the SidebarMenu components because they attached their own scroll handlers to the sidebar so that they could close the menu when the user scrolls. As you get more channels in the sidebar, more handlers were added, and the lag got worse. I remove those, although that does mean that those menus will stay open and won't scroll with the sidebar, but I think that's an acceptable defect since they caused a ton of lag.

I also spent a bit of time investigating the sidebar re-rendering when the user was typing because the sidebar listens to local storage where drafts are saved, but that didn't seem to change anything.

Ticket Link

https://mattermost.atlassian.net/browse/MM-31275

@hmhealey hmhealey added 2: Dev Review Requires review by a core commiter 3: QA Review Requires review by a QA tester CherryPick/Candidate A candidate for a quality or patch release, but not yet approved Setup Cloud Test Server Setup a test server using Mattermost Cloud labels Dec 11, 2020
@amyblais amyblais added this to the v5.30.0 milestone Dec 14, 2020
@amyblais amyblais added CherryPick/Approved Meant for the quality or patch release tracked in the milestone and removed CherryPick/Candidate A candidate for a quality or patch release, but not yet approved labels Dec 14, 2020
@@ -59,22 +59,6 @@ export default class SidebarMenu extends React.PureComponent<Props, State> {
}
}

// TODO: Temporary code to keep the menu in place while scrolling
// This shouldn't be necessary once the menus are fixed up
componentDidMount() {
Copy link
Member

Choose a reason for hiding this comment

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

Are these just not needed anymore?

Copy link
Member Author

@hmhealey hmhealey Dec 14, 2020

Choose a reason for hiding this comment

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

This is breaking the functionality that closes the menus when you scroll the sidebar, but I couldn't come up with a quick, low-risk way to do that with how the menus are written. I think the performance improvements of this removal heavily outweigh the slight UX degredation.

Copy link
Contributor

Choose a reason for hiding this comment

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

Can you file a ticket so this can be revisited?

@amyblais amyblais removed the 2: Dev Review Requires review by a core commiter label Dec 14, 2020
@hmhealey hmhealey removed the request for review from jespino December 14, 2020 19:56
Copy link
Contributor

@jgilliam17 jgilliam17 left a comment

Choose a reason for hiding this comment

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

Thank @hmhealey
Tested, looks good to merge.

  • Verified sidebar More Unreads indicator works as before. Verified multi-selected drag and drop group of channels can be cleared.

@jgilliam17 jgilliam17 added 4: Reviews Complete All reviewers have approved the pull request and removed 3: QA Review Requires review by a QA tester Setup Cloud Test Server Setup a test server using Mattermost Cloud labels Dec 14, 2020
@mm-cloud-bot
Copy link

Test server destroyed

@amyblais amyblais added the AutoMerge used by Mattermod to merge PR automatically label Dec 14, 2020
@mattermod
Copy link
Contributor

Will try to auto merge this PR once all tests and checks are passing. This might take up to an hour.

@mattermod
Copy link
Contributor

Trying to auto merge this PR.

@mattermod mattermod merged commit fd1d088 into master Dec 14, 2020
@mattermod
Copy link
Contributor

Pull Request successfully merged
SHA: fd1d088

@mattermod mattermod deleted the MM-31275_lag-investigation branch December 14, 2020 21:15
@mattermod
Copy link
Contributor

Cherry pick is scheduled.

@mattermod mattermod removed the AutoMerge used by Mattermod to merge PR automatically label Dec 14, 2020
@mattermod
Copy link
Contributor

Error trying doing the automated Cherry picking. Please do this manually

+++ Updating remotes...
Fetching upstream
Failed to add the RSA host key for IP address '140.82.114.3' to the list of known hosts (/app/.ssh/known_hosts).
From github.com:mattermost/mattermost-webapp
 * [new branch]          MM-20401_marketplace-ts -> upstream/MM-20401_marketplace-ts
 * [new branch]          MM-27209              -> upstream/MM-27209
   b3d918c05..7325feaf2  MM-27222-2            -> upstream/MM-27222-2
   c1da972ba..5ee0283a3  MM-27834-collapse-on-5-plugin-buttonss -> upstream/MM-27834-collapse-on-5-plugin-buttonss
   866adfe78..9b3dc9dc9  MM-27927              -> upstream/MM-27927
   37bd73a0a..b17c3233d  MM-28155-custom-links -> upstream/MM-28155-custom-links
 * [new branch]          MM-28184_user-mgmt-deactivation -> upstream/MM-28184_user-mgmt-deactivation
 + 0d694b7c6...81cd02d27 MM-28256              -> upstream/MM-28256  (forced update)
   407ee4ecc..11a092ba4  MM-28259-custom-slash-commands -> upstream/MM-28259-custom-slash-commands
 * [new branch]          MM-30349-demo-plugin-webhooks -> upstream/MM-30349-demo-plugin-webhooks
 * [new branch]          MM-30357              -> upstream/MM-30357
 * [new branch]          MM-30361              -> upstream/MM-30361
 * [new branch]          MM-30379              -> upstream/MM-30379
 * [new branch]          MM-30383              -> upstream/MM-30383
   cec0f665f..1947e8de8  MM-30444              -> upstream/MM-30444
 * [new branch]          MM-31327_typescript-eslint -> upstream/MM-31327_typescript-eslint
   f635879a7..8f10cbd13  cloud                 -> upstream/cloud
 * [new branch]          dependabot/npm_and_yarn/e2e/ini-1.3.8 -> upstream/dependabot/npm_and_yarn/e2e/ini-1.3.8
 * [new branch]          e2e-account-settings  -> upstream/e2e-account-settings
 * [new branch]          hack-20-cr-css        -> upstream/hack-20-cr-css
   22793b4cb..fd1d088e1  master                -> upstream/master
 * [new branch]          new-quck-switch       -> upstream/new-quck-switch
   4a5ce873b..d63a96e4c  release-5.30          -> upstream/release-5.30
   e76e2e311..f5bf48079  sysconsolecypress     -> upstream/sysconsolecypress
 * [new tag]             cloud-2020-12-08      -> cloud-2020-12-08
Fetching origin
Failed to add the RSA host key for IP address '140.82.114.3' to the list of known hosts (/app/.ssh/known_hosts).
+++ Updating remotes done...
+++ Creating local branch automated-cherry-pick-of-mattermost-webapp-#7207-upstream-release-5.30-1607980523
Switched to a new branch 'automated-cherry-pick-of-mattermost-webapp-#7207-upstream-release-5.30-1607980523'
Branch 'automated-cherry-pick-of-mattermost-webapp-#7207-upstream-release-5.30-1607980523' set up to track remote branch 'release-5.30' from 'upstream'.

+++ About to attempt cherry pick of PR #7207 with merge commit fd1d088e14ea29b1a60646e1907ce9740f71f921.

error: could not apply fd1d088e1... MM-31275 New sidebar performance improvements (#7207)
hint: after resolving the conflicts, mark the corrected paths
hint: with 'git add <paths>' or 'git rm <paths>'
hint: and commit the result with 'git commit'

+++ Conflicts detected:

UU actions/views/channel_sidebar.ts
UU components/sidebar/index.ts
UU reducers/views/channel_sidebar.ts
Aborting.

+++ Aborting in-progress git cherry-pick.

+++ Returning you to the master branch and cleaning up.

Copy link
Member

@jespino jespino left a comment

Choose a reason for hiding this comment

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

Lgtm

@amyblais
Copy link
Member

@hmhealey Seems to need a manual cherry-pick.

@hmhealey
Copy link
Member Author

@amyblais Yeah, I realized when talking to Jelena that some of the stuff I fixed wasn't in 5.30. The major performance improvement around scrolling will still have an effect though

hmhealey added a commit that referenced this pull request Dec 14, 2020
@hmhealey hmhealey added CherryPick/Done Successfully cherry-picked to the quality or patch release tracked in the milestone and removed CherryPick/Approved Meant for the quality or patch release tracked in the milestone labels Dec 14, 2020
hmhealey added a commit that referenced this pull request Dec 14, 2020
@amyblais amyblais added Changelog/Not Needed Does not require a changelog entry Docs/Not Needed Does not require documentation labels Dec 15, 2020
@amyblais
Copy link
Member

/cherry-pick cloud

@mattermod
Copy link
Contributor

Cherry pick is scheduled.

mattermost-build pushed a commit to mattermost-build/mattermost-webapp that referenced this pull request Dec 17, 2020
mattermod pushed a commit that referenced this pull request Dec 17, 2020
nickmisasi added a commit that referenced this pull request Jan 11, 2021
* change super to system (#7076) (#7088)

Automatic Merge

* MM-20465 Fix for collapse/expand of image preview (#7085)

* The toggle function requires id and not post
  * This was most likely changed to fix a ts error

* MM-20465 Revert usage of getCurrentChannel to getCurrentChannelId where possible (#7064) (#7092)

(cherry picked from commit 1d7e5e9)

Co-authored-by: Harrison Healey <harrisonmhealey@gmail.com>

* Automated cherry pick of #7096 (#7097)

(cherry picked from commit 6c35b79)

Co-authored-by: Maria A Nunez <maria.nunez@mattermost.com>
(cherry picked from commit 59cebce)

* Automated cherry pick of #7101 (#7104)

(cherry picked from commit 0595ff3)

Co-authored-by: Nick Misasi <nick.misasi@mattermost.com>

* MM-30477 Fix for autocomplete not closing (#7093)

Automatic Merge

* Add GitLab jobs

* Translations update from Weblate (#7122)

* Update translation files

Updated by "Cleanup translation files" hook in Weblate.

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/

* Translated using Weblate (Romanian)

Currently translated at 93.8% (4121 of 4392 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/ro/

* Translated using Weblate (Chinese (Simplified))

Currently translated at 98.9% (4345 of 4392 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/zh_Hans/

* Translated using Weblate (Turkish)

Currently translated at 100.0% (4392 of 4392 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/tr/

* Translated using Weblate (Spanish)

Currently translated at 97.7% (4292 of 4392 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/es/

* Translated using Weblate (Dutch)

Currently translated at 98.8% (4341 of 4392 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/nl/

Co-authored-by: Viorel-Cosmin Miron <cosmin@uhlhost.net>
Co-authored-by: aeomin <lin@aeomin.net>
Co-authored-by: Kaya Zeren <kayazeren@gmail.com>
Co-authored-by: Elias  Nahum <elias@mattermost.com>
Co-authored-by: Tom De Moor <tom@controlaltdieliet.be>

* Translations update from Weblate (#7139)

* Translated using Weblate (Spanish)

Currently translated at 99.1% (4357 of 4393 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/es/

* Translated using Weblate (Dutch)

Currently translated at 98.8% (4344 of 4393 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/nl/

* Translated using Weblate (Dutch)

Currently translated at 98.9% (4349 of 4393 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/nl/

* Translated using Weblate (Portuguese (Brazil))

Currently translated at 98.4% (4327 of 4393 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/pt_BR/

Co-authored-by: Elias  Nahum <elias@mattermost.com>
Co-authored-by: Tom De Moor <tom@controlaltdieliet.be>
Co-authored-by: rodrigocorsi <rodrigocorsi@gmail.com>

* Merge latest master into cloud branch for next release (#7144)

* DOPS-243 (#7075)

DOPS-243 (#7075)

* [GH-13483] Migrate 'components/channel_invite_modal' module and associated tests to TypeScript (#6968)

* [WIP] migration to typescript

* [WIP] further typescript changes

* finalized move of component to typescript

* [WIP] move index file to typescript

* updated test to typescript

* fix for types in index file

* removed failing class import

* [No Ticket] Update to latest redux hash and fixing test cases with missing types (#7084)

Automatic Merge

* [MM-27154] Cypress tests: Incoming Webhooks (#6977)

* Incoming webhooks cypress tests

* Remove unused variable

* PR feedback

* add license

* PR feedback and lint

* fix import path

Co-authored-by: Saturnino Abril <saturnino.abril@gmail.com>

Co-authored-by: Mattermod <mattermod@users.noreply.github.com>
Co-authored-by: Saturnino Abril <saturnino.abril@gmail.com>

* fix failing tests due to announcement bar (#7077)

* MM-27315 Cypress tests for Integrations > Slash command auto-complete (7 test cases) (#6909)

* MM-30359: Cypress/E2E: Account Settings > Email (#7051)

* MM-30359: Cypress/E2E: Account Settings > Email

This PR automates the following test cases:

MM-T2066

MM-T2067

MM-T2068

MM-T2069

MM-T2070

MM-T2071

MM-T2072

MM-T2073

https://mattermost.atlassian.net/browse/MM-30359

```release-note
NONE
```

* fix lint

* add the other tests

* Address review comments

Co-authored-by: Mattermod <mattermod@users.noreply.github.com>

* [MM-T561] Add e2e test for MM-T561 (#7015)

* Add e2e test
Add test for: Browser tab and team sidebar - direct messages don't add indicator on team icon in team sidebar (but do in browser tab)
Github Issues: Fix mattermost/mattermost#15700
Jira Ticket: MM-T561

* Apply suggested review

* Add cleanup for MM-T560_2

* Linting

* Separate test file

* Linting

* Add prerequisite

* Rename file

* Remove old test

Co-authored-by: Mattermod <mattermod@users.noreply.github.com>

* [MM-28255] Add tests for OAuth Apps (#6558)

* Add tests for OAuth Apps

* Add remaining tests

* Update test names, fix typos and add explicit status codes

* Add group and license check

* Move tests to enterprise folder

Co-authored-by: Mattermod <mattermod@users.noreply.github.com>

* MM-29858: Migrate string refs to functional ones in autosize textarea component (#6885)

* MM-29858: Migrate string refs to functional ones in autosize textarea component

* MM-29858: Rename reference instance variable with suffix Ref

* MM-29858: Use camel casing for textarea reference variable

* MM-29858: Allow empty value for textarea

Co-authored-by: Mattermod <mattermod@users.noreply.github.com>

* Migrate errorMessage string ref (#6882)

Automatic Merge

* MM-T329 Image link preview (#7005)

* wip

* wip

* finished

* revision

* remove log

Co-authored-by: Mattermod <mattermod@users.noreply.github.com>

* [MM-28150] e2e: add MM-T924, MM-T928, MM-T929, MM-T930 (#7045)

* e2e: add MM-T924, MM-T928, MM-T929, MM-T930

* reflect review comments

Co-authored-by: Mattermod <mattermod@users.noreply.github.com>

* MM-30363: Cypress/E2E: Automate backlogs - Edit Bot Username (1 test case) (#7073)

* MM-30373 - first iteration

* MM-30377 - first iteration

* remove spurious file

* MM-30377 - further iteration

* MM-30363 - first iteration

* remove extra file

* some cleanup

* remoe extra space

Co-authored-by: Catalin Tomai <catalin.tomai@mattermost.com>
Co-authored-by: Mattermod <mattermod@users.noreply.github.com>

* promote and demote tests to/from prod (#7080)

* Cypress/E2E: Fix toast appears unread spec (#7081)

* change super to system (#7076)

* MM-20418: Migrate 'components/channel_selector_modal' module and associated tests to TypeScript (#6975)

* DOPS-243: Fix images (#7089)

DOPS-243: Fix images (#7089)

* MM-T439 Town Square is not marked as unread for existing users when a new user is added to the team (#7053)

Automatic Merge

* [MM-20582] Migrate 'components/admin_console/team_channel_settings/ch… (#6840)

* MM-20465 Fix for collapse/expand of image preview (#7085)

* The toggle function requires id and not post
  * This was most likely changed to fix a ts error

* MM-20465 Revert usage of getCurrentChannel to getCurrentChannelId where possible (#7064)

* [MM-29821] Prefer TypeScript files over JavaScript in webpack (#7090)

* [MM-30317] add MANAGE_REMOTE_CLUSTERS permission (#7060)

* add MANAGE_REMOTE_CLUSTERS permission

* Update i18n/en.json

Co-authored-by: Doug Lauder <wiggin77@warpmail.net>

Co-authored-by: Doug Lauder <wiggin77@warpmail.net>

* MM-20416: Migrate 'components/channel_header_mobile/collapse_lhs_button' module to TypeScript (#6971)

Co-authored-by: Mattermod <mattermod@users.noreply.github.com>

* Remove Cloud billing flag from System Console (#7096)

(cherry picked from commit 6c35b79)

Co-authored-by: Maria A Nunez <maria.nunez@mattermost.com>

* Translations update from Weblate (#7100)

* Translated using Weblate (Turkish)

Currently translated at 100.0% (4390 of 4390 strings)

Translation: mattermost-languages-shipped/mattermost-webapp_master
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/tr/

Translated using Weblate (Turkish)

Currently translated at 100.0% (4329 of 4329 strings)

Translation: mattermost-languages-shipped/mattermost-webapp_master
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/tr/

* Translated using Weblate (German)

Currently translated at 90.4% (3915 of 4329 strings)

Translation: mattermost-languages-shipped/mattermost-webapp_master
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/de/

* Translated using Weblate (Korean)

Currently translated at 80.1% (3468 of 4329 strings)

Translation: mattermost-languages-shipped/mattermost-webapp_master
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/ko/

* Translated using Weblate (Portuguese (Brazil))

Currently translated at 99.9% (4328 of 4329 strings)

Translation: mattermost-languages-shipped/mattermost-webapp_master
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/pt_BR/

* Translated using Weblate (Russian)

Currently translated at 95.0% (4113 of 4329 strings)

Translation: mattermost-languages-shipped/mattermost-webapp_master
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/ru/

* Translated using Weblate (Dutch)

Currently translated at 98.5% (4328 of 4390 strings)

Translation: mattermost-languages-shipped/mattermost-webapp_master
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/nl/

Translated using Weblate (Dutch)

Currently translated at 98.4% (4322 of 4390 strings)

Translation: mattermost-languages-shipped/mattermost-webapp_master
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/nl/

* Translated using Weblate (Chinese (Simplified))

Currently translated at 96.7% (4246 of 4390 strings)

Translation: mattermost-languages-shipped/mattermost-webapp_master
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/zh_Hans/

* Translated using Weblate (Romanian)

Currently translated at 93.8% (4119 of 4390 strings)

Translation: mattermost-languages-shipped/mattermost-webapp_master
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/ro/

Translated using Weblate (Romanian)

Currently translated at 92.7% (4072 of 4390 strings)

Translation: mattermost-languages-shipped/mattermost-webapp_master
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/ro/

* Update translation files

Updated by "Cleanup translation files" hook in Weblate.

Translation: mattermost-languages-shipped/mattermost-webapp_master
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/

* Translated using Weblate (Dutch)

Currently translated at 98.5% (4325 of 4390 strings)

Translation: mattermost-languages-shipped/mattermost-webapp_master
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/nl/

Co-authored-by: Kaya Zeren <kayazeren@gmail.com>
Co-authored-by: Elisabeth Kulzer <elisabeth.kulzer@mattermost.com>
Co-authored-by: Ji-Hyeon Gim <potatogim@potatogim.net>
Co-authored-by: rodrigocorsi <rodrigocorsi@gmail.com>
Co-authored-by: Alexey Napalkov <flynbit@gmail.com>
Co-authored-by: Tom De Moor <tom@controlaltdieliet.be>
Co-authored-by: aeomin <lin@aeomin.net>
Co-authored-by: Viorel-Cosmin Miron <cosmin@uhlhost.net>

* Migrate 'components/announcement_bar/default_announcement_bar' module and associated tests to TypeScript (#6963)

* rename file

* working except for test file

* restore unincluded test file to jsx

* pass npm make check

* update snapshot

* respond to review comments

* checkout package-lock.json

* revert package-lock.json changes

* fix linting errors

Co-authored-by: Mattermod <mattermod@users.noreply.github.com>

* Migrate this.ref.dotMenu to functional (#6957)

* Migrate this.ref.dotMenu to functional

* Fixed formatting

* Fix reference

* rename dotMenu to dotMenuRef for consistency with other PRs, remove comments

* Removed blanked line to pass lint check

Co-authored-by: root <root@DESKTOP-4IBHFV5.localdomain>
Co-authored-by: Mattermod <mattermod@users.noreply.github.com>

* MM-20897 Add category muting (#7033)

* MM-20897 Add ability to mute categories

* Increase timeout to ensure test passes

* Add E2E test for moving channels into muted categories

* Update mattermost-redux to branch

* Fix unit tests

* Fix types

* Update snapshot

* asdf

* Add additional E2E test and API client infrastructure

* MM-24293 Fix to have group channels return in quick switcher with space (#7059)

* MM-24293 Fix to have group channels return in quick siwchter with space

  * Split the  search term by spaces and match with users in
    group channels

* Update components/suggestion/switch_channel_provider.jsx

Co-authored-by: Guillermo Vayá <guivaya@gmail.com>

Co-authored-by: Guillermo Vayá <guivaya@gmail.com>
Co-authored-by: Mattermod <mattermod@users.noreply.github.com>

* If card year is 0 return false for isExpired (#7101)

* Converted 'dot_menu' to typescript. (#6825)

* Migrate string refs of reset password modal (#7038)

Automatic Merge

* MM-20415 Migrate 'components/channel_header_mobile/unmute_channel_button' module and associated tests to TypeScript (#6972)

* MM-30477 Fix for autocomplete not closing (#7093)

Automatic Merge

* MM-20897 Cleanup a couple missed issues (#7106)

* MM-T638 Webhook posts when webhook creator is not a member of the channel (#7091)

* wip

* wip

* wip

* wip

* added check

* small fix

* fix

Co-authored-by: Mattermod <mattermod@users.noreply.github.com>

* [MM-20481] Migrate 'components/post_view/post_body_additional_content' module and associated tests to TypeScript (#6668)

* [MM-20481] Migrate 'components/post_view/post_body_additional_content' module and associated tests to TypeScript

Fixes mattermost/mattermost#15460
JIRA: https://mattermost.atlassian.net/browse/MM-20481

* Make actions attribute non nullable

* Require YoutubeVideo's postId property since it really is

* Fix tests

* Add stages for onprem

* Add build-vars stage

* set isDisabled prop for site > notices (#7103)

Automatic Merge

* [MM-27931][MM-30158] Multi-selection and dragging of channels (#6979)

* [MM-27931] Multiselection of channels

* Test fix

* Lint fix

* Change opacity of selected state to 0.24

* Added hover state for selected channels

* Tests for multiSelect

* Drag and drop working (without visuals, missing redux commit)

* Multi drag and drop styles (fade the selected channels, might change)

* Don't allow multisellected channels to be dropped where they shouldn't be

* Lint, type, test, translation fixes

* Allow dragging of non matching channel groups by rejecting the channels that don't match

* Redux update

* Another test fix

* Fixed selected count style to work off of center channel exclusively

* Added really obvious styling

* Style change/PR feedback

* Style change

* Include active channel in all initial selections

* PR feedback

* Add constant for shifted index

Co-authored-by: Mattermod <mattermod@users.noreply.github.com>

* [MM-20572] Migrate 'components/admin_console/compliance_reports' to TypeScript (#13500) (#7036)

Automatic Merge

* MM-30087 Remove direct dependency between Client4 and Rudder (#7056)

* MM-30087 Remove direct dependency between Client4 and Rudder

* Update tests

* Switch mattermost-redux to master

* Fix missing types

* Change how we mock and import rudder

* Remove test that checks if events are sent to Rudder

* [MM_20423]'external_image'module to ts (#16151) (#7025)

- migrate ts index.js file
- migrate ts for external_image.tsx
- migrate ts for external_images.test.jsx

Co-authored-by: Hossein Ahmadian-Yazdi <hyazdi1997@gmail.com>

* Fix issue 16144: migrate components/claim module and tests to TypeScript (#7043)

Automatic Merge

* MM-T2056 e2e to test, Username change reflecting for other users (#7074)

Co-authored-by: Mattermod <mattermod@users.noreply.github.com>

* [MM-26334] Fixes direct messages loading screen misalignment (#6813)

Summary:
Reduces the height of the loading screen so it is more centered and/or unintrusive(small screens) enough to remove the scroll bar during loading.

Ticket Link:
Fixes mattermost/mattermost#15926

* Translations update from Weblate (#7122)

* Update translation files

Updated by "Cleanup translation files" hook in Weblate.

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/

* Translated using Weblate (Romanian)

Currently translated at 93.8% (4121 of 4392 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/ro/

* Translated using Weblate (Chinese (Simplified))

Currently translated at 98.9% (4345 of 4392 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/zh_Hans/

* Translated using Weblate (Turkish)

Currently translated at 100.0% (4392 of 4392 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/tr/

* Translated using Weblate (Spanish)

Currently translated at 97.7% (4292 of 4392 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/es/

* Translated using Weblate (Dutch)

Currently translated at 98.8% (4341 of 4392 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/nl/

Co-authored-by: Viorel-Cosmin Miron <cosmin@uhlhost.net>
Co-authored-by: aeomin <lin@aeomin.net>
Co-authored-by: Kaya Zeren <kayazeren@gmail.com>
Co-authored-by: Elias  Nahum <elias@mattermost.com>
Co-authored-by: Tom De Moor <tom@controlaltdieliet.be>

* MM-28153: Cypress/E2E: Automate backlogs - System Console > Environment (8 test cases) (#7049)

* MM-30377: Cypress/E2E: Automate backlogs - Messaging > Channel and Post Links (6 test cases) (#7072)

* MM-30355: Cypress/E2E: Automate backlogs - Account Settings > Username (6 test cases) (#7062)

* MM-27208 Add tests for MM-T1684, MM-T1687, and MM-T1688 (#7124)

* MM-27208 MM-T1684 Add test number to existing test case

* Fix makeClient for requests without a body

* MM-27208 MM-T1687 Add test for another user archiving a channel

* MM-27208 MM-T1688 Add test for searching in archived channels

* Translations update from Weblate (#7139)

* Translated using Weblate (Spanish)

Currently translated at 99.1% (4357 of 4393 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/es/

* Translated using Weblate (Dutch)

Currently translated at 98.8% (4344 of 4393 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/nl/

* Translated using Weblate (Dutch)

Currently translated at 98.9% (4349 of 4393 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/nl/

* Translated using Weblate (Portuguese (Brazil))

Currently translated at 98.4% (4327 of 4393 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/pt_BR/

Co-authored-by: Elias  Nahum <elias@mattermost.com>
Co-authored-by: Tom De Moor <tom@controlaltdieliet.be>
Co-authored-by: rodrigocorsi <rodrigocorsi@gmail.com>

Co-authored-by: Elisabeth Kulzer <elikul@elikul.de>
Co-authored-by: Tobias Weichart <tweichart@users.noreply.github.com>
Co-authored-by: Hossein Ahmadian-Yazdi <hahmadia@users.noreply.github.com>
Co-authored-by: Michael Kochell <6913320+mickmister@users.noreply.github.com>
Co-authored-by: Mattermod <mattermod@users.noreply.github.com>
Co-authored-by: Saturnino Abril <saturnino.abril@gmail.com>
Co-authored-by: Jason Frerich <jason.frerich@mattermost.com>
Co-authored-by: Agniva De Sarker <agnivade@yahoo.co.in>
Co-authored-by: seongwon-kang <56567660+seongwon-kang@users.noreply.github.com>
Co-authored-by: Daniel Espino García <larkox@gmail.com>
Co-authored-by: sowmiyamuthuraman <32141844+sowmiyamuthuraman@users.noreply.github.com>
Co-authored-by: Sridhar <kattasridhar02@gmail.com>
Co-authored-by: Michael Leonard <mike@worx4you.com>
Co-authored-by: Ibrahim Serdar Acikgoz <serdaracikgoz86@gmail.com>
Co-authored-by: catalintomai <56169943+catalintomai@users.noreply.github.com>
Co-authored-by: Catalin Tomai <catalin.tomai@mattermost.com>
Co-authored-by: Joseph Baylon <joseph.baylon@mattermost.com>
Co-authored-by: Revanth M <7revanth47@gmail.com>
Co-authored-by: Clément Collin <cinlloc@gmail.com>
Co-authored-by: Sudheer <sudheer.105@gmail.com>
Co-authored-by: Harrison Healey <harrisonmhealey@gmail.com>
Co-authored-by: Devin Binnie <52460000+devinbinnie@users.noreply.github.com>
Co-authored-by: Doug Lauder <wiggin77@warpmail.net>
Co-authored-by: Mattermost Build <build@mattermost.com>
Co-authored-by: Maria A Nunez <maria.nunez@mattermost.com>
Co-authored-by: Weblate (bot) <hosted@weblate.org>
Co-authored-by: Kaya Zeren <kayazeren@gmail.com>
Co-authored-by: Elisabeth Kulzer <elisabeth.kulzer@mattermost.com>
Co-authored-by: Ji-Hyeon Gim <potatogim@potatogim.net>
Co-authored-by: rodrigocorsi <rodrigocorsi@gmail.com>
Co-authored-by: Alexey Napalkov <flynbit@gmail.com>
Co-authored-by: Tom De Moor <tom@controlaltdieliet.be>
Co-authored-by: aeomin <lin@aeomin.net>
Co-authored-by: Viorel-Cosmin Miron <cosmin@uhlhost.net>
Co-authored-by: Morgan Connolly <mconnolly@buildzoom.com>
Co-authored-by: Ekaterina Grinberg <46496977+egrinberg@users.noreply.github.com>
Co-authored-by: root <root@DESKTOP-4IBHFV5.localdomain>
Co-authored-by: Guillermo Vayá <guivaya@gmail.com>
Co-authored-by: Nick Misasi <nick.misasi@mattermost.com>
Co-authored-by: Vijay Raghavan Aravamudhan <vraravam@users.noreply.github.com>
Co-authored-by: Nicolas Le Cam <niko.lecam@gmail.com>
Co-authored-by: Daniel Shuy <daniel_shuy@hotmail.com>
Co-authored-by: dizkek <41262168+dizkek@users.noreply.github.com>
Co-authored-by: Hossein Ahmadian-Yazdi <hyazdi1997@gmail.com>
Co-authored-by: Luciano Lim <chunyumikey@gmail.com>
Co-authored-by: Elias  Nahum <elias@mattermost.com>

* MM-30972 Add proper padding to code preview line numbers (#7155) (#7167)

Automatic Merge

* Automated cherry pick of #7133 (#7178)

* Drop aria-label from Marketplace item description

* Add general aria-label

(cherry picked from commit 01b80ca)

Co-authored-by: Ben Schumacher <ben.schumacher@mattermost.com>

* Update NOTICE.txt (#7102) (#7179)

Automatic Merge

* Automated cherry pick of #7183 (#7184)

(cherry picked from commit 22793b4)

Co-authored-by: Maria A Nunez <maria.nunez@mattermost.com>

* Translations update from Weblate (#7182)

* Translated using Weblate (Portuguese (Brazil))

Currently translated at 99.9% (4390 of 4391 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/pt_BR/

Translated using Weblate (Portuguese (Brazil))

Currently translated at 99.8% (4383 of 4391 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/pt_BR/

Translated using Weblate (Portuguese (Brazil))

Currently translated at 98.9% (4344 of 4391 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/pt_BR/

Translated using Weblate (Portuguese (Brazil))

Currently translated at 98.9% (4346 of 4393 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/pt_BR/

* Translated using Weblate (Romanian)

Currently translated at 100.0% (4391 of 4391 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/ro/

Translated using Weblate (Romanian)

Currently translated at 100.0% (4391 of 4391 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/ro/

Translated using Weblate (Romanian)

Currently translated at 100.0% (4393 of 4393 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/ro/

* Translated using Weblate (Chinese (Simplified))

Currently translated at 99.9% (4390 of 4391 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/zh_Hans/

Translated using Weblate (Chinese (Simplified))

Currently translated at 99.2% (4356 of 4391 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/zh_Hans/

Translated using Weblate (Chinese (Simplified))

Currently translated at 99.1% (4356 of 4393 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/zh_Hans/

* Update translation files

Updated by "Cleanup translation files" hook in Weblate.

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/

Update translation files

Updated by "Cleanup translation files" hook in Weblate.

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/

* Translated using Weblate (Dutch)

Currently translated at 99.9% (4390 of 4391 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/nl/

Translated using Weblate (Dutch)

Currently translated at 99.2% (4359 of 4391 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/nl/

* Translated using Weblate (Japanese)

Currently translated at 99.9% (4390 of 4391 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/ja/

* Translated using Weblate (Russian)

Currently translated at 93.9% (4125 of 4391 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/ru/

* Translated using Weblate (Turkish)

Currently translated at 100.0% (4391 of 4391 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/tr/

Co-authored-by: rodrigocorsi <rodrigocorsi@gmail.com>
Co-authored-by: Viorel-Cosmin Miron <cosmin@uhlhost.net>
Co-authored-by: aeomin <lin@aeomin.net>
Co-authored-by: Tom De Moor <tom@controlaltdieliet.be>
Co-authored-by: kaakaa <stooner.hoe@gmail.com>
Co-authored-by: Lev <blendamedkiba94@gmail.com>
Co-authored-by: Kaya Zeren <kayazeren@gmail.com>

* Translations update from Weblate (#7220)

* Translated using Weblate (French)

Currently translated at 93.2% (4096 of 4391 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/fr/

* Translated using Weblate (Dutch)

Currently translated at 99.9% (4424 of 4425 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/nl/

Translated using Weblate (Dutch)

Currently translated at 99.7% (4413 of 4425 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/nl/

Translated using Weblate (Dutch)

Currently translated at 99.4% (4401 of 4425 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/nl/

Translated using Weblate (Dutch)

Currently translated at 99.2% (4393 of 4425 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/nl/

Translated using Weblate (Dutch)

Currently translated at 99.2% (4389 of 4424 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/nl/

Translated using Weblate (Dutch)

Currently translated at 99.9% (4390 of 4391 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/nl/

* Update translation files

Updated by "Cleanup translation files" hook in Weblate.

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/

* Translated using Weblate (Romanian)

Currently translated at 100.0% (4424 of 4424 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/ro/

* Translated using Weblate (Spanish)

Currently translated at 99.3% (4397 of 4425 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/es/

Translated using Weblate (Spanish)

Currently translated at 98.7% (4368 of 4425 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/es/

Translated using Weblate (Spanish)

Currently translated at 98.4% (4357 of 4424 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/es/

* Translated using Weblate (Portuguese (Brazil))

Currently translated at 99.9% (4424 of 4425 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/pt_BR/

Translated using Weblate (Portuguese (Brazil))

Currently translated at 99.2% (4390 of 4424 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/pt_BR/

* Translated using Weblate (Turkish)

Currently translated at 100.0% (4425 of 4425 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/tr/

* Translated using Weblate (Chinese (Simplified))

Currently translated at 99.9% (4424 of 4425 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/zh_Hans/

* Translated using Weblate (Spanish)

Currently translated at 99.9% (4424 of 4425 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/es/

Co-authored-by: wget <william@gathoye.be>
Co-authored-by: Tom De Moor <tom@controlaltdieliet.be>
Co-authored-by: Viorel-Cosmin Miron <cosmin@uhlhost.net>
Co-authored-by: Elias  Nahum <elias@mattermost.com>
Co-authored-by: rodrigocorsi <rodrigocorsi@gmail.com>
Co-authored-by: Kaya Zeren <kayazeren@gmail.com>
Co-authored-by: aeomin <lin@aeomin.net>

* MM-31275 New sidebar performance improvements (#7207) (#7240)

Automatic Merge

* MM-31466 Performance investigation part two (cloud) (#7245)

Automatic Merge

* Translations update from Weblate (#7273)

* Translated using Weblate (German)

Currently translated at 88.6% (3921 of 4425 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/de/

* Translated using Weblate (Romanian)

Currently translated at 100.0% (4426 of 4426 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/ro/

Translated using Weblate (Romanian)

Currently translated at 100.0% (4425 of 4425 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/ro/

* Translated using Weblate (Korean)

Currently translated at 78.3% (3469 of 4425 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/ko/

Translated using Weblate (Korean)

Currently translated at 78.3% (3468 of 4425 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/ko/

* Translated using Weblate (Ukrainian)

Currently translated at 72.0% (3190 of 4425 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/uk/

Translated using Weblate (Ukrainian)

Currently translated at 72.0% (3190 of 4425 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/uk/

Translated using Weblate (Ukrainian)

Currently translated at 72.0% (3189 of 4425 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/uk/

* Translated using Weblate (German)

Currently translated at 88.7% (3930 of 4426 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/de/

* Translated using Weblate (Dutch)

Currently translated at 99.9% (4425 of 4426 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/nl/

* Translated using Weblate (Turkish)

Currently translated at 100.0% (4426 of 4426 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/tr/

* Translated using Weblate (Chinese (Simplified))

Currently translated at 99.9% (4425 of 4426 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/zh_Hans/

* Translated using Weblate (Spanish)

Currently translated at 99.9% (4425 of 4426 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/es/

* Translated using Weblate (Japanese)

Currently translated at 99.9% (4423 of 4426 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/ja/

* Update translation files

Updated by "Cleanup translation files" hook in Weblate.

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/

* Update translation files

Updated by "Cleanup translation files" hook in Weblate.

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/

* Translated using Weblate (Japanese)

Currently translated at 99.9% (4422 of 4423 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/ja/

Co-authored-by: Elisabeth Kulzer <elisabeth.kulzer@mattermost.com>
Co-authored-by: Viorel-Cosmin Miron <cosmin@uhlhost.net>
Co-authored-by: Lee Dae-yeop <leedaeyeop@gmail.com>
Co-authored-by: Ivan Novikov <monah1744@gmail.com>
Co-authored-by: AxicsHD <jannis.harting@vit.de>
Co-authored-by: Tom De Moor <tom@controlaltdieliet.be>
Co-authored-by: Kaya Zeren <kayazeren@gmail.com>
Co-authored-by: aeomin <lin@aeomin.net>
Co-authored-by: Elias  Nahum <elias@mattermost.com>
Co-authored-by: kaakaa <stooner.hoe@gmail.com>

* MM-31697- Remove OpenId from System Console (#7278) (#7294)

Automatic Merge

* [MM-31580] Fix call to getChannel to use new parameter format (#7284) (#7300)

(cherry picked from commit 77a9c3c)

Co-authored-by: Devin Binnie <52460000+devinbinnie@users.noreply.github.com>

* MM-31189 Revert New Messages toast PRs (#7292) (#7301)

Automatic Merge

* [MM-31708][MM-31726][MM-31739][MM-31727] - Fix regressions in RHS and Status menu (#7290) (#7302)

Automatic Merge

* Add onClick event to button so banner button works for cloud

* Change to onButtonClick

* Reset changes for package-lock

* Put showModal back in case its used elsewhere

* Fix invocation

* Fix payment_announcement_bar

* Reset 2 files to master

Co-authored-by: Mattermost Build <build@mattermost.com>
Co-authored-by: Sudheer <sudheer.105@gmail.com>
Co-authored-by: Harrison Healey <harrisonmhealey@gmail.com>
Co-authored-by: Elisabeth Kulzer <elikul@elikul.de>
Co-authored-by: Weblate (bot) <hosted@weblate.org>
Co-authored-by: Viorel-Cosmin Miron <cosmin@uhlhost.net>
Co-authored-by: aeomin <lin@aeomin.net>
Co-authored-by: Kaya Zeren <kayazeren@gmail.com>
Co-authored-by: Elias  Nahum <elias@mattermost.com>
Co-authored-by: Tom De Moor <tom@controlaltdieliet.be>
Co-authored-by: rodrigocorsi <rodrigocorsi@gmail.com>
Co-authored-by: Joram Wilander <jwawilander@gmail.com>
Co-authored-by: Tobias Weichart <tweichart@users.noreply.github.com>
Co-authored-by: Hossein Ahmadian-Yazdi <hahmadia@users.noreply.github.com>
Co-authored-by: Michael Kochell <6913320+mickmister@users.noreply.github.com>
Co-authored-by: Mattermod <mattermod@users.noreply.github.com>
Co-authored-by: Saturnino Abril <saturnino.abril@gmail.com>
Co-authored-by: Jason Frerich <jason.frerich@mattermost.com>
Co-authored-by: Agniva De Sarker <agnivade@yahoo.co.in>
Co-authored-by: seongwon-kang <56567660+seongwon-kang@users.noreply.github.com>
Co-authored-by: Daniel Espino García <larkox@gmail.com>
Co-authored-by: sowmiyamuthuraman <32141844+sowmiyamuthuraman@users.noreply.github.com>
Co-authored-by: Sridhar <kattasridhar02@gmail.com>
Co-authored-by: Michael Leonard <mike@worx4you.com>
Co-authored-by: Ibrahim Serdar Acikgoz <serdaracikgoz86@gmail.com>
Co-authored-by: catalintomai <56169943+catalintomai@users.noreply.github.com>
Co-authored-by: Catalin Tomai <catalin.tomai@mattermost.com>
Co-authored-by: Joseph Baylon <joseph.baylon@mattermost.com>
Co-authored-by: Revanth M <7revanth47@gmail.com>
Co-authored-by: Clément Collin <cinlloc@gmail.com>
Co-authored-by: Devin Binnie <52460000+devinbinnie@users.noreply.github.com>
Co-authored-by: Doug Lauder <wiggin77@warpmail.net>
Co-authored-by: Maria A Nunez <maria.nunez@mattermost.com>
Co-authored-by: Elisabeth Kulzer <elisabeth.kulzer@mattermost.com>
Co-authored-by: Ji-Hyeon Gim <potatogim@potatogim.net>
Co-authored-by: Alexey Napalkov <flynbit@gmail.com>
Co-authored-by: Morgan Connolly <mconnolly@buildzoom.com>
Co-authored-by: Ekaterina Grinberg <46496977+egrinberg@users.noreply.github.com>
Co-authored-by: root <root@DESKTOP-4IBHFV5.localdomain>
Co-authored-by: Guillermo Vayá <guivaya@gmail.com>
Co-authored-by: Vijay Raghavan Aravamudhan <vraravam@users.noreply.github.com>
Co-authored-by: Nicolas Le Cam <niko.lecam@gmail.com>
Co-authored-by: Daniel Shuy <daniel_shuy@hotmail.com>
Co-authored-by: dizkek <41262168+dizkek@users.noreply.github.com>
Co-authored-by: Hossein Ahmadian-Yazdi <hyazdi1997@gmail.com>
Co-authored-by: Luciano Lim <chunyumikey@gmail.com>
Co-authored-by: Ben Schumacher <ben.schumacher@mattermost.com>
Co-authored-by: kaakaa <stooner.hoe@gmail.com>
Co-authored-by: Lev <blendamedkiba94@gmail.com>
Co-authored-by: wget <william@gathoye.be>
Co-authored-by: Lee Dae-yeop <leedaeyeop@gmail.com>
Co-authored-by: Ivan Novikov <monah1744@gmail.com>
Co-authored-by: AxicsHD <jannis.harting@vit.de>
mattermost-build pushed a commit to mattermost-build/mattermost-webapp that referenced this pull request Jan 11, 2021
* change super to system (mattermost#7076) (mattermost#7088)

Automatic Merge

* MM-20465 Fix for collapse/expand of image preview (mattermost#7085)

* The toggle function requires id and not post
  * This was most likely changed to fix a ts error

* MM-20465 Revert usage of getCurrentChannel to getCurrentChannelId where possible (mattermost#7064) (mattermost#7092)

(cherry picked from commit 1d7e5e9)

Co-authored-by: Harrison Healey <harrisonmhealey@gmail.com>

* Automated cherry pick of mattermost#7096 (mattermost#7097)

(cherry picked from commit 6c35b79)

Co-authored-by: Maria A Nunez <maria.nunez@mattermost.com>
(cherry picked from commit 59cebce)

* Automated cherry pick of mattermost#7101 (mattermost#7104)

(cherry picked from commit 0595ff3)

Co-authored-by: Nick Misasi <nick.misasi@mattermost.com>

* MM-30477 Fix for autocomplete not closing (mattermost#7093)

Automatic Merge

* Add GitLab jobs

* Translations update from Weblate (mattermost#7122)

* Update translation files

Updated by "Cleanup translation files" hook in Weblate.

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/

* Translated using Weblate (Romanian)

Currently translated at 93.8% (4121 of 4392 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/ro/

* Translated using Weblate (Chinese (Simplified))

Currently translated at 98.9% (4345 of 4392 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/zh_Hans/

* Translated using Weblate (Turkish)

Currently translated at 100.0% (4392 of 4392 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/tr/

* Translated using Weblate (Spanish)

Currently translated at 97.7% (4292 of 4392 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/es/

* Translated using Weblate (Dutch)

Currently translated at 98.8% (4341 of 4392 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/nl/

Co-authored-by: Viorel-Cosmin Miron <cosmin@uhlhost.net>
Co-authored-by: aeomin <lin@aeomin.net>
Co-authored-by: Kaya Zeren <kayazeren@gmail.com>
Co-authored-by: Elias  Nahum <elias@mattermost.com>
Co-authored-by: Tom De Moor <tom@controlaltdieliet.be>

* Translations update from Weblate (mattermost#7139)

* Translated using Weblate (Spanish)

Currently translated at 99.1% (4357 of 4393 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/es/

* Translated using Weblate (Dutch)

Currently translated at 98.8% (4344 of 4393 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/nl/

* Translated using Weblate (Dutch)

Currently translated at 98.9% (4349 of 4393 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/nl/

* Translated using Weblate (Portuguese (Brazil))

Currently translated at 98.4% (4327 of 4393 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/pt_BR/

Co-authored-by: Elias  Nahum <elias@mattermost.com>
Co-authored-by: Tom De Moor <tom@controlaltdieliet.be>
Co-authored-by: rodrigocorsi <rodrigocorsi@gmail.com>

* Merge latest master into cloud branch for next release (mattermost#7144)

* DOPS-243 (mattermost#7075)

DOPS-243 (mattermost#7075)

* [GH-13483] Migrate 'components/channel_invite_modal' module and associated tests to TypeScript (mattermost#6968)

* [WIP] migration to typescript

* [WIP] further typescript changes

* finalized move of component to typescript

* [WIP] move index file to typescript

* updated test to typescript

* fix for types in index file

* removed failing class import

* [No Ticket] Update to latest redux hash and fixing test cases with missing types (mattermost#7084)

Automatic Merge

* [MM-27154] Cypress tests: Incoming Webhooks (mattermost#6977)

* Incoming webhooks cypress tests

* Remove unused variable

* PR feedback

* add license

* PR feedback and lint

* fix import path

Co-authored-by: Saturnino Abril <saturnino.abril@gmail.com>

Co-authored-by: Mattermod <mattermod@users.noreply.github.com>
Co-authored-by: Saturnino Abril <saturnino.abril@gmail.com>

* fix failing tests due to announcement bar (mattermost#7077)

* MM-27315 Cypress tests for Integrations > Slash command auto-complete (7 test cases) (mattermost#6909)

* MM-30359: Cypress/E2E: Account Settings > Email (mattermost#7051)

* MM-30359: Cypress/E2E: Account Settings > Email

This PR automates the following test cases:

MM-T2066

MM-T2067

MM-T2068

MM-T2069

MM-T2070

MM-T2071

MM-T2072

MM-T2073

https://mattermost.atlassian.net/browse/MM-30359

```release-note
NONE
```

* fix lint

* add the other tests

* Address review comments

Co-authored-by: Mattermod <mattermod@users.noreply.github.com>

* [MM-T561] Add e2e test for MM-T561 (mattermost#7015)

* Add e2e test
Add test for: Browser tab and team sidebar - direct messages don't add indicator on team icon in team sidebar (but do in browser tab)
Github Issues: Fix mattermost/mattermost#15700
Jira Ticket: MM-T561

* Apply suggested review

* Add cleanup for MM-T560_2

* Linting

* Separate test file

* Linting

* Add prerequisite

* Rename file

* Remove old test

Co-authored-by: Mattermod <mattermod@users.noreply.github.com>

* [MM-28255] Add tests for OAuth Apps (mattermost#6558)

* Add tests for OAuth Apps

* Add remaining tests

* Update test names, fix typos and add explicit status codes

* Add group and license check

* Move tests to enterprise folder

Co-authored-by: Mattermod <mattermod@users.noreply.github.com>

* MM-29858: Migrate string refs to functional ones in autosize textarea component (mattermost#6885)

* MM-29858: Migrate string refs to functional ones in autosize textarea component

* MM-29858: Rename reference instance variable with suffix Ref

* MM-29858: Use camel casing for textarea reference variable

* MM-29858: Allow empty value for textarea

Co-authored-by: Mattermod <mattermod@users.noreply.github.com>

* Migrate errorMessage string ref (mattermost#6882)

Automatic Merge

* MM-T329 Image link preview (mattermost#7005)

* wip

* wip

* finished

* revision

* remove log

Co-authored-by: Mattermod <mattermod@users.noreply.github.com>

* [MM-28150] e2e: add MM-T924, MM-T928, MM-T929, MM-T930 (mattermost#7045)

* e2e: add MM-T924, MM-T928, MM-T929, MM-T930

* reflect review comments

Co-authored-by: Mattermod <mattermod@users.noreply.github.com>

* MM-30363: Cypress/E2E: Automate backlogs - Edit Bot Username (1 test case) (mattermost#7073)

* MM-30373 - first iteration

* MM-30377 - first iteration

* remove spurious file

* MM-30377 - further iteration

* MM-30363 - first iteration

* remove extra file

* some cleanup

* remoe extra space

Co-authored-by: Catalin Tomai <catalin.tomai@mattermost.com>
Co-authored-by: Mattermod <mattermod@users.noreply.github.com>

* promote and demote tests to/from prod (mattermost#7080)

* Cypress/E2E: Fix toast appears unread spec (mattermost#7081)

* change super to system (mattermost#7076)

* MM-20418: Migrate 'components/channel_selector_modal' module and associated tests to TypeScript (mattermost#6975)

* DOPS-243: Fix images (mattermost#7089)

DOPS-243: Fix images (mattermost#7089)

* MM-T439 Town Square is not marked as unread for existing users when a new user is added to the team (mattermost#7053)

Automatic Merge

* [MM-20582] Migrate 'components/admin_console/team_channel_settings/ch… (mattermost#6840)

* MM-20465 Fix for collapse/expand of image preview (mattermost#7085)

* The toggle function requires id and not post
  * This was most likely changed to fix a ts error

* MM-20465 Revert usage of getCurrentChannel to getCurrentChannelId where possible (mattermost#7064)

* [MM-29821] Prefer TypeScript files over JavaScript in webpack (mattermost#7090)

* [MM-30317] add MANAGE_REMOTE_CLUSTERS permission (mattermost#7060)

* add MANAGE_REMOTE_CLUSTERS permission

* Update i18n/en.json

Co-authored-by: Doug Lauder <wiggin77@warpmail.net>

Co-authored-by: Doug Lauder <wiggin77@warpmail.net>

* MM-20416: Migrate 'components/channel_header_mobile/collapse_lhs_button' module to TypeScript (mattermost#6971)

Co-authored-by: Mattermod <mattermod@users.noreply.github.com>

* Remove Cloud billing flag from System Console (mattermost#7096)

(cherry picked from commit 6c35b79)

Co-authored-by: Maria A Nunez <maria.nunez@mattermost.com>

* Translations update from Weblate (mattermost#7100)

* Translated using Weblate (Turkish)

Currently translated at 100.0% (4390 of 4390 strings)

Translation: mattermost-languages-shipped/mattermost-webapp_master
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/tr/

Translated using Weblate (Turkish)

Currently translated at 100.0% (4329 of 4329 strings)

Translation: mattermost-languages-shipped/mattermost-webapp_master
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/tr/

* Translated using Weblate (German)

Currently translated at 90.4% (3915 of 4329 strings)

Translation: mattermost-languages-shipped/mattermost-webapp_master
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/de/

* Translated using Weblate (Korean)

Currently translated at 80.1% (3468 of 4329 strings)

Translation: mattermost-languages-shipped/mattermost-webapp_master
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/ko/

* Translated using Weblate (Portuguese (Brazil))

Currently translated at 99.9% (4328 of 4329 strings)

Translation: mattermost-languages-shipped/mattermost-webapp_master
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/pt_BR/

* Translated using Weblate (Russian)

Currently translated at 95.0% (4113 of 4329 strings)

Translation: mattermost-languages-shipped/mattermost-webapp_master
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/ru/

* Translated using Weblate (Dutch)

Currently translated at 98.5% (4328 of 4390 strings)

Translation: mattermost-languages-shipped/mattermost-webapp_master
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/nl/

Translated using Weblate (Dutch)

Currently translated at 98.4% (4322 of 4390 strings)

Translation: mattermost-languages-shipped/mattermost-webapp_master
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/nl/

* Translated using Weblate (Chinese (Simplified))

Currently translated at 96.7% (4246 of 4390 strings)

Translation: mattermost-languages-shipped/mattermost-webapp_master
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/zh_Hans/

* Translated using Weblate (Romanian)

Currently translated at 93.8% (4119 of 4390 strings)

Translation: mattermost-languages-shipped/mattermost-webapp_master
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/ro/

Translated using Weblate (Romanian)

Currently translated at 92.7% (4072 of 4390 strings)

Translation: mattermost-languages-shipped/mattermost-webapp_master
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/ro/

* Update translation files

Updated by "Cleanup translation files" hook in Weblate.

Translation: mattermost-languages-shipped/mattermost-webapp_master
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/

* Translated using Weblate (Dutch)

Currently translated at 98.5% (4325 of 4390 strings)

Translation: mattermost-languages-shipped/mattermost-webapp_master
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/nl/

Co-authored-by: Kaya Zeren <kayazeren@gmail.com>
Co-authored-by: Elisabeth Kulzer <elisabeth.kulzer@mattermost.com>
Co-authored-by: Ji-Hyeon Gim <potatogim@potatogim.net>
Co-authored-by: rodrigocorsi <rodrigocorsi@gmail.com>
Co-authored-by: Alexey Napalkov <flynbit@gmail.com>
Co-authored-by: Tom De Moor <tom@controlaltdieliet.be>
Co-authored-by: aeomin <lin@aeomin.net>
Co-authored-by: Viorel-Cosmin Miron <cosmin@uhlhost.net>

* Migrate 'components/announcement_bar/default_announcement_bar' module and associated tests to TypeScript (mattermost#6963)

* rename file

* working except for test file

* restore unincluded test file to jsx

* pass npm make check

* update snapshot

* respond to review comments

* checkout package-lock.json

* revert package-lock.json changes

* fix linting errors

Co-authored-by: Mattermod <mattermod@users.noreply.github.com>

* Migrate this.ref.dotMenu to functional (mattermost#6957)

* Migrate this.ref.dotMenu to functional

* Fixed formatting

* Fix reference

* rename dotMenu to dotMenuRef for consistency with other PRs, remove comments

* Removed blanked line to pass lint check

Co-authored-by: root <root@DESKTOP-4IBHFV5.localdomain>
Co-authored-by: Mattermod <mattermod@users.noreply.github.com>

* MM-20897 Add category muting (mattermost#7033)

* MM-20897 Add ability to mute categories

* Increase timeout to ensure test passes

* Add E2E test for moving channels into muted categories

* Update mattermost-redux to branch

* Fix unit tests

* Fix types

* Update snapshot

* asdf

* Add additional E2E test and API client infrastructure

* MM-24293 Fix to have group channels return in quick switcher with space (mattermost#7059)

* MM-24293 Fix to have group channels return in quick siwchter with space

  * Split the  search term by spaces and match with users in
    group channels

* Update components/suggestion/switch_channel_provider.jsx

Co-authored-by: Guillermo Vayá <guivaya@gmail.com>

Co-authored-by: Guillermo Vayá <guivaya@gmail.com>
Co-authored-by: Mattermod <mattermod@users.noreply.github.com>

* If card year is 0 return false for isExpired (mattermost#7101)

* Converted 'dot_menu' to typescript. (mattermost#6825)

* Migrate string refs of reset password modal (mattermost#7038)

Automatic Merge

* MM-20415 Migrate 'components/channel_header_mobile/unmute_channel_button' module and associated tests to TypeScript (mattermost#6972)

* MM-30477 Fix for autocomplete not closing (mattermost#7093)

Automatic Merge

* MM-20897 Cleanup a couple missed issues (mattermost#7106)

* MM-T638 Webhook posts when webhook creator is not a member of the channel (mattermost#7091)

* wip

* wip

* wip

* wip

* added check

* small fix

* fix

Co-authored-by: Mattermod <mattermod@users.noreply.github.com>

* [MM-20481] Migrate 'components/post_view/post_body_additional_content' module and associated tests to TypeScript (mattermost#6668)

* [MM-20481] Migrate 'components/post_view/post_body_additional_content' module and associated tests to TypeScript

Fixes mattermost/mattermost#15460
JIRA: https://mattermost.atlassian.net/browse/MM-20481

* Make actions attribute non nullable

* Require YoutubeVideo's postId property since it really is

* Fix tests

* Add stages for onprem

* Add build-vars stage

* set isDisabled prop for site > notices (mattermost#7103)

Automatic Merge

* [MM-27931][MM-30158] Multi-selection and dragging of channels (mattermost#6979)

* [MM-27931] Multiselection of channels

* Test fix

* Lint fix

* Change opacity of selected state to 0.24

* Added hover state for selected channels

* Tests for multiSelect

* Drag and drop working (without visuals, missing redux commit)

* Multi drag and drop styles (fade the selected channels, might change)

* Don't allow multisellected channels to be dropped where they shouldn't be

* Lint, type, test, translation fixes

* Allow dragging of non matching channel groups by rejecting the channels that don't match

* Redux update

* Another test fix

* Fixed selected count style to work off of center channel exclusively

* Added really obvious styling

* Style change/PR feedback

* Style change

* Include active channel in all initial selections

* PR feedback

* Add constant for shifted index

Co-authored-by: Mattermod <mattermod@users.noreply.github.com>

* [MM-20572] Migrate 'components/admin_console/compliance_reports' to TypeScript (#13500) (mattermost#7036)

Automatic Merge

* MM-30087 Remove direct dependency between Client4 and Rudder (mattermost#7056)

* MM-30087 Remove direct dependency between Client4 and Rudder

* Update tests

* Switch mattermost-redux to master

* Fix missing types

* Change how we mock and import rudder

* Remove test that checks if events are sent to Rudder

* [MM_20423]'external_image'module to ts (#16151) (mattermost#7025)

- migrate ts index.js file
- migrate ts for external_image.tsx
- migrate ts for external_images.test.jsx

Co-authored-by: Hossein Ahmadian-Yazdi <hyazdi1997@gmail.com>

* Fix issue 16144: migrate components/claim module and tests to TypeScript (mattermost#7043)

Automatic Merge

* MM-T2056 e2e to test, Username change reflecting for other users (mattermost#7074)

Co-authored-by: Mattermod <mattermod@users.noreply.github.com>

* [MM-26334] Fixes direct messages loading screen misalignment (mattermost#6813)

Summary:
Reduces the height of the loading screen so it is more centered and/or unintrusive(small screens) enough to remove the scroll bar during loading.

Ticket Link:
Fixes mattermost/mattermost#15926

* Translations update from Weblate (mattermost#7122)

* Update translation files

Updated by "Cleanup translation files" hook in Weblate.

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/

* Translated using Weblate (Romanian)

Currently translated at 93.8% (4121 of 4392 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/ro/

* Translated using Weblate (Chinese (Simplified))

Currently translated at 98.9% (4345 of 4392 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/zh_Hans/

* Translated using Weblate (Turkish)

Currently translated at 100.0% (4392 of 4392 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/tr/

* Translated using Weblate (Spanish)

Currently translated at 97.7% (4292 of 4392 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/es/

* Translated using Weblate (Dutch)

Currently translated at 98.8% (4341 of 4392 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/nl/

Co-authored-by: Viorel-Cosmin Miron <cosmin@uhlhost.net>
Co-authored-by: aeomin <lin@aeomin.net>
Co-authored-by: Kaya Zeren <kayazeren@gmail.com>
Co-authored-by: Elias  Nahum <elias@mattermost.com>
Co-authored-by: Tom De Moor <tom@controlaltdieliet.be>

* MM-28153: Cypress/E2E: Automate backlogs - System Console > Environment (8 test cases) (mattermost#7049)

* MM-30377: Cypress/E2E: Automate backlogs - Messaging > Channel and Post Links (6 test cases) (mattermost#7072)

* MM-30355: Cypress/E2E: Automate backlogs - Account Settings > Username (6 test cases) (mattermost#7062)

* MM-27208 Add tests for MM-T1684, MM-T1687, and MM-T1688 (mattermost#7124)

* MM-27208 MM-T1684 Add test number to existing test case

* Fix makeClient for requests without a body

* MM-27208 MM-T1687 Add test for another user archiving a channel

* MM-27208 MM-T1688 Add test for searching in archived channels

* Translations update from Weblate (mattermost#7139)

* Translated using Weblate (Spanish)

Currently translated at 99.1% (4357 of 4393 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/es/

* Translated using Weblate (Dutch)

Currently translated at 98.8% (4344 of 4393 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/nl/

* Translated using Weblate (Dutch)

Currently translated at 98.9% (4349 of 4393 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/nl/

* Translated using Weblate (Portuguese (Brazil))

Currently translated at 98.4% (4327 of 4393 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/pt_BR/

Co-authored-by: Elias  Nahum <elias@mattermost.com>
Co-authored-by: Tom De Moor <tom@controlaltdieliet.be>
Co-authored-by: rodrigocorsi <rodrigocorsi@gmail.com>

Co-authored-by: Elisabeth Kulzer <elikul@elikul.de>
Co-authored-by: Tobias Weichart <tweichart@users.noreply.github.com>
Co-authored-by: Hossein Ahmadian-Yazdi <hahmadia@users.noreply.github.com>
Co-authored-by: Michael Kochell <6913320+mickmister@users.noreply.github.com>
Co-authored-by: Mattermod <mattermod@users.noreply.github.com>
Co-authored-by: Saturnino Abril <saturnino.abril@gmail.com>
Co-authored-by: Jason Frerich <jason.frerich@mattermost.com>
Co-authored-by: Agniva De Sarker <agnivade@yahoo.co.in>
Co-authored-by: seongwon-kang <56567660+seongwon-kang@users.noreply.github.com>
Co-authored-by: Daniel Espino García <larkox@gmail.com>
Co-authored-by: sowmiyamuthuraman <32141844+sowmiyamuthuraman@users.noreply.github.com>
Co-authored-by: Sridhar <kattasridhar02@gmail.com>
Co-authored-by: Michael Leonard <mike@worx4you.com>
Co-authored-by: Ibrahim Serdar Acikgoz <serdaracikgoz86@gmail.com>
Co-authored-by: catalintomai <56169943+catalintomai@users.noreply.github.com>
Co-authored-by: Catalin Tomai <catalin.tomai@mattermost.com>
Co-authored-by: Joseph Baylon <joseph.baylon@mattermost.com>
Co-authored-by: Revanth M <7revanth47@gmail.com>
Co-authored-by: Clément Collin <cinlloc@gmail.com>
Co-authored-by: Sudheer <sudheer.105@gmail.com>
Co-authored-by: Harrison Healey <harrisonmhealey@gmail.com>
Co-authored-by: Devin Binnie <52460000+devinbinnie@users.noreply.github.com>
Co-authored-by: Doug Lauder <wiggin77@warpmail.net>
Co-authored-by: Mattermost Build <build@mattermost.com>
Co-authored-by: Maria A Nunez <maria.nunez@mattermost.com>
Co-authored-by: Weblate (bot) <hosted@weblate.org>
Co-authored-by: Kaya Zeren <kayazeren@gmail.com>
Co-authored-by: Elisabeth Kulzer <elisabeth.kulzer@mattermost.com>
Co-authored-by: Ji-Hyeon Gim <potatogim@potatogim.net>
Co-authored-by: rodrigocorsi <rodrigocorsi@gmail.com>
Co-authored-by: Alexey Napalkov <flynbit@gmail.com>
Co-authored-by: Tom De Moor <tom@controlaltdieliet.be>
Co-authored-by: aeomin <lin@aeomin.net>
Co-authored-by: Viorel-Cosmin Miron <cosmin@uhlhost.net>
Co-authored-by: Morgan Connolly <mconnolly@buildzoom.com>
Co-authored-by: Ekaterina Grinberg <46496977+egrinberg@users.noreply.github.com>
Co-authored-by: root <root@DESKTOP-4IBHFV5.localdomain>
Co-authored-by: Guillermo Vayá <guivaya@gmail.com>
Co-authored-by: Nick Misasi <nick.misasi@mattermost.com>
Co-authored-by: Vijay Raghavan Aravamudhan <vraravam@users.noreply.github.com>
Co-authored-by: Nicolas Le Cam <niko.lecam@gmail.com>
Co-authored-by: Daniel Shuy <daniel_shuy@hotmail.com>
Co-authored-by: dizkek <41262168+dizkek@users.noreply.github.com>
Co-authored-by: Hossein Ahmadian-Yazdi <hyazdi1997@gmail.com>
Co-authored-by: Luciano Lim <chunyumikey@gmail.com>
Co-authored-by: Elias  Nahum <elias@mattermost.com>

* MM-30972 Add proper padding to code preview line numbers (mattermost#7155) (mattermost#7167)

Automatic Merge

* Automated cherry pick of mattermost#7133 (mattermost#7178)

* Drop aria-label from Marketplace item description

* Add general aria-label

(cherry picked from commit 01b80ca)

Co-authored-by: Ben Schumacher <ben.schumacher@mattermost.com>

* Update NOTICE.txt (mattermost#7102) (mattermost#7179)

Automatic Merge

* Automated cherry pick of mattermost#7183 (mattermost#7184)

(cherry picked from commit 22793b4)

Co-authored-by: Maria A Nunez <maria.nunez@mattermost.com>

* Translations update from Weblate (mattermost#7182)

* Translated using Weblate (Portuguese (Brazil))

Currently translated at 99.9% (4390 of 4391 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/pt_BR/

Translated using Weblate (Portuguese (Brazil))

Currently translated at 99.8% (4383 of 4391 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/pt_BR/

Translated using Weblate (Portuguese (Brazil))

Currently translated at 98.9% (4344 of 4391 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/pt_BR/

Translated using Weblate (Portuguese (Brazil))

Currently translated at 98.9% (4346 of 4393 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/pt_BR/

* Translated using Weblate (Romanian)

Currently translated at 100.0% (4391 of 4391 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/ro/

Translated using Weblate (Romanian)

Currently translated at 100.0% (4391 of 4391 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/ro/

Translated using Weblate (Romanian)

Currently translated at 100.0% (4393 of 4393 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/ro/

* Translated using Weblate (Chinese (Simplified))

Currently translated at 99.9% (4390 of 4391 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/zh_Hans/

Translated using Weblate (Chinese (Simplified))

Currently translated at 99.2% (4356 of 4391 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/zh_Hans/

Translated using Weblate (Chinese (Simplified))

Currently translated at 99.1% (4356 of 4393 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/zh_Hans/

* Update translation files

Updated by "Cleanup translation files" hook in Weblate.

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/

Update translation files

Updated by "Cleanup translation files" hook in Weblate.

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/

* Translated using Weblate (Dutch)

Currently translated at 99.9% (4390 of 4391 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/nl/

Translated using Weblate (Dutch)

Currently translated at 99.2% (4359 of 4391 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/nl/

* Translated using Weblate (Japanese)

Currently translated at 99.9% (4390 of 4391 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/ja/

* Translated using Weblate (Russian)

Currently translated at 93.9% (4125 of 4391 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/ru/

* Translated using Weblate (Turkish)

Currently translated at 100.0% (4391 of 4391 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/tr/

Co-authored-by: rodrigocorsi <rodrigocorsi@gmail.com>
Co-authored-by: Viorel-Cosmin Miron <cosmin@uhlhost.net>
Co-authored-by: aeomin <lin@aeomin.net>
Co-authored-by: Tom De Moor <tom@controlaltdieliet.be>
Co-authored-by: kaakaa <stooner.hoe@gmail.com>
Co-authored-by: Lev <blendamedkiba94@gmail.com>
Co-authored-by: Kaya Zeren <kayazeren@gmail.com>

* Translations update from Weblate (mattermost#7220)

* Translated using Weblate (French)

Currently translated at 93.2% (4096 of 4391 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/fr/

* Translated using Weblate (Dutch)

Currently translated at 99.9% (4424 of 4425 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/nl/

Translated using Weblate (Dutch)

Currently translated at 99.7% (4413 of 4425 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/nl/

Translated using Weblate (Dutch)

Currently translated at 99.4% (4401 of 4425 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/nl/

Translated using Weblate (Dutch)

Currently translated at 99.2% (4393 of 4425 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/nl/

Translated using Weblate (Dutch)

Currently translated at 99.2% (4389 of 4424 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/nl/

Translated using Weblate (Dutch)

Currently translated at 99.9% (4390 of 4391 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/nl/

* Update translation files

Updated by "Cleanup translation files" hook in Weblate.

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/

* Translated using Weblate (Romanian)

Currently translated at 100.0% (4424 of 4424 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/ro/

* Translated using Weblate (Spanish)

Currently translated at 99.3% (4397 of 4425 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/es/

Translated using Weblate (Spanish)

Currently translated at 98.7% (4368 of 4425 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/es/

Translated using Weblate (Spanish)

Currently translated at 98.4% (4357 of 4424 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/es/

* Translated using Weblate (Portuguese (Brazil))

Currently translated at 99.9% (4424 of 4425 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/pt_BR/

Translated using Weblate (Portuguese (Brazil))

Currently translated at 99.2% (4390 of 4424 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/pt_BR/

* Translated using Weblate (Turkish)

Currently translated at 100.0% (4425 of 4425 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/tr/

* Translated using Weblate (Chinese (Simplified))

Currently translated at 99.9% (4424 of 4425 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/zh_Hans/

* Translated using Weblate (Spanish)

Currently translated at 99.9% (4424 of 4425 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/es/

Co-authored-by: wget <william@gathoye.be>
Co-authored-by: Tom De Moor <tom@controlaltdieliet.be>
Co-authored-by: Viorel-Cosmin Miron <cosmin@uhlhost.net>
Co-authored-by: Elias  Nahum <elias@mattermost.com>
Co-authored-by: rodrigocorsi <rodrigocorsi@gmail.com>
Co-authored-by: Kaya Zeren <kayazeren@gmail.com>
Co-authored-by: aeomin <lin@aeomin.net>

* MM-31275 New sidebar performance improvements (mattermost#7207) (mattermost#7240)

Automatic Merge

* MM-31466 Performance investigation part two (cloud) (mattermost#7245)

Automatic Merge

* Translations update from Weblate (mattermost#7273)

* Translated using Weblate (German)

Currently translated at 88.6% (3921 of 4425 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/de/

* Translated using Weblate (Romanian)

Currently translated at 100.0% (4426 of 4426 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/ro/

Translated using Weblate (Romanian)

Currently translated at 100.0% (4425 of 4425 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/ro/

* Translated using Weblate (Korean)

Currently translated at 78.3% (3469 of 4425 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/ko/

Translated using Weblate (Korean)

Currently translated at 78.3% (3468 of 4425 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/ko/

* Translated using Weblate (Ukrainian)

Currently translated at 72.0% (3190 of 4425 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/uk/

Translated using Weblate (Ukrainian)

Currently translated at 72.0% (3190 of 4425 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/uk/

Translated using Weblate (Ukrainian)

Currently translated at 72.0% (3189 of 4425 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/uk/

* Translated using Weblate (German)

Currently translated at 88.7% (3930 of 4426 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/de/

* Translated using Weblate (Dutch)

Currently translated at 99.9% (4425 of 4426 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/nl/

* Translated using Weblate (Turkish)

Currently translated at 100.0% (4426 of 4426 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/tr/

* Translated using Weblate (Chinese (Simplified))

Currently translated at 99.9% (4425 of 4426 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/zh_Hans/

* Translated using Weblate (Spanish)

Currently translated at 99.9% (4425 of 4426 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/es/

* Translated using Weblate (Japanese)

Currently translated at 99.9% (4423 of 4426 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/ja/

* Update translation files

Updated by "Cleanup translation files" hook in Weblate.

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/

* Update translation files

Updated by "Cleanup translation files" hook in Weblate.

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/

* Translated using Weblate (Japanese)

Currently translated at 99.9% (4422 of 4423 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/ja/

Co-authored-by: Elisabeth Kulzer <elisabeth.kulzer@mattermost.com>
Co-authored-by: Viorel-Cosmin Miron <cosmin@uhlhost.net>
Co-authored-by: Lee Dae-yeop <leedaeyeop@gmail.com>
Co-authored-by: Ivan Novikov <monah1744@gmail.com>
Co-authored-by: AxicsHD <jannis.harting@vit.de>
Co-authored-by: Tom De Moor <tom@controlaltdieliet.be>
Co-authored-by: Kaya Zeren <kayazeren@gmail.com>
Co-authored-by: aeomin <lin@aeomin.net>
Co-authored-by: Elias  Nahum <elias@mattermost.com>
Co-authored-by: kaakaa <stooner.hoe@gmail.com>

* MM-31697- Remove OpenId from System Console (mattermost#7278) (mattermost#7294)

Automatic Merge

* [MM-31580] Fix call to getChannel to use new parameter format (mattermost#7284) (mattermost#7300)

(cherry picked from commit 77a9c3c)

Co-authored-by: Devin Binnie <52460000+devinbinnie@users.noreply.github.com>

* MM-31189 Revert New Messages toast PRs (mattermost#7292) (mattermost#7301)

Automatic Merge

* [MM-31708][MM-31726][MM-31739][MM-31727] - Fix regressions in RHS and Status menu (mattermost#7290) (mattermost#7302)

Automatic Merge

* Add onClick event to button so banner button works for cloud

* Change to onButtonClick

* Reset changes for package-lock

* Put showModal back in case its used elsewhere

* Fix invocation

* Fix payment_announcement_bar

* Reset 2 files to master

Co-authored-by: Mattermost Build <build@mattermost.com>
Co-authored-by: Sudheer <sudheer.105@gmail.com>
Co-authored-by: Harrison Healey <harrisonmhealey@gmail.com>
Co-authored-by: Elisabeth Kulzer <elikul@elikul.de>
Co-authored-by: Weblate (bot) <hosted@weblate.org>
Co-authored-by: Viorel-Cosmin Miron <cosmin@uhlhost.net>
Co-authored-by: aeomin <lin@aeomin.net>
Co-authored-by: Kaya Zeren <kayazeren@gmail.com>
Co-authored-by: Elias  Nahum <elias@mattermost.com>
Co-authored-by: Tom De Moor <tom@controlaltdieliet.be>
Co-authored-by: rodrigocorsi <rodrigocorsi@gmail.com>
Co-authored-by: Joram Wilander <jwawilander@gmail.com>
Co-authored-by: Tobias Weichart <tweichart@users.noreply.github.com>
Co-authored-by: Hossein Ahmadian-Yazdi <hahmadia@users.noreply.github.com>
Co-authored-by: Michael Kochell <6913320+mickmister@users.noreply.github.com>
Co-authored-by: Mattermod <mattermod@users.noreply.github.com>
Co-authored-by: Saturnino Abril <saturnino.abril@gmail.com>
Co-authored-by: Jason Frerich <jason.frerich@mattermost.com>
Co-authored-by: Agniva De Sarker <agnivade@yahoo.co.in>
Co-authored-by: seongwon-kang <56567660+seongwon-kang@users.noreply.github.com>
Co-authored-by: Daniel Espino García <larkox@gmail.com>
Co-authored-by: sowmiyamuthuraman <32141844+sowmiyamuthuraman@users.noreply.github.com>
Co-authored-by: Sridhar <kattasridhar02@gmail.com>
Co-authored-by: Michael Leonard <mike@worx4you.com>
Co-authored-by: Ibrahim Serdar Acikgoz <serdaracikgoz86@gmail.com>
Co-authored-by: catalintomai <56169943+catalintomai@users.noreply.github.com>
Co-authored-by: Catalin Tomai <catalin.tomai@mattermost.com>
Co-authored-by: Joseph Baylon <joseph.baylon@mattermost.com>
Co-authored-by: Revanth M <7revanth47@gmail.com>
Co-authored-by: Clément Collin <cinlloc@gmail.com>
Co-authored-by: Devin Binnie <52460000+devinbinnie@users.noreply.github.com>
Co-authored-by: Doug Lauder <wiggin77@warpmail.net>
Co-authored-by: Maria A Nunez <maria.nunez@mattermost.com>
Co-authored-by: Elisabeth Kulzer <elisabeth.kulzer@mattermost.com>
Co-authored-by: Ji-Hyeon Gim <potatogim@potatogim.net>
Co-authored-by: Alexey Napalkov <flynbit@gmail.com>
Co-authored-by: Morgan Connolly <mconnolly@buildzoom.com>
Co-authored-by: Ekaterina Grinberg <46496977+egrinberg@users.noreply.github.com>
Co-authored-by: root <root@DESKTOP-4IBHFV5.localdomain>
Co-authored-by: Guillermo Vayá <guivaya@gmail.com>
Co-authored-by: Vijay Raghavan Aravamudhan <vraravam@users.noreply.github.com>
Co-authored-by: Nicolas Le Cam <niko.lecam@gmail.com>
Co-authored-by: Daniel Shuy <daniel_shuy@hotmail.com>
Co-authored-by: dizkek <41262168+dizkek@users.noreply.github.com>
Co-authored-by: Hossein Ahmadian-Yazdi <hyazdi1997@gmail.com>
Co-authored-by: Luciano Lim <chunyumikey@gmail.com>
Co-authored-by: Ben Schumacher <ben.schumacher@mattermost.com>
Co-authored-by: kaakaa <stooner.hoe@gmail.com>
Co-authored-by: Lev <blendamedkiba94@gmail.com>
Co-authored-by: wget <william@gathoye.be>
Co-authored-by: Lee Dae-yeop <leedaeyeop@gmail.com>
Co-authored-by: Ivan Novikov <monah1744@gmail.com>
Co-authored-by: AxicsHD <jannis.harting@vit.de>
(cherry picked from commit c4f2c4d)
marianunez pushed a commit that referenced this pull request Jan 11, 2021
* change super to system (#7076) (#7088)

Automatic Merge

* MM-20465 Fix for collapse/expand of image preview (#7085)

* The toggle function requires id and not post
  * This was most likely changed to fix a ts error

* MM-20465 Revert usage of getCurrentChannel to getCurrentChannelId where possible (#7064) (#7092)

(cherry picked from commit 1d7e5e9)

Co-authored-by: Harrison Healey <harrisonmhealey@gmail.com>

* Automated cherry pick of #7096 (#7097)

(cherry picked from commit 6c35b79)

Co-authored-by: Maria A Nunez <maria.nunez@mattermost.com>
(cherry picked from commit 59cebce)

* Automated cherry pick of #7101 (#7104)

(cherry picked from commit 0595ff3)

Co-authored-by: Nick Misasi <nick.misasi@mattermost.com>

* MM-30477 Fix for autocomplete not closing (#7093)

Automatic Merge

* Add GitLab jobs

* Translations update from Weblate (#7122)

* Update translation files

Updated by "Cleanup translation files" hook in Weblate.

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/

* Translated using Weblate (Romanian)

Currently translated at 93.8% (4121 of 4392 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/ro/

* Translated using Weblate (Chinese (Simplified))

Currently translated at 98.9% (4345 of 4392 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/zh_Hans/

* Translated using Weblate (Turkish)

Currently translated at 100.0% (4392 of 4392 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/tr/

* Translated using Weblate (Spanish)

Currently translated at 97.7% (4292 of 4392 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/es/

* Translated using Weblate (Dutch)

Currently translated at 98.8% (4341 of 4392 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/nl/

Co-authored-by: Viorel-Cosmin Miron <cosmin@uhlhost.net>
Co-authored-by: aeomin <lin@aeomin.net>
Co-authored-by: Kaya Zeren <kayazeren@gmail.com>
Co-authored-by: Elias  Nahum <elias@mattermost.com>
Co-authored-by: Tom De Moor <tom@controlaltdieliet.be>

* Translations update from Weblate (#7139)

* Translated using Weblate (Spanish)

Currently translated at 99.1% (4357 of 4393 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/es/

* Translated using Weblate (Dutch)

Currently translated at 98.8% (4344 of 4393 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/nl/

* Translated using Weblate (Dutch)

Currently translated at 98.9% (4349 of 4393 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/nl/

* Translated using Weblate (Portuguese (Brazil))

Currently translated at 98.4% (4327 of 4393 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/pt_BR/

Co-authored-by: Elias  Nahum <elias@mattermost.com>
Co-authored-by: Tom De Moor <tom@controlaltdieliet.be>
Co-authored-by: rodrigocorsi <rodrigocorsi@gmail.com>

* Merge latest master into cloud branch for next release (#7144)

* DOPS-243 (#7075)

DOPS-243 (#7075)

* [GH-13483] Migrate 'components/channel_invite_modal' module and associated tests to TypeScript (#6968)

* [WIP] migration to typescript

* [WIP] further typescript changes

* finalized move of component to typescript

* [WIP] move index file to typescript

* updated test to typescript

* fix for types in index file

* removed failing class import

* [No Ticket] Update to latest redux hash and fixing test cases with missing types (#7084)

Automatic Merge

* [MM-27154] Cypress tests: Incoming Webhooks (#6977)

* Incoming webhooks cypress tests

* Remove unused variable

* PR feedback

* add license

* PR feedback and lint

* fix import path

Co-authored-by: Saturnino Abril <saturnino.abril@gmail.com>

Co-authored-by: Mattermod <mattermod@users.noreply.github.com>
Co-authored-by: Saturnino Abril <saturnino.abril@gmail.com>

* fix failing tests due to announcement bar (#7077)

* MM-27315 Cypress tests for Integrations > Slash command auto-complete (7 test cases) (#6909)

* MM-30359: Cypress/E2E: Account Settings > Email (#7051)

* MM-30359: Cypress/E2E: Account Settings > Email

This PR automates the following test cases:

MM-T2066

MM-T2067

MM-T2068

MM-T2069

MM-T2070

MM-T2071

MM-T2072

MM-T2073

https://mattermost.atlassian.net/browse/MM-30359

```release-note
NONE
```

* fix lint

* add the other tests

* Address review comments

Co-authored-by: Mattermod <mattermod@users.noreply.github.com>

* [MM-T561] Add e2e test for MM-T561 (#7015)

* Add e2e test
Add test for: Browser tab and team sidebar - direct messages don't add indicator on team icon in team sidebar (but do in browser tab)
Github Issues: Fix mattermost/mattermost#15700
Jira Ticket: MM-T561

* Apply suggested review

* Add cleanup for MM-T560_2

* Linting

* Separate test file

* Linting

* Add prerequisite

* Rename file

* Remove old test

Co-authored-by: Mattermod <mattermod@users.noreply.github.com>

* [MM-28255] Add tests for OAuth Apps (#6558)

* Add tests for OAuth Apps

* Add remaining tests

* Update test names, fix typos and add explicit status codes

* Add group and license check

* Move tests to enterprise folder

Co-authored-by: Mattermod <mattermod@users.noreply.github.com>

* MM-29858: Migrate string refs to functional ones in autosize textarea component (#6885)

* MM-29858: Migrate string refs to functional ones in autosize textarea component

* MM-29858: Rename reference instance variable with suffix Ref

* MM-29858: Use camel casing for textarea reference variable

* MM-29858: Allow empty value for textarea

Co-authored-by: Mattermod <mattermod@users.noreply.github.com>

* Migrate errorMessage string ref (#6882)

Automatic Merge

* MM-T329 Image link preview (#7005)

* wip

* wip

* finished

* revision

* remove log

Co-authored-by: Mattermod <mattermod@users.noreply.github.com>

* [MM-28150] e2e: add MM-T924, MM-T928, MM-T929, MM-T930 (#7045)

* e2e: add MM-T924, MM-T928, MM-T929, MM-T930

* reflect review comments

Co-authored-by: Mattermod <mattermod@users.noreply.github.com>

* MM-30363: Cypress/E2E: Automate backlogs - Edit Bot Username (1 test case) (#7073)

* MM-30373 - first iteration

* MM-30377 - first iteration

* remove spurious file

* MM-30377 - further iteration

* MM-30363 - first iteration

* remove extra file

* some cleanup

* remoe extra space

Co-authored-by: Catalin Tomai <catalin.tomai@mattermost.com>
Co-authored-by: Mattermod <mattermod@users.noreply.github.com>

* promote and demote tests to/from prod (#7080)

* Cypress/E2E: Fix toast appears unread spec (#7081)

* change super to system (#7076)

* MM-20418: Migrate 'components/channel_selector_modal' module and associated tests to TypeScript (#6975)

* DOPS-243: Fix images (#7089)

DOPS-243: Fix images (#7089)

* MM-T439 Town Square is not marked as unread for existing users when a new user is added to the team (#7053)

Automatic Merge

* [MM-20582] Migrate 'components/admin_console/team_channel_settings/ch… (#6840)

* MM-20465 Fix for collapse/expand of image preview (#7085)

* The toggle function requires id and not post
  * This was most likely changed to fix a ts error

* MM-20465 Revert usage of getCurrentChannel to getCurrentChannelId where possible (#7064)

* [MM-29821] Prefer TypeScript files over JavaScript in webpack (#7090)

* [MM-30317] add MANAGE_REMOTE_CLUSTERS permission (#7060)

* add MANAGE_REMOTE_CLUSTERS permission

* Update i18n/en.json

Co-authored-by: Doug Lauder <wiggin77@warpmail.net>

Co-authored-by: Doug Lauder <wiggin77@warpmail.net>

* MM-20416: Migrate 'components/channel_header_mobile/collapse_lhs_button' module to TypeScript (#6971)

Co-authored-by: Mattermod <mattermod@users.noreply.github.com>

* Remove Cloud billing flag from System Console (#7096)

(cherry picked from commit 6c35b79)

Co-authored-by: Maria A Nunez <maria.nunez@mattermost.com>

* Translations update from Weblate (#7100)

* Translated using Weblate (Turkish)

Currently translated at 100.0% (4390 of 4390 strings)

Translation: mattermost-languages-shipped/mattermost-webapp_master
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/tr/

Translated using Weblate (Turkish)

Currently translated at 100.0% (4329 of 4329 strings)

Translation: mattermost-languages-shipped/mattermost-webapp_master
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/tr/

* Translated using Weblate (German)

Currently translated at 90.4% (3915 of 4329 strings)

Translation: mattermost-languages-shipped/mattermost-webapp_master
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/de/

* Translated using Weblate (Korean)

Currently translated at 80.1% (3468 of 4329 strings)

Translation: mattermost-languages-shipped/mattermost-webapp_master
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/ko/

* Translated using Weblate (Portuguese (Brazil))

Currently translated at 99.9% (4328 of 4329 strings)

Translation: mattermost-languages-shipped/mattermost-webapp_master
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/pt_BR/

* Translated using Weblate (Russian)

Currently translated at 95.0% (4113 of 4329 strings)

Translation: mattermost-languages-shipped/mattermost-webapp_master
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/ru/

* Translated using Weblate (Dutch)

Currently translated at 98.5% (4328 of 4390 strings)

Translation: mattermost-languages-shipped/mattermost-webapp_master
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/nl/

Translated using Weblate (Dutch)

Currently translated at 98.4% (4322 of 4390 strings)

Translation: mattermost-languages-shipped/mattermost-webapp_master
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/nl/

* Translated using Weblate (Chinese (Simplified))

Currently translated at 96.7% (4246 of 4390 strings)

Translation: mattermost-languages-shipped/mattermost-webapp_master
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/zh_Hans/

* Translated using Weblate (Romanian)

Currently translated at 93.8% (4119 of 4390 strings)

Translation: mattermost-languages-shipped/mattermost-webapp_master
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/ro/

Translated using Weblate (Romanian)

Currently translated at 92.7% (4072 of 4390 strings)

Translation: mattermost-languages-shipped/mattermost-webapp_master
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/ro/

* Update translation files

Updated by "Cleanup translation files" hook in Weblate.

Translation: mattermost-languages-shipped/mattermost-webapp_master
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/

* Translated using Weblate (Dutch)

Currently translated at 98.5% (4325 of 4390 strings)

Translation: mattermost-languages-shipped/mattermost-webapp_master
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/nl/

Co-authored-by: Kaya Zeren <kayazeren@gmail.com>
Co-authored-by: Elisabeth Kulzer <elisabeth.kulzer@mattermost.com>
Co-authored-by: Ji-Hyeon Gim <potatogim@potatogim.net>
Co-authored-by: rodrigocorsi <rodrigocorsi@gmail.com>
Co-authored-by: Alexey Napalkov <flynbit@gmail.com>
Co-authored-by: Tom De Moor <tom@controlaltdieliet.be>
Co-authored-by: aeomin <lin@aeomin.net>
Co-authored-by: Viorel-Cosmin Miron <cosmin@uhlhost.net>

* Migrate 'components/announcement_bar/default_announcement_bar' module and associated tests to TypeScript (#6963)

* rename file

* working except for test file

* restore unincluded test file to jsx

* pass npm make check

* update snapshot

* respond to review comments

* checkout package-lock.json

* revert package-lock.json changes

* fix linting errors

Co-authored-by: Mattermod <mattermod@users.noreply.github.com>

* Migrate this.ref.dotMenu to functional (#6957)

* Migrate this.ref.dotMenu to functional

* Fixed formatting

* Fix reference

* rename dotMenu to dotMenuRef for consistency with other PRs, remove comments

* Removed blanked line to pass lint check

Co-authored-by: root <root@DESKTOP-4IBHFV5.localdomain>
Co-authored-by: Mattermod <mattermod@users.noreply.github.com>

* MM-20897 Add category muting (#7033)

* MM-20897 Add ability to mute categories

* Increase timeout to ensure test passes

* Add E2E test for moving channels into muted categories

* Update mattermost-redux to branch

* Fix unit tests

* Fix types

* Update snapshot

* asdf

* Add additional E2E test and API client infrastructure

* MM-24293 Fix to have group channels return in quick switcher with space (#7059)

* MM-24293 Fix to have group channels return in quick siwchter with space

  * Split the  search term by spaces and match with users in
    group channels

* Update components/suggestion/switch_channel_provider.jsx

Co-authored-by: Guillermo Vayá <guivaya@gmail.com>

Co-authored-by: Guillermo Vayá <guivaya@gmail.com>
Co-authored-by: Mattermod <mattermod@users.noreply.github.com>

* If card year is 0 return false for isExpired (#7101)

* Converted 'dot_menu' to typescript. (#6825)

* Migrate string refs of reset password modal (#7038)

Automatic Merge

* MM-20415 Migrate 'components/channel_header_mobile/unmute_channel_button' module and associated tests to TypeScript (#6972)

* MM-30477 Fix for autocomplete not closing (#7093)

Automatic Merge

* MM-20897 Cleanup a couple missed issues (#7106)

* MM-T638 Webhook posts when webhook creator is not a member of the channel (#7091)

* wip

* wip

* wip

* wip

* added check

* small fix

* fix

Co-authored-by: Mattermod <mattermod@users.noreply.github.com>

* [MM-20481] Migrate 'components/post_view/post_body_additional_content' module and associated tests to TypeScript (#6668)

* [MM-20481] Migrate 'components/post_view/post_body_additional_content' module and associated tests to TypeScript

Fixes mattermost/mattermost#15460
JIRA: https://mattermost.atlassian.net/browse/MM-20481

* Make actions attribute non nullable

* Require YoutubeVideo's postId property since it really is

* Fix tests

* Add stages for onprem

* Add build-vars stage

* set isDisabled prop for site > notices (#7103)

Automatic Merge

* [MM-27931][MM-30158] Multi-selection and dragging of channels (#6979)

* [MM-27931] Multiselection of channels

* Test fix

* Lint fix

* Change opacity of selected state to 0.24

* Added hover state for selected channels

* Tests for multiSelect

* Drag and drop working (without visuals, missing redux commit)

* Multi drag and drop styles (fade the selected channels, might change)

* Don't allow multisellected channels to be dropped where they shouldn't be

* Lint, type, test, translation fixes

* Allow dragging of non matching channel groups by rejecting the channels that don't match

* Redux update

* Another test fix

* Fixed selected count style to work off of center channel exclusively

* Added really obvious styling

* Style change/PR feedback

* Style change

* Include active channel in all initial selections

* PR feedback

* Add constant for shifted index

Co-authored-by: Mattermod <mattermod@users.noreply.github.com>

* [MM-20572] Migrate 'components/admin_console/compliance_reports' to TypeScript (#13500) (#7036)

Automatic Merge

* MM-30087 Remove direct dependency between Client4 and Rudder (#7056)

* MM-30087 Remove direct dependency between Client4 and Rudder

* Update tests

* Switch mattermost-redux to master

* Fix missing types

* Change how we mock and import rudder

* Remove test that checks if events are sent to Rudder

* [MM_20423]'external_image'module to ts (#16151) (#7025)

- migrate ts index.js file
- migrate ts for external_image.tsx
- migrate ts for external_images.test.jsx

Co-authored-by: Hossein Ahmadian-Yazdi <hyazdi1997@gmail.com>

* Fix issue 16144: migrate components/claim module and tests to TypeScript (#7043)

Automatic Merge

* MM-T2056 e2e to test, Username change reflecting for other users (#7074)

Co-authored-by: Mattermod <mattermod@users.noreply.github.com>

* [MM-26334] Fixes direct messages loading screen misalignment (#6813)

Summary:
Reduces the height of the loading screen so it is more centered and/or unintrusive(small screens) enough to remove the scroll bar during loading.

Ticket Link:
Fixes mattermost/mattermost#15926

* Translations update from Weblate (#7122)

* Update translation files

Updated by "Cleanup translation files" hook in Weblate.

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/

* Translated using Weblate (Romanian)

Currently translated at 93.8% (4121 of 4392 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/ro/

* Translated using Weblate (Chinese (Simplified))

Currently translated at 98.9% (4345 of 4392 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/zh_Hans/

* Translated using Weblate (Turkish)

Currently translated at 100.0% (4392 of 4392 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/tr/

* Translated using Weblate (Spanish)

Currently translated at 97.7% (4292 of 4392 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/es/

* Translated using Weblate (Dutch)

Currently translated at 98.8% (4341 of 4392 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/nl/

Co-authored-by: Viorel-Cosmin Miron <cosmin@uhlhost.net>
Co-authored-by: aeomin <lin@aeomin.net>
Co-authored-by: Kaya Zeren <kayazeren@gmail.com>
Co-authored-by: Elias  Nahum <elias@mattermost.com>
Co-authored-by: Tom De Moor <tom@controlaltdieliet.be>

* MM-28153: Cypress/E2E: Automate backlogs - System Console > Environment (8 test cases) (#7049)

* MM-30377: Cypress/E2E: Automate backlogs - Messaging > Channel and Post Links (6 test cases) (#7072)

* MM-30355: Cypress/E2E: Automate backlogs - Account Settings > Username (6 test cases) (#7062)

* MM-27208 Add tests for MM-T1684, MM-T1687, and MM-T1688 (#7124)

* MM-27208 MM-T1684 Add test number to existing test case

* Fix makeClient for requests without a body

* MM-27208 MM-T1687 Add test for another user archiving a channel

* MM-27208 MM-T1688 Add test for searching in archived channels

* Translations update from Weblate (#7139)

* Translated using Weblate (Spanish)

Currently translated at 99.1% (4357 of 4393 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/es/

* Translated using Weblate (Dutch)

Currently translated at 98.8% (4344 of 4393 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/nl/

* Translated using Weblate (Dutch)

Currently translated at 98.9% (4349 of 4393 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/nl/

* Translated using Weblate (Portuguese (Brazil))

Currently translated at 98.4% (4327 of 4393 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/pt_BR/

Co-authored-by: Elias  Nahum <elias@mattermost.com>
Co-authored-by: Tom De Moor <tom@controlaltdieliet.be>
Co-authored-by: rodrigocorsi <rodrigocorsi@gmail.com>

Co-authored-by: Elisabeth Kulzer <elikul@elikul.de>
Co-authored-by: Tobias Weichart <tweichart@users.noreply.github.com>
Co-authored-by: Hossein Ahmadian-Yazdi <hahmadia@users.noreply.github.com>
Co-authored-by: Michael Kochell <6913320+mickmister@users.noreply.github.com>
Co-authored-by: Mattermod <mattermod@users.noreply.github.com>
Co-authored-by: Saturnino Abril <saturnino.abril@gmail.com>
Co-authored-by: Jason Frerich <jason.frerich@mattermost.com>
Co-authored-by: Agniva De Sarker <agnivade@yahoo.co.in>
Co-authored-by: seongwon-kang <56567660+seongwon-kang@users.noreply.github.com>
Co-authored-by: Daniel Espino García <larkox@gmail.com>
Co-authored-by: sowmiyamuthuraman <32141844+sowmiyamuthuraman@users.noreply.github.com>
Co-authored-by: Sridhar <kattasridhar02@gmail.com>
Co-authored-by: Michael Leonard <mike@worx4you.com>
Co-authored-by: Ibrahim Serdar Acikgoz <serdaracikgoz86@gmail.com>
Co-authored-by: catalintomai <56169943+catalintomai@users.noreply.github.com>
Co-authored-by: Catalin Tomai <catalin.tomai@mattermost.com>
Co-authored-by: Joseph Baylon <joseph.baylon@mattermost.com>
Co-authored-by: Revanth M <7revanth47@gmail.com>
Co-authored-by: Clément Collin <cinlloc@gmail.com>
Co-authored-by: Sudheer <sudheer.105@gmail.com>
Co-authored-by: Harrison Healey <harrisonmhealey@gmail.com>
Co-authored-by: Devin Binnie <52460000+devinbinnie@users.noreply.github.com>
Co-authored-by: Doug Lauder <wiggin77@warpmail.net>
Co-authored-by: Mattermost Build <build@mattermost.com>
Co-authored-by: Maria A Nunez <maria.nunez@mattermost.com>
Co-authored-by: Weblate (bot) <hosted@weblate.org>
Co-authored-by: Kaya Zeren <kayazeren@gmail.com>
Co-authored-by: Elisabeth Kulzer <elisabeth.kulzer@mattermost.com>
Co-authored-by: Ji-Hyeon Gim <potatogim@potatogim.net>
Co-authored-by: rodrigocorsi <rodrigocorsi@gmail.com>
Co-authored-by: Alexey Napalkov <flynbit@gmail.com>
Co-authored-by: Tom De Moor <tom@controlaltdieliet.be>
Co-authored-by: aeomin <lin@aeomin.net>
Co-authored-by: Viorel-Cosmin Miron <cosmin@uhlhost.net>
Co-authored-by: Morgan Connolly <mconnolly@buildzoom.com>
Co-authored-by: Ekaterina Grinberg <46496977+egrinberg@users.noreply.github.com>
Co-authored-by: root <root@DESKTOP-4IBHFV5.localdomain>
Co-authored-by: Guillermo Vayá <guivaya@gmail.com>
Co-authored-by: Nick Misasi <nick.misasi@mattermost.com>
Co-authored-by: Vijay Raghavan Aravamudhan <vraravam@users.noreply.github.com>
Co-authored-by: Nicolas Le Cam <niko.lecam@gmail.com>
Co-authored-by: Daniel Shuy <daniel_shuy@hotmail.com>
Co-authored-by: dizkek <41262168+dizkek@users.noreply.github.com>
Co-authored-by: Hossein Ahmadian-Yazdi <hyazdi1997@gmail.com>
Co-authored-by: Luciano Lim <chunyumikey@gmail.com>
Co-authored-by: Elias  Nahum <elias@mattermost.com>

* MM-30972 Add proper padding to code preview line numbers (#7155) (#7167)

Automatic Merge

* Automated cherry pick of #7133 (#7178)

* Drop aria-label from Marketplace item description

* Add general aria-label

(cherry picked from commit 01b80ca)

Co-authored-by: Ben Schumacher <ben.schumacher@mattermost.com>

* Update NOTICE.txt (#7102) (#7179)

Automatic Merge

* Automated cherry pick of #7183 (#7184)

(cherry picked from commit 22793b4)

Co-authored-by: Maria A Nunez <maria.nunez@mattermost.com>

* Translations update from Weblate (#7182)

* Translated using Weblate (Portuguese (Brazil))

Currently translated at 99.9% (4390 of 4391 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/pt_BR/

Translated using Weblate (Portuguese (Brazil))

Currently translated at 99.8% (4383 of 4391 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/pt_BR/

Translated using Weblate (Portuguese (Brazil))

Currently translated at 98.9% (4344 of 4391 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/pt_BR/

Translated using Weblate (Portuguese (Brazil))

Currently translated at 98.9% (4346 of 4393 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/pt_BR/

* Translated using Weblate (Romanian)

Currently translated at 100.0% (4391 of 4391 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/ro/

Translated using Weblate (Romanian)

Currently translated at 100.0% (4391 of 4391 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/ro/

Translated using Weblate (Romanian)

Currently translated at 100.0% (4393 of 4393 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/ro/

* Translated using Weblate (Chinese (Simplified))

Currently translated at 99.9% (4390 of 4391 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/zh_Hans/

Translated using Weblate (Chinese (Simplified))

Currently translated at 99.2% (4356 of 4391 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/zh_Hans/

Translated using Weblate (Chinese (Simplified))

Currently translated at 99.1% (4356 of 4393 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/zh_Hans/

* Update translation files

Updated by "Cleanup translation files" hook in Weblate.

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/

Update translation files

Updated by "Cleanup translation files" hook in Weblate.

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/

* Translated using Weblate (Dutch)

Currently translated at 99.9% (4390 of 4391 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/nl/

Translated using Weblate (Dutch)

Currently translated at 99.2% (4359 of 4391 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/nl/

* Translated using Weblate (Japanese)

Currently translated at 99.9% (4390 of 4391 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/ja/

* Translated using Weblate (Russian)

Currently translated at 93.9% (4125 of 4391 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/ru/

* Translated using Weblate (Turkish)

Currently translated at 100.0% (4391 of 4391 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/tr/

Co-authored-by: rodrigocorsi <rodrigocorsi@gmail.com>
Co-authored-by: Viorel-Cosmin Miron <cosmin@uhlhost.net>
Co-authored-by: aeomin <lin@aeomin.net>
Co-authored-by: Tom De Moor <tom@controlaltdieliet.be>
Co-authored-by: kaakaa <stooner.hoe@gmail.com>
Co-authored-by: Lev <blendamedkiba94@gmail.com>
Co-authored-by: Kaya Zeren <kayazeren@gmail.com>

* Translations update from Weblate (#7220)

* Translated using Weblate (French)

Currently translated at 93.2% (4096 of 4391 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/fr/

* Translated using Weblate (Dutch)

Currently translated at 99.9% (4424 of 4425 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/nl/

Translated using Weblate (Dutch)

Currently translated at 99.7% (4413 of 4425 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/nl/

Translated using Weblate (Dutch)

Currently translated at 99.4% (4401 of 4425 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/nl/

Translated using Weblate (Dutch)

Currently translated at 99.2% (4393 of 4425 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/nl/

Translated using Weblate (Dutch)

Currently translated at 99.2% (4389 of 4424 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/nl/

Translated using Weblate (Dutch)

Currently translated at 99.9% (4390 of 4391 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/nl/

* Update translation files

Updated by "Cleanup translation files" hook in Weblate.

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/

* Translated using Weblate (Romanian)

Currently translated at 100.0% (4424 of 4424 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/ro/

* Translated using Weblate (Spanish)

Currently translated at 99.3% (4397 of 4425 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/es/

Translated using Weblate (Spanish)

Currently translated at 98.7% (4368 of 4425 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/es/

Translated using Weblate (Spanish)

Currently translated at 98.4% (4357 of 4424 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/es/

* Translated using Weblate (Portuguese (Brazil))

Currently translated at 99.9% (4424 of 4425 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/pt_BR/

Translated using Weblate (Portuguese (Brazil))

Currently translated at 99.2% (4390 of 4424 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/pt_BR/

* Translated using Weblate (Turkish)

Currently translated at 100.0% (4425 of 4425 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/tr/

* Translated using Weblate (Chinese (Simplified))

Currently translated at 99.9% (4424 of 4425 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/zh_Hans/

* Translated using Weblate (Spanish)

Currently translated at 99.9% (4424 of 4425 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/es/

Co-authored-by: wget <william@gathoye.be>
Co-authored-by: Tom De Moor <tom@controlaltdieliet.be>
Co-authored-by: Viorel-Cosmin Miron <cosmin@uhlhost.net>
Co-authored-by: Elias  Nahum <elias@mattermost.com>
Co-authored-by: rodrigocorsi <rodrigocorsi@gmail.com>
Co-authored-by: Kaya Zeren <kayazeren@gmail.com>
Co-authored-by: aeomin <lin@aeomin.net>

* MM-31275 New sidebar performance improvements (#7207) (#7240)

Automatic Merge

* MM-31466 Performance investigation part two (cloud) (#7245)

Automatic Merge

* Translations update from Weblate (#7273)

* Translated using Weblate (German)

Currently translated at 88.6% (3921 of 4425 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/de/

* Translated using Weblate (Romanian)

Currently translated at 100.0% (4426 of 4426 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/ro/

Translated using Weblate (Romanian)

Currently translated at 100.0% (4425 of 4425 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/ro/

* Translated using Weblate (Korean)

Currently translated at 78.3% (3469 of 4425 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/ko/

Translated using Weblate (Korean)

Currently translated at 78.3% (3468 of 4425 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/ko/

* Translated using Weblate (Ukrainian)

Currently translated at 72.0% (3190 of 4425 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/uk/

Translated using Weblate (Ukrainian)

Currently translated at 72.0% (3190 of 4425 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/uk/

Translated using Weblate (Ukrainian)

Currently translated at 72.0% (3189 of 4425 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/uk/

* Translated using Weblate (German)

Currently translated at 88.7% (3930 of 4426 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/de/

* Translated using Weblate (Dutch)

Currently translated at 99.9% (4425 of 4426 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/nl/

* Translated using Weblate (Turkish)

Currently translated at 100.0% (4426 of 4426 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/tr/

* Translated using Weblate (Chinese (Simplified))

Currently translated at 99.9% (4425 of 4426 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/zh_Hans/

* Translated using Weblate (Spanish)

Currently translated at 99.9% (4425 of 4426 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/es/

* Translated using Weblate (Japanese)

Currently translated at 99.9% (4423 of 4426 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/ja/

* Update translation files

Updated by "Cleanup translation files" hook in Weblate.

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/

* Update translation files

Updated by "Cleanup translation files" hook in Weblate.

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/

* Translated using Weblate (Japanese)

Currently translated at 99.9% (4422 of 4423 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/ja/

Co-authored-by: Elisabeth Kulzer <elisabeth.kulzer@mattermost.com>
Co-authored-by: Viorel-Cosmin Miron <cosmin@uhlhost.net>
Co-authored-by: Lee Dae-yeop <leedaeyeop@gmail.com>
Co-authored-by: Ivan Novikov <monah1744@gmail.com>
Co-authored-by: AxicsHD <jannis.harting@vit.de>
Co-authored-by: Tom De Moor <tom@controlaltdieliet.be>
Co-authored-by: Kaya Zeren <kayazeren@gmail.com>
Co-authored-by: aeomin <lin@aeomin.net>
Co-authored-by: Elias  Nahum <elias@mattermost.com>
Co-authored-by: kaakaa <stooner.hoe@gmail.com>

* MM-31697- Remove OpenId from System Console (#7278) (#7294)

Automatic Merge

* [MM-31580] Fix call to getChannel to use new parameter format (#7284) (#7300)

(cherry picked from commit 77a9c3c)

Co-authored-by: Devin Binnie <52460000+devinbinnie@users.noreply.github.com>

* MM-31189 Revert New Messages toast PRs (#7292) (#7301)

Automatic Merge

* [MM-31708][MM-31726][MM-31739][MM-31727] - Fix regressions in RHS and Status menu (#7290) (#7302)

Automatic Merge

* Add onClick event to button so banner button works for cloud

* Change to onButtonClick

* Reset changes for package-lock

* Put showModal back in case its used elsewhere

* Fix invocation

* Fix payment_announcement_bar

* Reset 2 files to master

Co-authored-by: Mattermost Build <build@mattermost.com>
Co-authored-by: Sudheer <sudheer.105@gmail.com>
Co-authored-by: Harrison Healey <harrisonmhealey@gmail.com>
Co-authored-by: Elisabeth Kulzer <elikul@elikul.de>
Co-authored-by: Weblate (bot) <hosted@weblate.org>
Co-authored-by: Viorel-Cosmin Miron <cosmin@uhlhost.net>
Co-authored-by: aeomin <lin@aeomin.net>
Co-authored-by: Kaya Zeren <kayazeren@gmail.com>
Co-authored-by: Elias  Nahum <elias@mattermost.com>
Co-authored-by: Tom De Moor <tom@controlaltdieliet.be>
Co-authored-by: rodrigocorsi <rodrigocorsi@gmail.com>
Co-authored-by: Joram Wilander <jwawilander@gmail.com>
Co-authored-by: Tobias Weichart <tweichart@users.noreply.github.com>
Co-authored-by: Hossein Ahmadian-Yazdi <hahmadia@users.noreply.github.com>
Co-authored-by: Michael Kochell <6913320+mickmister@users.noreply.github.com>
Co-authored-by: Mattermod <mattermod@users.noreply.github.com>
Co-authored-by: Saturnino Abril <saturnino.abril@gmail.com>
Co-authored-by: Jason Frerich <jason.frerich@mattermost.com>
Co-authored-by: Agniva De Sarker <agnivade@yahoo.co.in>
Co-authored-by: seongwon-kang <56567660+seongwon-kang@users.noreply.github.com>
Co-authored-by: Daniel Espino García <larkox@gmail.com>
Co-authored-by: sowmiyamuthuraman <32141844+sowmiyamuthuraman@users.noreply.github.com>
Co-authored-by: Sridhar <kattasridhar02@gmail.com>
Co-authored-by: Michael Leonard <mike@worx4you.com>
Co-authored-by: Ibrahim Serdar Acikgoz <serdaracikgoz86@gmail.com>
Co-authored-by: catalintomai <56169943+catalintomai@users.noreply.github.com>
Co-authored-by: Catalin Tomai <catalin.tomai@mattermost.com>
Co-authored-by: Joseph Baylon <joseph.baylon@mattermost.com>
Co-authored-by: Revanth M <7revanth47@gmail.com>
Co-authored-by: Clément Collin <cinlloc@gmail.com>
Co-authored-by: Devin Binnie <52460000+devinbinnie@users.noreply.github.com>
Co-authored-by: Doug Lauder <wiggin77@warpmail.net>
Co-authored-by: Maria A Nunez <maria.nunez@mattermost.com>
Co-authored-by: Elisabeth Kulzer <elisabeth.kulzer@mattermost.com>
Co-authored-by: Ji-Hyeon Gim <potatogim@potatogim.net>
Co-authored-by: Alexey Napalkov <flynbit@gmail.com>
Co-authored-by: Morgan Connolly <mconnolly@buildzoom.com>
Co-authored-by: Ekaterina Grinberg <46496977+egrinberg@users.noreply.github.com>
Co-authored-by: root <root@DESKTOP-4IBHFV5.localdomain>
Co-authored-by: Guillermo Vayá <guivaya@gmail.com>
Co-authored-by: Vijay Raghavan Aravamudhan <vraravam@users.noreply.github.com>
Co-authored-by: Nicolas Le Cam <niko.lecam@gmail.com>
Co-authored-by: Daniel Shuy <daniel_shuy@hotmail.com>
Co-authored-by: dizkek <41262168+dizkek@users.noreply.github.com>
Co-authored-by: Hossein Ahmadian-Yazdi <hyazdi1997@gmail.com>
Co-authored-by: Luciano Lim <chunyumikey@gmail.com>
Co-authored-by: Ben Schumacher <ben.schumacher@mattermost.com>
Co-authored-by: kaakaa <stooner.hoe@gmail.com>
Co-authored-by: Lev <blendamedkiba94@gmail.com>
Co-authored-by: wget <william@gathoye.be>
Co-authored-by: Lee Dae-yeop <leedaeyeop@gmail.com>
Co-authored-by: Ivan Novikov <monah1744@gmail.com>
Co-authored-by: AxicsHD <jannis.harting@vit.de>
(cherry picked from commit c4f2c4d)

Co-authored-by: Nick Misasi <nick.misasi@mattermost.com>
larkox added a commit that referenced this pull request Jan 13, 2021
* [MM-30193] change file attachment info to show fractions below 10 (#6935)

* change fileinfo to show fractions below 10M

* fix formatting

* add linting fixes and clean up code

* fix incorrect brackets

Co-authored-by: Mattermod <mattermod@users.noreply.github.com>

* Revert "Mm 29111 search bar and search results as fc (#6796)" (#6999)

This reverts commit 9fba9a9789e3e1e6194daa36aabe343859e8511b.

* [MM-20196] Use UTC timezone for formattedDate so it doesn't change the date (#7000)

* Use UTC timezone for formattedDate so it doesn't change the date

* Add toUTCString

* Remove it because it isn't needed

* Add to last invoice summary

* Make invoice.tax a boolean so a rogue 0 isn't rendered (#7001)

* Translations update from Weblate (#7006)

* Translated using Weblate (Dutch)

Currently translated at 99.9% (4294 of 4295 strings)

Translation: mattermost-languages-shipped/mattermost-webapp_master
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/nl/

Translated using Weblate (Dutch)

Currently translated at 99.5% (4275 of 4295 strings)

Translation: mattermost-languages-shipped/mattermost-webapp_master
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/nl/

Translated using Weblate (Dutch)

Currently translated at 99.6% (4270 of 4285 strings)

Translation: mattermost-languages-shipped/mattermost-webapp_master
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/nl/

* Update translation files

Updated by "Cleanup translation files" hook in Weblate.

Translation: mattermost-languages-shipped/mattermost-webapp_master
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/

Update translation files

Updated by "Cleanup translation files" hook in Weblate.

Translation: mattermost-languages-shipped/mattermost-webapp_master
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/

* Translated using Weblate (Spanish)

Currently translated at 99.2% (4264 of 4295 strings)

Translation: mattermost-languages-shipped/mattermost-webapp_master
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/es/

* Translated using Weblate (Japanese)

Currently translated at 98.2% (4219 of 4295 strings)

Translation: mattermost-languages-shipped/mattermost-webapp_master
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/ja/

Translated using Weblate (Japanese)

Currently translated at 98.2% (4219 of 4295 strings)

Translation: mattermost-languages-shipped/mattermost-webapp_master
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/ja/

* Translated using Weblate (Turkish)

Currently translated at 100.0% (4295 of 4295 strings)

Translation: mattermost-languages-shipped/mattermost-webapp_master
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/tr/

Translated using Weblate (Turkish)

Currently translated at 96.0% (4126 of 4295 strings)

Translation: mattermost-languages-shipped/mattermost-webapp_master
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/tr/

Co-authored-by: Tom De Moor <tom@controlaltdieliet.be>
Co-authored-by: Elias  Nahum <elias@mattermost.com>
Co-authored-by: kaakaa <stooner.hoe@gmail.com>
Co-authored-by: Kaya Zeren <kayazeren@gmail.com>

* [MM-30066] Allow sidebar category button width to grow and shrink as needed (#6955)

Co-authored-by: Mattermod <mattermod@users.noreply.github.com>

* Migrate team_list and team_row to typescript (#6914)

Co-authored-by: i.nikolaievskyi <ivan.nikolaievskyi@leaseplan.com>

* [MM-20482] Migrate 'components/post_view/channel_intro_message' module … (#6729)

* MM-28843 Adding feature flags to system console for easy diagnosis. (#6905)

* Adding feature flags to system console for easy diagnosis.

* Use AdminConfig type.

* Redux update.

* [MM-29850] Migrate string-refs to functional ones: this.refs.errorMessage (#6881)

* Update string ref to functional ref

* Make ref load before use

Co-authored-by: Mattermod <mattermod@users.noreply.github.com>

* [MM-30190] Show spinner when loading invoices instead of 'no invoices found' (#7012)

* [MM-T560] Add test for notifications (#6884)

Co-authored-by: Saturnino Abril <saturnino.abril@gmail.com>

* MM-20492 Migrate 'components/post_view/post_message_view' module and … (#6738)

* Cypress/E2E: Fix custom categories spec (#7011)

* [MM-30216] - Add check for undefined fileInfos (#7019)

Co-authored-by: Nevyana Angelova <nevyangelova@Nevyanas-MacBook-Pro-2.local>

* [MM-20465] migrate single_image_view to typescript (#6774)

* migrate single_image_view to typescript

* fix unit test

* resolove review comment

* Update components/single_image_view/single_image_view.tsx

* Guard clause fileinfo`

Co-authored-by: Mattermod <mattermod@users.noreply.github.com>
Co-authored-by: Nev Angelova <nevyana.angelova@mattermost.com>
Co-authored-by: Nevyana Angelova <nevyangelova@Nevyanas-MacBook-Pro-2.local>

* [MM-29903] - Check if current user is on last post when scrolling in rhs (#6920)

* Scroll user to bottom when they are on the latest post in rhs

* fix tests

* Fix type check

* Implement using getSnapshotBeforeUpdate

* Remove comment box and set refs

* Update scroll logic

* resize rhs container correctly

* Calculate with header height

* fix type error

* please linter

* update snapshot

Co-authored-by: Nevyana Angelova <nevyangelova@Nevyanas-MacBook-Pro-2.local>
Co-authored-by: Nevyana Angelova <nevyangelova@nevyanas-mbp-2.mynet>

* MM-T614 Search on Outgoing Webhooks page (#6873)

* wip

* cleanup, optimize

* remove file

Co-authored-by: Mattermost <mattermost@Michaels-MacBook-Pro.local>
Co-authored-by: Mattermod <mattermod@users.noreply.github.com>

* Cypress/E2E: Move cluster spec to enterprise (#7010)

* Cypress/E2E: Move cluster spec to enterprise

* Add @enterprise tag

* MM-20578 Migrate 'components/admin_console/system_user_detail' module… (#6801)

* [MM-20568] Migrate 'components/admin_console/system_users' module to ts (#6829)

* Fixing title text in select team icon. (#7023)

* MM-30090 Open managed resource links in a new tab  (#7024)

* MM-30090 Open managed resource links in a new tab

* MM-30090 Add ManagedResourcePaths setting

* Update test case to reflect new case

* Fix types

* Revert unnecessary type changes

* Switch mattermost-redux back to master

* MM-27903, MM-27899: Folded Reply Threads: ThreadItem and ThreadFooter (#6585)

* wip: checkpoint

* wip: fix tooltip

* wip: checkpoint

* move connected profile_picture back out of widgets

* timestamp improvements

* wip: threading components

* wip: thread footer

* timestamp story improvments

* wip: threading components

* wip: threading components

* wip: threading comps

* wip: thread menu

* update testing

* wip: testing updates

* unit tests, storybook cleanup

* tweak timestamp knob arrangement

* i18n

* stray apostrophe; snapshots-i18n

* profile_picture index

* misc cleanup

* put prop-types rule back in

* simple_tooltip remove FC

* sync relative time spec

* update snapshots

* Update index.stories.js

* Update story_box.tsx

* remove trailing space

* update url

* remove frag

* sb container width

* review fixes

* review fixes/improvements

* review/other changes

* simplify

* actually add nowrap

* fix new messages tooltip style

* cleanup

* improvements, clarity

* clearer conditionals

* remove unused css/simplify

* use text-clamp mixin, fix knob typo

* remove unused css props

* remove empty file

* fix bad role attr

* sync css; test appended button

* review changes

* badge as button if it has a click handler

* update snapshot

Co-authored-by: Mattermod <mattermod@users.noreply.github.com>

* migrate string-refs in user_list.jsx (#6704)

* migrate string-refs in user_list.jsx

* add unit test for user_list.jsx

* remove the eslint-enable/disable comments + rename this.container

Co-authored-by: Mattermod <mattermod@users.noreply.github.com>

* [MM-T556] Add e2e test for MM-T556 (#7016)

* Add e2e test for MM-T556
Add e2e test for Browser tab and team sidebar notification - no unreads/mentions
Github Issues: Fixes https://github.com/mattermost/mattermost-server/issues/15705
Jira Ticket: MM-T556

* Fix finicky test
* Move Remove mention notification to before()
* Fix broken test

* Linting

Co-authored-by: Mattermod <mattermod@users.noreply.github.com>

* MM-24505-Update-help-text-leave-team-modal (#6572)

* message update for leave team modal and updated in i18en.json

* implemented dynamic channl values and changed tests

* update failing snapshot

* added new strings for public and priivate cases

* updated desc

* update plurals in string

* removed console log statement

* modal description based on the counts

* i18n order changed

* i18n corrected

* resolved suggestions

* updated failing snapshot

* corrected messages in modals

* updated snapshot

* rewordings to modal texts

* guest modal message

* guest modal condition added along with modal message

* updated failing snapshot

* added currentuser prop to the test file

* Fixed type error in test file

* Fixes condition

* conditions for zero public & zero private for guest

* modified conditions

* Fixed modal messages

* snapshot updated

* Fixes

* MM-29929 Fix for unread messages toast on marking channel as unread (#7028)

* The initOffset we use for displaying toast should be only used
     mount as that is not a relative  scroll position and is only set
     on mount

   * Changing this to show unread toast on all occasions of marking channel as
     unread other than channel at bottom

* [MM-26386] - Respect user locale when searching for channels (#6904)

Co-authored-by: Nevyana Angelova <nevyangelova@Nevyanas-MacBook-Pro-2.local>
Co-authored-by: Mattermod <mattermod@users.noreply.github.com>

* [MM-25186] Bot username validation i8n support (#6629)

* Migrate String Refs to Functional ones - MM 16039 (#6865)

* MM-29849/MM-29942/MM-29982 Fix code theme not being applied (#7008)

* Convert 'components/post_view/post_info' module and associated tests to TypeScript (#6619)

* Convert 'components/post_view/post_info' module and associated tests to TypeScript.

Based on conversations with @devin and @abdu - marking certain props as non-mandatory.

* Fixing some review comments.

* Fixing some review comments.

* Fixing some review comments.

* Fixing some review comments.

* Fixing some issues from rebasing from latest master branch

* Handling null checks for 'getCurrentChannel' calls.

* Fixing issue with white page.

* Fixing issue with check types.

Co-authored-by: Mattermod <mattermod@users.noreply.github.com>

* [MM-30183] - No more text decoration on hover and focus  (#7020)

* Fix no text decoration on hover and focus

* revert extra space

Co-authored-by: Mattermod <mattermod@users.noreply.github.com>

* [MM-20470] Migrate emoji page and any team permission gate to typescript #15470 (#6645)

* Migrate emoji page and any team permission gate to typescript

* Convert delete_emoji_modal to typescript

Co-authored-by: i.nikolaievskyi <ivan.nikolaievskyi@leaseplan.com>
Co-authored-by: Mattermod <mattermod@users.noreply.github.com>

* [MM-30226][MM-39255] Allow a post to be sent when you do CMD + ENTER on Mac with 'Allow all messages' to be sent via CMD + ENTER (#7031)

* make a post be able to send when you do command enter when editing post

* fix linting

* Edit task to take into control mac command key

* fix linting

* [MM-30340] Update post height when comment box height change occurs (#7039)

* [MM-30340] Update post height when comment box height change occurs

* Update snaps

* Add scroll to bottom to the resize function

* Remove redundant check

Co-authored-by: Nevyana Angelova <nevyangelova@Nevyanas-MBP-2.fritz.box>

* Translations update from Weblate (#7046)

* Translated using Weblate (Japanese)

Currently translated at 98.1% (4219 of 4298 strings)

Translation: mattermost-languages-shipped/mattermost-webapp_master
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/ja/

* Translated using Weblate (Turkish)

Currently translated at 100.0% (4302 of 4302 strings)

Translation: mattermost-languages-shipped/mattermost-webapp_master
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/tr/

Translated using Weblate (Turkish)

Currently translated at 100.0% (4298 of 4298 strings)

Translation: mattermost-languages-shipped/mattermost-webapp_master
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/tr/

* Translated using Weblate (Portuguese (Brazil))

Currently translated at 96.3% (4147 of 4302 strings)

Translation: mattermost-languages-shipped/mattermost-webapp_master
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/pt_BR/

* Translated using Weblate (Dutch)

Currently translated at 99.6% (4310 of 4323 strings)

Translation: mattermost-languages-shipped/mattermost-webapp_master
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/nl/

Translated using Weblate (Dutch)

Currently translated at 99.9% (4301 of 4302 strings)

Translation: mattermost-languages-shipped/mattermost-webapp_master
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/nl/

* Translated using Weblate (Korean)

Currently translated at 79.4% (3418 of 4302 strings)

Translation: mattermost-languages-shipped/mattermost-webapp_master
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/ko/

* Translated using Weblate (Japanese)

Currently translated at 97.5% (4220 of 4328 strings)

Translation: mattermost-languages-shipped/mattermost-webapp_master
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/ja/

* Translated using Weblate (Korean)

Currently translated at 79.7% (3453 of 4328 strings)

Translation: mattermost-languages-shipped/mattermost-webapp_master
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/ko/

* Translated using Weblate (Portuguese (Brazil))

Currently translated at 97.3% (4214 of 4329 strings)

Translation: mattermost-languages-shipped/mattermost-webapp_master
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/pt_BR/

* Translated using Weblate (Portuguese (Brazil))

Currently translated at 97.3% (4215 of 4329 strings)

Translation: mattermost-languages-shipped/mattermost-webapp_master
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/pt_BR/

Co-authored-by: kaakaa <stooner.hoe@gmail.com>
Co-authored-by: Kaya Zeren <kayazeren@gmail.com>
Co-authored-by: rodrigocorsi <rodrigocorsi@gmail.com>
Co-authored-by: Tom De Moor <tom@controlaltdieliet.be>
Co-authored-by: Ji-Hyeon Gim <potatogim@potatogim.net>

* [MM-28181] e2e: add system_console/unsaved_changes_spec (#7009)

* e2e: add system_console/unsaved_changes_spec

* reflect revivew comments

* 15474 convert team selector modal to ts (#6824)

* Convert 'components/team_selector_modal' module and associated tests to TypeScript.

* Fixing review comments.

* Fixing review comments.

* Fixing review comments.

* Fixing bad merge

Co-authored-by: Mattermod <mattermod@users.noreply.github.com>

* MM-19509 Prioritize autocomplete results based on interactions and threads (#7002)

* MM-19509 Prioritize autocomplete results based on interactions and threads

  * Add sort method of auto complete results to be based on last_viewed_at as well
  * Add new prop priorityResults to auto complete so we can add profiles
    like thread interactions on top

* Fix sorting for remote results

* Add E2E test for desktop notifications for empty strings (#6799)

* Add E2E test for desktop notifications for empty strings

* Update comments based on feedback

* Typo

Co-authored-by: Mattermod <mattermod@users.noreply.github.com>

* MM-20433 - convert view_pinned_posts to typescript (#7034)

* MM-20433 - convert view_pinned_posts to typescript

* fix linter errors

Co-authored-by: Pablo Velez <pvelez@bp-3.com>
Co-authored-by: Mattermod <mattermod@users.noreply.github.com>

* Cypress/E2E: fix test (#7052)

* fix e2e test

* make trial user configurable via env

* fix order

* [MM-29855] Migrate string-refs to functional ones: this.refs.content (#6867)

* Update string refs to functional component based refs

* Update string refs to functional component based refs

* [MM-27231]: e2e for T1880 - deleted token cannot be used to post (#6901)

* update api method to return more data, and add method to revoke token

* test for T1880 - deletd token can't be used to post

* fix comment

* move methods to better place

Co-authored-by: Mattermod <mattermod@users.noreply.github.com>

* Fix menu rendering behind input box in RHS. (#7061)

* [MM-27708] Disable Plugin on Removal (#6518)

* [MM-30104][MM-30105] Fix up banners in payment_info and billing_subscription pages (#7063)

* Fix up banners in payment_info and billing_subscription pages

* Reset package-lock

* Remove comment

* [MM-27556] UI For new system roles (#6529)

* Add translations

* Basic skeleton without subsections visible

* Allow roles to be saved and fix up styling

* Dont allow sysadmins to be edited and dont allow self to be removed

* Cleanup

* Add translations

* Save state properly

* Update redux

* Minor styling changes

* Update redux

* Bug fixes

* Rename datagrid search to onSearch

* Cleanup

* UX fixes

* Fix snaps

* Forgot to check this in

* Fix console error

* Fix snaps

* Expand by default if mixed access

* update package json files

* address PR comments

* update redux hash

* update redux hash

* make disabled

* add set navgiation blocked

* Fix hash

* make necessary changes

* make read only admin editable

* update function name

* fix type check

* fix lint issue

* udpate redux hash

* update search

* update snap test

* fix set navigation blocked after save

* make conditional rendering for system manager

* fix linting

* go back after saving successfully

* updat redux hash

* Add Beta Tag

Co-authored-by: Mattermod <mattermod@users.noreply.github.com>
Co-authored-by: Hossein Ahmadian-Yazdi <hyazdi1997@gmail.com>

* [MM-20428] Migrate terms of service to Typescript (#6965)

* First pass

* Added types everywhere

* Fixed ESLint warnings and errors

* Fix incorrect import

* Updated snapshot

* PR review feedback

Co-authored-by: Christophe Carpentier <christophe.carpentier@imascap.com>
Co-authored-by: Mattermod <mattermod@users.noreply.github.com>

* [MM-29621] Only load the stripe library when cloud components are actually rendered (#7067)

* Only load the stripe library when cloud components are actually rendered

* Use proper return type

* Remove async

* MM-20412: Migrate 'components/channel_header_mobile/show_search_button' module to TypeScript (#6969)

Co-authored-by: Mattermod <mattermod@users.noreply.github.com>

* MM 20404 Migrate 'components/announcement_bar/version_bar' module and associated tests to TypeScript (#6976)

* MM-20404

* MM-20404 Migrate 'components/announcement_bar/version_bar' module and associated tests to TypeScript

* fix lint

* MM-20404 Migrate 'components/announcement_bar/version_bar' module and associated tests to TypeScript

* fix linter

Co-authored-by: Mattermod <mattermod@users.noreply.github.com>

* MM-27229 - Cypress/E2E: Automate backlogs - BOT Accounts - Part 06 (10 test cases) (#6772)

Co-authored-by: Prapti <praptishrestha@gmail.com>
Co-authored-by: Caleb Roseland <caleb@calebroseland.com>
Co-authored-by: Mattermod <mattermod@users.noreply.github.com>

* migrate refs icon_url.  #15801 (#6754)

Automatic Merge

* [GH-16035] Migrating refs plugin_management.tsx (#6866)

Automatic Merge

* [MM-29515] Hide imports tab when in cloud installation (#7069)

* Hide imports tab when in cloud installation

* fix types and linter

* Revert package-lock to master

* Make isCloud optional

* MM-T446 DM More... searching from page 2 of user list (#7054)

* wip

* wip

* revision

* selector fix

* fix

Co-authored-by: Mattermod <mattermod@users.noreply.github.com>

* DOPS-243 (#7075)

DOPS-243 (#7075)

* [GH-13483] Migrate 'components/channel_invite_modal' module and associated tests to TypeScript (#6968)

* [WIP] migration to typescript

* [WIP] further typescript changes

* finalized move of component to typescript

* [WIP] move index file to typescript

* updated test to typescript

* fix for types in index file

* removed failing class import

* [No Ticket] Update to latest redux hash and fixing test cases with missing types (#7084)

Automatic Merge

* [MM-27154] Cypress tests: Incoming Webhooks (#6977)

* Incoming webhooks cypress tests

* Remove unused variable

* PR feedback

* add license

* PR feedback and lint

* fix import path

Co-authored-by: Saturnino Abril <saturnino.abril@gmail.com>

Co-authored-by: Mattermod <mattermod@users.noreply.github.com>
Co-authored-by: Saturnino Abril <saturnino.abril@gmail.com>

* fix failing tests due to announcement bar (#7077)

* MM-27315 Cypress tests for Integrations > Slash command auto-complete (7 test cases) (#6909)

* MM-30359: Cypress/E2E: Account Settings > Email (#7051)

* MM-30359: Cypress/E2E: Account Settings > Email

This PR automates the following test cases:

MM-T2066

MM-T2067

MM-T2068

MM-T2069

MM-T2070

MM-T2071

MM-T2072

MM-T2073

https://mattermost.atlassian.net/browse/MM-30359

```release-note
NONE
```

* fix lint

* add the other tests

* Address review comments

Co-authored-by: Mattermod <mattermod@users.noreply.github.com>

* [MM-T561] Add e2e test for MM-T561 (#7015)

* Add e2e test
Add test for: Browser tab and team sidebar - direct messages don't add indicator on team icon in team sidebar (but do in browser tab)
Github Issues: Fix https://github.com/mattermost/mattermost-server/issues/15700
Jira Ticket: MM-T561

* Apply suggested review

* Add cleanup for MM-T560_2

* Linting

* Separate test file

* Linting

* Add prerequisite

* Rename file

* Remove old test

Co-authored-by: Mattermod <mattermod@users.noreply.github.com>

* [MM-28255] Add tests for OAuth Apps (#6558)

* Add tests for OAuth Apps

* Add remaining tests

* Update test names, fix typos and add explicit status codes

* Add group and license check

* Move tests to enterprise folder

Co-authored-by: Mattermod <mattermod@users.noreply.github.com>

* MM-29858: Migrate string refs to functional ones in autosize textarea component (#6885)

* MM-29858: Migrate string refs to functional ones in autosize textarea component

* MM-29858: Rename reference instance variable with suffix Ref

* MM-29858: Use camel casing for textarea reference variable

* MM-29858: Allow empty value for textarea

Co-authored-by: Mattermod <mattermod@users.noreply.github.com>

* Migrate errorMessage string ref (#6882)

Automatic Merge

* MM-T329 Image link preview (#7005)

* wip

* wip

* finished

* revision

* remove log

Co-authored-by: Mattermod <mattermod@users.noreply.github.com>

* [MM-28150] e2e: add MM-T924, MM-T928, MM-T929, MM-T930 (#7045)

* e2e: add MM-T924, MM-T928, MM-T929, MM-T930

* reflect review comments

Co-authored-by: Mattermod <mattermod@users.noreply.github.com>

* MM-30363: Cypress/E2E: Automate backlogs - Edit Bot Username (1 test case) (#7073)

* MM-30373 - first iteration

* MM-30377 - first iteration

* remove spurious file

* MM-30377 - further iteration

* MM-30363 - first iteration

* remove extra file

* some cleanup

* remoe extra space

Co-authored-by: Catalin Tomai <catalin.tomai@mattermost.com>
Co-authored-by: Mattermod <mattermod@users.noreply.github.com>

* promote and demote tests to/from prod (#7080)

* Cypress/E2E: Fix toast appears unread spec (#7081)

* change super to system (#7076)

* MM-20418: Migrate 'components/channel_selector_modal' module and associated tests to TypeScript (#6975)

* DOPS-243: Fix images (#7089)

DOPS-243: Fix images (#7089)

* MM-T439 Town Square is not marked as unread for existing users when a new user is added to the team (#7053)

Automatic Merge

* [MM-20582] Migrate 'components/admin_console/team_channel_settings/ch… (#6840)

* MM-20465 Fix for collapse/expand of image preview (#7085)

* The toggle function requires id and not post
  * This was most likely changed to fix a ts error

* MM-20465 Revert usage of getCurrentChannel to getCurrentChannelId where possible (#7064)

* [MM-29821] Prefer TypeScript files over JavaScript in webpack (#7090)

* [MM-30317] add MANAGE_REMOTE_CLUSTERS permission (#7060)

* add MANAGE_REMOTE_CLUSTERS permission

* Update i18n/en.json

Co-authored-by: Doug Lauder <wiggin77@warpmail.net>

Co-authored-by: Doug Lauder <wiggin77@warpmail.net>

* MM-20416: Migrate 'components/channel_header_mobile/collapse_lhs_button' module to TypeScript (#6971)

Co-authored-by: Mattermod <mattermod@users.noreply.github.com>

* Remove Cloud billing flag from System Console (#7096)

(cherry picked from commit 6c35b79ac663756b5e31f0b878531aabec68efd3)

Co-authored-by: Maria A Nunez <maria.nunez@mattermost.com>

* Translations update from Weblate (#7100)

* Translated using Weblate (Turkish)

Currently translated at 100.0% (4390 of 4390 strings)

Translation: mattermost-languages-shipped/mattermost-webapp_master
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/tr/

Translated using Weblate (Turkish)

Currently translated at 100.0% (4329 of 4329 strings)

Translation: mattermost-languages-shipped/mattermost-webapp_master
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/tr/

* Translated using Weblate (German)

Currently translated at 90.4% (3915 of 4329 strings)

Translation: mattermost-languages-shipped/mattermost-webapp_master
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/de/

* Translated using Weblate (Korean)

Currently translated at 80.1% (3468 of 4329 strings)

Translation: mattermost-languages-shipped/mattermost-webapp_master
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/ko/

* Translated using Weblate (Portuguese (Brazil))

Currently translated at 99.9% (4328 of 4329 strings)

Translation: mattermost-languages-shipped/mattermost-webapp_master
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/pt_BR/

* Translated using Weblate (Russian)

Currently translated at 95.0% (4113 of 4329 strings)

Translation: mattermost-languages-shipped/mattermost-webapp_master
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/ru/

* Translated using Weblate (Dutch)

Currently translated at 98.5% (4328 of 4390 strings)

Translation: mattermost-languages-shipped/mattermost-webapp_master
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/nl/

Translated using Weblate (Dutch)

Currently translated at 98.4% (4322 of 4390 strings)

Translation: mattermost-languages-shipped/mattermost-webapp_master
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/nl/

* Translated using Weblate (Chinese (Simplified))

Currently translated at 96.7% (4246 of 4390 strings)

Translation: mattermost-languages-shipped/mattermost-webapp_master
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/zh_Hans/

* Translated using Weblate (Romanian)

Currently translated at 93.8% (4119 of 4390 strings)

Translation: mattermost-languages-shipped/mattermost-webapp_master
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/ro/

Translated using Weblate (Romanian)

Currently translated at 92.7% (4072 of 4390 strings)

Translation: mattermost-languages-shipped/mattermost-webapp_master
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/ro/

* Update translation files

Updated by "Cleanup translation files" hook in Weblate.

Translation: mattermost-languages-shipped/mattermost-webapp_master
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/

* Translated using Weblate (Dutch)

Currently translated at 98.5% (4325 of 4390 strings)

Translation: mattermost-languages-shipped/mattermost-webapp_master
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/nl/

Co-authored-by: Kaya Zeren <kayazeren@gmail.com>
Co-authored-by: Elisabeth Kulzer <elisabeth.kulzer@mattermost.com>
Co-authored-by: Ji-Hyeon Gim <potatogim@potatogim.net>
Co-authored-by: rodrigocorsi <rodrigocorsi@gmail.com>
Co-authored-by: Alexey Napalkov <flynbit@gmail.com>
Co-authored-by: Tom De Moor <tom@controlaltdieliet.be>
Co-authored-by: aeomin <lin@aeomin.net>
Co-authored-by: Viorel-Cosmin Miron <cosmin@uhlhost.net>

* Migrate 'components/announcement_bar/default_announcement_bar' module and associated tests to TypeScript (#6963)

* rename file

* working except for test file

* restore unincluded test file to jsx

* pass npm make check

* update snapshot

* respond to review comments

* checkout package-lock.json

* revert package-lock.json changes

* fix linting errors

Co-authored-by: Mattermod <mattermod@users.noreply.github.com>

* Migrate this.ref.dotMenu to functional (#6957)

* Migrate this.ref.dotMenu to functional

* Fixed formatting

* Fix reference

* rename dotMenu to dotMenuRef for consistency with other PRs, remove comments

* Removed blanked line to pass lint check

Co-authored-by: root <root@DESKTOP-4IBHFV5.localdomain>
Co-authored-by: Mattermod <mattermod@users.noreply.github.com>

* MM-20897 Add category muting (#7033)

* MM-20897 Add ability to mute categories

* Increase timeout to ensure test passes

* Add E2E test for moving channels into muted categories

* Update mattermost-redux to branch

* Fix unit tests

* Fix types

* Update snapshot

* asdf

* Add additional E2E test and API client infrastructure

* MM-24293 Fix to have group channels return in quick switcher with space (#7059)

* MM-24293 Fix to have group channels return in quick siwchter with space

  * Split the  search term by spaces and match with users in
    group channels

* Update components/suggestion/switch_channel_provider.jsx

Co-authored-by: Guillermo Vayá <guivaya@gmail.com>

Co-authored-by: Guillermo Vayá <guivaya@gmail.com>
Co-authored-by: Mattermod <mattermod@users.noreply.github.com>

* If card year is 0 return false for isExpired (#7101)

* Converted 'dot_menu' to typescript. (#6825)

* Migrate string refs of reset password modal (#7038)

Automatic Merge

* MM-20415 Migrate 'components/channel_header_mobile/unmute_channel_button' module and associated tests to TypeScript (#6972)

* MM-30477 Fix for autocomplete not closing (#7093)

Automatic Merge

* MM-20897 Cleanup a couple missed issues (#7106)

* MM-T638 Webhook posts when webhook creator is not a member of the channel (#7091)

* wip

* wip

* wip

* wip

* added check

* small fix

* fix

Co-authored-by: Mattermod <mattermod@users.noreply.github.com>

* [MM-20481] Migrate 'components/post_view/post_body_additional_content' module and associated tests to TypeScript (#6668)

* [MM-20481] Migrate 'components/post_view/post_body_additional_content' module and associated tests to TypeScript

Fixes https://github.com/mattermost/mattermost-server/issues/15460
JIRA: https://mattermost.atlassian.net/browse/MM-20481

* Make actions attribute non nullable

* Require YoutubeVideo's postId property since it really is

* Fix tests

* Add stages for onprem

* Add build-vars stage

* set isDisabled prop for site > notices (#7103)

Automatic Merge

* [MM-27931][MM-30158] Multi-selection and dragging of channels (#6979)

* [MM-27931] Multiselection of channels

* Test fix

* Lint fix

* Change opacity of selected state to 0.24

* Added hover state for selected channels

* Tests for multiSelect

* Drag and drop working (without visuals, missing redux commit)

* Multi drag and drop styles (fade the selected channels, might change)

* Don't allow multisellected channels to be dropped where they shouldn't be

* Lint, type, test, translation fixes

* Allow dragging of non matching channel groups by rejecting the channels that don't match

* Redux update

* Another test fix

* Fixed selected count style to work off of center channel exclusively

* Added really obvious styling

* Style change/PR feedback

* Style change

* Include active channel in all initial selections

* PR feedback

* Add constant for shifted index

Co-authored-by: Mattermod <mattermod@users.noreply.github.com>

* [MM-20572] Migrate 'components/admin_console/compliance_reports' to TypeScript (#13500) (#7036)

Automatic Merge

* MM-30087 Remove direct dependency between Client4 and Rudder (#7056)

* MM-30087 Remove direct dependency between Client4 and Rudder

* Update tests

* Switch mattermost-redux to master

* Fix missing types

* Change how we mock and import rudder

* Remove test that checks if events are sent to Rudder

* [MM_20423]'external_image'module to ts (#16151) (#7025)

- migrate ts index.js file
- migrate ts for external_image.tsx
- migrate ts for external_images.test.jsx

Co-authored-by: Hossein Ahmadian-Yazdi <hyazdi1997@gmail.com>

* Fix issue 16144: migrate components/claim module and tests to TypeScript (#7043)

Automatic Merge

* MM-T2056 e2e to test, Username change reflecting for other users (#7074)

Co-authored-by: Mattermod <mattermod@users.noreply.github.com>

* [MM-26334] Fixes direct messages loading screen misalignment (#6813)

Summary:
Reduces the height of the loading screen so it is more centered and/or unintrusive(small screens) enough to remove the scroll bar during loading.

Ticket Link:
Fixes https://github.com/mattermost/mattermost-server/issues/15926

* Translations update from Weblate (#7122)

* Update translation files

Updated by "Cleanup translation files" hook in Weblate.

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/

* Translated using Weblate (Romanian)

Currently translated at 93.8% (4121 of 4392 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/ro/

* Translated using Weblate (Chinese (Simplified))

Currently translated at 98.9% (4345 of 4392 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/zh_Hans/

* Translated using Weblate (Turkish)

Currently translated at 100.0% (4392 of 4392 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/tr/

* Translated using Weblate (Spanish)

Currently translated at 97.7% (4292 of 4392 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/es/

* Translated using Weblate (Dutch)

Currently translated at 98.8% (4341 of 4392 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/nl/

Co-authored-by: Viorel-Cosmin Miron <cosmin@uhlhost.net>
Co-authored-by: aeomin <lin@aeomin.net>
Co-authored-by: Kaya Zeren <kayazeren@gmail.com>
Co-authored-by: Elias  Nahum <elias@mattermost.com>
Co-authored-by: Tom De Moor <tom@controlaltdieliet.be>

* MM-28153: Cypress/E2E: Automate backlogs - System Console > Environment (8 test cases) (#7049)

* MM-30377: Cypress/E2E: Automate backlogs - Messaging > Channel and Post Links (6 test cases) (#7072)

* MM-30355: Cypress/E2E: Automate backlogs - Account Settings > Username (6 test cases) (#7062)

* MM-27208 Add tests for MM-T1684, MM-T1687, and MM-T1688 (#7124)

* MM-27208 MM-T1684 Add test number to existing test case

* Fix makeClient for requests without a body

* MM-27208 MM-T1687 Add test for another user archiving a channel

* MM-27208 MM-T1688 Add test for searching in archived channels

* Translations update from Weblate (#7139)

* Translated using Weblate (Spanish)

Currently translated at 99.1% (4357 of 4393 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/es/

* Translated using Weblate (Dutch)

Currently translated at 98.8% (4344 of 4393 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/nl/

* Translated using Weblate (Dutch)

Currently translated at 98.9% (4349 of 4393 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/nl/

* Translated using Weblate (Portuguese (Brazil))

Currently translated at 98.4% (4327 of 4393 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/pt_BR/

Co-authored-by: Elias  Nahum <elias@mattermost.com>
Co-authored-by: Tom De Moor <tom@controlaltdieliet.be>
Co-authored-by: rodrigocorsi <rodrigocorsi@gmail.com>

* [MM-20498] components/post_view/combined_system_message' to TypeScript (#7109)

* Added Initial Ts conversion to last_users and last_user_test

* Converted combined system message

* Completed all files conversion

* Updated Snapshots

* Minor fix

* Minor Fixes

* Minor Fixes

* Migrate 'components/sidebar_right_menu' module to TypeScript (#6962)

* Converted 'leave_channel' to typescript. (#7115)

Co-authored-by: Mattermod <mattermod@users.noreply.github.com>

* [MM-20581] Migrate index to TS in 'components/admin_console/team_channel_settings/channel/details' module (#6924)

* mark browser.focused as false if starting in the background (#7050)

Co-authored-by: Mattermod <mattermod@users.noreply.github.com>

* MM-27989 Remove experimental setting for data prefetch (#7094)

Co-authored-by: Harrison Healey <harrisonmhealey@gmail.com>

* [MM-27207] e2e leave archived channels I - last (#7117)

Automatic Merge

* MM-30370: Cypress/E2E: Automate backlogs - Keyboard Shortcuts (10 test cases) (#7113)

Automatic Merge

* MM-30371: Cypress/E2E: Automate backlogs - Keyboard Shortcuts part 2 (10 test cases) (#7112)

* temporary work

* further iteration

* further work

* Address CR comments

Co-authored-by: Catalin Tomai <catalin.tomai@mattermost.com>
Co-authored-by: Mattermod <mattermod@users.noreply.github.com>

* [MM-29853] Migrate string-refs to functional ones: this.refs.fileInput (#7153)

* Update string refs to functional component based refs

* Update this.refs.fileInput to this.fileInputRef react ref function

* Update string refs to functional component based refs

* Update this.refs.fileInput to this.fileInputRef react ref function

Co-authored-by: lestgabo <lestgabo@gmail.com>

* Fix display of boolean feature flags in system console. (#7156)

* MM-30992 Add the capability to run part by part for Cypress parallel testing (part 1) (#7140)

* add the capability to run part by part for Cypress parallel testing

* update per comment and add default values

* throw an error if --part is greater than --of

* Cypress/E2E: Fix email verification that works both with current, Cloud and parallel testing (part 2) (#7142)

* add the capability to run part by part for Cypress parallel testing

* fix E2E email verification that works with cloud and parallel testing

* add constants

* update per comment

* Cypress/E2E: Fix for several flaky tests (part 3) (#7143)

* add the capability to run part by part for Cypress parallel testing

* fix E2E email verification that works with cloud and parallel testing

* add constants

* fix flaky tests

* Cypress/E2E: Fix tests for cloud (part 4) (#7147)

* add the capability to run part by part for Cypress parallel testing

* fix E2E email verification that works with cloud and parallel testing

* add constants

* fix flaky tests

* fix tests for cloud

* clean up label and flag

* simplify log of license status and add log of server details

* update per comment

* fix return of Cypress custom commands (#7159)

* [MM-30354] e2e fullname (#7126)

Automatic Merge

* Migrate to typescript Apps related files (#7021)

* Migrate to typescript Apps related files

* Use correct react-overlays types version

* PR feedback

* fix types

* fix types

* temporarily use any

* remove unused import

* Remove unneeded comments

* Extract stringToNumber to utils

* Fix minor warning on the console

* Fix lint

Co-authored-by: Michael Kochell <6913320+mickmister@users.noreply.github.com>

* MM-30972 Add proper padding to code preview line numbers (#7155)

Automatic Merge

* MM-28412: Add tm4j key (#7171)

* [MM-26593] Disable pointer events on LHS scrollbar when scrolling isn't required (#7120)

Co-authored-by: Mattermod <mattermod@users.noreply.github.com>

* Update NOTICE.txt (#7102)

Co-authored-by: Mattermod <mattermod@users.noreply.github.com>

* MM-30376 Cypress/E2E: Automate backlogs - Messaging (8 test cases) (#7141)

Co-authored-by: Saturnino Abril <saturnino.abril@gmail.com>
Co-authored-by: Mattermod <mattermod@users.noreply.github.com>

* [MM-30969] Drop aria-label from Marketplace item description (#7133)

* Drop aria-label from Marketplace item description

* Add general aria-label

* Translations update from Weblate (#7182)

* Translated using Weblate (Portuguese (Brazil))

Currently translated at 99.9% (4390 of 4391 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/pt_BR/

Translated using Weblate (Portuguese (Brazil))

Currently translated at 99.8% (4383 of 4391 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/pt_BR/

Translated using Weblate (Portuguese (Brazil))

Currently translated at 98.9% (4344 of 4391 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/pt_BR/

Translated using Weblate (Portuguese (Brazil))

Currently translated at 98.9% (4346 of 4393 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/pt_BR/

* Translated using Weblate (Romanian)

Currently translated at 100.0% (4391 of 4391 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/ro/

Translated using Weblate (Romanian)

Currently translated at 100.0% (4391 of 4391 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/ro/

Translated using Weblate (Romanian)

Currently translated at 100.0% (4393 of 4393 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/ro/

* Translated using Weblate (Chinese (Simplified))

Currently translated at 99.9% (4390 of 4391 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/zh_Hans/

Translated using Weblate (Chinese (Simplified))

Currently translated at 99.2% (4356 of 4391 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/zh_Hans/

Translated using Weblate (Chinese (Simplified))

Currently translated at 99.1% (4356 of 4393 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/zh_Hans/

* Update translation files

Updated by "Cleanup translation files" hook in Weblate.

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/

Update translation files

Updated by "Cleanup translation files" hook in Weblate.

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/

* Translated using Weblate (Dutch)

Currently translated at 99.9% (4390 of 4391 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/nl/

Translated using Weblate (Dutch)

Currently translated at 99.2% (4359 of 4391 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/nl/

* Translated using Weblate (Japanese)

Currently translated at 99.9% (4390 of 4391 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/ja/

* Translated using Weblate (Russian)

Currently translated at 93.9% (4125 of 4391 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/ru/

* Translated using Weblate (Turkish)

Currently translated at 100.0% (4391 of 4391 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/tr/

Co-authored-by: rodrigocorsi <rodrigocorsi@gmail.com>
Co-authored-by: Viorel-Cosmin Miron <cosmin@uhlhost.net>
Co-authored-by: aeomin <lin@aeomin.net>
Co-authored-by: Tom De Moor <tom@controlaltdieliet.be>
Co-authored-by: kaakaa <stooner.hoe@gmail.com>
Co-authored-by: Lev <blendamedkiba94@gmail.com>
Co-authored-by: Kaya Zeren <kayazeren@gmail.com>

* MM-31115 - Fixed "how billing works" cloud link (#7183)

* [MM-30372] Cypress/E2E: Automate backlogs - Messaging > Reply (#7149)

* Implement Cypress test

* Fix comments

* Update e2e/cypress/integration/messaging/message_reply_part2_spec.js

Co-authored-by: Saturnino Abril <saturnino.abril@gmail.com>

Co-authored-by: Saturnino Abril <saturnino.abril@gmail.com>

* MM-30374: Cypress/E2E: Messaging > Markdown (#7146)

* MM-30374: Cypress/E2E: Messaging > Markdown

This PR automates

MM-T1734

MM-T2241

MM-T2242

MM-T2244

MM-T2246

https://mattermost.atlassian.net/browse/MM-30374

```release-note
NONE
```

* incorporate review comments

Co-authored-by: Mattermod <mattermod@users.noreply.github.com>

* MM-30810 Remove special props from /me post (#7163)

* [MM-30449] - Hide create category option when unread filter is enabled (#7151)

* [MM-30449] - Hide create category option when unread filter is enabled

* Fix lint

* Update snaps

Co-authored-by: Nevyana Angelova <nevyangelova@Nevyanas-MBP-2.fritz.box>

* Add Billing Permissions (#7127)

* Add billing permissions

* add it to any

* address comments

* fix linting

* address COMMENts!

Co-authored-by: Mattermod <mattermod@users.noreply.github.com>

* Remove usage of center-channel-color-## CSS variables from header components (#7118)

Co-authored-by: Mattermod <mattermod@users.noreply.github.com>

* MM-27688: OpenId Connect (#7027)

* open id initial commit

* fix for tests, remove force error

* PR cleanup

* fix upgrade gitlab

* update redux

* add cypress test, make fixes

* add cypress, fix for cypress

* add feature flag

* fix linter errors

* update redux

* add feature flag to unit tests

* fix linting

* making configContains a one liner

* fix test case and snapshot and linting

* updates from code review

* revert changes

* update redux

* uncomment feature flags check

* remove unnecessary span

* fix lint

* clean up some code

* update cypress tests

* lint fixes

* revert package-lock

* revert package-lock

* fix capitalization

* update redux

* update cypress tests to use findByRole

* fix text differences from figma

* remove feature flag

* update cypress test

* fix lint

* updates from review

* fix lint

* Revert "fix lint"

This reverts commit 3271dc7c2811d6e66bc1263cddd44906a5c73e52.

* fix lint

* fix lint

* fix snapshots

* fix bad merge

* update redux

Co-authored-by: Hossein Ahmadian-Yazdi <hyazdi1997@gmail.com>
Co-authored-by: Mattermod <mattermod@users.noreply.github.com>

* Mm 30380/cypress dms and gms coverage (#7181)

* Add DMs and GMs coverage as per MM-30380

* Fix linter

* Apply PR suggestions

* Fix linter complains

* [MM-30390] - Add specs for team settings (#7105)

* [MM-30390] - Add specs for team settings

* Update e2e/cypress/integration/team_settings/teams_spec.js

Co-authored-by: Saturnino Abril <saturnino.abril@gmail.com>

* Update e2e/cypress/integration/team_settings/teams_spec.js

Co-authored-by: Saturnino Abril <saturnino.abril@gmail.com>

* Update e2e/cypress/integration/team_settings/teams_spec.js

Co-authored-by: Saturnino Abril <saturnino.abril@gmail.com>

* Update e2e/cypress/integration/team_settings/teams_spec.js

Co-authored-by: Saturnino Abril <saturnino.abril@gmail.com>

* Update e2e/cypress/integration/team_settings/teams_spec.js

Co-authored-by: Saturnino Abril <saturnino.abril@gmail.com>

* Resolve PR comments

* resolve PR comments

* Update e2e/cypress/integration/team_settings/teams_spec.js

Co-authored-by: Saturnino Abril <saturnino.abril@gmail.com>

* Update e2e/cypress/integration/team_settings/teams_spec.js

Co-authored-by: Saturnino Abril <saturnino.abril@gmail.com>

* Update e2e/cypress/integration/team_settings/teams_spec.js

Co-authored-by: Saturnino Abril <saturnino.abril@gmail.com>

* Update e2e/cypress/integration/team_settings/teams_spec.js

Co-authored-by: Saturnino Abril <saturnino.abril@gmail.com>

* Resolve PR comments

* resolve linter

* Fix lint

Co-authored-by: Nevyana Angelova <nevyangelova@Nevyanas-MacBook-Pro-2.local>
Co-authored-by: Saturnino Abril <saturnino.abril@gmail.com>
Co-authored-by: Mattermod <mattermod@users.noreply.github.com>
Co-authored-by: Nevyana Angelova <nevyangelova@Nevyanas-MBP-2.fritz.box>

* [MM-30358] - Add account position spec (#7108)

* [MM-30358] - Add account position spec

* Resolve PR comments

* Resolve PR comments

* Resolve failing test

* fix linte

Co-authored-by: Nevyana Angelova <nevyangelova@Nevyanas-MacBook-Pro-2.local>
Co-authored-by: Nevyana Angelova <nevyangelova@Nevyanas-MBP-2.fritz.box>

* [MM-20487] Migrate 'components/post_view/post_time' module and associated tests to TypeScript (#6625)

* [MM-29418] Apply the same sorting function (#15920) (#7128)

* [MM-20432] Migrate components/channel_view module and associated tests to TypeScript (#6989)

* [MM-27927] - Revert mattermost-redux (#7196)

* [MM-30364] - Add spec for channel settings (#7111)

Automatic Merge

* Bump highlight.js from 10.1.2 to 10.4.1 (#7168)

* Bump highlight.js from 10.1.2 to 10.4.1

Bumps [highlight.js](https://github.com/highlightjs/highlight.js) from 10.1.2 to 10.4.1.
- [Release notes](https://github.com/highlightjs/highlight.js/releases)
- [Changelog](https://github.com/highlightjs/highlight.js/blob/master/CHANGES.md)
- [Commits](https://github.com/highlightjs/highlight.js/compare/10.1.2...10.4.1)

Signed-off-by: dependabot[bot] <support@github.com>

* Rename references from tex to latex

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Mattermod <mattermod@users.noreply.github.com>
Co-authored-by: Harrison Healey <harrisonmhealey@gmail.com>

* [MM-29949] Add extra space for team name and user name on new sidebar (#6949)

Co-authored-by: Mattermod <mattermod@users.noreply.github.com>

* [MM-27213] Cypress/E2E: Automate backlogs - Auth - Part 01 (10 test cases) (#6860)

* continue working on tests

* cover more TESTSSSS

* FINITO!!!!

* fix linting

* fix linting

* update test

* Address comments

* use getRandomId

* fix linting

* authentication file in enterprise

* Update e2e/cypress/integration/system_console/authentication/authentication_spec.js

Co-authored-by: Joseph Baylon <joseph.baylon@mattermost.com>

* Update e2e/cypress/integration/system_console/authentication/authentication_spec.js

Co-authored-by: Joseph Baylon <joseph.baylon@mattermost.com>

* Update e2e/cypress/integration/system_console/authentication/authentication_spec.js

Co-authored-by: Joseph Baylon <joseph.baylon@mattermost.com>

* Update e2e/cypress/integration/system_console/authentication/authentication_spec.js

Co-authored-by: Joseph Baylon <joseph.baylon@mattermost.com>

* Update e2e/cypress/integration/system_console/authentication/authentication_spec.js

Co-authored-by: Joseph Baylon <joseph.baylon@mattermost.com>

* Update e2e/cypress/integration/system_console/authentication/authentication_spec.js

Co-authored-by: Joseph Baylon <joseph.baylon@mattermost.com>

* Update e2e/cypress/integration/system_console/authentication/authentication_spec.js

Co-authored-by: Joseph Baylon <joseph.baylon@mattermost.com>

* Update e2e/cypress/integration/system_console/authentication/authentication_spec.js

Co-authored-by: Joseph Baylon <joseph.baylon@mattermost.com>

* Update e2e/cypress/integration/system_console/authentication/authentication_spec.js

Co-authored-by: Joseph Baylon <joseph.baylon@mattermost.com>

* Update e2e/cypress/integration/system_console/authentication/authentication_spec.js

Co-authored-by: Joseph Baylon <joseph.baylon@mattermost.com>

* Update e2e/cypress/integration/system_console/authentication/authentication_spec.js

Co-authored-by: Joseph Baylon <joseph.baylon@mattermost.com>

* Update e2e/cypress/integration/system_console/authentication/authentication_spec.js

Co-authored-by: Joseph Baylon <joseph.baylon@mattermost.com>

* Update e2e/cypress/integration/system_console/authentication/authentication_spec.js

Co-authored-by: Joseph Baylon <joseph.baylon@mattermost.com>

* Update e2e/cypress/integration/system_console/authentication/authentication_spec.js

Co-authored-by: Joseph Baylon <joseph.baylon@mattermost.com>

* Update e2e/cypress/integration/system_console/authentication/authentication_spec.js

Co-authored-by: Joseph Baylon <joseph.baylon@mattermost.com>

* Update e2e/cypress/integration/system_console/authentication/authentication_spec.js

Co-authored-by: Joseph Baylon <joseph.baylon@mattermost.com>

* Update e2e/cypress/integration/system_console/authentication/authentication_spec.js

Co-authored-by: Joseph Baylon <joseph.baylon@mattermost.com>

* Update e2e/cypress/integration/system_console/authentication/authentication_spec.js

Co-authored-by: Joseph Baylon <joseph.baylon@mattermost.com>

* Update e2e/cypress/integration/system_console/authentication/authentication_spec.js

Co-authored-by: Joseph Baylon <joseph.baylon@mattermost.com>

* Update e2e/cypress/integration/system_console/authentication/authentication_spec.js

Co-authored-by: Joseph Baylon <joseph.baylon@mattermost.com>

* Update e2e/cypress/integration/system_console/authentication/authentication_spec.js

Co-authored-by: Joseph Baylon <joseph.baylon@mattermost.com>

* Update e2e/cypress/integration/system_console/authentication/authentication_spec.js

Co-authored-by: Joseph Baylon <joseph.baylon@mattermost.com>

* Update e2e/cypress/integration/system_console/authentication/authentication_spec.js

Co-authored-by: Joseph Baylon <joseph.baylon@mattermost.com>

* Update e2e/cypress/integration/system_console/authentication/authentication_spec.js

Co-authored-by: Joseph Baylon <joseph.baylon@mattermost.com>

* Fix linting

* Address comments

* some small fixes

* Change to standard as much as possible

Co-authored-by: Joseph Baylon <joseph.baylon@mattermost.com>
Co-authored-by: Mattermod <mattermod@users.noreply.github.com>

* [MM-30447] - Add create direct message option to category menu (#7152)

* [MM-30447] - Add create direct message option to category menu

* Update snaps

* capitalise message

* fix linter

Co-authored-by: Nevyana Angelova <nevyangelova@Nevyanas-MBP-2.fritz.box>
Co-authored-by: Nevyana Angelova <nevyangelova@Nevyanas-MacBook-Pro-2.local>

* [GH-16162] Migrate 'components/quick_switch_modal' module and associated tests to TypeScript (#7107)

* [WIP] moved component to typescript

* moved index & test to typescript

* minor type update

* minor type fixes

Co-authored-by: Mattermod <mattermod@users.noreply.github.com>

* [MM-28150] add remaining test cases (#7078)

* e2e: add MM-T924, MM-T928, MM-T929, MM-T930

* reflect review comments

* add remaining test cases

* reflect reveiew comments

* add timeouts

* fix utility function

* Update e2e/cypress/support/api/user.d.ts

Co-authored-by: Saturnino Abril <saturnino.abril@gmail.com>

Co-authored-by: Mattermod <mattermod@users.noreply.github.com>
Co-authored-by: Saturnino Abril <saturnino.abril@gmail.com>

* fix help text in tooltip (#6996)

* small fix to typescript migration (#7170)

Co-authored-by: Mattermod <mattermod@users.noreply.github.com>

* MM-30373 - Cypress/E2E: Automate backlogs - Messaging > @ autocomplete (9 test cases) (#7066)

* Bump ini from 1.3.5 to 1.3.7 (#7206)

Bumps [ini](https://github.com/isaacs/ini) from 1.3.5 to 1.3.7.
- [Release notes](https://github.com/isaacs/ini/releases)
- [Commits](https://github.com/isaacs/ini/compare/v1.3.5...v1.3.7)

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* MM-30381/cypress notifications teammate name MM-T488 (#7154)

* Add MM-T488 Teammate name display set to user name on at mentions

* Revert additional space between curly braces

* Make linter happy

* MM-30381/cypress notifications teammate name MM-T490 (#7158)

* Add MM-T490 test case for MM-30381 desktop notifications

* Update e2e/cypress/integration/notifications/desktop_notifications_spec.js

* Add MM-T489 test case for MM-30381 desktop notifications (#7157)

* Fix linter

Co-authored-by: Mattermod <mattermod@users.noreply.github.com>

* [MM-30367] Automate E2E admin roles tests (#7162)

Automatic Merge

* Cypress/E2E: Automate backlogs - System Console > Compliance Export Downloads (#7187)

* Covers MM-T3435, MM-T3438, MM-T3439

* Fixed lint errors

* Requires license check

Co-authored-by: Joseph Baylon <joseph.baylon@mattermost.com>

* Wait until file storage page is visible

Committed from suggestion

Co-authored-by: Joseph Baylon <joseph.baylon@mattermost.com>

* Wait until compliance export page is visible

Committed from suggestion

Co-authored-by: Joseph Baylon <joseph.baylon@mattermost.com>

* Image upload wait code simplified

Committed from suggestion

Co-authored-by: Joseph Baylon <joseph.baylon@mattermost.com>

* Remove images from post message

Committed from suggestion

Co-authored-by: Joseph Baylon <joseph.baylon@mattermost.com>

* Comment formatted

Committed from suggestion

Co-authored-by: Joseph Baylon <joseph.baylon@mattermost.com>

* Comment formatted

Committed from suggestion

Co-authored-by: Joseph Baylon <joseph.baylon@mattermost.com>

* Comment formatted

Committed from suggestion

Co-authored-by: Joseph Baylon <joseph.baylon@mattermost.com>

* Comment formatted

Committed from suggestion

Co-authored-by: Joseph Baylon <joseph.baylon@mattermost.com>

* Comment formatted

Committed from suggestion

Co-authored-by: Joseph Baylon <joseph.baylon@mattermost.com>

* Comment formatted

Committed from suggestion

Co-authored-by: Joseph Baylon <joseph.baylon@mattermost.com>

* Wait until post message block is visible

Committed from suggestion

Co-authored-by: Joseph Baylon <joseph.baylon@mattermost.com>

* Formatted comments

* Replaced image upload wait check with initial code

* Image upload code refactored, added timeout of 5 minutes

* Moved to compliance dir

* Uncommented tests which were commented by mistake

* Update e2e/cypress/integration/enterprise/system_console/compliance/download_compliance_export_file_spec.js

Co-authored-by: Joseph Baylon <joseph.baylon@mattermost.com>

* Replaced .get with .findByTestId

* Uncommented test cases

Co-authored-by: Mattermod <mattermod@users.noreply.github.com>
Co-authored-by: Joseph Baylon <joseph.baylon@mattermost.com>

* [MM-31209] Take into account the OFF setting for OPEN ID (#7192)

* account for off setting in open id

* fix linting

* [MM-16139] Migrate 'components/channel_header_dropdown/menu_items/toggle_favorite_channel' module and associated tests to TypeScript (#7110)

Co-authored-by: Mattermod <mattermod@users.noreply.github.com>

* MM-31275 New sidebar performance improvements (#7207)

Automatic Merge

* Update eslint-plugin-mattermost  (#7214)

* Fix linter issues found by @typscript-eslint/member-delimiter-style

* Fix linter issues found by @typscript-eslint/type-annotation-spacing

* Update eslint-plugin-mattermost

* Translations update from Weblate (#7220)

* Translated using Weblate (French)

Currently translated at 93.2% (4096 of 4391 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/fr/

* Translated using Weblate (Dutch)

Currently translated at 99.9% (4424 of 4425 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/nl/

Translated using Weblate (Dutch)

Currently translated at 99.7% (4413 of 4425 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/nl/

Translated using Weblate (Dutch)

Currently translated at 99.4% (4401 of 4425 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/nl/

Translated using Weblate (Dutch)

Currently translated at 99.2% (4393 of 4425 strings)

Translation: mattermost-languages-shipped/mattermost-webapp
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-webapp_master/nl/

Translated using Weblate (Dutch)

Currently translated at 99.2% (4389 of 4424 strings)

Translation: …
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
4: Reviews Complete All reviewers have approved the pull request Changelog/Not Needed Does not require a changelog entry CherryPick/Done Successfully cherry-picked to the quality or patch release tracked in the milestone Docs/Not Needed Does not require documentation
Projects
None yet
8 participants