-
Notifications
You must be signed in to change notification settings - Fork 109
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Proxy for chat and COMM API #711
Merged
modos189
merged 9 commits into
IITC-CE:master
from
modos189:comm_tabs_refactor_fix_legacy
May 15, 2024
Merged
Proxy for chat and COMM API #711
modos189
merged 9 commits into
IITC-CE:master
from
modos189:comm_tabs_refactor_fix_legacy
May 15, 2024
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
🤖 Pull request artifacts
|
modos189
force-pushed
the
comm_tabs_refactor_fix_legacy
branch
from
March 10, 2024 17:20
8b4608c
to
854f16c
Compare
modos189
force-pushed
the
comm_tabs_refactor_fix_legacy
branch
2 times, most recently
from
March 18, 2024 18:30
86754e8
to
4a747db
Compare
…functions from chat to comm
….comm.portalNameTransformations) so that you can extend transformation rules from plugins without having to rewrite the function
….messageTransformFunctions) so that plugin developers can add new message transformation rules or generate entirely new message markup without having to rewrite the function
…lter), implemented testing of the filter
…fault, the center of the map) is placed in the IITC.comm.getLatLngForSendingMessage() function.
modos189
force-pushed
the
comm_tabs_refactor_fix_legacy
branch
from
May 15, 2024 10:44
f03fc04
to
7fe9466
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
On top of #447
Problem: legacy plugins overwrite window.chat functions, but the new code uses the COMM API and these plugin changes are not called. Also, before this PR, a lot of window.chat functions were removed, which could cause errors in the legacy plugins.
Solution: I created a proxy that calls the alternatives in the COMM API when calling the removed window.chat functions. It also overwrites COMM API methods when they are overwritten in window.chat by a legacy plugin.
I tested this solution with plugins from Commutity plugins and it looks like a working solution.