Compare commits
58 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
3680c26f72 | ||
|
683c92f904 | ||
|
3410ed024f | ||
|
dbad10984a | ||
|
55543d8640 | ||
|
263fbc377e | ||
|
c9c0ab5aca | ||
|
7b2bf08b8f | ||
|
43011825af | ||
|
4abcea61f8 | ||
|
cba810cab5 | ||
|
5938c7d67c | ||
|
99d8b8b75f | ||
|
503d49d295 | ||
|
137b79d95b | ||
|
3c02d6e1b4 | ||
|
a2a33ca62d | ||
|
d8cd557fb2 | ||
|
7568bbaed0 | ||
|
9023d45d9e | ||
|
bee70390a9 | ||
|
3e3d05fc26 | ||
|
6300198a54 | ||
|
458c7ed4c5 | ||
|
d888a0a291 | ||
|
a94787a9f3 | ||
|
368d2bcdbb | ||
|
bc46bfa467 | ||
|
dab48288a8 | ||
|
9aef97c771 | ||
|
9d62dec6b9 | ||
|
6bf6583e7d | ||
|
5219fb700f | ||
|
184c03b28e | ||
|
ec091a7959 | ||
|
89a6c575c9 | ||
|
60325c6aa5 | ||
|
c2a1c4cbf6 | ||
|
1d6b78f6c6 | ||
|
341151a718 | ||
|
f6fd7cf37a | ||
|
d53476a32a | ||
|
fc943b7778 | ||
|
3f2bcd2cab | ||
|
235000cf41 | ||
|
263884cbd8 | ||
|
bb83c0b672 | ||
|
2815509c00 | ||
|
53ff2532f4 | ||
|
64b38348d4 | ||
|
9c1b3a9afd | ||
|
caf77a3d7f | ||
|
7a27de8927 | ||
|
1bc0678422 | ||
|
cd53cf38fe | ||
|
f13f9e80a9 | ||
|
c062f9bdeb | ||
|
f2ef96a420 |
40
.github/workflows/build.yml
vendored
40
.github/workflows/build.yml
vendored
@ -42,37 +42,39 @@ jobs:
|
|||||||
|
|
||||||
- name: Clean up obsolete files
|
- name: Clean up obsolete files
|
||||||
run: |
|
run: |
|
||||||
rm -rf dist/*-unpacked Vencord.user.css vencordDesktopRenderer.css vencordDesktopRenderer.css.map
|
rm -rf dist/*-unpacked Vencord.user.css vencordDesktopRenderer.css vencordDesktopRenderer.css.map
|
||||||
|
|
||||||
- name: Get some values needed for the release
|
- name: Get some values needed for the release
|
||||||
id: release_values
|
id: release_values
|
||||||
run: |
|
run: |
|
||||||
echo "release_tag=$(git rev-parse --short HEAD)" >> $GITHUB_ENV
|
echo "release_tag=$(git rev-parse --short HEAD)" >> $GITHUB_ENV
|
||||||
|
|
||||||
- name: Upload DevBuild as release
|
- name: Upload DevBuild as release
|
||||||
|
if: github.repository == 'Vendicated/Vencord'
|
||||||
run: |
|
run: |
|
||||||
gh release upload devbuild --clobber dist/*
|
gh release upload devbuild --clobber dist/*
|
||||||
gh release edit devbuild --title "DevBuild $RELEASE_TAG"
|
gh release edit devbuild --title "DevBuild $RELEASE_TAG"
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
RELEASE_TAG: ${{ env.release_tag }}
|
RELEASE_TAG: ${{ env.release_tag }}
|
||||||
|
|
||||||
- name: Upload DevBuild to builds repo
|
- name: Upload DevBuild to builds repo
|
||||||
|
if: github.repository == 'Vendicated/Vencord'
|
||||||
run: |
|
run: |
|
||||||
git config --global user.name "$USERNAME"
|
git config --global user.name "$USERNAME"
|
||||||
git config --global user.email actions@github.com
|
git config --global user.email actions@github.com
|
||||||
|
|
||||||
git clone https://$USERNAME:$API_TOKEN@github.com/$GH_REPO.git upload
|
git clone https://$USERNAME:$API_TOKEN@github.com/$GH_REPO.git upload
|
||||||
cd upload
|
cd upload
|
||||||
|
|
||||||
GLOBIGNORE=.git:.gitignore:README.md:LICENSE
|
GLOBIGNORE=.git:.gitignore:README.md:LICENSE
|
||||||
rm -rf *
|
rm -rf *
|
||||||
cp -r ../dist/* .
|
cp -r ../dist/* .
|
||||||
|
|
||||||
git add -A
|
git add -A
|
||||||
git commit -m "Builds for https://github.com/$GITHUB_REPOSITORY/commit/$GITHUB_SHA"
|
git commit -m "Builds for https://github.com/$GITHUB_REPOSITORY/commit/$GITHUB_SHA"
|
||||||
git push --force https://$USERNAME:$API_TOKEN@github.com/$GH_REPO.git
|
git push --force https://$USERNAME:$API_TOKEN@github.com/$GH_REPO.git
|
||||||
env:
|
env:
|
||||||
API_TOKEN: ${{ secrets.BUILDS_TOKEN }}
|
API_TOKEN: ${{ secrets.BUILDS_TOKEN }}
|
||||||
GH_REPO: Vencord/builds
|
GH_REPO: Vencord/builds
|
||||||
USERNAME: GitHub-Actions
|
USERNAME: GitHub-Actions
|
||||||
|
19
.github/workflows/codeberg-mirror.yml
vendored
Normal file
19
.github/workflows/codeberg-mirror.yml
vendored
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
name: Sync to Codeberg
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
workflow_dispatch:
|
||||||
|
schedule:
|
||||||
|
- cron: "0 */6 * * *"
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
codeberg:
|
||||||
|
if: github.repository == 'Vendicated/Vencord'
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
- uses: pixta-dev/repository-mirroring-action@674e65a7d483ca28dafaacba0d07351bdcc8bd75 # v1.1.1
|
||||||
|
with:
|
||||||
|
target_repo_url: "git@codeberg.org:Ven/cord.git"
|
||||||
|
ssh_private_key: ${{ secrets.CODEBERG_SSH_PRIVATE_KEY }}
|
47
.github/workflows/publish.yml
vendored
47
.github/workflows/publish.yml
vendored
@ -6,6 +6,7 @@ on:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
Publish:
|
Publish:
|
||||||
|
if: github.repository == 'Vendicated/Vencord'
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
@ -13,11 +14,11 @@ jobs:
|
|||||||
|
|
||||||
- name: check that tag matches package.json version
|
- name: check that tag matches package.json version
|
||||||
run: |
|
run: |
|
||||||
pkg_version="v$(jq -r .version < package.json)"
|
pkg_version="v$(jq -r .version < package.json)"
|
||||||
if [[ "${{ github.ref_name }}" != "$pkg_version" ]]; then
|
if [[ "${{ github.ref_name }}" != "$pkg_version" ]]; then
|
||||||
echo "Tag ${{ github.ref_name }} does not match package.json version $pkg_version" >&2
|
echo "Tag ${{ github.ref_name }} does not match package.json version $pkg_version" >&2
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
- uses: pnpm/action-setup@v2 # Install pnpm using packageManager key in package.json
|
- uses: pnpm/action-setup@v2 # Install pnpm using packageManager key in package.json
|
||||||
|
|
||||||
@ -35,26 +36,26 @@ jobs:
|
|||||||
|
|
||||||
- name: Publish extension
|
- name: Publish extension
|
||||||
run: |
|
run: |
|
||||||
# Do not fail so that even if chrome fails, firefox gets a shot. But also store exit code to fail workflow later
|
# Do not fail so that even if chrome fails, firefox gets a shot. But also store exit code to fail workflow later
|
||||||
EXIT_CODE=0
|
EXIT_CODE=0
|
||||||
|
|
||||||
# Chrome
|
# Chrome
|
||||||
cd dist/chromium-unpacked
|
cd dist/chromium-unpacked
|
||||||
pnpx chrome-webstore-upload-cli@2.1.0 upload --auto-publish || EXIT_CODE=$?
|
pnpx chrome-webstore-upload-cli@2.1.0 upload --auto-publish || EXIT_CODE=$?
|
||||||
|
|
||||||
# Firefox
|
# Firefox
|
||||||
cd ../firefox-unpacked
|
cd ../firefox-unpacked
|
||||||
npm i -g web-ext@7.4.0 web-ext-submit@7.4.0
|
npm i -g web-ext@7.4.0 web-ext-submit@7.4.0
|
||||||
web-ext-submit || EXIT_CODE=$?
|
web-ext-submit || EXIT_CODE=$?
|
||||||
|
|
||||||
exit $EXIT_CODE
|
exit $EXIT_CODE
|
||||||
env:
|
env:
|
||||||
# Chrome
|
# Chrome
|
||||||
EXTENSION_ID: ${{ secrets.CHROME_EXTENSION_ID }}
|
EXTENSION_ID: ${{ secrets.CHROME_EXTENSION_ID }}
|
||||||
CLIENT_ID: ${{ secrets.CHROME_CLIENT_ID }}
|
CLIENT_ID: ${{ secrets.CHROME_CLIENT_ID }}
|
||||||
CLIENT_SECRET: ${{ secrets.CHROME_CLIENT_SECRET }}
|
CLIENT_SECRET: ${{ secrets.CHROME_CLIENT_SECRET }}
|
||||||
REFRESH_TOKEN: ${{ secrets.CHROME_REFRESH_TOKEN }}
|
REFRESH_TOKEN: ${{ secrets.CHROME_REFRESH_TOKEN }}
|
||||||
|
|
||||||
# Firefox
|
# Firefox
|
||||||
WEB_EXT_API_KEY: ${{ secrets.WEBEXT_USER }}
|
WEB_EXT_API_KEY: ${{ secrets.WEBEXT_USER }}
|
||||||
WEB_EXT_API_SECRET: ${{ secrets.WEBEXT_SECRET }}
|
WEB_EXT_API_SECRET: ${{ secrets.WEBEXT_SECRET }}
|
||||||
|
37
.github/workflows/reportBrokenPlugins.yml
vendored
37
.github/workflows/reportBrokenPlugins.yml
vendored
@ -2,11 +2,12 @@ name: Test Patches
|
|||||||
on:
|
on:
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
schedule:
|
schedule:
|
||||||
# Every day at midnight
|
# Every day at midnight
|
||||||
- cron: 0 0 * * *
|
- cron: 0 0 * * *
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
TestPlugins:
|
TestPlugins:
|
||||||
|
if: github.repository == 'Vendicated/Vencord'
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
@ -22,10 +23,10 @@ jobs:
|
|||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: |
|
run: |
|
||||||
pnpm install --frozen-lockfile
|
pnpm install --frozen-lockfile
|
||||||
pnpm add puppeteer
|
pnpm add puppeteer
|
||||||
|
|
||||||
sudo apt-get install -y chromium-browser
|
sudo apt-get install -y chromium-browser
|
||||||
|
|
||||||
- name: Build web
|
- name: Build web
|
||||||
run: pnpm buildWeb --standalone
|
run: pnpm buildWeb --standalone
|
||||||
@ -33,25 +34,25 @@ jobs:
|
|||||||
- name: Create Report
|
- name: Create Report
|
||||||
timeout-minutes: 10
|
timeout-minutes: 10
|
||||||
run: |
|
run: |
|
||||||
export PATH="$PWD/node_modules/.bin:$PATH"
|
export PATH="$PWD/node_modules/.bin:$PATH"
|
||||||
export CHROMIUM_BIN=$(which chromium-browser)
|
export CHROMIUM_BIN=$(which chromium-browser)
|
||||||
|
|
||||||
esbuild scripts/generateReport.ts > dist/report.mjs
|
esbuild scripts/generateReport.ts > dist/report.mjs
|
||||||
node dist/report.mjs >> $GITHUB_STEP_SUMMARY
|
node dist/report.mjs >> $GITHUB_STEP_SUMMARY
|
||||||
env:
|
env:
|
||||||
DISCORD_TOKEN: ${{ secrets.DISCORD_TOKEN }}
|
DISCORD_TOKEN: ${{ secrets.DISCORD_TOKEN }}
|
||||||
DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }}
|
DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }}
|
||||||
|
|
||||||
- name: Create Report (Canary)
|
- name: Create Report (Canary)
|
||||||
timeout-minutes: 10
|
timeout-minutes: 10
|
||||||
if: success() || failure() # even run if previous one failed
|
if: success() || failure() # even run if previous one failed
|
||||||
run: |
|
run: |
|
||||||
export PATH="$PWD/node_modules/.bin:$PATH"
|
export PATH="$PWD/node_modules/.bin:$PATH"
|
||||||
export CHROMIUM_BIN=$(which chromium-browser)
|
export CHROMIUM_BIN=$(which chromium-browser)
|
||||||
export USE_CANARY=true
|
export USE_CANARY=true
|
||||||
|
|
||||||
esbuild scripts/generateReport.ts > dist/report.mjs
|
esbuild scripts/generateReport.ts > dist/report.mjs
|
||||||
node dist/report.mjs >> $GITHUB_STEP_SUMMARY
|
node dist/report.mjs >> $GITHUB_STEP_SUMMARY
|
||||||
env:
|
env:
|
||||||
DISCORD_TOKEN: ${{ secrets.DISCORD_TOKEN }}
|
DISCORD_TOKEN: ${{ secrets.DISCORD_TOKEN }}
|
||||||
DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }}
|
DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }}
|
||||||
|
9
.vscode/settings.json
vendored
9
.vscode/settings.json
vendored
@ -12,5 +12,12 @@
|
|||||||
"javascript.format.semicolons": "insert",
|
"javascript.format.semicolons": "insert",
|
||||||
"typescript.format.semicolons": "insert",
|
"typescript.format.semicolons": "insert",
|
||||||
"typescript.preferences.quoteStyle": "double",
|
"typescript.preferences.quoteStyle": "double",
|
||||||
"javascript.preferences.quoteStyle": "double"
|
"javascript.preferences.quoteStyle": "double",
|
||||||
|
|
||||||
|
"gitlens.remotes": [
|
||||||
|
{
|
||||||
|
"domain": "codeberg.org",
|
||||||
|
"type": "Gitea"
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
25
.vscode/tasks.json
vendored
Normal file
25
.vscode/tasks.json
vendored
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
{
|
||||||
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
||||||
|
// for the documentation about the tasks.json format
|
||||||
|
"version": "2.0.0",
|
||||||
|
"tasks": [
|
||||||
|
{
|
||||||
|
"label": "Build",
|
||||||
|
"type": "shell",
|
||||||
|
"command": "pnpm build",
|
||||||
|
"group": {
|
||||||
|
"kind": "build",
|
||||||
|
"isDefault": true
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": "Watch",
|
||||||
|
"type": "shell",
|
||||||
|
"command": "pnpm watch",
|
||||||
|
"problemMatcher": [],
|
||||||
|
"group": {
|
||||||
|
"kind": "build"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
18
README.md
18
README.md
@ -1,7 +1,8 @@
|
|||||||
# Vencord
|
# Vencord
|
||||||
|
|
||||||
The cutest Discord client mod
|
[![Codeberg Mirror](https://img.shields.io/static/v1?style=for-the-badge&label=Codeberg%20Mirror&message=codeberg.org/Ven/cord&color=2185D0&logo=data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAABmJLR0QA/wD/AP+gvaeTAAAKbUlEQVR4nNVae3AV5RX/nW/3Pva+b24e5HHzIICQKGoiYiW8NFBFgohaa6ctglpbFSujSGurzUinohWsOij/gGX6R2fqOK0d1FYTEZXaTrWCBbEikJCEyCvkeXNvkrunf+zdkJDkPnex/c3cmd29+53v/M6e73znnF2Cydj4Tntldzi6qrN/qKqzf2jy6b7BnL4B1dI7oMp9AyoRAIdVsNMqhlxWMZjtspzyK/Jhr036OMsm//bh2vzPzNSPzBD6xFutd7R0Dq758ky4orkjYuc05RCAkixbeEq2/UCJ1/LczxcX/c5IPfU5DMHmxpbCpu7o1k/b+xc1n43YjJI7EqV+W2RmvuPt0oDjB2vn5bQbITNjAzzdeKK8qTO0bU9T77zucNQUjzofHrvENWWu3aUBZfW6+ZOOZiIrbYXrmUXo9daX3v6i667O/iGRiRLpwqtIvKDc+0efJ3hb/UIaSkdGWgZ4sqGt9r2m3lc/P9HvSWe80ZiRp3TPL/UsX1+bvyvVsSkb4NE3WjbuPNj5SM8Fcvdk4bAKrqvwv7DxhuCPUxmXNIn6XSy3nWr6R8OhrqrU1btwqJ3m/bgwu/SqZJdEUgbYsuuka09b9/4Pm3tLMlPvwuAbpe6m+RcplfdcURBKdG9CA2zZddLV2Nx1+JO2vlxj1LswqCpynlxc6SxLZIS40bueWfy9vXvv/xt5APhXa1/u7v+EPqvfxXK8++IaoO2Vpn9+cLS33FjVLhw+bOotOX7q6N/i3TOhAX7y+rHN/+sBLxm8fah71k93tjw/0f/jGuDJxtZrdh7setA8tS4sdn7eef+v3mmfP95/Ywxw6x9Yev9I35/6Iubv83WVfl5a6Uu3VkoavZEo7TnS/Vo98xi+Yy6UKC3bDp7sd5ut1OWFDjyzNMib6oq5Oug0ezp8dqLfG3r92Nbzr48ywNONJ8obDnV/z2xlAk4ZW1aUqhaJIAvCb5YVqwFn3GBtCBoO9dz5TOPxUbnMKAM0dYa2d5lc2AgCNi8r5klui3aBgWynjE11QZbI3FV3NjQkjnYNbB+lj36wubGlcE9T71xTNQDw0Px8nlvmHl73GmfCrKCL19Tkmh4P9jT1LHz2vVP5+vmwAZq71a1m1/PXTPXwD68eS5KIEVUZd1yZwwumeEw1Qld/lJrPhF7Sz4cNsO+rUK2ZExd6rfj10iCPZ2GJCCoAZuCJxQUc9FvNVAX72kPX6ccC0Hp4zR0Ru1kT2mTCSzeXqn5l/EAniMAqoDLDYZWwqa5EVSzmhaKmsxHbLxvbbgdiBmjpHFxj2mwANlxXxBdPUib8nwgQgqAyEFUZxT4L1i/MN3UpHDsTWQvEDHDoTLjCrIluuyzAt8zMSkhGFhp5hrYUFk3z8IqZftOMcKRj4GIAEM80tFccM8n9Z+Qq+MXigqRIWCQCMzQvYIbKwH1X53FFnjkr88iZsLKpoXWa6BiIrjbDzF67hK23lKp2Obm1LAstPEZVjTwDkAio/2ZQ9dolw/VjAB0DfKfoCg9WGy2cADy1NMhBX2rR3CIRGICq8rAhAg4Jj9UWsDBhg+4MR6vF2VC0zGjB99fk8eJp3pQdyyrRMHF9KURVxswCB6+alWO4o3b2RyeLU32D2UYKnVPm5gfm5qWlrF0Wo4hzbCmoDNw0089XlboNNcLpvsFc0RtRDXuNle+x4Lkbi9PO6WWJIBFGEY+qjGjswtq5eVzosRilLnoiUavoH1INiTCyIDy/vETNcmRW1dl0L4gRVxmx3YFhlwnrry1QrZIxASE0yJIIDaiGSHt8UQFXF2Ve1zusYgzxkXGhyGvFvePUE+mgfyAqhGqAqKWVPv5udbYhSjmtkpYWq6OJqzFjqCpjTpmbl1Rk3klSGRBWmTISNC3Hjo1LgoYFJ0GA1aIVR+cTVxlQoS2Pb18a4PLszMKXzSJYuCySmq4Al03CiytKVYfBhYvLKk1IXE+XLRLhwZp81WlNf26HTFHhd0jhdAYTgKduCPLkgPHfQjitYkLiAIEZBDBlu2R6aF7euCV2Mgg45bDw2qWOdAavnp3D109PPdlJBvpTnYg4kVY3MDMuylVw62WJi63x4LHLZ0TAIR9OdWBVodPUclUQwWmT4hLXfgCIUDfDi6oiR8rzBJzyl8LnkD9KZVCOU8aLN5eoshnJ+Qh4bFJC4gztmEjgrtk5anaKnWWfXfpIuBTLjmSpSILw/E0laq7LuGxsIngVCYmIa96hLRG3TaZ1C/KTfjAEQLFIO8TPFk7aH/RZI8kMWrdgEs8udqXLKSUoMkEW4ETEQTRsoHyPlVZfmVw+Uuy3hR9bVHBQAMD0XPu/Ew24dqqH777K/La1DiKCxyYlRRzQymgG4+oyDxZOTdxZnp5r3wvEWmJ5btuL8W4uzbJh87LitLebdOFVpKSJx4IlwIzbL81CcYLO8iSX/IImGQCYae6Wg/2tXQNjNnW7LPDKyilqZd7ETU2zEBlifNTSS4i9PNFIx44x4jh2nZlBsUr0dN8QP/6XVhEaHJvnlfhtkXd/NF0BUextKRFXFznfGk+JDdcX8tdBHtDa6YpFsB4I9ac88omf8wbEgqa2XAIOme6bM35foqrQ+QZIKwGG80ifVbrXZZNGDfhOVYBvviS9JMMoaP3AEcQpPnHdOxiMGXkKbrx4dGfZY5c4T8H9+vmwAeqXFLXOKXW9r59fWuDA44sKv1byAOBzyCkTH+kdS2f4MLPgXJI0p9T17vrFxcf181GVxEUB+0qfIqt+RcKWFSWGNR4ygd4RTpW4HiCJgFWzstmnSPA7ZLU827pypPwxDB/687GXl1X6Vs6bbGz/LRN80hZCT+yLFZ0cgHED4egACeiXm89GsP9EePuzy4rvGil7jAGYmQDsBjDHUBYZ4GhHBMfORigd4rpnyIS9u6d4rqgnGrUtjCmmSYuOqwB0GcwjbWh9xviurpNnxnDA1IspMPe6bOL755MHJvhKjIgOA7jbJD4pw22Thj+kSIW47h2KRaydVezeP57sCdspRPQqgGeNJJIuBAE+ReJUiOv32mXaXjPZs21C2QnmXgdghyEsMoRfkVMiDgCywF/by9z3xJMb1wCxeHAPgDczZpAh/Iq+HSYmDjCsstgThmf5t4ii8eQm7CgS0SCA5QBezoRApnBaBSyCEhIHCLJEb4ZUd+2SqZSwzE+qpUpEQ9CC4qb01M8cRIQsh8zxiKsMtsn08nvlnrpkyAPj5AGJwMw3AtgGwJ/q2ExxvHsQB74KxfKBMblAyGmTHq4pc4/5GjQeUm6qE9FrAK4E8H6ie41GlkN/jTk6F5Ak2ueUpNmpkgfSMAAAENERAAsB3AHgZDoy0oFdFnBYpXPEBfU4beLRD6Z4qmumug+kIzPjaoeZfQDWAHgAQFam8hLh4MkwWjsHemyS2OF08IYrCjynzZ4zKTCzi5nXMvOnzBw16bevIxR95JOj7DNKb1PqXWa+HMDtAGoBXII0lxq0N2OfAmgA8Hsi2muMhudgesHPzNkA5gKoADADwFRoS8UHQO+x9wLoBNAB4AsAnwM4AOADIjLVxf8L9kdXUOE0IskAAAAASUVORK5CYII=)](https://codeberg.org/Ven/cord)
|
||||||
|
|
||||||
|
The cutest Discord client mod
|
||||||
|
|
||||||
![](https://user-images.githubusercontent.com/45497981/235015332-0453d3eb-1da6-4601-963e-ef5e454123a1.png)
|
![](https://user-images.githubusercontent.com/45497981/235015332-0453d3eb-1da6-4601-963e-ef5e454123a1.png)
|
||||||
*A screenshot of Vencord featuring the [ClearVision-v6 theme](https://github.com/ClearVision/ClearVision-v6) (Vencord does not come with it pre-installed, it is only an example)*
|
*A screenshot of Vencord featuring the [ClearVision-v6 theme](https://github.com/ClearVision/ClearVision-v6) (Vencord does not come with it pre-installed, it is only an example)*
|
||||||
@ -10,7 +11,7 @@ The cutest Discord client mod
|
|||||||
|
|
||||||
- Super easy to install (Download Installer, open, click install button, done)
|
- Super easy to install (Download Installer, open, click install button, done)
|
||||||
- 100+ plugins built in: [See a list](https://vencord.dev/plugins)
|
- 100+ plugins built in: [See a list](https://vencord.dev/plugins)
|
||||||
- Some highlights: SpotifyControls, MessageLogger, Experiments, GameActivityToggle, Translate, NoTrack, QuickReply, Free Emotes/Stickers, CustomCommands, ShowHiddenChannels, PronounDB
|
- Some highlights: SpotifyControls, MessageLogger, Experiments, GameActivityToggle, Translate, NoTrack, QuickReply, Free Emotes/Stickers, PermissionsViewer, CustomCommands, ShowHiddenChannels, PronounDB
|
||||||
- Fairly lightweight despite the many inbuilt plugins
|
- Fairly lightweight despite the many inbuilt plugins
|
||||||
- Excellent Browser Support: Run Vencord in your Browser via extension or UserScript
|
- Excellent Browser Support: Run Vencord in your Browser via extension or UserScript
|
||||||
- Works on any Discord branch: Stable, Canary or PTB all work (though for the best experience I recommend stable!)
|
- Works on any Discord branch: Stable, Canary or PTB all work (though for the best experience I recommend stable!)
|
||||||
@ -32,12 +33,21 @@ Click the below button to install Vencord to the Discord Desktop app
|
|||||||
|
|
||||||
Or use the [UserScript](https://raw.githubusercontent.com/Vencord/builds/main/Vencord.user.js) - Please note that the CSS Editor, Themes loaded from remote sources and co. will not work in the UserScript. Use the extension if you need any of those
|
Or use the [UserScript](https://raw.githubusercontent.com/Vencord/builds/main/Vencord.user.js) - Please note that the CSS Editor, Themes loaded from remote sources and co. will not work in the UserScript. Use the extension if you need any of those
|
||||||
|
|
||||||
## Installing our Desktop App
|
<details>
|
||||||
|
<summary>Alternative Downloads</summary>
|
||||||
|
|
||||||
|
## Vencord Desktop
|
||||||
|
|
||||||
|
> **Warning**
|
||||||
|
> This is an alternative app. It currently doesn't support screensharing or keybinds. If you just want to install to the normal Discord Desktop app, scroll up
|
||||||
|
|
||||||
|
|
||||||
As an alternative to the Discord Desktop app, Vencord also has its own standalone Desktop app that is snappier and lighter than Discord's official Desktop app. It is currently in beta and we have yet to implement some features like screensharing, but you can try the beta nonetheless
|
As an alternative to the Discord Desktop app, Vencord also has its own standalone Desktop app that is snappier and lighter than Discord's official Desktop app. It is currently in beta and we have yet to implement some features like screensharing, but you can try the beta nonetheless
|
||||||
|
|
||||||
[![Download Vencord Desktop](https://img.shields.io/github/v/release/Vencord/Desktop?label=Download%20Vencord%20Desktop&style=for-the-badge)](https://github.com/Vencord/Desktop#vencord-desktop)
|
[![Download Vencord Desktop](https://img.shields.io/github/v/release/Vencord/Desktop?label=Download%20Vencord%20Desktop&style=for-the-badge)](https://github.com/Vencord/Desktop#vencord-desktop)
|
||||||
|
|
||||||
|
</details>
|
||||||
|
|
||||||
## Join our Support/Community Server
|
## Join our Support/Community Server
|
||||||
|
|
||||||
[![Vencord Discord Server](https://invidget.switchblade.xyz/D9uwnFnqmd?theme=dark)](https://discord.gg/D9uwnFnqmd)
|
[![Vencord Discord Server](https://invidget.switchblade.xyz/D9uwnFnqmd?theme=dark)](https://discord.gg/D9uwnFnqmd)
|
||||||
@ -48,7 +58,7 @@ Discord is trademark of Discord Inc. and solely mentioned for the sake of descri
|
|||||||
Mention of it does not imply any affiliation with or endorsement by Discord Inc.
|
Mention of it does not imply any affiliation with or endorsement by Discord Inc.
|
||||||
|
|
||||||
<details>
|
<details>
|
||||||
<summary>Using Vencord violates Discord's terms of service</summary>
|
<summary>Using Vencord violates Discord's terms of service</summary>
|
||||||
|
|
||||||
Client modifications are against Discord’s Terms of Service.
|
Client modifications are against Discord’s Terms of Service.
|
||||||
|
|
||||||
|
@ -16,20 +16,6 @@
|
|||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
function fetchOptions(url) {
|
|
||||||
return new Promise((resolve, reject) => {
|
|
||||||
const opt = {
|
|
||||||
method: "OPTIONS",
|
|
||||||
url: url,
|
|
||||||
};
|
|
||||||
opt.onload = resp => resolve(resp.responseHeaders);
|
|
||||||
opt.ontimeout = () => reject("fetch timeout");
|
|
||||||
opt.onerror = () => reject("fetch error");
|
|
||||||
opt.onabort = () => reject("fetch abort");
|
|
||||||
GM_xmlhttpRequest(opt);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
function parseHeaders(headers) {
|
function parseHeaders(headers) {
|
||||||
if (!headers)
|
if (!headers)
|
||||||
return {};
|
return {};
|
||||||
@ -52,21 +38,6 @@ function parseHeaders(headers) {
|
|||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
// returns true if CORS permits request
|
|
||||||
async function checkCors(url, method) {
|
|
||||||
const headers = parseHeaders(await fetchOptions(url));
|
|
||||||
|
|
||||||
const origin = headers["access-control-allow-origin"];
|
|
||||||
if (origin !== "*" && origin !== window.location.origin) return false;
|
|
||||||
|
|
||||||
const methods = headers["access-control-allow-methods"]?.toLowerCase()
|
|
||||||
.split(",")
|
|
||||||
.map(s => s.trim());
|
|
||||||
if (methods && !methods.includes(method.toLowerCase())) return false;
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
function blobTo(to, blob) {
|
function blobTo(to, blob) {
|
||||||
if (to === "arrayBuffer" && blob.arrayBuffer) return blob.arrayBuffer();
|
if (to === "arrayBuffer" && blob.arrayBuffer) return blob.arrayBuffer();
|
||||||
return new Promise((resolve, reject) => {
|
return new Promise((resolve, reject) => {
|
||||||
@ -80,31 +51,25 @@ function blobTo(to, blob) {
|
|||||||
|
|
||||||
function GM_fetch(url, opt) {
|
function GM_fetch(url, opt) {
|
||||||
return new Promise((resolve, reject) => {
|
return new Promise((resolve, reject) => {
|
||||||
checkCors(url, opt?.method || "GET")
|
// https://www.tampermonkey.net/documentation.php?ext=dhdg#GM_xmlhttpRequest
|
||||||
.then(can => {
|
const options = opt || {};
|
||||||
if (can) {
|
options.url = url;
|
||||||
// https://www.tampermonkey.net/documentation.php?ext=dhdg#GM_xmlhttpRequest
|
options.data = options.body;
|
||||||
const options = opt || {};
|
options.responseType = "blob";
|
||||||
options.url = url;
|
options.onload = resp => {
|
||||||
options.data = options.body;
|
var blob = resp.response;
|
||||||
options.responseType = "blob";
|
resp.blob = () => Promise.resolve(blob);
|
||||||
options.onload = resp => {
|
resp.arrayBuffer = () => blobTo("arrayBuffer", blob);
|
||||||
var blob = resp.response;
|
resp.text = () => blobTo("text", blob);
|
||||||
resp.blob = () => Promise.resolve(blob);
|
resp.json = async () => JSON.parse(await blobTo("text", blob));
|
||||||
resp.arrayBuffer = () => blobTo("arrayBuffer", blob);
|
resp.headers = new Headers(parseHeaders(resp.responseHeaders));
|
||||||
resp.text = () => blobTo("text", blob);
|
resp.ok = resp.status >= 200 && resp.status < 300;
|
||||||
resp.json = async () => JSON.parse(await blobTo("text", blob));
|
resolve(resp);
|
||||||
resp.headers = new Headers(parseHeaders(resp.responseHeaders));
|
};
|
||||||
resolve(resp);
|
options.ontimeout = () => reject("fetch timeout");
|
||||||
};
|
options.onerror = () => reject("fetch error");
|
||||||
options.ontimeout = () => reject("fetch timeout");
|
options.onabort = () => reject("fetch abort");
|
||||||
options.onerror = () => reject("fetch error");
|
GM_xmlhttpRequest(options);
|
||||||
options.onabort = () => reject("fetch abort");
|
|
||||||
GM_xmlhttpRequest(options);
|
|
||||||
} else {
|
|
||||||
reject("CORS issue");
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
export const fetch = GM_fetch;
|
export const fetch = GM_fetch;
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "vencord",
|
"name": "vencord",
|
||||||
"private": "true",
|
"private": "true",
|
||||||
"version": "1.2.2",
|
"version": "1.2.7",
|
||||||
"description": "The cutest Discord client mod",
|
"description": "The cutest Discord client mod",
|
||||||
"homepage": "https://github.com/Vendicated/Vencord#readme",
|
"homepage": "https://github.com/Vendicated/Vencord#readme",
|
||||||
"bugs": {
|
"bugs": {
|
||||||
|
@ -16,6 +16,8 @@
|
|||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
import "../checkNodeVersion.js";
|
||||||
|
|
||||||
import { exec, execSync } from "child_process";
|
import { exec, execSync } from "child_process";
|
||||||
import { existsSync, readFileSync } from "fs";
|
import { existsSync, readFileSync } from "fs";
|
||||||
import { readdir, readFile } from "fs/promises";
|
import { readdir, readFile } from "fs/promises";
|
||||||
|
@ -1,62 +0,0 @@
|
|||||||
/*
|
|
||||||
* Vencord, a modification for Discord's desktop app
|
|
||||||
* Copyright (c) 2022 Vendicated and contributors
|
|
||||||
*
|
|
||||||
* This program is free software: you can redistribute it and/or modify
|
|
||||||
* it under the terms of the GNU General Public License as published by
|
|
||||||
* the Free Software Foundation, either version 3 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
|
||||||
* This program is distributed in the hope that it will be useful,
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
* GNU General Public License for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
*/
|
|
||||||
|
|
||||||
// A script to automatically generate a list of all plugins.
|
|
||||||
// Just copy paste the entire file into a running Vencord install and it will prompt you
|
|
||||||
// to save the file
|
|
||||||
|
|
||||||
// eslint-disable-next-line spaced-comment
|
|
||||||
/// <reference types="../src/modules"/>
|
|
||||||
|
|
||||||
(() => {
|
|
||||||
/**
|
|
||||||
* @type {typeof import("~plugins").default}
|
|
||||||
*/
|
|
||||||
const Plugins = Vencord.Plugins.plugins;
|
|
||||||
|
|
||||||
const header = `
|
|
||||||
<!-- This file is auto generated, do not edit -->
|
|
||||||
|
|
||||||
# Vencord Plugins
|
|
||||||
`;
|
|
||||||
|
|
||||||
let tableOfContents = "\n\n";
|
|
||||||
|
|
||||||
let list = "\n\n";
|
|
||||||
|
|
||||||
for (const p of Object.values(Plugins).sort((a, b) => a.name.localeCompare(b.name))) {
|
|
||||||
tableOfContents += `- [${p.name}](#${p.name.replaceAll(" ", "-")})\n`;
|
|
||||||
|
|
||||||
list += `## ${p.name}
|
|
||||||
|
|
||||||
${p.description}
|
|
||||||
|
|
||||||
**Authors**: ${p.authors.map(a => a.name).join(", ")}
|
|
||||||
`;
|
|
||||||
|
|
||||||
if (p.commands?.length) {
|
|
||||||
list += "\n\n#### Commands\n";
|
|
||||||
for (const cmd of p.commands) {
|
|
||||||
list += `${cmd.name} - ${cmd.description}\n\n`;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
list += "\n\n";
|
|
||||||
}
|
|
||||||
|
|
||||||
copy(header + tableOfContents + list);
|
|
||||||
})();
|
|
@ -19,7 +19,7 @@
|
|||||||
import { Dirent, readdirSync, readFileSync, writeFileSync } from "fs";
|
import { Dirent, readdirSync, readFileSync, writeFileSync } from "fs";
|
||||||
import { access, readFile } from "fs/promises";
|
import { access, readFile } from "fs/promises";
|
||||||
import { join } from "path";
|
import { join } from "path";
|
||||||
import { BigIntLiteral, createSourceFile, Identifier, isArrayLiteralExpression, isCallExpression, isExportAssignment, isIdentifier, isObjectLiteralExpression, isPropertyAccessExpression, isPropertyAssignment, isStringLiteral, isVariableStatement, NamedDeclaration, NodeArray, ObjectLiteralExpression, ScriptTarget, StringLiteral, SyntaxKind } from "typescript";
|
import { BigIntLiteral, createSourceFile, Identifier, isArrayLiteralExpression, isCallExpression, isExportAssignment, isIdentifier, isObjectLiteralExpression, isPropertyAccessExpression, isPropertyAssignment, isSatisfiesExpression, isStringLiteral, isVariableStatement, NamedDeclaration, NodeArray, ObjectLiteralExpression, ScriptTarget, StringLiteral, SyntaxKind } from "typescript";
|
||||||
|
|
||||||
interface Dev {
|
interface Dev {
|
||||||
name: string;
|
name: string;
|
||||||
@ -66,9 +66,9 @@ function parseDevs() {
|
|||||||
|
|
||||||
const value = devsDeclaration.initializer.arguments[0];
|
const value = devsDeclaration.initializer.arguments[0];
|
||||||
|
|
||||||
if (!isObjectLiteralExpression(value)) return;
|
if (!isSatisfiesExpression(value) || !isObjectLiteralExpression(value.expression)) throw new Error("Failed to parse devs: not an object literal");
|
||||||
|
|
||||||
for (const prop of value.properties) {
|
for (const prop of value.expression.properties) {
|
||||||
const name = (prop.name as Identifier).text;
|
const name = (prop.name as Identifier).text;
|
||||||
const value = isPropertyAssignment(prop) ? prop.initializer : prop;
|
const value = isPropertyAssignment(prop) ? prop.initializer : prop;
|
||||||
|
|
||||||
@ -130,7 +130,9 @@ async function parseFile(fileName: string) {
|
|||||||
if (!isArrayLiteralExpression(value)) throw fail("authors is not an array literal");
|
if (!isArrayLiteralExpression(value)) throw fail("authors is not an array literal");
|
||||||
data.authors = value.elements.map(e => {
|
data.authors = value.elements.map(e => {
|
||||||
if (!isPropertyAccessExpression(e)) throw fail("authors array contains non-property access expressions");
|
if (!isPropertyAccessExpression(e)) throw fail("authors array contains non-property access expressions");
|
||||||
return devs[getName(e)!];
|
const d = devs[getName(e)!];
|
||||||
|
if (!d) throw fail(`couldn't look up author ${getName(e)}`);
|
||||||
|
return d;
|
||||||
});
|
});
|
||||||
break;
|
break;
|
||||||
case "tags":
|
case "tags":
|
||||||
|
@ -25,14 +25,14 @@ type ContextMenuPatchCallbackReturn = (() => void) | void;
|
|||||||
* @param args Any arguments passed into making the context menu, like the guild, channel, user or message for example
|
* @param args Any arguments passed into making the context menu, like the guild, channel, user or message for example
|
||||||
* @returns A callback which is only ran once used to modify the context menu elements (Use to avoid duplicates)
|
* @returns A callback which is only ran once used to modify the context menu elements (Use to avoid duplicates)
|
||||||
*/
|
*/
|
||||||
export type NavContextMenuPatchCallback = (children: Array<React.ReactElement>, ...args: Array<any>) => ContextMenuPatchCallbackReturn;
|
export type NavContextMenuPatchCallback = (children: Array<ReactElement | null>, ...args: Array<any>) => ContextMenuPatchCallbackReturn;
|
||||||
/**
|
/**
|
||||||
* @param navId The navId of the context menu being patched
|
* @param navId The navId of the context menu being patched
|
||||||
* @param children The rendered context menu elements
|
* @param children The rendered context menu elements
|
||||||
* @param args Any arguments passed into making the context menu, like the guild, channel, user or message for example
|
* @param args Any arguments passed into making the context menu, like the guild, channel, user or message for example
|
||||||
* @returns A callback which is only ran once used to modify the context menu elements (Use to avoid duplicates)
|
* @returns A callback which is only ran once used to modify the context menu elements (Use to avoid duplicates)
|
||||||
*/
|
*/
|
||||||
export type GlobalContextMenuPatchCallback = (navId: string, children: Array<React.ReactElement>, ...args: Array<any>) => ContextMenuPatchCallbackReturn;
|
export type GlobalContextMenuPatchCallback = (navId: string, children: Array<ReactElement | null>, ...args: Array<any>) => ContextMenuPatchCallbackReturn;
|
||||||
|
|
||||||
const ContextMenuLogger = new Logger("ContextMenu");
|
const ContextMenuLogger = new Logger("ContextMenu");
|
||||||
|
|
||||||
@ -89,15 +89,18 @@ export function removeGlobalContextMenuPatch(patch: GlobalContextMenuPatchCallba
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A helper function for finding the children array of a group nested inside a context menu based on the id of one of its childs
|
* A helper function for finding the children array of a group nested inside a context menu based on the id(s) of its children
|
||||||
* @param id The id of the child
|
* @param id The id of the child. If an array is specified, all ids will be tried
|
||||||
* @param children The context menu children
|
* @param children The context menu children
|
||||||
*/
|
*/
|
||||||
export function findGroupChildrenByChildId(id: string, children: Array<React.ReactElement>, _itemsArray?: Array<React.ReactElement>): Array<React.ReactElement> | null {
|
export function findGroupChildrenByChildId(id: string | string[], children: Array<ReactElement | null>, _itemsArray?: Array<ReactElement | null>): Array<ReactElement | null> | null {
|
||||||
for (const child of children) {
|
for (const child of children) {
|
||||||
if (child == null) continue;
|
if (child == null) continue;
|
||||||
|
|
||||||
if (child.props?.id === id) return _itemsArray ?? null;
|
if (
|
||||||
|
(Array.isArray(id) && id.some(id => child.props?.id === id))
|
||||||
|
|| child.props?.id === id
|
||||||
|
) return _itemsArray ?? null;
|
||||||
|
|
||||||
let nextChildren = child.props?.children;
|
let nextChildren = child.props?.children;
|
||||||
if (nextChildren) {
|
if (nextChildren) {
|
||||||
@ -117,7 +120,7 @@ export function findGroupChildrenByChildId(id: string, children: Array<React.Rea
|
|||||||
interface ContextMenuProps {
|
interface ContextMenuProps {
|
||||||
contextMenuApiArguments?: Array<any>;
|
contextMenuApiArguments?: Array<any>;
|
||||||
navId: string;
|
navId: string;
|
||||||
children: Array<ReactElement>;
|
children: Array<ReactElement | null>;
|
||||||
"aria-label": string;
|
"aria-label": string;
|
||||||
onSelect: (() => void) | undefined;
|
onSelect: (() => void) | undefined;
|
||||||
onClose: (callback: (...args: Array<any>) => any) => void;
|
onClose: (callback: (...args: Array<any>) => any) => void;
|
||||||
|
@ -18,24 +18,15 @@
|
|||||||
|
|
||||||
import { Logger } from "@utils/Logger";
|
import { Logger } from "@utils/Logger";
|
||||||
import { MessageStore } from "@webpack/common";
|
import { MessageStore } from "@webpack/common";
|
||||||
|
import { CustomEmoji } from "@webpack/types";
|
||||||
import type { Channel, Message } from "discord-types/general";
|
import type { Channel, Message } from "discord-types/general";
|
||||||
import type { Promisable } from "type-fest";
|
import type { Promisable } from "type-fest";
|
||||||
|
|
||||||
const MessageEventsLogger = new Logger("MessageEvents", "#e5c890");
|
const MessageEventsLogger = new Logger("MessageEvents", "#e5c890");
|
||||||
|
|
||||||
export interface Emoji {
|
|
||||||
require_colons: boolean,
|
|
||||||
originalName: string,
|
|
||||||
animated: boolean;
|
|
||||||
guildId: string,
|
|
||||||
name: string,
|
|
||||||
url: string,
|
|
||||||
id: string,
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface MessageObject {
|
export interface MessageObject {
|
||||||
content: string,
|
content: string,
|
||||||
validNonShortcutEmojis: Emoji[];
|
validNonShortcutEmojis: CustomEmoji[];
|
||||||
invalidEmojis: any[];
|
invalidEmojis: any[];
|
||||||
tts: boolean;
|
tts: boolean;
|
||||||
}
|
}
|
||||||
|
@ -266,7 +266,12 @@ export function definePluginSettings<D extends SettingsDefinition, C extends Set
|
|||||||
def,
|
def,
|
||||||
checks: checks ?? {},
|
checks: checks ?? {},
|
||||||
pluginName: "",
|
pluginName: "",
|
||||||
|
|
||||||
|
withPrivateSettings<T>() {
|
||||||
|
return this as DefinedSettings<D, C> & { store: T; };
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
return definedSettings;
|
return definedSettings;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
12
src/components/ExpandableHeader.css
Normal file
12
src/components/ExpandableHeader.css
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
.vc-expandableheader-center-flex {
|
||||||
|
display: flex;
|
||||||
|
justify-items: center;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.vc-expandableheader-btn {
|
||||||
|
all: unset;
|
||||||
|
cursor: pointer;
|
||||||
|
width: 24px;
|
||||||
|
height: 24px;
|
||||||
|
}
|
108
src/components/ExpandableHeader.tsx
Normal file
108
src/components/ExpandableHeader.tsx
Normal file
@ -0,0 +1,108 @@
|
|||||||
|
/*
|
||||||
|
* Vencord, a modification for Discord's desktop app
|
||||||
|
* Copyright (c) 2023 Vendicated and contributors
|
||||||
|
*
|
||||||
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
import { classNameFactory } from "@api/Styles";
|
||||||
|
import { Text, Tooltip, useState } from "@webpack/common";
|
||||||
|
export const cl = classNameFactory("vc-expandableheader-");
|
||||||
|
import "./ExpandableHeader.css";
|
||||||
|
|
||||||
|
export interface ExpandableHeaderProps {
|
||||||
|
onMoreClick?: () => void;
|
||||||
|
moreTooltipText?: string;
|
||||||
|
onDropDownClick?: (state: boolean) => void;
|
||||||
|
defaultState?: boolean;
|
||||||
|
headerText: string;
|
||||||
|
children: React.ReactNode;
|
||||||
|
buttons?: React.ReactNode[];
|
||||||
|
}
|
||||||
|
|
||||||
|
export default function ExpandableHeader({ children, onMoreClick, buttons, moreTooltipText, defaultState = false, onDropDownClick, headerText }: ExpandableHeaderProps) {
|
||||||
|
const [showContent, setShowContent] = useState(defaultState);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<div style={{
|
||||||
|
display: "flex",
|
||||||
|
justifyContent: "space-between",
|
||||||
|
alignItems: "center",
|
||||||
|
marginBottom: "8px"
|
||||||
|
}}>
|
||||||
|
<Text
|
||||||
|
tag="h2"
|
||||||
|
variant="eyebrow"
|
||||||
|
style={{
|
||||||
|
color: "var(--header-primary)",
|
||||||
|
display: "inline"
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
{headerText}
|
||||||
|
</Text>
|
||||||
|
|
||||||
|
<div className={cl("center-flex")}>
|
||||||
|
{
|
||||||
|
buttons ?? null
|
||||||
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
onMoreClick && // only show more button if callback is provided
|
||||||
|
<Tooltip text={moreTooltipText}>
|
||||||
|
{tooltipProps => (
|
||||||
|
<button
|
||||||
|
{...tooltipProps}
|
||||||
|
className={cl("btn")}
|
||||||
|
onClick={onMoreClick}>
|
||||||
|
<svg
|
||||||
|
width="24"
|
||||||
|
height="24"
|
||||||
|
viewBox="0 0 24 24"
|
||||||
|
>
|
||||||
|
<path fill="var(--text-normal)" d="M7 12.001C7 10.8964 6.10457 10.001 5 10.001C3.89543 10.001 3 10.8964 3 12.001C3 13.1055 3.89543 14.001 5 14.001C6.10457 14.001 7 13.1055 7 12.001ZM14 12.001C14 10.8964 13.1046 10.001 12 10.001C10.8954 10.001 10 10.8964 10 12.001C10 13.1055 10.8954 14.001 12 14.001C13.1046 14.001 14 13.1055 14 12.001ZM19 10.001C20.1046 10.001 21 10.8964 21 12.001C21 13.1055 20.1046 14.001 19 14.001C17.8954 14.001 17 13.1055 17 12.001C17 10.8964 17.8954 10.001 19 10.001Z" />
|
||||||
|
</svg>
|
||||||
|
</button>
|
||||||
|
)}
|
||||||
|
</Tooltip>
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
<Tooltip text={showContent ? "Hide " + headerText : "Show " + headerText}>
|
||||||
|
{tooltipProps => (
|
||||||
|
<button
|
||||||
|
{...tooltipProps}
|
||||||
|
className={cl("btn")}
|
||||||
|
onClick={() => {
|
||||||
|
setShowContent(v => !v);
|
||||||
|
onDropDownClick?.(showContent);
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<svg
|
||||||
|
width="24"
|
||||||
|
height="24"
|
||||||
|
viewBox="0 0 24 24"
|
||||||
|
transform={showContent ? "scale(1 -1)" : "scale(1 1)"}
|
||||||
|
>
|
||||||
|
<path fill="var(--text-normal)" d="M16.59 8.59003L12 13.17L7.41 8.59003L6 10L12 16L18 10L16.59 8.59003Z" />
|
||||||
|
</svg>
|
||||||
|
</button>
|
||||||
|
)}
|
||||||
|
</Tooltip>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{showContent && children}
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
}
|
@ -16,28 +16,31 @@
|
|||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
import "./iconStyles.css";
|
||||||
|
|
||||||
import { classes } from "@utils/misc";
|
import { classes } from "@utils/misc";
|
||||||
import type { PropsWithChildren } from "react";
|
import { i18n } from "@webpack/common";
|
||||||
|
import type { PropsWithChildren, SVGProps } from "react";
|
||||||
|
|
||||||
interface BaseIconProps extends IconProps {
|
interface BaseIconProps extends IconProps {
|
||||||
viewBox: string;
|
viewBox: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface IconProps {
|
interface IconProps extends SVGProps<SVGSVGElement> {
|
||||||
className?: string;
|
className?: string;
|
||||||
height?: number;
|
height?: number;
|
||||||
width?: number;
|
width?: number;
|
||||||
}
|
}
|
||||||
|
|
||||||
function Icon({ height = 24, width = 24, className, children, viewBox }: PropsWithChildren<BaseIconProps>) {
|
function Icon({ height = 24, width = 24, className, children, viewBox, ...svgProps }: PropsWithChildren<BaseIconProps>) {
|
||||||
return (
|
return (
|
||||||
<svg
|
<svg
|
||||||
className={classes(className, "vc-icon")}
|
className={classes(className, "vc-icon")}
|
||||||
aria-hidden="true"
|
|
||||||
role="img"
|
role="img"
|
||||||
width={width}
|
width={width}
|
||||||
height={height}
|
height={height}
|
||||||
viewBox={viewBox}
|
viewBox={viewBox}
|
||||||
|
{...svgProps}
|
||||||
>
|
>
|
||||||
{children}
|
{children}
|
||||||
</svg>
|
</svg>
|
||||||
@ -81,3 +84,65 @@ export function CopyIcon(props: IconProps) {
|
|||||||
</Icon>
|
</Icon>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Discord's open external icon, as seen in the user profile connections
|
||||||
|
*/
|
||||||
|
export function OpenExternalIcon(props: IconProps) {
|
||||||
|
return (
|
||||||
|
<Icon
|
||||||
|
{...props}
|
||||||
|
className={classes(props.className, "vc-open-external-icon")}
|
||||||
|
viewBox="0 0 24 24"
|
||||||
|
>
|
||||||
|
<polygon
|
||||||
|
fill="currentColor"
|
||||||
|
fill-rule="nonzero"
|
||||||
|
points="13 20 11 20 11 8 5.5 13.5 4.08 12.08 12 4.16 19.92 12.08 18.5 13.5 13 8"
|
||||||
|
/>
|
||||||
|
</Icon>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
export function ImageIcon(props: IconProps) {
|
||||||
|
return (
|
||||||
|
<Icon
|
||||||
|
{...props}
|
||||||
|
className={classes(props.className, "vc-image-icon")}
|
||||||
|
viewBox="0 0 24 24"
|
||||||
|
>
|
||||||
|
<path fill="currentColor" d="M21,19V5c0,-1.1 -0.9,-2 -2,-2H5c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2zM8.5,13.5l2.5,3.01L14.5,12l4.5,6H5l3.5,-4.5z" />
|
||||||
|
</Icon>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
export function InfoIcon(props: IconProps) {
|
||||||
|
return (
|
||||||
|
<Icon
|
||||||
|
{...props}
|
||||||
|
className={classes(props.className, "vc-info-icon")}
|
||||||
|
viewBox="0 0 12 12"
|
||||||
|
>
|
||||||
|
<path fill="currentColor" d="M6 1C3.243 1 1 3.244 1 6c0 2.758 2.243 5 5 5s5-2.242 5-5c0-2.756-2.243-5-5-5zm0 2.376a.625.625 0 110 1.25.625.625 0 010-1.25zM7.5 8.5h-3v-1h1V6H5V5h1a.5.5 0 01.5.5v2h1v1z" />
|
||||||
|
</Icon>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
export function OwnerCrownIcon(props: IconProps) {
|
||||||
|
return (
|
||||||
|
<Icon
|
||||||
|
aria-label={i18n.Messages.GUILD_OWNER}
|
||||||
|
{...props}
|
||||||
|
className={classes(props.className, "vc-owner-crown-icon")}
|
||||||
|
role="img"
|
||||||
|
viewBox="0 0 16 16"
|
||||||
|
>
|
||||||
|
<path
|
||||||
|
fill="currentColor"
|
||||||
|
fill-rule="evenodd"
|
||||||
|
clip-rule="evenodd"
|
||||||
|
d="M13.6572 5.42868C13.8879 5.29002 14.1806 5.30402 14.3973 5.46468C14.6133 5.62602 14.7119 5.90068 14.6473 6.16202L13.3139 11.4954C13.2393 11.7927 12.9726 12.0007 12.6666 12.0007H3.33325C3.02725 12.0007 2.76058 11.792 2.68592 11.4954L1.35258 6.16202C1.28792 5.90068 1.38658 5.62602 1.60258 5.46468C1.81992 5.30468 2.11192 5.29068 2.34325 5.42868L5.13192 7.10202L7.44592 3.63068C7.46173 3.60697 7.48377 3.5913 7.50588 3.57559C7.5192 3.56612 7.53255 3.55663 7.54458 3.54535L6.90258 2.90268C6.77325 2.77335 6.77325 2.56068 6.90258 2.43135L7.76458 1.56935C7.89392 1.44002 8.10658 1.44002 8.23592 1.56935L9.09792 2.43135C9.22725 2.56068 9.22725 2.77335 9.09792 2.90268L8.45592 3.54535C8.46794 3.55686 8.48154 3.56651 8.49516 3.57618C8.51703 3.5917 8.53897 3.60727 8.55458 3.63068L10.8686 7.10202L13.6572 5.42868ZM2.66667 12.6673H13.3333V14.0007H2.66667V12.6673Z"
|
||||||
|
/>
|
||||||
|
</Icon>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
@ -18,6 +18,7 @@
|
|||||||
|
|
||||||
import { generateId } from "@api/Commands";
|
import { generateId } from "@api/Commands";
|
||||||
import { useSettings } from "@api/Settings";
|
import { useSettings } from "@api/Settings";
|
||||||
|
import { disableStyle, enableStyle } from "@api/Styles";
|
||||||
import ErrorBoundary from "@components/ErrorBoundary";
|
import ErrorBoundary from "@components/ErrorBoundary";
|
||||||
import { Flex } from "@components/Flex";
|
import { Flex } from "@components/Flex";
|
||||||
import { proxyLazy } from "@utils/lazy";
|
import { proxyLazy } from "@utils/lazy";
|
||||||
@ -40,6 +41,7 @@ import {
|
|||||||
SettingSliderComponent,
|
SettingSliderComponent,
|
||||||
SettingTextComponent
|
SettingTextComponent
|
||||||
} from "./components";
|
} from "./components";
|
||||||
|
import hideBotTagStyle from "./userPopoutHideBotTag.css?managed";
|
||||||
|
|
||||||
const UserSummaryItem = LazyComponent(() => findByCode("defaultRenderUser", "showDefaultAvatarsForNullUsers"));
|
const UserSummaryItem = LazyComponent(() => findByCode("defaultRenderUser", "showDefaultAvatarsForNullUsers"));
|
||||||
const AvatarStyles = findByPropsLazy("moreUsers", "emptyUser", "avatarContainer", "clickableAvatar");
|
const AvatarStyles = findByPropsLazy("moreUsers", "emptyUser", "avatarContainer", "clickableAvatar");
|
||||||
@ -50,11 +52,12 @@ interface PluginModalProps extends ModalProps {
|
|||||||
onRestartNeeded(): void;
|
onRestartNeeded(): void;
|
||||||
}
|
}
|
||||||
|
|
||||||
/** To stop discord making unwanted requests... */
|
function makeDummyUser(user: { username: string; id?: string; avatar?: string; }) {
|
||||||
function makeDummyUser(user: { name: string, id: BigInt; }) {
|
|
||||||
const newUser = new UserRecord({
|
const newUser = new UserRecord({
|
||||||
username: user.name,
|
username: user.username,
|
||||||
id: generateId(),
|
id: user.id ?? generateId(),
|
||||||
|
avatar: user.avatar,
|
||||||
|
/** To stop discord making unwanted requests... */
|
||||||
bot: true,
|
bot: true,
|
||||||
});
|
});
|
||||||
FluxDispatcher.dispatch({
|
FluxDispatcher.dispatch({
|
||||||
@ -89,14 +92,27 @@ export default function PluginModal({ plugin, onRestartNeeded, onClose, transiti
|
|||||||
const hasSettings = Boolean(pluginSettings && plugin.options);
|
const hasSettings = Boolean(pluginSettings && plugin.options);
|
||||||
|
|
||||||
React.useEffect(() => {
|
React.useEffect(() => {
|
||||||
|
enableStyle(hideBotTagStyle);
|
||||||
|
|
||||||
|
let originalUser: User;
|
||||||
(async () => {
|
(async () => {
|
||||||
for (const user of plugin.authors.slice(0, 6)) {
|
for (const user of plugin.authors.slice(0, 6)) {
|
||||||
const author = user.id
|
const author = user.id
|
||||||
? await UserUtils.fetchUser(`${user.id}`).catch(() => makeDummyUser(user))
|
? await UserUtils.fetchUser(`${user.id}`)
|
||||||
: makeDummyUser(user);
|
// only show name & pfp and no actions so users cannot harass plugin devs for support (send dms, add as friend, etc)
|
||||||
|
.then(u => (originalUser = u, makeDummyUser(u)))
|
||||||
|
.catch(() => makeDummyUser({ username: user.name }))
|
||||||
|
: makeDummyUser({ username: user.name });
|
||||||
|
|
||||||
setAuthors(a => [...a, author]);
|
setAuthors(a => [...a, author]);
|
||||||
}
|
}
|
||||||
})();
|
})();
|
||||||
|
|
||||||
|
return () => {
|
||||||
|
disableStyle(hideBotTagStyle);
|
||||||
|
if (originalUser)
|
||||||
|
FluxDispatcher.dispatch({ type: "USER_UPDATE", user: originalUser });
|
||||||
|
};
|
||||||
}, []);
|
}, []);
|
||||||
|
|
||||||
async function saveAndClose() {
|
async function saveAndClose() {
|
||||||
|
3
src/components/PluginSettings/userPopoutHideBotTag.css
Normal file
3
src/components/PluginSettings/userPopoutHideBotTag.css
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
[class|="userPopoutOuter"] [class*="botTag"] {
|
||||||
|
display: none;
|
||||||
|
}
|
@ -57,7 +57,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.vc-text-selectable,
|
.vc-text-selectable,
|
||||||
.vc-text-selectable :not(a, button, a *, button *) {
|
.vc-text-selectable :where([class*="text" i], [class*="title" i]) {
|
||||||
/* make text selectable, silly discord makes the entirety of settings not selectable */
|
/* make text selectable, silly discord makes the entirety of settings not selectable */
|
||||||
user-select: text;
|
user-select: text;
|
||||||
|
|
||||||
|
7
src/components/iconStyles.css
Normal file
7
src/components/iconStyles.css
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
.vc-open-external-icon {
|
||||||
|
transform: rotate(45deg);
|
||||||
|
}
|
||||||
|
|
||||||
|
.vc-owner-crown-icon {
|
||||||
|
color: var(--text-warning);
|
||||||
|
}
|
@ -24,15 +24,13 @@ import { Heart } from "@components/Heart";
|
|||||||
import { Devs } from "@utils/constants";
|
import { Devs } from "@utils/constants";
|
||||||
import { Logger } from "@utils/Logger";
|
import { Logger } from "@utils/Logger";
|
||||||
import { Margins } from "@utils/margins";
|
import { Margins } from "@utils/margins";
|
||||||
|
import { isPluginDev } from "@utils/misc";
|
||||||
import { closeModal, Modals, openModal } from "@utils/modal";
|
import { closeModal, Modals, openModal } from "@utils/modal";
|
||||||
import definePlugin from "@utils/types";
|
import definePlugin from "@utils/types";
|
||||||
import { Forms, Toasts } from "@webpack/common";
|
import { Forms, Toasts } from "@webpack/common";
|
||||||
|
|
||||||
const CONTRIBUTOR_BADGE = "https://cdn.discordapp.com/attachments/1033680203433660458/1092089947126780035/favicon.png";
|
const CONTRIBUTOR_BADGE = "https://cdn.discordapp.com/attachments/1033680203433660458/1092089947126780035/favicon.png";
|
||||||
|
|
||||||
/** List of vencord contributor IDs */
|
|
||||||
const contributorIds: string[] = Object.values(Devs).map(d => d.id.toString());
|
|
||||||
|
|
||||||
const ContributorBadge: ProfileBadge = {
|
const ContributorBadge: ProfileBadge = {
|
||||||
description: "Vencord Contributor",
|
description: "Vencord Contributor",
|
||||||
image: CONTRIBUTOR_BADGE,
|
image: CONTRIBUTOR_BADGE,
|
||||||
@ -43,7 +41,7 @@ const ContributorBadge: ProfileBadge = {
|
|||||||
transform: "scale(0.9)" // The image is a bit too big compared to default badges
|
transform: "scale(0.9)" // The image is a bit too big compared to default badges
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
shouldShow: ({ user }) => contributorIds.includes(user.id),
|
shouldShow: ({ user }) => isPluginDev(user.id),
|
||||||
link: "https://github.com/Vendicated/Vencord"
|
link: "https://github.com/Vendicated/Vencord"
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -24,12 +24,11 @@ import { Margins } from "@utils/margins";
|
|||||||
import { ModalContent, ModalHeader, ModalRoot, openModalLazy } from "@utils/modal";
|
import { ModalContent, ModalHeader, ModalRoot, openModalLazy } from "@utils/modal";
|
||||||
import definePlugin from "@utils/types";
|
import definePlugin from "@utils/types";
|
||||||
import { findByCodeLazy, findStoreLazy } from "@webpack";
|
import { findByCodeLazy, findStoreLazy } from "@webpack";
|
||||||
import { FluxDispatcher, Forms, GuildStore, Menu, PermissionStore, React, RestAPI, Toasts, Tooltip, UserStore } from "@webpack/common";
|
import { EmojiStore, FluxDispatcher, Forms, GuildStore, Menu, PermissionStore, React, RestAPI, Toasts, Tooltip, UserStore } from "@webpack/common";
|
||||||
import { Promisable } from "type-fest";
|
import { Promisable } from "type-fest";
|
||||||
|
|
||||||
const MANAGE_EMOJIS_AND_STICKERS = 1n << 30n;
|
const MANAGE_EMOJIS_AND_STICKERS = 1n << 30n;
|
||||||
|
|
||||||
const GuildEmojiStore = findStoreLazy("EmojiStore");
|
|
||||||
const StickersStore = findStoreLazy("StickersStore");
|
const StickersStore = findStoreLazy("StickersStore");
|
||||||
const uploadEmoji = findByCodeLazy('"EMOJI_UPLOAD_START"', "GUILD_EMOJIS(");
|
const uploadEmoji = findByCodeLazy('"EMOJI_UPLOAD_START"', "GUILD_EMOJIS(");
|
||||||
|
|
||||||
@ -129,7 +128,7 @@ function getGuildCandidates(data: Data) {
|
|||||||
const { isAnimated } = data as Emoji;
|
const { isAnimated } = data as Emoji;
|
||||||
|
|
||||||
const emojiSlots = g.getMaxEmojiSlots();
|
const emojiSlots = g.getMaxEmojiSlots();
|
||||||
const { emojis } = GuildEmojiStore.getGuilds()[g.id];
|
const { emojis } = EmojiStore.getGuilds()[g.id];
|
||||||
|
|
||||||
let count = 0;
|
let count = 0;
|
||||||
for (const emoji of emojis)
|
for (const emoji of emojis)
|
||||||
@ -194,7 +193,8 @@ function CloneModal({ data }: { data: Sticker | Emoji; }) {
|
|||||||
setName(v);
|
setName(v);
|
||||||
}}
|
}}
|
||||||
validate={v =>
|
validate={v =>
|
||||||
(v.length > 1 && v.length < 32 && nameValidator.test(v))
|
(data.t === "Emoji" && v.length > 2 && v.length < 32 && nameValidator.test(v))
|
||||||
|
|| (data.t === "Sticker" && v.length > 2 && v.length < 30)
|
||||||
|| "Name must be between 2 and 32 characters and only contain alphanumeric characters"
|
|| "Name must be between 2 and 32 characters and only contain alphanumeric characters"
|
||||||
}
|
}
|
||||||
/>
|
/>
|
||||||
|
@ -22,11 +22,12 @@ import { Devs } from "@utils/constants";
|
|||||||
import { ApngBlendOp, ApngDisposeOp, getGifEncoder, importApngJs } from "@utils/dependencies";
|
import { ApngBlendOp, ApngDisposeOp, getGifEncoder, importApngJs } from "@utils/dependencies";
|
||||||
import { getCurrentGuild } from "@utils/discord";
|
import { getCurrentGuild } from "@utils/discord";
|
||||||
import { proxyLazy } from "@utils/lazy";
|
import { proxyLazy } from "@utils/lazy";
|
||||||
|
import { Logger } from "@utils/Logger";
|
||||||
import definePlugin, { OptionType } from "@utils/types";
|
import definePlugin, { OptionType } from "@utils/types";
|
||||||
import { findByCodeLazy, findByPropsLazy, findLazy, findStoreLazy } from "@webpack";
|
import { findByCodeLazy, findByPropsLazy, findLazy, findStoreLazy } from "@webpack";
|
||||||
import { ChannelStore, FluxDispatcher, Parser, PermissionStore, UserStore } from "@webpack/common";
|
import { ChannelStore, EmojiStore, FluxDispatcher, Parser, PermissionStore, UserStore } from "@webpack/common";
|
||||||
import type { Message } from "discord-types/general";
|
import type { Message } from "discord-types/general";
|
||||||
import type { ReactNode } from "react";
|
import type { ReactElement, ReactNode } from "react";
|
||||||
|
|
||||||
const DRAFT_TYPE = 0;
|
const DRAFT_TYPE = 0;
|
||||||
const promptToUpload = findByCodeLazy("UPLOAD_FILE_LIMIT_ERROR");
|
const promptToUpload = findByCodeLazy("UPLOAD_FILE_LIMIT_ERROR");
|
||||||
@ -38,8 +39,6 @@ const StickerStore = findStoreLazy("StickersStore") as {
|
|||||||
getAllGuildStickers(): Map<string, Sticker[]>;
|
getAllGuildStickers(): Map<string, Sticker[]>;
|
||||||
getStickerById(id: string): Sticker | undefined;
|
getStickerById(id: string): Sticker | undefined;
|
||||||
};
|
};
|
||||||
const EmojiStore = findStoreLazy("EmojiStore");
|
|
||||||
|
|
||||||
|
|
||||||
function searchProtoClass(localName: string, parentProtoClass: any) {
|
function searchProtoClass(localName: string, parentProtoClass: any) {
|
||||||
if (!parentProtoClass) return;
|
if (!parentProtoClass) return;
|
||||||
@ -57,7 +56,7 @@ const ClientThemeSettingsProto = proxyLazy(() => searchProtoClass("clientThemeSe
|
|||||||
const USE_EXTERNAL_EMOJIS = 1n << 18n;
|
const USE_EXTERNAL_EMOJIS = 1n << 18n;
|
||||||
const USE_EXTERNAL_STICKERS = 1n << 37n;
|
const USE_EXTERNAL_STICKERS = 1n << 37n;
|
||||||
|
|
||||||
enum EmojiIntentions {
|
const enum EmojiIntentions {
|
||||||
REACTION = 0,
|
REACTION = 0,
|
||||||
STATUS = 1,
|
STATUS = 1,
|
||||||
COMMUNITY_CONTENT = 2,
|
COMMUNITY_CONTENT = 2,
|
||||||
@ -68,6 +67,14 @@ enum EmojiIntentions {
|
|||||||
SOUNDBOARD = 7
|
SOUNDBOARD = 7
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const enum StickerType {
|
||||||
|
PNG = 1,
|
||||||
|
APNG = 2,
|
||||||
|
LOTTIE = 3,
|
||||||
|
// don't think you can even have gif stickers but the docs have it
|
||||||
|
GIF = 4
|
||||||
|
}
|
||||||
|
|
||||||
interface BaseSticker {
|
interface BaseSticker {
|
||||||
available: boolean;
|
available: boolean;
|
||||||
description: string;
|
description: string;
|
||||||
@ -173,6 +180,10 @@ export default definePlugin({
|
|||||||
{
|
{
|
||||||
match: /(&&!\i&&)!(\i)(?=\)return \i\.\i\.DISALLOW_EXTERNAL;)/,
|
match: /(&&!\i&&)!(\i)(?=\)return \i\.\i\.DISALLOW_EXTERNAL;)/,
|
||||||
replace: (_, rest, canUseExternal) => `${rest}(!${canUseExternal}&&(typeof fakeNitroIntention==="undefined"||![${EmojiIntentions.CHAT},${EmojiIntentions.GUILD_STICKER_RELATED_EMOJI}].includes(fakeNitroIntention)))`
|
replace: (_, rest, canUseExternal) => `${rest}(!${canUseExternal}&&(typeof fakeNitroIntention==="undefined"||![${EmojiIntentions.CHAT},${EmojiIntentions.GUILD_STICKER_RELATED_EMOJI}].includes(fakeNitroIntention)))`
|
||||||
|
},
|
||||||
|
{
|
||||||
|
match: /if\(!\i\.available/,
|
||||||
|
replace: m => `${m}&&(typeof fakeNitroIntention==="undefined"||![${EmojiIntentions.CHAT},${EmojiIntentions.GUILD_STICKER_RELATED_EMOJI}].includes(fakeNitroIntention))`
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
@ -321,7 +332,7 @@ export default definePlugin({
|
|||||||
},
|
},
|
||||||
|
|
||||||
handleProtoChange(proto: any, user: any) {
|
handleProtoChange(proto: any, user: any) {
|
||||||
if ((!proto.appearance && !AppearanceSettingsProto) || !UserSettingsProtoStore) return;
|
if (proto == null || typeof proto === "string" || !UserSettingsProtoStore || (!proto.appearance && !AppearanceSettingsProto)) return;
|
||||||
|
|
||||||
const premiumType: number = user?.premium_type ?? UserStore?.getCurrentUser()?.premiumType ?? 0;
|
const premiumType: number = user?.premium_type ?? UserStore?.getCurrentUser()?.premiumType ?? 0;
|
||||||
|
|
||||||
@ -382,70 +393,137 @@ export default definePlugin({
|
|||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
patchFakeNitroEmojisOrRemoveStickersLinks(content: Array<any>, inline: boolean) {
|
trimContent(content: Array<any>) {
|
||||||
if (content.length > 1 && !settings.store.transformCompoundSentence) return content;
|
const firstContent = content[0];
|
||||||
|
if (typeof firstContent === "string") content[0] = firstContent.trimStart();
|
||||||
|
if (content[0] === "") content.shift();
|
||||||
|
|
||||||
const newContent: Array<any> = [];
|
const lastIndex = content.length - 1;
|
||||||
|
const lastContent = content[lastIndex];
|
||||||
|
if (typeof lastContent === "string") content[lastIndex] = lastContent.trimEnd();
|
||||||
|
if (content[lastIndex] === "") content.pop();
|
||||||
|
},
|
||||||
|
|
||||||
|
clearEmptyArrayItems(array: Array<any>) {
|
||||||
|
return array.filter(item => item != null);
|
||||||
|
},
|
||||||
|
|
||||||
|
ensureChildrenIsArray(child: ReactElement) {
|
||||||
|
if (!Array.isArray(child.props.children)) child.props.children = [child.props.children];
|
||||||
|
},
|
||||||
|
|
||||||
|
patchFakeNitroEmojisOrRemoveStickersLinks(content: Array<any>, inline: boolean) {
|
||||||
|
// If content has more than one child or it's a single ReactElement like a header or list
|
||||||
|
if ((content.length > 1 || typeof content[0]?.type === "string") && !settings.store.transformCompoundSentence) return content;
|
||||||
|
|
||||||
let nextIndex = content.length;
|
let nextIndex = content.length;
|
||||||
|
|
||||||
for (const element of content) {
|
const transformLinkChild = (child: ReactElement) => {
|
||||||
if (element.props?.trusted == null) {
|
|
||||||
newContent.push(element);
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (settings.store.transformEmojis) {
|
if (settings.store.transformEmojis) {
|
||||||
const fakeNitroMatch = element.props.href.match(fakeNitroEmojiRegex);
|
const fakeNitroMatch = child.props.href.match(fakeNitroEmojiRegex);
|
||||||
if (fakeNitroMatch) {
|
if (fakeNitroMatch) {
|
||||||
let url: URL | null = null;
|
let url: URL | null = null;
|
||||||
try {
|
try {
|
||||||
url = new URL(element.props.href);
|
url = new URL(child.props.href);
|
||||||
} catch { }
|
} catch { }
|
||||||
|
|
||||||
const emojiName = EmojiStore.getCustomEmojiById(fakeNitroMatch[1])?.name ?? url?.searchParams.get("name") ?? "FakeNitroEmoji";
|
const emojiName = EmojiStore.getCustomEmojiById(fakeNitroMatch[1])?.name ?? url?.searchParams.get("name") ?? "FakeNitroEmoji";
|
||||||
|
|
||||||
newContent.push(Parser.defaultRules.customEmoji.react({
|
return Parser.defaultRules.customEmoji.react({
|
||||||
jumboable: !inline && content.length === 1,
|
jumboable: !inline && content.length === 1 && typeof content[0].type !== "string",
|
||||||
animated: fakeNitroMatch[2] === "gif",
|
animated: fakeNitroMatch[2] === "gif",
|
||||||
emojiId: fakeNitroMatch[1],
|
emojiId: fakeNitroMatch[1],
|
||||||
name: emojiName,
|
name: emojiName,
|
||||||
fake: true
|
fake: true
|
||||||
}, void 0, { key: String(nextIndex++) }));
|
}, void 0, { key: String(nextIndex++) });
|
||||||
|
|
||||||
continue;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (settings.store.transformStickers) {
|
if (settings.store.transformStickers) {
|
||||||
if (fakeNitroStickerRegex.test(element.props.href)) continue;
|
if (fakeNitroStickerRegex.test(child.props.href)) return null;
|
||||||
|
|
||||||
const gifMatch = element.props.href.match(fakeNitroGifStickerRegex);
|
const gifMatch = child.props.href.match(fakeNitroGifStickerRegex);
|
||||||
if (gifMatch) {
|
if (gifMatch) {
|
||||||
// There is no way to differentiate a regular gif attachment from a fake nitro animated sticker, so we check if the StickerStore contains the id of the fake sticker
|
// There is no way to differentiate a regular gif attachment from a fake nitro animated sticker, so we check if the StickerStore contains the id of the fake sticker
|
||||||
if (StickerStore.getStickerById(gifMatch[1])) continue;
|
if (StickerStore.getStickerById(gifMatch[1])) return null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
newContent.push(element);
|
return child;
|
||||||
|
};
|
||||||
|
|
||||||
|
const transformChild = (child: ReactElement) => {
|
||||||
|
if (child?.props?.trusted != null) return transformLinkChild(child);
|
||||||
|
if (child?.props?.children != null) {
|
||||||
|
if (!Array.isArray(child.props.children)) {
|
||||||
|
child.props.children = modifyChild(child.props.children);
|
||||||
|
return child;
|
||||||
|
}
|
||||||
|
|
||||||
|
child.props.children = modifyChildren(child.props.children);
|
||||||
|
if (child.props.children.length === 0) return null;
|
||||||
|
return child;
|
||||||
|
}
|
||||||
|
|
||||||
|
return child;
|
||||||
|
};
|
||||||
|
|
||||||
|
const modifyChild = (child: ReactElement) => {
|
||||||
|
const newChild = transformChild(child);
|
||||||
|
|
||||||
|
if (newChild?.type === "ul" || newChild?.type === "ol") {
|
||||||
|
this.ensureChildrenIsArray(newChild);
|
||||||
|
if (newChild.props.children.length === 0) return null;
|
||||||
|
|
||||||
|
let listHasAnItem = false;
|
||||||
|
for (const [index, child] of newChild.props.children.entries()) {
|
||||||
|
if (child == null) {
|
||||||
|
delete newChild.props.children[index];
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
this.ensureChildrenIsArray(child);
|
||||||
|
if (child.props.children.length > 0) listHasAnItem = true;
|
||||||
|
else delete newChild.props.children[index];
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!listHasAnItem) return null;
|
||||||
|
|
||||||
|
newChild.props.children = this.clearEmptyArrayItems(newChild.props.children);
|
||||||
|
}
|
||||||
|
|
||||||
|
return newChild;
|
||||||
|
};
|
||||||
|
|
||||||
|
const modifyChildren = (children: Array<ReactElement>) => {
|
||||||
|
for (const [index, child] of children.entries()) children[index] = modifyChild(child);
|
||||||
|
|
||||||
|
children = this.clearEmptyArrayItems(children);
|
||||||
|
this.trimContent(children);
|
||||||
|
|
||||||
|
return children;
|
||||||
|
};
|
||||||
|
|
||||||
|
try {
|
||||||
|
return modifyChildren(window._.cloneDeep(content));
|
||||||
|
} catch (err) {
|
||||||
|
new Logger("FakeNitro").error(err);
|
||||||
|
return content;
|
||||||
}
|
}
|
||||||
|
|
||||||
const firstContent = newContent[0];
|
|
||||||
if (typeof firstContent === "string") newContent[0] = firstContent.trimStart();
|
|
||||||
|
|
||||||
return newContent;
|
|
||||||
},
|
},
|
||||||
|
|
||||||
patchFakeNitroStickers(stickers: Array<any>, message: Message) {
|
patchFakeNitroStickers(stickers: Array<any>, message: Message) {
|
||||||
const itemsToMaybePush: Array<string> = [];
|
const itemsToMaybePush: Array<string> = [];
|
||||||
|
|
||||||
const contentItems = message.content.split(/\s/);
|
const contentItems = message.content.split(/\s/);
|
||||||
if (contentItems.length === 1 && !settings.store.transformCompoundSentence) itemsToMaybePush.push(contentItems[0]);
|
if (settings.store.transformCompoundSentence) itemsToMaybePush.push(...contentItems);
|
||||||
else itemsToMaybePush.push(...contentItems);
|
else if (contentItems.length === 1) itemsToMaybePush.push(contentItems[0]);
|
||||||
|
|
||||||
itemsToMaybePush.push(...message.attachments.filter(attachment => attachment.content_type === "image/gif").map(attachment => attachment.url));
|
itemsToMaybePush.push(...message.attachments.filter(attachment => attachment.content_type === "image/gif").map(attachment => attachment.url));
|
||||||
|
|
||||||
for (const item of itemsToMaybePush) {
|
for (const item of itemsToMaybePush) {
|
||||||
|
if (!settings.store.transformCompoundSentence && !item.startsWith("http")) continue;
|
||||||
|
|
||||||
const imgMatch = item.match(fakeNitroStickerRegex);
|
const imgMatch = item.match(fakeNitroStickerRegex);
|
||||||
if (imgMatch) {
|
if (imgMatch) {
|
||||||
let url: URL | null = null;
|
let url: URL | null = null;
|
||||||
@ -482,10 +560,13 @@ export default definePlugin({
|
|||||||
},
|
},
|
||||||
|
|
||||||
shouldIgnoreEmbed(embed: Message["embeds"][number], message: Message) {
|
shouldIgnoreEmbed(embed: Message["embeds"][number], message: Message) {
|
||||||
if (message.content.split(/\s/).length > 1 && !settings.store.transformCompoundSentence) return false;
|
const contentItems = message.content.split(/\s/);
|
||||||
|
if (contentItems.length > 1 && !settings.store.transformCompoundSentence) return false;
|
||||||
|
|
||||||
switch (embed.type) {
|
switch (embed.type) {
|
||||||
case "image": {
|
case "image": {
|
||||||
|
if (!settings.store.transformCompoundSentence && !contentItems.includes(embed.url!) && !contentItems.includes(embed.image!.proxyURL)) return false;
|
||||||
|
|
||||||
if (settings.store.transformEmojis) {
|
if (settings.store.transformEmojis) {
|
||||||
if (fakeNitroEmojiRegex.test(embed.url!)) return true;
|
if (fakeNitroEmojiRegex.test(embed.url!)) return true;
|
||||||
}
|
}
|
||||||
@ -544,7 +625,7 @@ export default definePlugin({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
hasPermissionToUseExternalEmojis(channelId: string) {
|
hasPermissionToUseExternalEmojis(channelId: string): boolean {
|
||||||
const channel = ChannelStore.getChannel(channelId);
|
const channel = ChannelStore.getChannel(channelId);
|
||||||
|
|
||||||
if (!channel || channel.isDM() || channel.isGroupDM() || channel.isMultiUserDM()) return true;
|
if (!channel || channel.isDM() || channel.isGroupDM() || channel.isMultiUserDM()) return true;
|
||||||
@ -625,8 +706,9 @@ export default definePlugin({
|
|||||||
},
|
},
|
||||||
|
|
||||||
start() {
|
start() {
|
||||||
const settings = Settings.plugins.FakeNitro;
|
const s = settings.store;
|
||||||
if (!settings.enableEmojiBypass && !settings.enableStickerBypass) {
|
|
||||||
|
if (!s.enableEmojiBypass && !s.enableStickerBypass) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -638,39 +720,37 @@ export default definePlugin({
|
|||||||
const { guildId } = this;
|
const { guildId } = this;
|
||||||
|
|
||||||
stickerBypass: {
|
stickerBypass: {
|
||||||
if (!settings.enableStickerBypass)
|
if (!s.enableStickerBypass)
|
||||||
break stickerBypass;
|
break stickerBypass;
|
||||||
|
|
||||||
const sticker = StickerStore.getStickerById(extra.stickers?.[0]!);
|
const sticker = StickerStore.getStickerById(extra.stickers?.[0]!);
|
||||||
if (!sticker)
|
if (!sticker)
|
||||||
break stickerBypass;
|
break stickerBypass;
|
||||||
|
|
||||||
if (sticker.available !== false && ((this.canUseStickers && this.hasPermissionToUseExternalStickers(channelId)) || (sticker as GuildSticker)?.guild_id === guildId))
|
// Discord Stickers are now free yayyy!! :D
|
||||||
|
if ("pack_id" in sticker)
|
||||||
break stickerBypass;
|
break stickerBypass;
|
||||||
|
|
||||||
let link = this.getStickerLink(sticker.id);
|
const canUseStickers = this.canUseStickers && this.hasPermissionToUseExternalStickers(channelId);
|
||||||
if (sticker.format_type === 2) {
|
if (sticker.available !== false && (canUseStickers || sticker.guild_id === guildId))
|
||||||
|
break stickerBypass;
|
||||||
|
|
||||||
|
const link = this.getStickerLink(sticker.id);
|
||||||
|
if (sticker.format_type === StickerType.APNG) {
|
||||||
this.sendAnimatedSticker(link, sticker.id, channelId);
|
this.sendAnimatedSticker(link, sticker.id, channelId);
|
||||||
return { cancel: true };
|
return { cancel: true };
|
||||||
} else {
|
} else {
|
||||||
if ("pack_id" in sticker) {
|
|
||||||
const packId = sticker.pack_id === "847199849233514549"
|
|
||||||
// Discord moved these stickers into a different pack at some point, but
|
|
||||||
// Distok still uses the old id
|
|
||||||
? "749043879713701898"
|
|
||||||
: sticker.pack_id;
|
|
||||||
|
|
||||||
link = `https://distok.top/stickers/${packId}/${sticker.id}.gif`;
|
|
||||||
}
|
|
||||||
|
|
||||||
extra.stickers!.length = 0;
|
extra.stickers!.length = 0;
|
||||||
messageObj.content += " " + link + `&name=${encodeURIComponent(sticker.name)}`;
|
messageObj.content += ` ${link}&name=${encodeURIComponent(sticker.name)}`;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((!this.canUseEmotes || !this.hasPermissionToUseExternalEmojis(channelId)) && settings.enableEmojiBypass) {
|
if (s.enableEmojiBypass) {
|
||||||
|
const canUseEmotes = this.canUseEmotes && this.hasPermissionToUseExternalEmojis(channelId);
|
||||||
|
|
||||||
for (const emoji of messageObj.validNonShortcutEmojis) {
|
for (const emoji of messageObj.validNonShortcutEmojis) {
|
||||||
if (!emoji.require_colons) continue;
|
if (!emoji.require_colons) continue;
|
||||||
|
if (emoji.available !== false && canUseEmotes) continue;
|
||||||
if (emoji.guildId === guildId && !emoji.animated) continue;
|
if (emoji.guildId === guildId && !emoji.animated) continue;
|
||||||
|
|
||||||
const emojiString = `<${emoji.animated ? "a" : ""}:${emoji.originalName || emoji.name}:${emoji.id}>`;
|
const emojiString = `<${emoji.animated ? "a" : ""}:${emoji.originalName || emoji.name}:${emoji.id}>`;
|
||||||
@ -688,23 +768,25 @@ export default definePlugin({
|
|||||||
});
|
});
|
||||||
|
|
||||||
this.preEdit = addPreEditListener((channelId, __, messageObj) => {
|
this.preEdit = addPreEditListener((channelId, __, messageObj) => {
|
||||||
if (this.canUseEmotes && this.hasPermissionToUseExternalEmojis(channelId)) return;
|
if (!s.enableEmojiBypass) return;
|
||||||
|
|
||||||
|
const canUseEmotes = this.canUseEmotes && this.hasPermissionToUseExternalEmojis(channelId);
|
||||||
|
|
||||||
const { guildId } = this;
|
const { guildId } = this;
|
||||||
|
|
||||||
for (const [emojiStr, _, emojiId] of messageObj.content.matchAll(/(?<!\\)<a?:(\w+):(\d+)>/ig)) {
|
messageObj.content = messageObj.content.replace(/(?<!\\)<a?:(?:\w+):(\d+)>/ig, (emojiStr, emojiId, offset, origStr) => {
|
||||||
const emoji = EmojiStore.getCustomEmojiById(emojiId);
|
const emoji = EmojiStore.getCustomEmojiById(emojiId);
|
||||||
if (emoji == null || (emoji.guildId === guildId && !emoji.animated)) continue;
|
if (emoji == null) return emojiStr;
|
||||||
if (!emoji.require_colons) continue;
|
if (!emoji.require_colons) return emojiStr;
|
||||||
|
if (emoji.available !== false && canUseEmotes) return emojiStr;
|
||||||
|
if (emoji.guildId === guildId && !emoji.animated) return emojiStr;
|
||||||
|
|
||||||
const url = emoji.url.replace(/\?size=\d+/, "?" + new URLSearchParams({
|
const url = emoji.url.replace(/\?size=\d+/, "?" + new URLSearchParams({
|
||||||
size: Settings.plugins.FakeNitro.emojiSize,
|
size: Settings.plugins.FakeNitro.emojiSize,
|
||||||
name: encodeURIComponent(emoji.name)
|
name: encodeURIComponent(emoji.name)
|
||||||
}));
|
}));
|
||||||
messageObj.content = messageObj.content.replace(emojiStr, (match, offset, origStr) => {
|
return `${getWordBoundary(origStr, offset - 1)}${url}${getWordBoundary(origStr, offset + emojiStr.length)}`;
|
||||||
return `${getWordBoundary(origStr, offset - 1)}${url}${getWordBoundary(origStr, offset + match.length)}`;
|
});
|
||||||
});
|
|
||||||
}
|
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
83
src/plugins/favEmojiFirst.ts
Normal file
83
src/plugins/favEmojiFirst.ts
Normal file
@ -0,0 +1,83 @@
|
|||||||
|
/*
|
||||||
|
* Vencord, a modification for Discord's desktop app
|
||||||
|
* Copyright (c) 2023 Vendicated and contributors
|
||||||
|
*
|
||||||
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
import { Devs } from "@utils/constants";
|
||||||
|
import definePlugin from "@utils/types";
|
||||||
|
import { EmojiStore } from "@webpack/common";
|
||||||
|
import { Emoji } from "@webpack/types";
|
||||||
|
|
||||||
|
interface EmojiAutocompleteState {
|
||||||
|
query?: {
|
||||||
|
type: string;
|
||||||
|
typeInfo: {
|
||||||
|
sentinel: string;
|
||||||
|
};
|
||||||
|
results: {
|
||||||
|
emojis: Emoji[] & { sliceTo?: number; };
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
export default definePlugin({
|
||||||
|
name: "FavoriteEmojiFirst",
|
||||||
|
authors: [Devs.Aria, Devs.Ven],
|
||||||
|
description: "Puts your favorite emoji first in the emoji autocomplete.",
|
||||||
|
patches: [
|
||||||
|
{
|
||||||
|
find: ".activeCommandOption",
|
||||||
|
replacement: [
|
||||||
|
{
|
||||||
|
// = someFunc(a.selectedIndex); ...trackEmojiSearch({ state: theState, isInPopoutExperimental: someBool })
|
||||||
|
match: /=\i\(\i\.selectedIndex\);(?=.+?state:(\i),isInPopoutExperiment:\i)/,
|
||||||
|
// self.sortEmojis(theState)
|
||||||
|
replace: "$&$self.sortEmojis($1);"
|
||||||
|
},
|
||||||
|
|
||||||
|
// set maxCount to Infinity so our sortEmojis callback gets the entire list, not just the first 10
|
||||||
|
// and remove Discord's emojiResult slice, storing the endIndex on the array for us to use later
|
||||||
|
{
|
||||||
|
// searchEmojis(...,maxCount: stuff) ... endEmojis = emojis.slice(0, maxCount - gifResults.length)
|
||||||
|
match: /,maxCount:(\i)(.+?)=(\i)\.slice\(0,(\1-\i\.length)\)/,
|
||||||
|
// ,maxCount:Infinity ... endEmojis = (emojis.sliceTo = n, emojis)
|
||||||
|
replace: ",maxCount:Infinity$2=($3.sliceTo=$4,$3)"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
|
||||||
|
sortEmojis({ query }: EmojiAutocompleteState) {
|
||||||
|
if (
|
||||||
|
query?.type !== "EMOJIS_AND_STICKERS"
|
||||||
|
|| query.typeInfo?.sentinel !== ":"
|
||||||
|
|| !query.results?.emojis?.length
|
||||||
|
) return;
|
||||||
|
|
||||||
|
const emojiContext = EmojiStore.getDisambiguatedEmojiContext();
|
||||||
|
|
||||||
|
query.results.emojis = query.results.emojis.sort((a, b) => {
|
||||||
|
const aIsFavorite = emojiContext.isFavoriteEmojiWithoutFetchingLatest(a);
|
||||||
|
const bIsFavorite = emojiContext.isFavoriteEmojiWithoutFetchingLatest(b);
|
||||||
|
|
||||||
|
if (aIsFavorite && !bIsFavorite) return -1;
|
||||||
|
|
||||||
|
if (!aIsFavorite && bIsFavorite) return 1;
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}).slice(0, query.results.emojis.sliceTo ?? 10);
|
||||||
|
}
|
||||||
|
});
|
@ -20,7 +20,7 @@ import { get, set } from "@api/DataStore";
|
|||||||
import { addButton, removeButton } from "@api/MessagePopover";
|
import { addButton, removeButton } from "@api/MessagePopover";
|
||||||
import { Devs } from "@utils/constants";
|
import { Devs } from "@utils/constants";
|
||||||
import definePlugin from "@utils/types";
|
import definePlugin from "@utils/types";
|
||||||
import { ChannelStore, FluxDispatcher } from "@webpack/common";
|
import { ChannelStore } from "@webpack/common";
|
||||||
|
|
||||||
let style: HTMLStyleElement;
|
let style: HTMLStyleElement;
|
||||||
|
|
||||||
@ -101,11 +101,5 @@ export default definePlugin({
|
|||||||
|
|
||||||
await saveHiddenMessages(ids);
|
await saveHiddenMessages(ids);
|
||||||
await this.buildCss();
|
await this.buildCss();
|
||||||
|
|
||||||
// update is necessary to rerender the PopOver
|
|
||||||
FluxDispatcher.dispatch({
|
|
||||||
type: "MESSAGE_UPDATE",
|
|
||||||
message: { id }
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
@ -22,7 +22,7 @@ import ErrorBoundary from "@components/ErrorBoundary";
|
|||||||
import { Devs } from "@utils/constants";
|
import { Devs } from "@utils/constants";
|
||||||
import { getStegCloak } from "@utils/dependencies";
|
import { getStegCloak } from "@utils/dependencies";
|
||||||
import definePlugin, { OptionType } from "@utils/types";
|
import definePlugin, { OptionType } from "@utils/types";
|
||||||
import { Button, ButtonLooks, ButtonWrapperClasses, ChannelStore, FluxDispatcher, Tooltip } from "@webpack/common";
|
import { Button, ButtonLooks, ButtonWrapperClasses, ChannelStore, FluxDispatcher, RestAPI, Tooltip } from "@webpack/common";
|
||||||
import { Message } from "discord-types/general";
|
import { Message } from "discord-types/general";
|
||||||
|
|
||||||
import { buildDecModal } from "./components/DecryptionModal";
|
import { buildDecModal } from "./components/DecryptionModal";
|
||||||
@ -123,7 +123,7 @@ const settings = definePluginSettings({
|
|||||||
|
|
||||||
export default definePlugin({
|
export default definePlugin({
|
||||||
name: "InvisibleChat",
|
name: "InvisibleChat",
|
||||||
description: "Encrypt your Messages in a non-suspicious way! This plugin makes requests to >>https://embed.sammcheese.net<< to provide embeds to decrypted links!",
|
description: "Encrypt your Messages in a non-suspicious way!",
|
||||||
authors: [Devs.SammCheese],
|
authors: [Devs.SammCheese],
|
||||||
dependencies: ["MessagePopoverAPI"],
|
dependencies: ["MessagePopoverAPI"],
|
||||||
patches: [
|
patches: [
|
||||||
@ -178,25 +178,13 @@ export default definePlugin({
|
|||||||
|
|
||||||
// Gets the Embed of a Link
|
// Gets the Embed of a Link
|
||||||
async getEmbed(url: URL): Promise<Object | {}> {
|
async getEmbed(url: URL): Promise<Object | {}> {
|
||||||
const controller = new AbortController();
|
const { body } = await RestAPI.post({
|
||||||
const timeout = setTimeout(() => controller.abort(), 5000);
|
url: "/unfurler/embed-urls",
|
||||||
|
body: {
|
||||||
const options: RequestInit = {
|
urls: [url]
|
||||||
signal: controller.signal,
|
}
|
||||||
method: "POST",
|
});
|
||||||
headers: {
|
return await body.embeds[0];
|
||||||
"Content-Type": "application/json",
|
|
||||||
},
|
|
||||||
body: JSON.stringify({
|
|
||||||
url,
|
|
||||||
}),
|
|
||||||
};
|
|
||||||
|
|
||||||
// AWS hosted url to discord embed object
|
|
||||||
const rawRes = await fetch(this.EMBED_API_URL, options);
|
|
||||||
clearTimeout(timeout);
|
|
||||||
|
|
||||||
return await rawRes.json();
|
|
||||||
},
|
},
|
||||||
|
|
||||||
async buildEmbed(message: any, revealed: string): Promise<void> {
|
async buildEmbed(message: any, revealed: string): Promise<void> {
|
||||||
|
@ -72,7 +72,7 @@ enum ActivityFlag {
|
|||||||
INSTANCE = 1 << 0,
|
INSTANCE = 1 << 0,
|
||||||
}
|
}
|
||||||
|
|
||||||
const applicationId = "1043533871037284423";
|
const applicationId = "1108588077900898414";
|
||||||
const placeholderId = "2a96cbd8b46e442fc41c2b86b821562f";
|
const placeholderId = "2a96cbd8b46e442fc41c2b86b821562f";
|
||||||
|
|
||||||
const logger = new Logger("LastFMRichPresence");
|
const logger = new Logger("LastFMRichPresence");
|
||||||
@ -167,6 +167,7 @@ export default definePlugin({
|
|||||||
settings,
|
settings,
|
||||||
|
|
||||||
start() {
|
start() {
|
||||||
|
this.updatePresence();
|
||||||
this.updateInterval = setInterval(() => { this.updatePresence(); }, 16000);
|
this.updateInterval = setInterval(() => { this.updatePresence(); }, 16000);
|
||||||
},
|
},
|
||||||
|
|
||||||
@ -198,7 +199,7 @@ export default definePlugin({
|
|||||||
|
|
||||||
const trackData = json.recenttracks?.track[0];
|
const trackData = json.recenttracks?.track[0];
|
||||||
|
|
||||||
if (!trackData || !trackData["@attr"]?.nowplaying)
|
if (!trackData?.["@attr"]?.nowplaying)
|
||||||
return null;
|
return null;
|
||||||
|
|
||||||
// why does the json api have xml structure
|
// why does the json api have xml structure
|
||||||
|
@ -67,7 +67,7 @@ export default definePlugin({
|
|||||||
document.addEventListener("keydown", keydown);
|
document.addEventListener("keydown", keydown);
|
||||||
document.addEventListener("keyup", keyup);
|
document.addEventListener("keyup", keyup);
|
||||||
|
|
||||||
this.onClick = addClickListener((msg, channel, event) => {
|
this.onClick = addClickListener((msg: any, channel, event) => {
|
||||||
const isMe = msg.author.id === UserStore.getCurrentUser().id;
|
const isMe = msg.author.id === UserStore.getCurrentUser().id;
|
||||||
if (!isDeletePressed) {
|
if (!isDeletePressed) {
|
||||||
if (event.detail < 2) return;
|
if (event.detail < 2) return;
|
||||||
@ -90,7 +90,16 @@ export default definePlugin({
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
} else if (settings.store.enableDeleteOnClick && (isMe || PermissionStore.can(MANAGE_CHANNELS, channel))) {
|
} else if (settings.store.enableDeleteOnClick && (isMe || PermissionStore.can(MANAGE_CHANNELS, channel))) {
|
||||||
MessageActions.deleteMessage(channel.id, msg.id);
|
if (msg.deleted) {
|
||||||
|
FluxDispatcher.dispatch({
|
||||||
|
type: "MESSAGE_DELETE",
|
||||||
|
channelId: channel.id,
|
||||||
|
id: msg.id,
|
||||||
|
mlDeleted: true
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
MessageActions.deleteMessage(channel.id, msg.id);
|
||||||
|
}
|
||||||
event.preventDefault();
|
event.preventDefault();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
@ -225,6 +225,8 @@ function MessageEmbedAccessory({ message }: { message: Message; }) {
|
|||||||
} else {
|
} else {
|
||||||
const msg = { ...message } as any;
|
const msg = { ...message } as any;
|
||||||
delete msg.embeds;
|
delete msg.embeds;
|
||||||
|
delete msg.interaction;
|
||||||
|
|
||||||
messageFetchQueue.push(() => fetchMessage(channelID, messageID)
|
messageFetchQueue.push(() => fetchMessage(channelID, messageID)
|
||||||
.then(m => m && FluxDispatcher.dispatch({
|
.then(m => m && FluxDispatcher.dispatch({
|
||||||
type: "MESSAGE_UPDATE",
|
type: "MESSAGE_UPDATE",
|
||||||
|
@ -1,4 +1,10 @@
|
|||||||
.messagelogger-deleted :is(div, h1, h2, h3, p) {
|
/* Message content highlighting */
|
||||||
|
.messagelogger-deleted [class*="contents-"] > :is(div, h1, h2, h3, p) {
|
||||||
|
color: #f04747 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Embed highlighting */
|
||||||
|
.messagelogger-deleted article :is(div, span, h1, h2, h3, p) {
|
||||||
color: #f04747 !important;
|
color: #f04747 !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2,16 +2,29 @@
|
|||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.messagelogger-deleted :is(video, .emoji, [data-type="sticker"]),
|
.messagelogger-deleted
|
||||||
.messagelogger-deleted .messagelogger-deleted-attachment,
|
:is(
|
||||||
.messagelogger-deleted div iframe {
|
video,
|
||||||
|
.emoji,
|
||||||
|
[data-type="sticker"],
|
||||||
|
iframe,
|
||||||
|
.messagelogger-deleted-attachment,
|
||||||
|
[class|="inlineMediaEmbed"]
|
||||||
|
) {
|
||||||
filter: grayscale(1) !important;
|
filter: grayscale(1) !important;
|
||||||
transition: 150ms filter ease-in-out;
|
transition: 150ms filter ease-in-out;
|
||||||
}
|
}
|
||||||
|
|
||||||
.messagelogger-deleted:hover :is(video, .emoji, [data-type="sticker"]),
|
.messagelogger-deleted
|
||||||
.messagelogger-deleted .messagelogger-deleted-attachment:hover,
|
:is(
|
||||||
.messagelogger-deleted iframe:hover {
|
video,
|
||||||
|
.emoji,
|
||||||
|
[data-type="sticker"],
|
||||||
|
iframe,
|
||||||
|
.messagelogger-deleted-attachment,
|
||||||
|
[class|="inlineMediaEmbed"]
|
||||||
|
):hover,
|
||||||
|
.messagelogger-deleted {
|
||||||
filter: grayscale(0) !important;
|
filter: grayscale(0) !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -17,11 +17,13 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
import { definePluginSettings } from "@api/Settings";
|
import { definePluginSettings } from "@api/Settings";
|
||||||
|
import { Flex } from "@components/Flex";
|
||||||
import { Devs } from "@utils/constants";
|
import { Devs } from "@utils/constants";
|
||||||
import { proxyLazy } from "@utils/lazy.js";
|
import { Margins } from "@utils/margins";
|
||||||
import definePlugin, { OptionType } from "@utils/types";
|
import definePlugin, { OptionType } from "@utils/types";
|
||||||
import { find, findByPropsLazy } from "@webpack";
|
import { findByPropsLazy, findLazy } from "@webpack";
|
||||||
import { ChannelStore, GuildStore } from "@webpack/common";
|
import { Card, ChannelStore, Forms, GuildStore, Switch, TextInput, Tooltip, useState } from "@webpack/common";
|
||||||
|
import { RC } from "@webpack/types";
|
||||||
import { Channel, Message, User } from "discord-types/general";
|
import { Channel, Message, User } from "discord-types/general";
|
||||||
|
|
||||||
type PermissionName = "CREATE_INSTANT_INVITE" | "KICK_MEMBERS" | "BAN_MEMBERS" | "ADMINISTRATOR" | "MANAGE_CHANNELS" | "MANAGE_GUILD" | "CHANGE_NICKNAME" | "MANAGE_NICKNAMES" | "MANAGE_ROLES" | "MANAGE_WEBHOOKS" | "MANAGE_GUILD_EXPRESSIONS" | "CREATE_GUILD_EXPRESSIONS" | "VIEW_AUDIT_LOG" | "VIEW_CHANNEL" | "VIEW_GUILD_ANALYTICS" | "VIEW_CREATOR_MONETIZATION_ANALYTICS" | "MODERATE_MEMBERS" | "SEND_MESSAGES" | "SEND_TTS_MESSAGES" | "MANAGE_MESSAGES" | "EMBED_LINKS" | "ATTACH_FILES" | "READ_MESSAGE_HISTORY" | "MENTION_EVERYONE" | "USE_EXTERNAL_EMOJIS" | "ADD_REACTIONS" | "USE_APPLICATION_COMMANDS" | "MANAGE_THREADS" | "CREATE_PUBLIC_THREADS" | "CREATE_PRIVATE_THREADS" | "USE_EXTERNAL_STICKERS" | "SEND_MESSAGES_IN_THREADS" | "CONNECT" | "SPEAK" | "MUTE_MEMBERS" | "DEAFEN_MEMBERS" | "MOVE_MEMBERS" | "USE_VAD" | "PRIORITY_SPEAKER" | "STREAM" | "USE_EMBEDDED_ACTIVITIES" | "USE_SOUNDBOARD" | "USE_EXTERNAL_SOUNDS" | "REQUEST_TO_SPEAK" | "MANAGE_EVENTS" | "CREATE_EVENTS";
|
type PermissionName = "CREATE_INSTANT_INVITE" | "KICK_MEMBERS" | "BAN_MEMBERS" | "ADMINISTRATOR" | "MANAGE_CHANNELS" | "MANAGE_GUILD" | "CHANGE_NICKNAME" | "MANAGE_NICKNAMES" | "MANAGE_ROLES" | "MANAGE_WEBHOOKS" | "MANAGE_GUILD_EXPRESSIONS" | "CREATE_GUILD_EXPRESSIONS" | "VIEW_AUDIT_LOG" | "VIEW_CHANNEL" | "VIEW_GUILD_ANALYTICS" | "VIEW_CREATOR_MONETIZATION_ANALYTICS" | "MODERATE_MEMBERS" | "SEND_MESSAGES" | "SEND_TTS_MESSAGES" | "MANAGE_MESSAGES" | "EMBED_LINKS" | "ATTACH_FILES" | "READ_MESSAGE_HISTORY" | "MENTION_EVERYONE" | "USE_EXTERNAL_EMOJIS" | "ADD_REACTIONS" | "USE_APPLICATION_COMMANDS" | "MANAGE_THREADS" | "CREATE_PUBLIC_THREADS" | "CREATE_PRIVATE_THREADS" | "USE_EXTERNAL_STICKERS" | "SEND_MESSAGES_IN_THREADS" | "CONNECT" | "SPEAK" | "MUTE_MEMBERS" | "DEAFEN_MEMBERS" | "MOVE_MEMBERS" | "USE_VAD" | "PRIORITY_SPEAKER" | "STREAM" | "USE_EMBEDDED_ACTIVITIES" | "USE_SOUNDBOARD" | "USE_EXTERNAL_SOUNDS" | "REQUEST_TO_SPEAK" | "MANAGE_EVENTS" | "CREATE_EVENTS";
|
||||||
@ -36,6 +38,21 @@ interface Tag {
|
|||||||
condition?(message: Message | null, user: User, channel: Channel): boolean;
|
condition?(message: Message | null, user: User, channel: Channel): boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
interface TagSetting {
|
||||||
|
text: string;
|
||||||
|
showInChat: boolean;
|
||||||
|
showInNotChat: boolean;
|
||||||
|
}
|
||||||
|
interface TagSettings {
|
||||||
|
WEBHOOK: TagSetting,
|
||||||
|
OWNER: TagSetting,
|
||||||
|
ADMINISTRATOR: TagSetting,
|
||||||
|
MODERATOR_STAFF: TagSetting,
|
||||||
|
MODERATOR: TagSetting,
|
||||||
|
VOICE_MODERATOR: TagSetting,
|
||||||
|
[k: string]: TagSetting;
|
||||||
|
}
|
||||||
|
|
||||||
const CLYDE_ID = "1081004946872352958";
|
const CLYDE_ID = "1081004946872352958";
|
||||||
|
|
||||||
// PermissionStore.computePermissions is not the same function and doesn't work here
|
// PermissionStore.computePermissions is not the same function and doesn't work here
|
||||||
@ -44,7 +61,7 @@ const PermissionUtil = findByPropsLazy("computePermissions", "canEveryoneRole")
|
|||||||
};
|
};
|
||||||
|
|
||||||
const Permissions = findByPropsLazy("SEND_MESSAGES", "VIEW_CREATOR_MONETIZATION_ANALYTICS") as Record<PermissionName, bigint>;
|
const Permissions = findByPropsLazy("SEND_MESSAGES", "VIEW_CREATOR_MONETIZATION_ANALYTICS") as Record<PermissionName, bigint>;
|
||||||
const Tags = proxyLazy(() => find(m => m.Types?.[0] === "BOT").Types) as Record<string, number>;
|
const Tag = findLazy(m => m.Types?.[0] === "BOT") as RC<{ type?: number, className?: string, useRemSizes?: boolean; }> & { Types: Record<string, number>; };
|
||||||
|
|
||||||
const isWebhook = (message: Message, user: User) => !!message?.webhookId && user.isNonUserBot();
|
const isWebhook = (message: Message, user: User) => !!message?.webhookId && user.isNonUserBot();
|
||||||
|
|
||||||
@ -81,64 +98,119 @@ const tags: Tag[] = [
|
|||||||
permissions: ["MOVE_MEMBERS", "MUTE_MEMBERS", "DEAFEN_MEMBERS"]
|
permissions: ["MOVE_MEMBERS", "MUTE_MEMBERS", "DEAFEN_MEMBERS"]
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
const defaultSettings = Object.fromEntries(
|
||||||
|
tags.map(({ name, displayName }) => [name, { text: displayName, showInChat: true, showInNotChat: true }])
|
||||||
|
) as TagSettings;
|
||||||
|
|
||||||
|
function SettingsComponent(props: { setValue(v: any): void; }) {
|
||||||
|
settings.store.tagSettings ??= defaultSettings;
|
||||||
|
|
||||||
|
const [tagSettings, setTagSettings] = useState(settings.store.tagSettings as TagSettings);
|
||||||
|
const setValue = (v: TagSettings) => {
|
||||||
|
setTagSettings(v);
|
||||||
|
props.setValue(v);
|
||||||
|
};
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Flex flexDirection="column">
|
||||||
|
{tags.map(t => (
|
||||||
|
<Card style={{ padding: "1em 1em 0" }}>
|
||||||
|
<Forms.FormTitle style={{ width: "fit-content" }}>
|
||||||
|
<Tooltip text={t.description}>
|
||||||
|
{({ onMouseEnter, onMouseLeave }) => (
|
||||||
|
<div
|
||||||
|
onMouseEnter={onMouseEnter}
|
||||||
|
onMouseLeave={onMouseLeave}
|
||||||
|
>
|
||||||
|
{t.displayName} Tag <Tag type={Tag.Types[t.name]} />
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</Tooltip>
|
||||||
|
</Forms.FormTitle>
|
||||||
|
|
||||||
|
<TextInput
|
||||||
|
type="text"
|
||||||
|
value={tagSettings[t.name]?.text ?? t.displayName}
|
||||||
|
placeholder={`Text on tag (default: ${t.displayName})`}
|
||||||
|
onChange={v => {
|
||||||
|
tagSettings[t.name].text = v;
|
||||||
|
setValue(tagSettings);
|
||||||
|
}}
|
||||||
|
className={Margins.bottom16}
|
||||||
|
/>
|
||||||
|
|
||||||
|
<Switch
|
||||||
|
value={tagSettings[t.name]?.showInChat ?? true}
|
||||||
|
onChange={v => {
|
||||||
|
tagSettings[t.name].showInChat = v;
|
||||||
|
setValue(tagSettings);
|
||||||
|
}}
|
||||||
|
hideBorder
|
||||||
|
>
|
||||||
|
Show in messages
|
||||||
|
</Switch>
|
||||||
|
|
||||||
|
<Switch
|
||||||
|
value={tagSettings[t.name]?.showInNotChat ?? true}
|
||||||
|
onChange={v => {
|
||||||
|
tagSettings[t.name].showInNotChat = v;
|
||||||
|
setValue(tagSettings);
|
||||||
|
}}
|
||||||
|
hideBorder
|
||||||
|
>
|
||||||
|
Show in member list and profiles
|
||||||
|
</Switch>
|
||||||
|
</Card>
|
||||||
|
))}
|
||||||
|
</Flex>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
const settings = definePluginSettings({
|
const settings = definePluginSettings({
|
||||||
dontShowForBots: {
|
dontShowForBots: {
|
||||||
description: "Don't show tags (not including the webhook tag) for bots",
|
description: "Don't show extra tags for bots (excluding webhooks)",
|
||||||
type: OptionType.BOOLEAN
|
type: OptionType.BOOLEAN
|
||||||
},
|
},
|
||||||
dontShowBotTag: {
|
dontShowBotTag: {
|
||||||
description: "Don't show [BOT] text for bots with other tags (verified bots will still have checkmark)",
|
description: "Only show extra tags for bots / Hide [BOT] text",
|
||||||
type: OptionType.BOOLEAN
|
type: OptionType.BOOLEAN
|
||||||
},
|
},
|
||||||
...Object.fromEntries(tags.map(({ name, displayName, description }) => [
|
tagSettings: {
|
||||||
`visibility_${name}`, {
|
type: OptionType.COMPONENT,
|
||||||
description: `Show ${displayName} tags (${description})`,
|
component: SettingsComponent,
|
||||||
type: OptionType.SELECT,
|
description: "fill me",
|
||||||
options: [
|
}
|
||||||
{
|
|
||||||
label: "Always",
|
|
||||||
value: "always",
|
|
||||||
default: true
|
|
||||||
}, {
|
|
||||||
label: "Only in chat",
|
|
||||||
value: "chat"
|
|
||||||
}, {
|
|
||||||
label: "Only in member list and profiles",
|
|
||||||
value: "not-chat"
|
|
||||||
}, {
|
|
||||||
label: "Never",
|
|
||||||
value: "never"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]))
|
|
||||||
});
|
});
|
||||||
|
|
||||||
export default definePlugin({
|
export default definePlugin({
|
||||||
name: "MoreUserTags",
|
name: "MoreUserTags",
|
||||||
description: "Adds tags for webhooks and moderative roles (owner, admin, etc.)",
|
description: "Adds tags for webhooks and moderative roles (owner, admin, etc.)",
|
||||||
authors: [Devs.Cyn, Devs.TheSun, Devs.RyanCaoDev],
|
authors: [Devs.Cyn, Devs.TheSun, Devs.RyanCaoDev, Devs.LordElias],
|
||||||
settings,
|
settings,
|
||||||
patches: [
|
patches: [
|
||||||
// add tags to the tag list
|
// add tags to the tag list
|
||||||
{
|
{
|
||||||
find: '.BOT=0]="BOT"',
|
find: '.BOT=0]="BOT"',
|
||||||
replacement: [
|
replacement: [
|
||||||
// add tags to the exported tags list (the Tags variable here)
|
// add tags to the exported tags list (Tag.Types)
|
||||||
{
|
{
|
||||||
match: /(\i)\[.\.BOT=0\]="BOT";/,
|
match: /(\i)\[.\.BOT=0\]="BOT";/,
|
||||||
replace: "$&$1=$self.addTagVariants($1);"
|
replace: "$&$1=$self.addTagVariants($1);"
|
||||||
},
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
find: ".DISCORD_SYSTEM_MESSAGE_BOT_TAG_TOOLTIP;",
|
||||||
|
replacement: [
|
||||||
// make the tag show the right text
|
// make the tag show the right text
|
||||||
{
|
{
|
||||||
match: /(switch\((\i)\){.+?)case (\i)\.BOT:default:(\i)=(\i\.\i\.Messages)\.BOT_TAG_BOT/,
|
match: /(switch\((\i)\){.+?)case (\i(?:\.\i)?)\.BOT:default:(\i)=(\i\.\i\.Messages)\.BOT_TAG_BOT/,
|
||||||
replace: (_, origSwitch, variant, tags, displayedText, strings) =>
|
replace: (_, origSwitch, variant, tags, displayedText, strings) =>
|
||||||
`${origSwitch}default:{${displayedText} = $self.getTagText(${tags}[${variant}], ${strings})}`
|
`${origSwitch}default:{${displayedText} = $self.getTagText(${tags}[${variant}], ${strings})}`
|
||||||
},
|
},
|
||||||
// show OP tags correctly
|
// show OP tags correctly
|
||||||
{
|
{
|
||||||
match: /(\i)=(\i)===\i\.ORIGINAL_POSTER/,
|
match: /(\i)=(\i)===\i(?:\.\i)?\.ORIGINAL_POSTER/,
|
||||||
replace: "$1=$self.isOPTag($2)"
|
replace: "$1=$self.isOPTag($2)"
|
||||||
},
|
},
|
||||||
// add HTML data attributes (for easier theming)
|
// add HTML data attributes (for easier theming)
|
||||||
@ -169,15 +241,15 @@ return type!==null?$2.botTag,type"
|
|||||||
{
|
{
|
||||||
find: ".hasAvatarForGuild(null==",
|
find: ".hasAvatarForGuild(null==",
|
||||||
replacement: {
|
replacement: {
|
||||||
match: /\.usernameSection,user/,
|
match: /(?=usernameIcon:)/,
|
||||||
replace: ".usernameSection,moreTags_channelId:arguments[0].channelId,user"
|
replace: "moreTags_channelId:arguments[0].channelId,"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
find: 'copyMetaData:"User Tag"',
|
find: 'copyMetaData:"User Tag"',
|
||||||
replacement: {
|
replacement: {
|
||||||
match: /discriminatorClass:(.{1,100}),botClass:/,
|
match: /(?=,botClass:)/,
|
||||||
replace: "discriminatorClass:$1,moreTags_channelId:arguments[0].moreTags_channelId,botClass:"
|
replace: ",moreTags_channelId:arguments[0].moreTags_channelId"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
// in profiles
|
// in profiles
|
||||||
@ -190,6 +262,37 @@ return type!==null?$2.botTag,type"
|
|||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
|
||||||
|
start() {
|
||||||
|
if (settings.store.tagSettings) return;
|
||||||
|
// @ts-ignore
|
||||||
|
if (!settings.store.visibility_WEBHOOK) settings.store.tagSettings = defaultSettings;
|
||||||
|
else {
|
||||||
|
const newSettings = { ...defaultSettings };
|
||||||
|
Object.entries(Vencord.PlainSettings.plugins.MoreUserTags).forEach(([name, value]) => {
|
||||||
|
const [setting, tag] = name.split("_");
|
||||||
|
if (setting === "visibility") {
|
||||||
|
switch (value) {
|
||||||
|
case "always":
|
||||||
|
// its the default
|
||||||
|
break;
|
||||||
|
case "chat":
|
||||||
|
newSettings[tag].showInNotChat = false;
|
||||||
|
break;
|
||||||
|
case "not-chat":
|
||||||
|
newSettings[tag].showInChat = false;
|
||||||
|
break;
|
||||||
|
case "never":
|
||||||
|
newSettings[tag].showInChat = false;
|
||||||
|
newSettings[tag].showInNotChat = false;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
settings.store.tagSettings = newSettings;
|
||||||
|
delete Vencord.Settings.plugins.MoreUserTags[name];
|
||||||
|
});
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
getPermissions(user: User, channel: Channel): string[] {
|
getPermissions(user: User, channel: Channel): string[] {
|
||||||
const guild = GuildStore.getGuild(channel?.guild_id);
|
const guild = GuildStore.getGuild(channel?.guild_id);
|
||||||
if (!guild) return [];
|
if (!guild) return [];
|
||||||
@ -202,35 +305,36 @@ return type!==null?$2.botTag,type"
|
|||||||
.filter(Boolean);
|
.filter(Boolean);
|
||||||
},
|
},
|
||||||
|
|
||||||
addTagVariants(val: any /* i cant think of a good name */) {
|
addTagVariants(tagConstant) {
|
||||||
let i = 100;
|
let i = 100;
|
||||||
tags.forEach(({ name }) => {
|
tags.forEach(({ name }) => {
|
||||||
val[name] = ++i;
|
tagConstant[name] = ++i;
|
||||||
val[i] = name;
|
tagConstant[i] = name;
|
||||||
val[`${name}-BOT`] = ++i;
|
tagConstant[`${name}-BOT`] = ++i;
|
||||||
val[i] = `${name}-BOT`;
|
tagConstant[i] = `${name}-BOT`;
|
||||||
val[`${name}-OP`] = ++i;
|
tagConstant[`${name}-OP`] = ++i;
|
||||||
val[i] = `${name}-OP`;
|
tagConstant[i] = `${name}-OP`;
|
||||||
});
|
});
|
||||||
return val;
|
return tagConstant;
|
||||||
},
|
},
|
||||||
|
|
||||||
isOPTag: (tag: number) => tag === Tags.ORIGINAL_POSTER || tags.some(t => tag === Tags[`${t.name}-OP`]),
|
isOPTag: (tag: number) => tag === Tag.Types.ORIGINAL_POSTER || tags.some(t => tag === Tag.Types[`${t.name}-OP`]),
|
||||||
|
|
||||||
getTagText(passedTagName: string, strings: Record<string, string>) {
|
getTagText(passedTagName: string, strings: Record<string, string>) {
|
||||||
if (!passedTagName) return "BOT";
|
if (!passedTagName) return strings.BOT_TAG_BOT;
|
||||||
const [tagName, variant] = passedTagName.split("-");
|
const [tagName, variant] = passedTagName.split("-");
|
||||||
const tag = tags.find(({ name }) => tagName === name);
|
const tag = tags.find(({ name }) => tagName === name);
|
||||||
if (!tag) return "BOT";
|
if (!tag) return strings.BOT_TAG_BOT;
|
||||||
if (variant === "BOT" && tagName !== "WEBHOOK" && this.settings.store.dontShowForBots) return strings.BOT_TAG_BOT;
|
if (variant === "BOT" && tagName !== "WEBHOOK" && this.settings.store.dontShowForBots) return strings.BOT_TAG_BOT;
|
||||||
|
|
||||||
|
const tagText = settings.store.tagSettings?.[tag.name]?.text || tag.displayName;
|
||||||
switch (variant) {
|
switch (variant) {
|
||||||
case "OP":
|
case "OP":
|
||||||
return `${strings.BOT_TAG_FORUM_ORIGINAL_POSTER} • ${tag.displayName}`;
|
return `${strings.BOT_TAG_FORUM_ORIGINAL_POSTER} • ${tagText}`;
|
||||||
case "BOT":
|
case "BOT":
|
||||||
return `${strings.BOT_TAG_BOT} • ${tag.displayName}`;
|
return `${strings.BOT_TAG_BOT} • ${tagText}`;
|
||||||
default:
|
default:
|
||||||
return tag.displayName;
|
return tagText;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
@ -242,12 +346,12 @@ return type!==null?$2.botTag,type"
|
|||||||
channel?: Channel & { isForumPost(): boolean; },
|
channel?: Channel & { isForumPost(): boolean; },
|
||||||
channelId?: string;
|
channelId?: string;
|
||||||
origType?: number;
|
origType?: number;
|
||||||
location: string;
|
location: "chat" | "not-chat";
|
||||||
}): number | null {
|
}): number | null {
|
||||||
if (location === "chat" && user.id === "1")
|
if (location === "chat" && user.id === "1")
|
||||||
return Tags.OFFICIAL;
|
return Tag.Types.OFFICIAL;
|
||||||
if (user.id === CLYDE_ID)
|
if (user.id === CLYDE_ID)
|
||||||
return Tags.AI;
|
return Tag.Types.AI;
|
||||||
|
|
||||||
let type = typeof origType === "number" ? origType : null;
|
let type = typeof origType === "number" ? origType : null;
|
||||||
|
|
||||||
@ -258,24 +362,19 @@ return type!==null?$2.botTag,type"
|
|||||||
const perms = this.getPermissions(user, channel);
|
const perms = this.getPermissions(user, channel);
|
||||||
|
|
||||||
for (const tag of tags) {
|
for (const tag of tags) {
|
||||||
switch (settings[`visibility_${tag.name}`]) {
|
if (location === "chat" && !settings.tagSettings[tag.name].showInChat) continue;
|
||||||
case "always":
|
if (location === "not-chat" && !settings.tagSettings[tag.name].showInNotChat) continue;
|
||||||
case location:
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (
|
if (
|
||||||
tag.permissions?.some(perm => perms.includes(perm)) ||
|
tag.permissions?.some(perm => perms.includes(perm)) ||
|
||||||
(tag.condition?.(message!, user, channel))
|
(tag.condition?.(message!, user, channel))
|
||||||
) {
|
) {
|
||||||
if (channel.isForumPost() && channel.ownerId === user.id)
|
if (channel.isForumPost() && channel.ownerId === user.id)
|
||||||
type = Tags[`${tag.name}-OP`];
|
type = Tag.Types[`${tag.name}-OP`];
|
||||||
else if (user.bot && !isWebhook(message!, user) && !settings.dontShowBotTag)
|
else if (user.bot && !isWebhook(message!, user) && !settings.dontShowBotTag)
|
||||||
type = Tags[`${tag.name}-BOT`];
|
type = Tag.Types[`${tag.name}-BOT`];
|
||||||
else
|
else
|
||||||
type = Tags[tag.name];
|
type = Tag.Types[tag.name];
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
97
src/plugins/noPendingCount.ts
Normal file
97
src/plugins/noPendingCount.ts
Normal file
@ -0,0 +1,97 @@
|
|||||||
|
/*
|
||||||
|
* Vencord, a modification for Discord's desktop app
|
||||||
|
* Copyright (c) 2023 Vendicated and contributors
|
||||||
|
*
|
||||||
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
import { definePluginSettings } from "@api/Settings";
|
||||||
|
import { Devs } from "@utils/constants";
|
||||||
|
import definePlugin, { OptionType } from "@utils/types";
|
||||||
|
import { findByPropsLazy } from "@webpack";
|
||||||
|
|
||||||
|
const MessageRequestStore = findByPropsLazy("getMessageRequestsCount");
|
||||||
|
|
||||||
|
const settings = definePluginSettings({
|
||||||
|
hideFriendRequestsCount: {
|
||||||
|
type: OptionType.BOOLEAN,
|
||||||
|
description: "Hide incoming friend requests count",
|
||||||
|
default: true,
|
||||||
|
restartNeeded: true
|
||||||
|
},
|
||||||
|
hideMessageRequestsCount: {
|
||||||
|
type: OptionType.BOOLEAN,
|
||||||
|
description: "Hide message requests count",
|
||||||
|
default: true,
|
||||||
|
restartNeeded: true
|
||||||
|
},
|
||||||
|
hidePremiumOffersCount: {
|
||||||
|
type: OptionType.BOOLEAN,
|
||||||
|
description: "Hide nitro offers count",
|
||||||
|
default: true,
|
||||||
|
restartNeeded: true
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
export default definePlugin({
|
||||||
|
name: "NoPendingCount",
|
||||||
|
description: "Removes the ping count of incoming friend requests, message requests, and nitro offers.",
|
||||||
|
authors: [Devs.amia],
|
||||||
|
|
||||||
|
settings: settings,
|
||||||
|
|
||||||
|
// Functions used to determine the top left count indicator can be found in the single module that calls getUnacknowledgedOffers(...)
|
||||||
|
// or by searching for "showProgressBadge:"
|
||||||
|
patches: [
|
||||||
|
{
|
||||||
|
find: ".getPendingCount=",
|
||||||
|
predicate: () => settings.store.hideFriendRequestsCount,
|
||||||
|
replacement: {
|
||||||
|
match: /(?<=\.getPendingCount=function\(\)\{)/,
|
||||||
|
replace: "return 0;"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
find: ".getMessageRequestsCount=",
|
||||||
|
predicate: () => settings.store.hideMessageRequestsCount,
|
||||||
|
replacement: {
|
||||||
|
match: /(?<=\.getMessageRequestsCount=function\(\)\{)/,
|
||||||
|
replace: "return 0;"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
// This prevents the Message Requests tab from always hiding due to the previous patch (and is compatible with spam requests)
|
||||||
|
// In short, only the red badge is hidden. Button visibility behavior isn't changed.
|
||||||
|
{
|
||||||
|
find: ".getSpamChannelsCount(),",
|
||||||
|
predicate: () => settings.store.hideMessageRequestsCount,
|
||||||
|
replacement: {
|
||||||
|
match: /(?<=getSpamChannelsCount\(\),\i=)\i\.getMessageRequestsCount\(\)/,
|
||||||
|
replace: "$self.getRealMessageRequestCount()"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
find: "showProgressBadge:",
|
||||||
|
predicate: () => settings.store.hidePremiumOffersCount,
|
||||||
|
replacement: {
|
||||||
|
match: /\(function\(\){return \i\.\i\.getUnacknowledgedOffers\(\i\)\.length}\)/,
|
||||||
|
replace: "(function(){return 0})"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
|
||||||
|
getRealMessageRequestCount() {
|
||||||
|
return MessageRequestStore.getMessageRequestChannelIds().size;
|
||||||
|
}
|
||||||
|
});
|
53
src/plugins/noProfileThemes.ts
Normal file
53
src/plugins/noProfileThemes.ts
Normal file
@ -0,0 +1,53 @@
|
|||||||
|
/*
|
||||||
|
* Vencord, a modification for Discord's desktop app
|
||||||
|
* Copyright (c) 2023 Vendicated and contributors
|
||||||
|
*
|
||||||
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
import { Devs } from "@utils/constants";
|
||||||
|
import definePlugin from "@utils/types";
|
||||||
|
|
||||||
|
export default definePlugin({
|
||||||
|
name: "NoProfileThemes",
|
||||||
|
description: "Completely removes Nitro profile themes",
|
||||||
|
authors: [Devs.TheKodeToad],
|
||||||
|
patches: [
|
||||||
|
{
|
||||||
|
find: ".NITRO_BANNER,",
|
||||||
|
replacement: {
|
||||||
|
// = isPremiumAtLeast(user.premiumType, TIER_2)
|
||||||
|
match: /=(?=\i\.\i\.isPremiumAtLeast\(null==(\i))/,
|
||||||
|
// = user.banner && isPremiumAtLeast(user.premiumType, TIER_2)
|
||||||
|
replace: "=$1?.banner&&"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
find: "().avatarPositionPremiumNoBanner,default:",
|
||||||
|
replacement: {
|
||||||
|
// premiumUserWithoutBanner: foo().avatarPositionPremiumNoBanner, default: foo().avatarPositionNormal
|
||||||
|
match: /\.avatarPositionPremiumNoBanner(?=,default:\i\(\)\.(\i))/,
|
||||||
|
// premiumUserWithoutBanner: foo().avatarPositionNormal...
|
||||||
|
replace: ".$1"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
find: ".hasThemeColors=function(){",
|
||||||
|
replacement: {
|
||||||
|
match: /(?<=key:"canUsePremiumProfileCustomization",get:function\(\){return)/,
|
||||||
|
replace: " false;"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
});
|
@ -22,12 +22,27 @@ import definePlugin, { OptionType } from "@utils/types";
|
|||||||
import type { Message } from "discord-types/general";
|
import type { Message } from "discord-types/general";
|
||||||
|
|
||||||
const settings = definePluginSettings({
|
const settings = definePluginSettings({
|
||||||
exemptList: {
|
userList: {
|
||||||
description:
|
description:
|
||||||
"List of users to exempt from this plugin (separated by commas or spaces)",
|
"List of users to allow or exempt pings for (separated by commas or spaces)",
|
||||||
type: OptionType.STRING,
|
type: OptionType.STRING,
|
||||||
default: "1234567890123445,1234567890123445",
|
default: "1234567890123445,1234567890123445",
|
||||||
},
|
},
|
||||||
|
shouldPingListed: {
|
||||||
|
description: "Behaviour",
|
||||||
|
type: OptionType.SELECT,
|
||||||
|
options: [
|
||||||
|
{
|
||||||
|
label: "Do not ping the listed users",
|
||||||
|
value: false,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: "Only ping the listed users",
|
||||||
|
value: true,
|
||||||
|
default: true,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
inverseShiftReply: {
|
inverseShiftReply: {
|
||||||
description: "Invert Discord's shift replying behaviour (enable to make shift reply mention user)",
|
description: "Invert Discord's shift replying behaviour (enable to make shift reply mention user)",
|
||||||
type: OptionType.BOOLEAN,
|
type: OptionType.BOOLEAN,
|
||||||
@ -38,11 +53,12 @@ const settings = definePluginSettings({
|
|||||||
export default definePlugin({
|
export default definePlugin({
|
||||||
name: "NoReplyMention",
|
name: "NoReplyMention",
|
||||||
description: "Disables reply pings by default",
|
description: "Disables reply pings by default",
|
||||||
authors: [Devs.DustyAngel47, Devs.axyie, Devs.pylix],
|
authors: [Devs.DustyAngel47, Devs.axyie, Devs.pylix, Devs.outfoxxed],
|
||||||
settings,
|
settings,
|
||||||
|
|
||||||
shouldMention(message: Message, isHoldingShift: boolean) {
|
shouldMention(message: Message, isHoldingShift: boolean) {
|
||||||
const isExempt = settings.store.exemptList.includes(message.author.id);
|
const isListed = settings.store.userList.includes(message.author.id);
|
||||||
|
const isExempt = settings.store.shouldPingListed ? isListed : !isListed;
|
||||||
return settings.store.inverseShiftReply ? isHoldingShift !== isExempt : !isHoldingShift && isExempt;
|
return settings.store.inverseShiftReply ? isHoldingShift !== isExempt : !isHoldingShift && isExempt;
|
||||||
},
|
},
|
||||||
|
|
||||||
|
105
src/plugins/partyMode.ts
Normal file
105
src/plugins/partyMode.ts
Normal file
@ -0,0 +1,105 @@
|
|||||||
|
/*
|
||||||
|
* Vencord, a modification for Discord's desktop app
|
||||||
|
* Copyright (c) 2023 Vendicated and contributors
|
||||||
|
*
|
||||||
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
import { definePluginSettings } from "@api/Settings";
|
||||||
|
import { Devs } from "@utils/constants";
|
||||||
|
import definePlugin, { OptionType } from "@utils/types";
|
||||||
|
import { findStoreLazy } from "@webpack";
|
||||||
|
import { GenericStore } from "@webpack/common";
|
||||||
|
|
||||||
|
const PoggerModeSettingsStore: GenericStore = findStoreLazy("PoggermodeSettingsStore");
|
||||||
|
|
||||||
|
const enum Intensity {
|
||||||
|
Normal,
|
||||||
|
Better,
|
||||||
|
ProjectX,
|
||||||
|
}
|
||||||
|
|
||||||
|
const settings = definePluginSettings({
|
||||||
|
superIntensePartyMode: {
|
||||||
|
description: "Party intensity",
|
||||||
|
type: OptionType.SELECT,
|
||||||
|
options: [
|
||||||
|
{ label: "Normal", value: Intensity.Normal, default: true },
|
||||||
|
{ label: "Better", value: Intensity.Better },
|
||||||
|
{ label: "Project X", value: Intensity.ProjectX },
|
||||||
|
],
|
||||||
|
restartNeeded: false,
|
||||||
|
onChange: setSettings
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
export default definePlugin({
|
||||||
|
name: "Party mode 🎉",
|
||||||
|
description: "Allows you to use party mode cause the party never ends ✨",
|
||||||
|
authors: [Devs.UwUDev],
|
||||||
|
settings,
|
||||||
|
|
||||||
|
start() {
|
||||||
|
setPoggerState(true);
|
||||||
|
setSettings(settings.store.superIntensePartyMode);
|
||||||
|
},
|
||||||
|
|
||||||
|
stop() {
|
||||||
|
setPoggerState(false);
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
function setPoggerState(state: boolean) {
|
||||||
|
Object.assign(PoggerModeSettingsStore.__getLocalVars().state, {
|
||||||
|
enabled: state,
|
||||||
|
settingsVisible: state
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function setSettings(intensity: Intensity) {
|
||||||
|
const state = {
|
||||||
|
screenshakeEnabledLocations: { 0: true, 1: true, 2: true },
|
||||||
|
shakeIntensity: 1,
|
||||||
|
confettiSize: 16,
|
||||||
|
confettiCount: 5,
|
||||||
|
combosRequiredCount: 1
|
||||||
|
};
|
||||||
|
|
||||||
|
switch (intensity) {
|
||||||
|
case Intensity.Normal: {
|
||||||
|
Object.assign(state, {
|
||||||
|
screenshakeEnabledLocations: { 0: true, 1: false, 2: false },
|
||||||
|
combosRequiredCount: 5
|
||||||
|
});
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
case Intensity.Better: {
|
||||||
|
Object.assign(state, {
|
||||||
|
confettiSize: 12,
|
||||||
|
confettiCount: 8,
|
||||||
|
});
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
case Intensity.ProjectX: {
|
||||||
|
Object.assign(state, {
|
||||||
|
shakeIntensity: 20,
|
||||||
|
confettiSize: 25,
|
||||||
|
confettiCount: 15,
|
||||||
|
});
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Object.assign(PoggerModeSettingsStore.__getLocalVars().state, state);
|
||||||
|
}
|
@ -0,0 +1,225 @@
|
|||||||
|
/*
|
||||||
|
* Vencord, a modification for Discord's desktop app
|
||||||
|
* Copyright (c) 2023 Vendicated and contributors
|
||||||
|
*
|
||||||
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
import ErrorBoundary from "@components/ErrorBoundary";
|
||||||
|
import { Flex } from "@components/Flex";
|
||||||
|
import { InfoIcon, OwnerCrownIcon } from "@components/Icons";
|
||||||
|
import { ModalCloseButton, ModalContent, ModalHeader, ModalProps, ModalRoot, ModalSize, openModal } from "@utils/modal";
|
||||||
|
import { ContextMenu, FluxDispatcher, GuildMemberStore, Menu, PermissionsBits, Text, Tooltip, useEffect, UserStore, useState, useStateFromStores } from "@webpack/common";
|
||||||
|
import type { Guild } from "discord-types/general";
|
||||||
|
|
||||||
|
import { cl, getPermissionDescription, getPermissionString } from "../utils";
|
||||||
|
import { PermissionAllowedIcon, PermissionDefaultIcon, PermissionDeniedIcon } from "./icons";
|
||||||
|
|
||||||
|
export const enum PermissionType {
|
||||||
|
Role = 0,
|
||||||
|
User = 1,
|
||||||
|
Owner = 2
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface RoleOrUserPermission {
|
||||||
|
type: PermissionType;
|
||||||
|
id?: string;
|
||||||
|
permissions?: bigint;
|
||||||
|
overwriteAllow?: bigint;
|
||||||
|
overwriteDeny?: bigint;
|
||||||
|
}
|
||||||
|
|
||||||
|
function openRolesAndUsersPermissionsModal(permissions: Array<RoleOrUserPermission>, guild: Guild, header: string) {
|
||||||
|
return openModal(modalProps => (
|
||||||
|
<RolesAndUsersPermissions
|
||||||
|
modalProps={modalProps}
|
||||||
|
permissions={permissions}
|
||||||
|
guild={guild}
|
||||||
|
header={header}
|
||||||
|
/>
|
||||||
|
));
|
||||||
|
}
|
||||||
|
|
||||||
|
function RolesAndUsersPermissionsComponent({ permissions, guild, modalProps, header }: { permissions: Array<RoleOrUserPermission>; guild: Guild; modalProps: ModalProps; header: string; }) {
|
||||||
|
permissions.sort((a, b) => a.type - b.type);
|
||||||
|
|
||||||
|
useStateFromStores(
|
||||||
|
[GuildMemberStore],
|
||||||
|
() => GuildMemberStore.getMemberIds(guild.id),
|
||||||
|
null,
|
||||||
|
(old, current) => old.length === current.length
|
||||||
|
);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
const usersToRequest = permissions
|
||||||
|
.filter(p => p.type === PermissionType.User && !GuildMemberStore.isMember(guild.id, p.id!))
|
||||||
|
.map(({ id }) => id);
|
||||||
|
|
||||||
|
FluxDispatcher.dispatch({
|
||||||
|
type: "GUILD_MEMBERS_REQUEST",
|
||||||
|
guildIds: [guild.id],
|
||||||
|
userIds: usersToRequest
|
||||||
|
});
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
const [selectedItemIndex, selectItem] = useState(0);
|
||||||
|
const selectedItem = permissions[selectedItemIndex];
|
||||||
|
|
||||||
|
return (
|
||||||
|
<ModalRoot
|
||||||
|
{...modalProps}
|
||||||
|
size={ModalSize.LARGE}
|
||||||
|
>
|
||||||
|
<ModalHeader>
|
||||||
|
<Text className={cl("perms-title")} variant="heading-lg/semibold">{header} permissions:</Text>
|
||||||
|
<ModalCloseButton onClick={modalProps.onClose} />
|
||||||
|
</ModalHeader>
|
||||||
|
|
||||||
|
<ModalContent>
|
||||||
|
{!selectedItem && (
|
||||||
|
<div className={cl("perms-no-perms")}>
|
||||||
|
<Text variant="heading-lg/normal">No permissions to display!</Text>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
|
||||||
|
{selectedItem && (
|
||||||
|
<div className={cl("perms-container")}>
|
||||||
|
<div className={cl("perms-list")}>
|
||||||
|
{permissions.map((permission, index) => {
|
||||||
|
const user = UserStore.getUser(permission.id ?? "");
|
||||||
|
const role = guild.roles[permission.id ?? ""];
|
||||||
|
|
||||||
|
return (
|
||||||
|
<button
|
||||||
|
className={cl("perms-list-item-btn")}
|
||||||
|
onClick={() => selectItem(index)}
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
className={cl("perms-list-item", { "perms-list-item-active": selectedItemIndex === index })}
|
||||||
|
onContextMenu={e => {
|
||||||
|
if (permission.type === PermissionType.Role)
|
||||||
|
ContextMenu.open(e, () => (
|
||||||
|
<RoleContextMenu
|
||||||
|
guild={guild}
|
||||||
|
roleId={permission.id!}
|
||||||
|
onClose={modalProps.onClose}
|
||||||
|
/>
|
||||||
|
));
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
{(permission.type === PermissionType.Role || permission.type === PermissionType.Owner) && (
|
||||||
|
<span
|
||||||
|
className={cl("perms-role-circle")}
|
||||||
|
style={{ backgroundColor: role?.colorString ?? "var(--primary-300)" }}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
{permission.type === PermissionType.User && user !== undefined && (
|
||||||
|
<img
|
||||||
|
className={cl("perms-user-img")}
|
||||||
|
src={user.getAvatarURL(void 0, void 0, false)}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
<Text variant="text-md/normal">
|
||||||
|
{
|
||||||
|
permission.type === PermissionType.Role
|
||||||
|
? role?.name || "Unknown Role"
|
||||||
|
: permission.type === PermissionType.User
|
||||||
|
? user?.tag || "Unknown User"
|
||||||
|
: (
|
||||||
|
<Flex style={{ gap: "0.2em", justifyItems: "center" }}>
|
||||||
|
@owner
|
||||||
|
<OwnerCrownIcon
|
||||||
|
height={18}
|
||||||
|
width={18}
|
||||||
|
aria-hidden="true"
|
||||||
|
/>
|
||||||
|
</Flex>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
</Text>
|
||||||
|
</div>
|
||||||
|
</button>
|
||||||
|
);
|
||||||
|
})}
|
||||||
|
</div>
|
||||||
|
<div className={cl("perms-perms")}>
|
||||||
|
{Object.entries(PermissionsBits).map(([permissionName, bit]) => (
|
||||||
|
<div className={cl("perms-perms-item")}>
|
||||||
|
<div className={cl("perms-perms-item-icon")}>
|
||||||
|
{(() => {
|
||||||
|
const { permissions, overwriteAllow, overwriteDeny } = selectedItem;
|
||||||
|
|
||||||
|
if (permissions)
|
||||||
|
return (permissions & bit) === bit
|
||||||
|
? PermissionAllowedIcon()
|
||||||
|
: PermissionDeniedIcon();
|
||||||
|
|
||||||
|
if (overwriteAllow && (overwriteAllow & bit) === bit)
|
||||||
|
return PermissionAllowedIcon();
|
||||||
|
if (overwriteDeny && (overwriteDeny & bit) === bit)
|
||||||
|
return PermissionDeniedIcon();
|
||||||
|
|
||||||
|
return PermissionDefaultIcon();
|
||||||
|
})()}
|
||||||
|
</div>
|
||||||
|
<Text variant="text-md/normal">{getPermissionString(permissionName)}</Text>
|
||||||
|
|
||||||
|
<Tooltip text={getPermissionDescription(permissionName) || "No Description"}>
|
||||||
|
{props => <InfoIcon {...props} />}
|
||||||
|
</Tooltip>
|
||||||
|
</div>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</ModalContent>
|
||||||
|
</ModalRoot >
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
function RoleContextMenu({ guild, roleId, onClose }: { guild: Guild; roleId: string; onClose: () => void; }) {
|
||||||
|
return (
|
||||||
|
<Menu.Menu
|
||||||
|
navId={cl("role-context-menu")}
|
||||||
|
onClose={ContextMenu.close}
|
||||||
|
aria-label="Role Options"
|
||||||
|
>
|
||||||
|
<Menu.MenuItem
|
||||||
|
id="vc-pw-view-as-role"
|
||||||
|
label="View As Role"
|
||||||
|
action={() => {
|
||||||
|
const role = guild.roles[roleId];
|
||||||
|
if (!role) return;
|
||||||
|
|
||||||
|
onClose();
|
||||||
|
|
||||||
|
FluxDispatcher.dispatch({
|
||||||
|
type: "IMPERSONATE_UPDATE",
|
||||||
|
guildId: guild.id,
|
||||||
|
data: {
|
||||||
|
type: "ROLES",
|
||||||
|
roles: {
|
||||||
|
[roleId]: role
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
</Menu.Menu>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
const RolesAndUsersPermissions = ErrorBoundary.wrap(RolesAndUsersPermissionsComponent);
|
||||||
|
|
||||||
|
export default openRolesAndUsersPermissionsModal;
|
159
src/plugins/permissionsViewer/components/UserPermissions.tsx
Normal file
159
src/plugins/permissionsViewer/components/UserPermissions.tsx
Normal file
@ -0,0 +1,159 @@
|
|||||||
|
/*
|
||||||
|
* Vencord, a modification for Discord's desktop app
|
||||||
|
* Copyright (c) 2023 Vendicated and contributors
|
||||||
|
*
|
||||||
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
import ErrorBoundary from "@components/ErrorBoundary";
|
||||||
|
import ExpandableHeader from "@components/ExpandableHeader";
|
||||||
|
import { proxyLazy } from "@utils/lazy";
|
||||||
|
import { classes } from "@utils/misc";
|
||||||
|
import { filters, findBulk } from "@webpack";
|
||||||
|
import { i18n, PermissionsBits, Text, Tooltip, useMemo, UserStore } from "@webpack/common";
|
||||||
|
import type { Guild, GuildMember } from "discord-types/general";
|
||||||
|
|
||||||
|
import { PermissionsSortOrder, settings } from "..";
|
||||||
|
import { cl, getPermissionString, getSortedRoles, sortUserRoles } from "../utils";
|
||||||
|
import openRolesAndUsersPermissionsModal, { PermissionType, type RoleOrUserPermission } from "./RolesAndUsersPermissions";
|
||||||
|
|
||||||
|
interface UserPermission {
|
||||||
|
permission: string;
|
||||||
|
roleColor: string;
|
||||||
|
rolePosition: number;
|
||||||
|
}
|
||||||
|
|
||||||
|
type UserPermissions = Array<UserPermission>;
|
||||||
|
|
||||||
|
const Classes = proxyLazy(() => {
|
||||||
|
const modules = findBulk(
|
||||||
|
filters.byProps("roles", "rolePill", "rolePillBorder"),
|
||||||
|
filters.byProps("roleCircle", "dotBorderBase", "dotBorderColor"),
|
||||||
|
filters.byProps("roleNameOverflow", "root", "roleName", "roleRemoveButton")
|
||||||
|
);
|
||||||
|
|
||||||
|
return Object.assign({}, ...modules);
|
||||||
|
}) as Record<"roles" | "rolePill" | "rolePillBorder" | "desaturateUserColors" | "flex" | "alignCenter" | "justifyCenter" | "svg" | "background" | "dot" | "dotBorderColor" | "roleCircle" | "dotBorderBase" | "flex" | "alignCenter" | "justifyCenter" | "wrap" | "root" | "role" | "roleRemoveButton" | "roleDot" | "roleFlowerStar" | "roleRemoveIcon" | "roleRemoveIconFocused" | "roleVerifiedIcon" | "roleName" | "roleNameOverflow" | "actionButton" | "overflowButton" | "addButton" | "addButtonIcon" | "overflowRolesPopout" | "overflowRolesPopoutArrowWrapper" | "overflowRolesPopoutArrow" | "popoutBottom" | "popoutTop" | "overflowRolesPopoutHeader" | "overflowRolesPopoutHeaderIcon" | "overflowRolesPopoutHeaderText" | "roleIcon", string>;
|
||||||
|
|
||||||
|
function UserPermissionsComponent({ guild, guildMember }: { guild: Guild; guildMember: GuildMember; }) {
|
||||||
|
const stns = settings.use(["permissionsSortOrder"]);
|
||||||
|
|
||||||
|
const [rolePermissions, userPermissions] = useMemo(() => {
|
||||||
|
const userPermissions: UserPermissions = [];
|
||||||
|
|
||||||
|
const userRoles = getSortedRoles(guild, guildMember);
|
||||||
|
|
||||||
|
const rolePermissions: Array<RoleOrUserPermission> = userRoles.map(role => ({
|
||||||
|
type: PermissionType.Role,
|
||||||
|
...role
|
||||||
|
}));
|
||||||
|
|
||||||
|
if (guild.ownerId === guildMember.userId) {
|
||||||
|
rolePermissions.push({
|
||||||
|
type: PermissionType.Owner,
|
||||||
|
permissions: Object.values(PermissionsBits).reduce((prev, curr) => prev | curr, 0n)
|
||||||
|
});
|
||||||
|
|
||||||
|
const OWNER = i18n.Messages.GUILD_OWNER || "Server Owner";
|
||||||
|
userPermissions.push({
|
||||||
|
permission: OWNER,
|
||||||
|
roleColor: "var(--primary-300)",
|
||||||
|
rolePosition: Infinity
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
sortUserRoles(userRoles);
|
||||||
|
|
||||||
|
for (const [permission, bit] of Object.entries(PermissionsBits)) {
|
||||||
|
for (const { permissions, colorString, position, name } of userRoles) {
|
||||||
|
if ((permissions & bit) === bit) {
|
||||||
|
userPermissions.push({
|
||||||
|
permission: getPermissionString(permission),
|
||||||
|
roleColor: colorString || "var(--primary-300)",
|
||||||
|
rolePosition: position
|
||||||
|
});
|
||||||
|
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
userPermissions.sort((a, b) => b.rolePosition - a.rolePosition);
|
||||||
|
|
||||||
|
return [rolePermissions, userPermissions];
|
||||||
|
}, [stns.permissionsSortOrder]);
|
||||||
|
|
||||||
|
const { root, role, roleRemoveButton, roleNameOverflow, roles, rolePill, rolePillBorder, roleCircle, roleName } = Classes;
|
||||||
|
|
||||||
|
return (
|
||||||
|
<ExpandableHeader
|
||||||
|
headerText="Permissions"
|
||||||
|
moreTooltipText="Role Details"
|
||||||
|
onMoreClick={() =>
|
||||||
|
openRolesAndUsersPermissionsModal(
|
||||||
|
rolePermissions,
|
||||||
|
guild,
|
||||||
|
guildMember.nick || UserStore.getUser(guildMember.userId).username
|
||||||
|
)
|
||||||
|
}
|
||||||
|
defaultState={settings.store.defaultPermissionsDropdownState}
|
||||||
|
buttons={[
|
||||||
|
(<Tooltip text={`Sorting by ${stns.permissionsSortOrder === PermissionsSortOrder.HighestRole ? "Highest Role" : "Lowest Role"}`}>
|
||||||
|
{tooltipProps => (
|
||||||
|
<button
|
||||||
|
{...tooltipProps}
|
||||||
|
className={cl("userperms-sortorder-btn")}
|
||||||
|
onClick={() => {
|
||||||
|
stns.permissionsSortOrder = stns.permissionsSortOrder === PermissionsSortOrder.HighestRole ? PermissionsSortOrder.LowestRole : PermissionsSortOrder.HighestRole;
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<svg
|
||||||
|
width="20"
|
||||||
|
height="20"
|
||||||
|
viewBox="0 96 960 960"
|
||||||
|
transform={stns.permissionsSortOrder === PermissionsSortOrder.HighestRole ? "scale(1 1)" : "scale(1 -1)"}
|
||||||
|
>
|
||||||
|
<path fill="var(--text-normal)" d="M440 896V409L216 633l-56-57 320-320 320 320-56 57-224-224v487h-80Z" />
|
||||||
|
</svg>
|
||||||
|
</button>
|
||||||
|
)}
|
||||||
|
</Tooltip>)
|
||||||
|
]}>
|
||||||
|
{userPermissions.length > 0 && (
|
||||||
|
<div className={classes(root, roles)}>
|
||||||
|
{userPermissions.map(({ permission, roleColor }) => (
|
||||||
|
<div className={classes(role, rolePill, rolePillBorder)}>
|
||||||
|
<div className={roleRemoveButton}>
|
||||||
|
<span
|
||||||
|
className={roleCircle}
|
||||||
|
style={{ backgroundColor: roleColor }}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div className={roleName}>
|
||||||
|
<Text
|
||||||
|
className={roleNameOverflow}
|
||||||
|
variant="text-xs/medium"
|
||||||
|
>
|
||||||
|
{permission}
|
||||||
|
</Text>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</ExpandableHeader>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
export default ErrorBoundary.wrap(UserPermissionsComponent, { noop: true });
|
58
src/plugins/permissionsViewer/components/icons.tsx
Normal file
58
src/plugins/permissionsViewer/components/icons.tsx
Normal file
@ -0,0 +1,58 @@
|
|||||||
|
/*
|
||||||
|
* Vencord, a modification for Discord's desktop app
|
||||||
|
* Copyright (c) 2023 Vendicated and contributors
|
||||||
|
*
|
||||||
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
export function PermissionDeniedIcon() {
|
||||||
|
return (
|
||||||
|
<svg
|
||||||
|
height="24"
|
||||||
|
width="24"
|
||||||
|
viewBox="0 0 24 24"
|
||||||
|
>
|
||||||
|
<title>Denied</title>
|
||||||
|
<path fill="var(--status-danger)" d="M18.4 4L12 10.4L5.6 4L4 5.6L10.4 12L4 18.4L5.6 20L12 13.6L18.4 20L20 18.4L13.6 12L20 5.6L18.4 4Z" />
|
||||||
|
</svg>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
export function PermissionAllowedIcon() {
|
||||||
|
return (
|
||||||
|
<svg
|
||||||
|
height="24"
|
||||||
|
width="24"
|
||||||
|
viewBox="0 0 24 24"
|
||||||
|
>
|
||||||
|
<title>Allowed</title>
|
||||||
|
<path fill="var(--text-positive)" d="M8.99991 16.17L4.82991 12L3.40991 13.41L8.99991 19L20.9999 7.00003L19.5899 5.59003L8.99991 16.17ZZ" />
|
||||||
|
</svg>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
export function PermissionDefaultIcon() {
|
||||||
|
return (
|
||||||
|
<svg
|
||||||
|
height="24"
|
||||||
|
width="24"
|
||||||
|
viewBox="0 0 16 16"
|
||||||
|
>
|
||||||
|
<g>
|
||||||
|
<title>Not overwritten</title>
|
||||||
|
<polygon fill="var(--text-normal)" points="12 2.32 10.513 2 4 13.68 5.487 14" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
);
|
||||||
|
}
|
189
src/plugins/permissionsViewer/index.tsx
Normal file
189
src/plugins/permissionsViewer/index.tsx
Normal file
@ -0,0 +1,189 @@
|
|||||||
|
/*
|
||||||
|
* Vencord, a modification for Discord's desktop app
|
||||||
|
* Copyright (c) 2023 Vendicated and contributors
|
||||||
|
*
|
||||||
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
import "./styles.css";
|
||||||
|
|
||||||
|
import { addContextMenuPatch, findGroupChildrenByChildId, NavContextMenuPatchCallback, removeContextMenuPatch } from "@api/ContextMenu";
|
||||||
|
import { definePluginSettings } from "@api/Settings";
|
||||||
|
import { Devs } from "@utils/constants";
|
||||||
|
import definePlugin, { OptionType } from "@utils/types";
|
||||||
|
import { ChannelStore, GuildMemberStore, GuildStore, Menu, PermissionsBits, UserStore } from "@webpack/common";
|
||||||
|
import type { Guild, GuildMember } from "discord-types/general";
|
||||||
|
|
||||||
|
import openRolesAndUsersPermissionsModal, { PermissionType, RoleOrUserPermission } from "./components/RolesAndUsersPermissions";
|
||||||
|
import UserPermissions from "./components/UserPermissions";
|
||||||
|
import { getSortedRoles, sortPermissionOverwrites } from "./utils";
|
||||||
|
|
||||||
|
export const enum PermissionsSortOrder {
|
||||||
|
HighestRole,
|
||||||
|
LowestRole
|
||||||
|
}
|
||||||
|
|
||||||
|
const enum MenuItemParentType {
|
||||||
|
User,
|
||||||
|
Channel,
|
||||||
|
Guild
|
||||||
|
}
|
||||||
|
|
||||||
|
export const settings = definePluginSettings({
|
||||||
|
permissionsSortOrder: {
|
||||||
|
description: "The sort method used for defining which role grants an user a certain permission",
|
||||||
|
type: OptionType.SELECT,
|
||||||
|
options: [
|
||||||
|
{ label: "Highest Role", value: PermissionsSortOrder.HighestRole, default: true },
|
||||||
|
{ label: "Lowest Role", value: PermissionsSortOrder.LowestRole }
|
||||||
|
],
|
||||||
|
},
|
||||||
|
defaultPermissionsDropdownState: {
|
||||||
|
description: "Whether the permissions dropdown on user popouts should be open by default",
|
||||||
|
type: OptionType.BOOLEAN,
|
||||||
|
default: false,
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
function MenuItem(guildId: string, id?: string, type?: MenuItemParentType) {
|
||||||
|
if (type === MenuItemParentType.User && !GuildMemberStore.isMember(guildId, id!)) return null;
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Menu.MenuItem
|
||||||
|
id="perm-viewer-permissions"
|
||||||
|
label="Permissions"
|
||||||
|
action={() => {
|
||||||
|
const guild = GuildStore.getGuild(guildId);
|
||||||
|
|
||||||
|
let permissions: RoleOrUserPermission[];
|
||||||
|
let header: string;
|
||||||
|
|
||||||
|
switch (type) {
|
||||||
|
case MenuItemParentType.User: {
|
||||||
|
const member = GuildMemberStore.getMember(guildId, id!);
|
||||||
|
|
||||||
|
permissions = getSortedRoles(guild, member)
|
||||||
|
.map(role => ({
|
||||||
|
type: PermissionType.Role,
|
||||||
|
...role
|
||||||
|
}));
|
||||||
|
|
||||||
|
if (guild.ownerId === id) {
|
||||||
|
permissions.push({
|
||||||
|
type: PermissionType.Owner,
|
||||||
|
permissions: Object.values(PermissionsBits).reduce((prev, curr) => prev | curr, 0n)
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
header = member.nick ?? UserStore.getUser(member.userId).username;
|
||||||
|
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
case MenuItemParentType.Channel: {
|
||||||
|
const channel = ChannelStore.getChannel(id!);
|
||||||
|
|
||||||
|
permissions = sortPermissionOverwrites(Object.values(channel.permissionOverwrites).map(({ id, allow, deny, type }) => ({
|
||||||
|
type: type as PermissionType,
|
||||||
|
id,
|
||||||
|
overwriteAllow: allow,
|
||||||
|
overwriteDeny: deny
|
||||||
|
})), guildId);
|
||||||
|
|
||||||
|
header = channel.name;
|
||||||
|
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
default: {
|
||||||
|
permissions = Object.values(guild.roles).map(role => ({
|
||||||
|
type: PermissionType.Role,
|
||||||
|
...role
|
||||||
|
}));
|
||||||
|
|
||||||
|
header = guild.name;
|
||||||
|
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
openRolesAndUsersPermissionsModal(permissions, guild, header);
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
function makeContextMenuPatch(childId: string | string[], type?: MenuItemParentType): NavContextMenuPatchCallback {
|
||||||
|
return (children, props) => () => {
|
||||||
|
if (!props) return children;
|
||||||
|
|
||||||
|
const group = findGroupChildrenByChildId(childId, children);
|
||||||
|
|
||||||
|
const item = (() => {
|
||||||
|
switch (type) {
|
||||||
|
case MenuItemParentType.User:
|
||||||
|
return MenuItem(props.guildId, props.user.id, type);
|
||||||
|
case MenuItemParentType.Channel:
|
||||||
|
return MenuItem(props.guild.id, props.channel.id, type);
|
||||||
|
case MenuItemParentType.Guild:
|
||||||
|
return MenuItem(props.guild.id);
|
||||||
|
default:
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
})();
|
||||||
|
|
||||||
|
if (item == null) return;
|
||||||
|
|
||||||
|
if (group)
|
||||||
|
group.push(item);
|
||||||
|
else if (childId === "roles" && props.guildId)
|
||||||
|
// "roles" may not be present due to the member not having any roles. In that case, add it above "Copy ID"
|
||||||
|
children.splice(-1, 0, <Menu.MenuGroup>{item}</Menu.MenuGroup>);
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
export default definePlugin({
|
||||||
|
name: "PermissionsViewer",
|
||||||
|
description: "View the permissions a user or channel has, and the roles of a server",
|
||||||
|
authors: [Devs.Nuckyz, Devs.Ven],
|
||||||
|
settings,
|
||||||
|
|
||||||
|
patches: [
|
||||||
|
{
|
||||||
|
find: ".Messages.BOT_PROFILE_SLASH_COMMANDS",
|
||||||
|
replacement: {
|
||||||
|
match: /showBorder:.{0,60}}\),(?<=guild:(\i),guildMember:(\i),.+?)/,
|
||||||
|
replace: (m, guild, guildMember) => `${m}$self.UserPermissions(${guild},${guildMember}),`
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
|
||||||
|
UserPermissions: (guild: Guild, guildMember?: GuildMember) => !!guildMember && <UserPermissions guild={guild} guildMember={guildMember} />,
|
||||||
|
|
||||||
|
userContextMenuPatch: makeContextMenuPatch("roles", MenuItemParentType.User),
|
||||||
|
channelContextMenuPatch: makeContextMenuPatch(["mute-channel", "unmute-channel"], MenuItemParentType.Channel),
|
||||||
|
guildContextMenuPatch: makeContextMenuPatch("privacy", MenuItemParentType.Guild),
|
||||||
|
|
||||||
|
start() {
|
||||||
|
addContextMenuPatch("user-context", this.userContextMenuPatch);
|
||||||
|
addContextMenuPatch("channel-context", this.channelContextMenuPatch);
|
||||||
|
addContextMenuPatch("guild-context", this.guildContextMenuPatch);
|
||||||
|
},
|
||||||
|
|
||||||
|
stop() {
|
||||||
|
removeContextMenuPatch("user-context", this.userContextMenuPatch);
|
||||||
|
removeContextMenuPatch("channel-context", this.channelContextMenuPatch);
|
||||||
|
removeContextMenuPatch("guild-context", this.guildContextMenuPatch);
|
||||||
|
},
|
||||||
|
});
|
146
src/plugins/permissionsViewer/styles.css
Normal file
146
src/plugins/permissionsViewer/styles.css
Normal file
@ -0,0 +1,146 @@
|
|||||||
|
/* User Permissions Component */
|
||||||
|
|
||||||
|
.vc-permviewer-userperms-title-container {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: center;
|
||||||
|
margin-top: 10px;
|
||||||
|
margin-bottom: 6px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.vc-permviewer-userperms-btns-container {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.vc-permviewer-userperms-sortorder-btn {
|
||||||
|
all: unset;
|
||||||
|
cursor: pointer;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
width: 24px;
|
||||||
|
height: 24px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.vc-permviewer-userperms-permdetails-btn {
|
||||||
|
all: unset;
|
||||||
|
cursor: pointer;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.vc-permviewer-userperms-toggleperms-btn {
|
||||||
|
all: unset;
|
||||||
|
cursor: pointer;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* RolesAndUsersPermissions Component */
|
||||||
|
|
||||||
|
.vc-permviewer-perms-title {
|
||||||
|
flex-grow: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.vc-permviewer-perms-no-perms {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.vc-permviewer-perms-container {
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: 1fr 2fr;
|
||||||
|
grid-template-areas: "list permissions";
|
||||||
|
padding: 16px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.vc-permviewer-perms-list {
|
||||||
|
grid-area: list;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
border-right: 2px solid var(--background-modifier-active);
|
||||||
|
}
|
||||||
|
|
||||||
|
.vc-permviewer-perms-list-item-btn {
|
||||||
|
all: unset;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
.vc-permviewer-perms-list-item {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
padding: 8px 5px;
|
||||||
|
cursor: pointer;
|
||||||
|
width: 230px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.vc-permviewer-perms-list-item > div {
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
white-space: nowrap;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
.vc-permviewer-perms-list-item-active {
|
||||||
|
background-color: var(--background-modifier-selected);
|
||||||
|
border-radius: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.vc-permviewer-perms-role-circle {
|
||||||
|
border-radius: 50%;
|
||||||
|
width: 12px;
|
||||||
|
height: 12px;
|
||||||
|
margin-left: 3px;
|
||||||
|
margin-right: 11px;
|
||||||
|
flex-shrink: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.vc-permviewer-perms-user-img {
|
||||||
|
border-radius: 50%;
|
||||||
|
width: 20px;
|
||||||
|
height: 20px;
|
||||||
|
margin-right: 6px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.vc-permviewer-perms-perms {
|
||||||
|
grid-area: permissions;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
margin-left: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.vc-permviewer-perms-perms-item {
|
||||||
|
position: relative;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
padding: 10px;
|
||||||
|
border-bottom: 2px solid var(--background-modifier-active);
|
||||||
|
}
|
||||||
|
|
||||||
|
.vc-permviewer-perms-perms-item:last-child {
|
||||||
|
border: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.vc-permviewer-perms-perms-item-icon {
|
||||||
|
border: 1px solid var(--background-modifier-selected);
|
||||||
|
width: 24px;
|
||||||
|
height: 24px;
|
||||||
|
margin-right: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.vc-permviewer-perms-perms-item .vc-info-icon {
|
||||||
|
color: var(--interactive-muted);
|
||||||
|
cursor: pointer;
|
||||||
|
position: absolute;
|
||||||
|
right: 0;
|
||||||
|
scale: 0.9;
|
||||||
|
transition: color ease-in 0.1s;
|
||||||
|
}
|
||||||
|
|
||||||
|
.vc-permviewer-perms-perms-item .vc-info-icon:hover {
|
||||||
|
color: var(--interactive-active);
|
||||||
|
}
|
98
src/plugins/permissionsViewer/utils.ts
Normal file
98
src/plugins/permissionsViewer/utils.ts
Normal file
@ -0,0 +1,98 @@
|
|||||||
|
/*
|
||||||
|
* Vencord, a modification for Discord's desktop app
|
||||||
|
* Copyright (c) 2023 Vendicated and contributors
|
||||||
|
*
|
||||||
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
import { classNameFactory } from "@api/Styles";
|
||||||
|
import { wordsToTitle } from "@utils/text";
|
||||||
|
import { GuildStore, i18n, Parser } from "@webpack/common";
|
||||||
|
import { Guild, GuildMember, Role } from "discord-types/general";
|
||||||
|
import type { ReactNode } from "react";
|
||||||
|
|
||||||
|
import { PermissionsSortOrder, settings } from ".";
|
||||||
|
import { PermissionType } from "./components/RolesAndUsersPermissions";
|
||||||
|
|
||||||
|
export const cl = classNameFactory("vc-permviewer-");
|
||||||
|
|
||||||
|
function formatPermissionWithoutMatchingString(permission: string) {
|
||||||
|
return wordsToTitle(permission.toLowerCase().split("_"));
|
||||||
|
}
|
||||||
|
|
||||||
|
// because discord is unable to be consistent with their names
|
||||||
|
const PermissionKeyMap = {
|
||||||
|
MANAGE_GUILD: "MANAGE_SERVER",
|
||||||
|
MANAGE_GUILD_EXPRESSIONS: "MANAGE_EXPRESSIONS",
|
||||||
|
CREATE_GUILD_EXPRESSIONS: "CREATE_EXPRESSIONS",
|
||||||
|
MODERATE_MEMBERS: "MODERATE_MEMBER", // HELLOOOO ??????
|
||||||
|
STREAM: "VIDEO",
|
||||||
|
SEND_VOICE_MESSAGES: "ROLE_PERMISSIONS_SEND_VOICE_MESSAGE",
|
||||||
|
} as const;
|
||||||
|
|
||||||
|
export function getPermissionString(permission: string) {
|
||||||
|
permission = PermissionKeyMap[permission] || permission;
|
||||||
|
|
||||||
|
return i18n.Messages[permission] ||
|
||||||
|
// shouldn't get here but just in case
|
||||||
|
formatPermissionWithoutMatchingString(permission);
|
||||||
|
}
|
||||||
|
|
||||||
|
export function getPermissionDescription(permission: string): ReactNode {
|
||||||
|
// DISCORD PLEEEEEEEEAAAAASE IM BEGGING YOU :(
|
||||||
|
if (permission === "USE_APPLICATION_COMMANDS")
|
||||||
|
permission = "USE_APPLICATION_COMMANDS_GUILD";
|
||||||
|
else if (permission === "SEND_VOICE_MESSAGES")
|
||||||
|
permission = "SEND_VOICE_MESSAGE_GUILD";
|
||||||
|
else if (permission !== "STREAM")
|
||||||
|
permission = PermissionKeyMap[permission] || permission;
|
||||||
|
|
||||||
|
const msg = i18n.Messages[`ROLE_PERMISSIONS_${permission}_DESCRIPTION`] as any;
|
||||||
|
if (msg?.hasMarkdown)
|
||||||
|
return Parser.parse(msg.message);
|
||||||
|
|
||||||
|
if (typeof msg === "string") return msg;
|
||||||
|
|
||||||
|
return "";
|
||||||
|
}
|
||||||
|
|
||||||
|
export function getSortedRoles({ roles, id }: Guild, member: GuildMember) {
|
||||||
|
return [...member.roles, id]
|
||||||
|
.map(id => roles[id])
|
||||||
|
.sort((a, b) => b.position - a.position);
|
||||||
|
}
|
||||||
|
|
||||||
|
export function sortUserRoles(roles: Role[]) {
|
||||||
|
switch (settings.store.permissionsSortOrder) {
|
||||||
|
case PermissionsSortOrder.HighestRole:
|
||||||
|
return roles.sort((a, b) => b.position - a.position);
|
||||||
|
case PermissionsSortOrder.LowestRole:
|
||||||
|
return roles.sort((a, b) => a.position - b.position);
|
||||||
|
default:
|
||||||
|
return roles;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export function sortPermissionOverwrites<T extends { id: string; type: number; }>(overwrites: T[], guildId: string) {
|
||||||
|
const guild = GuildStore.getGuild(guildId);
|
||||||
|
|
||||||
|
return overwrites.sort((a, b) => {
|
||||||
|
if (a.type !== PermissionType.Role || b.type !== PermissionType.Role) return 0;
|
||||||
|
|
||||||
|
const roleA = guild.roles[a.id];
|
||||||
|
const roleB = guild.roles[b.id];
|
||||||
|
|
||||||
|
return roleB.position - roleA.position;
|
||||||
|
});
|
||||||
|
}
|
@ -29,15 +29,15 @@ import { User } from "discord-types/general";
|
|||||||
|
|
||||||
const SessionsStore = findStoreLazy("SessionsStore");
|
const SessionsStore = findStoreLazy("SessionsStore");
|
||||||
|
|
||||||
function Icon(path: string, viewBox = "0 0 24 24") {
|
function Icon(path: string, opts?: { viewBox?: string; width?: number; height?: number; }) {
|
||||||
return ({ color, tooltip }: { color: string; tooltip: string; }) => (
|
return ({ color, tooltip }: { color: string; tooltip: string; }) => (
|
||||||
<Tooltip text={tooltip} >
|
<Tooltip text={tooltip} >
|
||||||
{(tooltipProps: any) => (
|
{(tooltipProps: any) => (
|
||||||
<svg
|
<svg
|
||||||
{...tooltipProps}
|
{...tooltipProps}
|
||||||
height="20"
|
height={opts?.height ?? 20}
|
||||||
width="20"
|
width={opts?.width ?? 20}
|
||||||
viewBox={viewBox}
|
viewBox={opts?.viewBox ?? "0 0 24 24"}
|
||||||
fill={color}
|
fill={color}
|
||||||
>
|
>
|
||||||
<path d={path} />
|
<path d={path} />
|
||||||
@ -50,8 +50,8 @@ function Icon(path: string, viewBox = "0 0 24 24") {
|
|||||||
const Icons = {
|
const Icons = {
|
||||||
desktop: Icon("M4 2.5c-1.103 0-2 .897-2 2v11c0 1.104.897 2 2 2h7v2H7v2h10v-2h-4v-2h7c1.103 0 2-.896 2-2v-11c0-1.103-.897-2-2-2H4Zm16 2v9H4v-9h16Z"),
|
desktop: Icon("M4 2.5c-1.103 0-2 .897-2 2v11c0 1.104.897 2 2 2h7v2H7v2h10v-2h-4v-2h7c1.103 0 2-.896 2-2v-11c0-1.103-.897-2-2-2H4Zm16 2v9H4v-9h16Z"),
|
||||||
web: Icon("M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2Zm-1 17.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L9 15v1c0 1.1.9 2 2 2v1.93Zm6.9-2.54c-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H8v-2h2c.55 0 1-.45 1-1V7h2c1.1 0 2-.9 2-2v-.41c2.93 1.19 5 4.06 5 7.41 0 2.08-.8 3.97-2.1 5.39Z"),
|
web: Icon("M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2Zm-1 17.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L9 15v1c0 1.1.9 2 2 2v1.93Zm6.9-2.54c-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H8v-2h2c.55 0 1-.45 1-1V7h2c1.1 0 2-.9 2-2v-.41c2.93 1.19 5 4.06 5 7.41 0 2.08-.8 3.97-2.1 5.39Z"),
|
||||||
mobile: Icon("M15.5 1h-8A2.5 2.5 0 0 0 5 3.5v17A2.5 2.5 0 0 0 7.5 23h8a2.5 2.5 0 0 0 2.5-2.5v-17A2.5 2.5 0 0 0 15.5 1zm-4 21c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm4.5-4H7V4h9v14z"),
|
mobile: Icon("M 187 0 L 813 0 C 916.277 0 1000 83.723 1000 187 L 1000 1313 C 1000 1416.277 916.277 1500 813 1500 L 187 1500 C 83.723 1500 0 1416.277 0 1313 L 0 187 C 0 83.723 83.723 0 187 0 Z M 125 1000 L 875 1000 L 875 250 L 125 250 Z M 500 1125 C 430.964 1125 375 1180.964 375 1250 C 375 1319.036 430.964 1375 500 1375 C 569.036 1375 625 1319.036 625 1250 C 625 1180.964 569.036 1125 500 1125 Z", { viewBox: "0 0 1000 1500", height: 17, width: 17 }),
|
||||||
console: Icon("M14.8 2.7 9 3.1V47h3.3c1.7 0 6.2.3 10 .7l6.7.6V2l-4.2.2c-2.4.1-6.9.3-10 .5zm1.8 6.4c1 1.7-1.3 3.6-2.7 2.2C12.7 10.1 13.5 8 15 8c.5 0 1.2.5 1.6 1.1zM16 33c0 6-.4 10-1 10s-1-4-1-10 .4-10 1-10 1 4 1 10zm15-8v23.3l3.8-.7c2-.3 4.7-.6 6-.6H43V3h-2.2c-1.3 0-4-.3-6-.6L31 1.7V25z", "0 0 50 50"),
|
console: Icon("M14.8 2.7 9 3.1V47h3.3c1.7 0 6.2.3 10 .7l6.7.6V2l-4.2.2c-2.4.1-6.9.3-10 .5zm1.8 6.4c1 1.7-1.3 3.6-2.7 2.2C12.7 10.1 13.5 8 15 8c.5 0 1.2.5 1.6 1.1zM16 33c0 6-.4 10-1 10s-1-4-1-10 .4-10 1-10 1 4 1 10zm15-8v23.3l3.8-.7c2-.3 4.7-.6 6-.6H43V3h-2.2c-1.3 0-4-.3-6-.6L31 1.7V25z", { viewBox: "0 0 50 50" }),
|
||||||
};
|
};
|
||||||
type Platform = keyof typeof Icons;
|
type Platform = keyof typeof Icons;
|
||||||
|
|
||||||
@ -66,7 +66,7 @@ const PlatformIcon = ({ platform, status }: { platform: Platform, status: string
|
|||||||
|
|
||||||
const getStatus = (id: string): Record<Platform, string> => PresenceStore.getState()?.clientStatuses?.[id];
|
const getStatus = (id: string): Record<Platform, string> => PresenceStore.getState()?.clientStatuses?.[id];
|
||||||
|
|
||||||
const PlatformIndicator = ({ user, wantMargin = true }: { user: User; wantMargin?: boolean; }) => {
|
const PlatformIndicator = ({ user, wantMargin = true, wantTopMargin = false }: { user: User; wantMargin?: boolean; wantTopMargin?: boolean; }) => {
|
||||||
if (!user || user.bot) return null;
|
if (!user || user.bot) return null;
|
||||||
|
|
||||||
if (user.id === UserStore.getCurrentUser().id) {
|
if (user.id === UserStore.getCurrentUser().id) {
|
||||||
@ -110,12 +110,13 @@ const PlatformIndicator = ({ user, wantMargin = true }: { user: User; wantMargin
|
|||||||
style={{
|
style={{
|
||||||
display: "inline-flex",
|
display: "inline-flex",
|
||||||
justifyContent: "center",
|
justifyContent: "center",
|
||||||
|
alignItems: "center",
|
||||||
marginLeft: wantMargin ? 4 : 0,
|
marginLeft: wantMargin ? 4 : 0,
|
||||||
verticalAlign: "top",
|
verticalAlign: "top",
|
||||||
position: "relative",
|
position: "relative",
|
||||||
top: wantMargin ? 1 : 0,
|
top: wantTopMargin ? 2 : 0,
|
||||||
padding: !wantMargin ? 2 : 0,
|
padding: !wantMargin ? 1 : 0,
|
||||||
gap: 4
|
gap: 2
|
||||||
}}
|
}}
|
||||||
|
|
||||||
>
|
>
|
||||||
@ -150,7 +151,7 @@ const indicatorLocations = {
|
|||||||
description: "Inside messages",
|
description: "Inside messages",
|
||||||
onEnable: () => addDecoration("platform-indicator", props =>
|
onEnable: () => addDecoration("platform-indicator", props =>
|
||||||
<ErrorBoundary noop>
|
<ErrorBoundary noop>
|
||||||
<PlatformIndicator user={props.message?.author} />
|
<PlatformIndicator user={props.message?.author} wantTopMargin={true} />
|
||||||
</ErrorBoundary>
|
</ErrorBoundary>
|
||||||
),
|
),
|
||||||
onDisable: () => removeDecoration("platform-indicator")
|
onDisable: () => removeDecoration("platform-indicator")
|
||||||
@ -160,7 +161,7 @@ const indicatorLocations = {
|
|||||||
export default definePlugin({
|
export default definePlugin({
|
||||||
name: "PlatformIndicators",
|
name: "PlatformIndicators",
|
||||||
description: "Adds platform indicators (Desktop, Mobile, Web...) to users",
|
description: "Adds platform indicators (Desktop, Mobile, Web...) to users",
|
||||||
authors: [Devs.kemo, Devs.TheSun, Devs.Nuckyz],
|
authors: [Devs.kemo, Devs.TheSun, Devs.Nuckyz, Devs.Ven],
|
||||||
dependencies: ["MessageDecorationsAPI", "MemberListDecoratorsAPI"],
|
dependencies: ["MessageDecorationsAPI", "MemberListDecoratorsAPI"],
|
||||||
|
|
||||||
start() {
|
start() {
|
||||||
|
@ -26,10 +26,12 @@ import { settings } from "../settings";
|
|||||||
|
|
||||||
const styles: Record<string, string> = findByPropsLazy("timestampInline");
|
const styles: Record<string, string> = findByPropsLazy("timestampInline");
|
||||||
|
|
||||||
|
const AUTO_MODERATION_ACTION = 24;
|
||||||
|
|
||||||
function shouldShow(message: Message): boolean {
|
function shouldShow(message: Message): boolean {
|
||||||
if (!settings.store.showInMessages)
|
if (!settings.store.showInMessages)
|
||||||
return false;
|
return false;
|
||||||
if (message.author.bot || message.author.system)
|
if (message.author.bot || message.author.system || message.type === AUTO_MODERATION_ACTION)
|
||||||
return false;
|
return false;
|
||||||
if (!settings.store.showSelf && message.author.id === UserStore.getCurrentUser().id)
|
if (!settings.store.showSelf && message.author.id === UserStore.getCurrentUser().id)
|
||||||
return false;
|
return false;
|
||||||
|
@ -159,9 +159,12 @@ function getNextMessage(isUp: boolean, isReply: boolean) {
|
|||||||
return i === - 1 ? undefined : messages[messages.length - i - 1];
|
return i === - 1 ? undefined : messages[messages.length - i - 1];
|
||||||
}
|
}
|
||||||
|
|
||||||
function shouldMention() {
|
function shouldMention(message) {
|
||||||
|
const { enabled, userList, shouldPingListed } = Settings.plugins.NoReplyMention;
|
||||||
|
const shouldPing = !enabled || (shouldPingListed === userList.includes(message.author.id));
|
||||||
|
|
||||||
switch (settings.store.shouldMention) {
|
switch (settings.store.shouldMention) {
|
||||||
case MentionOptions.NO_REPLY_MENTION_PLUGIN: return !Settings.plugins.NoReplyMention.enabled;
|
case MentionOptions.NO_REPLY_MENTION_PLUGIN: return shouldPing;
|
||||||
case MentionOptions.DISABLED: return false;
|
case MentionOptions.DISABLED: return false;
|
||||||
default: return true;
|
default: return true;
|
||||||
}
|
}
|
||||||
@ -184,7 +187,7 @@ function nextReply(isUp: boolean) {
|
|||||||
type: "CREATE_PENDING_REPLY",
|
type: "CREATE_PENDING_REPLY",
|
||||||
channel,
|
channel,
|
||||||
message,
|
message,
|
||||||
shouldMention: shouldMention(),
|
shouldMention: shouldMention(message),
|
||||||
showMentionToggle: channel.guild_id !== null && message.author.id !== meId,
|
showMentionToggle: channel.guild_id !== null && message.author.id !== meId,
|
||||||
_isQuickReply: true
|
_isQuickReply: true
|
||||||
});
|
});
|
||||||
|
@ -20,7 +20,7 @@ import { Devs } from "@utils/constants";
|
|||||||
import definePlugin from "@utils/types";
|
import definePlugin from "@utils/types";
|
||||||
import { findByPropsLazy } from "@webpack";
|
import { findByPropsLazy } from "@webpack";
|
||||||
|
|
||||||
const SpoilerClasses = findByPropsLazy("spoilerText");
|
const SpoilerClasses = findByPropsLazy("spoilerContent");
|
||||||
const MessagesClasses = findByPropsLazy("messagesWrapper", "messages");
|
const MessagesClasses = findByPropsLazy("messagesWrapper", "messages");
|
||||||
|
|
||||||
export default definePlugin({
|
export default definePlugin({
|
||||||
@ -43,14 +43,14 @@ export default definePlugin({
|
|||||||
|
|
||||||
if (!ctrlKey) { return; }
|
if (!ctrlKey) { return; }
|
||||||
|
|
||||||
const { spoilerText, hidden } = SpoilerClasses;
|
const { spoilerContent, hidden } = SpoilerClasses;
|
||||||
const { messagesWrapper } = MessagesClasses;
|
const { messagesWrapper } = MessagesClasses;
|
||||||
|
|
||||||
const parent = shiftKey
|
const parent = shiftKey
|
||||||
? document.querySelector(`div.${messagesWrapper}`)
|
? document.querySelector(`div.${messagesWrapper}`)
|
||||||
: (target as HTMLSpanElement).parentElement;
|
: (target as HTMLSpanElement).parentElement;
|
||||||
|
|
||||||
for (const spoiler of parent!.querySelectorAll(`span.${spoilerText}.${hidden}`)) {
|
for (const spoiler of parent!.querySelectorAll(`span.${spoilerContent}.${hidden}`)) {
|
||||||
(spoiler as HTMLSpanElement).click();
|
(spoiler as HTMLSpanElement).click();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -17,6 +17,8 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
import { addContextMenuPatch, findGroupChildrenByChildId, NavContextMenuPatchCallback, removeContextMenuPatch } from "@api/ContextMenu";
|
import { addContextMenuPatch, findGroupChildrenByChildId, NavContextMenuPatchCallback, removeContextMenuPatch } from "@api/ContextMenu";
|
||||||
|
import { Flex } from "@components/Flex";
|
||||||
|
import { OpenExternalIcon } from "@components/Icons";
|
||||||
import { Devs } from "@utils/constants";
|
import { Devs } from "@utils/constants";
|
||||||
import definePlugin from "@utils/types";
|
import definePlugin from "@utils/types";
|
||||||
import { Menu } from "@webpack/common";
|
import { Menu } from "@webpack/common";
|
||||||
@ -28,7 +30,7 @@ const Engines = {
|
|||||||
IQDB: "https://iqdb.org/?url=",
|
IQDB: "https://iqdb.org/?url=",
|
||||||
TinEye: "https://www.tineye.com/search?url=",
|
TinEye: "https://www.tineye.com/search?url=",
|
||||||
ImgOps: "https://imgops.com/start?url="
|
ImgOps: "https://imgops.com/start?url="
|
||||||
};
|
} as const;
|
||||||
|
|
||||||
function search(src: string, engine: string) {
|
function search(src: string, engine: string) {
|
||||||
open(engine + encodeURIComponent(src), "_blank");
|
open(engine + encodeURIComponent(src), "_blank");
|
||||||
@ -50,13 +52,28 @@ const imageContextMenuPatch: NavContextMenuPatchCallback = (children, props) =>
|
|||||||
key="search-image"
|
key="search-image"
|
||||||
id="search-image"
|
id="search-image"
|
||||||
>
|
>
|
||||||
{Object.keys(Engines).map(engine => {
|
{Object.keys(Engines).map((engine, i) => {
|
||||||
const key = "search-image-" + engine;
|
const key = "search-image-" + engine;
|
||||||
return (
|
return (
|
||||||
<Menu.MenuItem
|
<Menu.MenuItem
|
||||||
key={key}
|
key={key}
|
||||||
id={key}
|
id={key}
|
||||||
label={engine}
|
label={
|
||||||
|
<Flex style={{ alignItems: "center", gap: "0.5em" }}>
|
||||||
|
<img
|
||||||
|
style={{
|
||||||
|
borderRadius: i >= 3 // Do not round Google, Yandex & SauceNAO
|
||||||
|
? "50%"
|
||||||
|
: void 0
|
||||||
|
}}
|
||||||
|
aria-hidden="true"
|
||||||
|
height={16}
|
||||||
|
width={16}
|
||||||
|
src={new URL("/favicon.ico", Engines[engine]).toString().replace("lens.", "")}
|
||||||
|
/>
|
||||||
|
{engine}
|
||||||
|
</Flex>
|
||||||
|
}
|
||||||
action={() => search(src, Engines[engine])}
|
action={() => search(src, Engines[engine])}
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
@ -64,7 +81,12 @@ const imageContextMenuPatch: NavContextMenuPatchCallback = (children, props) =>
|
|||||||
<Menu.MenuItem
|
<Menu.MenuItem
|
||||||
key="search-image-all"
|
key="search-image-all"
|
||||||
id="search-image-all"
|
id="search-image-all"
|
||||||
label="All"
|
label={
|
||||||
|
<Flex style={{ alignItems: "center", gap: "0.5em" }}>
|
||||||
|
<OpenExternalIcon height={16} width={16} />
|
||||||
|
All
|
||||||
|
</Flex>
|
||||||
|
}
|
||||||
action={() => Object.values(Engines).forEach(e => search(src, e))}
|
action={() => Object.values(Engines).forEach(e => search(src, e))}
|
||||||
/>
|
/>
|
||||||
</Menu.MenuItem>
|
</Menu.MenuItem>
|
||||||
|
@ -17,28 +17,44 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
import { classes } from "@utils/misc";
|
import { classes } from "@utils/misc";
|
||||||
import { LazyComponent } from "@utils/react";
|
import { findByPropsLazy } from "@webpack";
|
||||||
import { findByProps } from "@webpack";
|
import { Tooltip } from "@webpack/common";
|
||||||
|
|
||||||
export default LazyComponent(() => {
|
const iconClasses = findByPropsLazy("button", "wrapper", "disabled", "separator");
|
||||||
const { button, dangerous } = findByProps("button", "wrapper", "disabled", "separator");
|
|
||||||
|
|
||||||
return function MessageButton(props) {
|
export function DeleteButton({ onClick }: { onClick(): void; }) {
|
||||||
return props.type === "delete"
|
return (
|
||||||
? (
|
<Tooltip text="Delete Review">
|
||||||
<div className={classes(button, dangerous)} aria-label="Delete Review" onClick={props.callback}>
|
{props => (
|
||||||
<svg aria-hidden="false" width="16" height="16" viewBox="0 0 20 20">
|
<div
|
||||||
<path fill="currentColor" d="M15 3.999V2H9V3.999H3V5.999H21V3.999H15Z"></path>
|
{...props}
|
||||||
<path fill="currentColor" d="M5 6.99902V18.999C5 20.101 5.897 20.999 7 20.999H17C18.103 20.999 19 20.101 19 18.999V6.99902H5ZM11 17H9V11H11V17ZM15 17H13V11H15V17Z"></path>
|
className={classes(iconClasses.button, iconClasses.dangerous)}
|
||||||
|
onClick={onClick}
|
||||||
|
>
|
||||||
|
<svg width="16" height="16" viewBox="0 0 20 20">
|
||||||
|
<path fill="currentColor" d="M15 3.999V2H9V3.999H3V5.999H21V3.999H15Z" />
|
||||||
|
<path fill="currentColor" d="M5 6.99902V18.999C5 20.101 5.897 20.999 7 20.999H17C18.103 20.999 19 20.101 19 18.999V6.99902H5ZM11 17H9V11H11V17ZM15 17H13V11H15V17Z" />
|
||||||
</svg>
|
</svg>
|
||||||
</div>
|
</div>
|
||||||
)
|
)}
|
||||||
: (
|
</Tooltip>
|
||||||
<div className={button} aria-label="Report Review" onClick={() => props.callback()}>
|
);
|
||||||
<svg aria-hidden="false" width="16" height="16" viewBox="0 0 20 20">
|
}
|
||||||
<path fill="currentColor" d="M20,6.002H14V3.002C14,2.45 13.553,2.002 13,2.002H4C3.447,2.002 3,2.45 3,3.002V22.002H5V14.002H10.586L8.293,16.295C8.007,16.581 7.922,17.011 8.076,17.385C8.23,17.759 8.596,18.002 9,18.002H20C20.553,18.002 21,17.554 21,17.002V7.002C21,6.45 20.553,6.002 20,6.002Z"></path>
|
|
||||||
|
export function ReportButton({ onClick }: { onClick(): void; }) {
|
||||||
|
return (
|
||||||
|
<Tooltip text="Report Review">
|
||||||
|
{props => (
|
||||||
|
<div
|
||||||
|
{...props}
|
||||||
|
className={iconClasses.button}
|
||||||
|
onClick={onClick}
|
||||||
|
>
|
||||||
|
<svg width="16" height="16" viewBox="0 0 20 20">
|
||||||
|
<path fill="currentColor" d="M20,6.002H14V3.002C14,2.45 13.553,2.002 13,2.002H4C3.447,2.002 3,2.45 3,3.002V22.002H5V14.002H10.586L8.293,16.295C8.007,16.581 7.922,17.011 8.076,17.385C8.23,17.759 8.596,18.002 9,18.002H20C20.553,18.002 21,17.554 21,17.002V7.002C21,6.45 20.553,6.002 20,6.002Z" />
|
||||||
</svg>
|
</svg>
|
||||||
</div>
|
</div>
|
||||||
);
|
)}
|
||||||
};
|
</Tooltip>
|
||||||
});
|
);
|
||||||
|
}
|
||||||
|
@ -18,7 +18,8 @@
|
|||||||
|
|
||||||
import { MaskedLinkStore, Tooltip } from "@webpack/common";
|
import { MaskedLinkStore, Tooltip } from "@webpack/common";
|
||||||
|
|
||||||
import { Badge } from "../entities/Badge";
|
import { Badge } from "../entities";
|
||||||
|
import { cl } from "../utils";
|
||||||
|
|
||||||
export default function ReviewBadge(badge: Badge) {
|
export default function ReviewBadge(badge: Badge) {
|
||||||
return (
|
return (
|
||||||
@ -26,13 +27,13 @@ export default function ReviewBadge(badge: Badge) {
|
|||||||
text={badge.name}>
|
text={badge.name}>
|
||||||
{({ onMouseEnter, onMouseLeave }) => (
|
{({ onMouseEnter, onMouseLeave }) => (
|
||||||
<img
|
<img
|
||||||
|
className={cl("badge")}
|
||||||
width="24px"
|
width="24px"
|
||||||
height="24px"
|
height="24px"
|
||||||
onMouseEnter={onMouseEnter}
|
onMouseEnter={onMouseEnter}
|
||||||
onMouseLeave={onMouseLeave}
|
onMouseLeave={onMouseLeave}
|
||||||
src={badge.icon}
|
src={badge.icon}
|
||||||
alt={badge.description}
|
alt={badge.description}
|
||||||
style={{ verticalAlign: "middle", marginLeft: "4px" }}
|
|
||||||
onClick={() =>
|
onClick={() =>
|
||||||
MaskedLinkStore.openUntrustedLink({
|
MaskedLinkStore.openUntrustedLink({
|
||||||
href: badge.redirectURL,
|
href: badge.redirectURL,
|
||||||
|
@ -16,16 +16,16 @@
|
|||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import { Settings } from "@api/Settings";
|
|
||||||
import { classes } from "@utils/misc";
|
import { classes } from "@utils/misc";
|
||||||
import { LazyComponent } from "@utils/react";
|
import { LazyComponent } from "@utils/react";
|
||||||
import { filters, findBulk } from "@webpack";
|
import { filters, findBulk } from "@webpack";
|
||||||
import { Alerts, moment, Timestamp, UserStore } from "@webpack/common";
|
import { Alerts, moment, Timestamp, UserStore } from "@webpack/common";
|
||||||
|
|
||||||
import { Review } from "../entities/Review";
|
import { Review, ReviewType } from "../entities";
|
||||||
import { deleteReview, reportReview } from "../Utils/ReviewDBAPI";
|
import { deleteReview, reportReview } from "../reviewDbApi";
|
||||||
import { canDeleteReview, openUserProfileModal, showToast } from "../Utils/Utils";
|
import { settings } from "../settings";
|
||||||
import MessageButton from "./MessageButton";
|
import { canDeleteReview, cl, openUserProfileModal, showToast } from "../utils";
|
||||||
|
import { DeleteButton, ReportButton } from "./MessageButton";
|
||||||
import ReviewBadge from "./ReviewBadge";
|
import ReviewBadge from "./ReviewBadge";
|
||||||
|
|
||||||
export default LazyComponent(() => {
|
export default LazyComponent(() => {
|
||||||
@ -34,19 +34,19 @@ export default LazyComponent(() => {
|
|||||||
const [
|
const [
|
||||||
{ cozyMessage, buttons, message, groupStart },
|
{ cozyMessage, buttons, message, groupStart },
|
||||||
{ container, isHeader },
|
{ container, isHeader },
|
||||||
{ avatar, clickable, username, messageContent, wrapper, cozy, timestampInline, timestamp },
|
{ avatar, clickable, username, messageContent, wrapper, cozy },
|
||||||
{ contents },
|
|
||||||
buttonClasses,
|
buttonClasses,
|
||||||
{ defaultColor }
|
botTag
|
||||||
] = findBulk(
|
] = findBulk(
|
||||||
p("cozyMessage"),
|
p("cozyMessage"),
|
||||||
p("container", "isHeader"),
|
p("container", "isHeader"),
|
||||||
p("avatar", "zalgo"),
|
p("avatar", "zalgo"),
|
||||||
p("contents"),
|
|
||||||
p("button", "wrapper", "selected"),
|
p("button", "wrapper", "selected"),
|
||||||
p("defaultColor")
|
p("botTag")
|
||||||
);
|
);
|
||||||
|
|
||||||
|
const dateFormat = new Intl.DateTimeFormat();
|
||||||
|
|
||||||
return function ReviewComponent({ review, refetch }: { review: Review; refetch(): void; }) {
|
return function ReviewComponent({ review, refetch }: { review: Review; refetch(): void; }) {
|
||||||
function openModal() {
|
function openModal() {
|
||||||
openUserProfileModal(review.sender.discordID);
|
openUserProfileModal(review.sender.discordID);
|
||||||
@ -81,21 +81,21 @@ export default LazyComponent(() => {
|
|||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className={classes(cozyMessage, wrapper, message, groupStart, cozy, "user-review")} style={
|
<div className={classes(cozyMessage, wrapper, message, groupStart, cozy, cl("review"))} style={
|
||||||
{
|
{
|
||||||
marginLeft: "0px",
|
marginLeft: "0px",
|
||||||
paddingLeft: "52px",
|
paddingLeft: "52px", // wth is this
|
||||||
paddingRight: "16px"
|
paddingRight: "16px"
|
||||||
}
|
}
|
||||||
}>
|
}>
|
||||||
|
|
||||||
<div className={contents} style={{ paddingLeft: "0px" }}>
|
<img
|
||||||
<img
|
className={classes(avatar, clickable)}
|
||||||
className={classes(avatar, clickable)}
|
onClick={openModal}
|
||||||
onClick={openModal}
|
src={review.sender.profilePhoto || "/assets/1f0bfc0865d324c2587920a7d80c609b.png?size=128"}
|
||||||
src={review.sender.profilePhoto || "/assets/1f0bfc0865d324c2587920a7d80c609b.png?size=128"}
|
style={{ left: "0px" }}
|
||||||
style={{ left: "0px" }}
|
/>
|
||||||
/>
|
<div style={{ display: "inline-flex", justifyContent: "center", alignItems: "center" }}>
|
||||||
<span
|
<span
|
||||||
className={classes(clickable, username)}
|
className={classes(clickable, username)}
|
||||||
style={{ color: "var(--channels-default)", fontSize: "14px" }}
|
style={{ color: "var(--channels-default)", fontSize: "14px" }}
|
||||||
@ -103,34 +103,45 @@ export default LazyComponent(() => {
|
|||||||
>
|
>
|
||||||
{review.sender.username}
|
{review.sender.username}
|
||||||
</span>
|
</span>
|
||||||
{review.sender.badges.map(badge => <ReviewBadge {...badge} />)}
|
|
||||||
|
|
||||||
{
|
{review.type === ReviewType.System && (
|
||||||
!Settings.plugins.ReviewDB.hideTimestamps && (
|
<span
|
||||||
<Timestamp
|
className={classes(botTag.botTagVerified, botTag.botTagRegular, botTag.botTag, botTag.px, botTag.rem)}
|
||||||
timestamp={moment(review.timestamp * 1000)}
|
style={{ marginLeft: "4px" }}>
|
||||||
compact={true}
|
<span className={botTag.botText}>
|
||||||
/>
|
System
|
||||||
)
|
</span>
|
||||||
}
|
</span>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
{review.sender.badges.map(badge => <ReviewBadge {...badge} />)}
|
||||||
|
|
||||||
<p
|
{
|
||||||
className={classes(messageContent, defaultColor)}
|
!settings.store.hideTimestamps && review.type !== ReviewType.System && (
|
||||||
style={{ fontSize: 15, marginTop: 4 }}
|
<Timestamp timestamp={moment(review.timestamp * 1000)} >
|
||||||
>
|
{dateFormat.format(review.timestamp * 1000)}
|
||||||
{review.comment}
|
</Timestamp>)
|
||||||
</p>
|
}
|
||||||
|
|
||||||
|
<p
|
||||||
|
className={classes(messageContent)}
|
||||||
|
style={{ fontSize: 15, marginTop: 4, color: "var(--text-normal)" }}
|
||||||
|
>
|
||||||
|
{review.comment}
|
||||||
|
</p>
|
||||||
|
{review.id !== 0 && (
|
||||||
<div className={classes(container, isHeader, buttons)} style={{
|
<div className={classes(container, isHeader, buttons)} style={{
|
||||||
padding: "0px",
|
padding: "0px",
|
||||||
}}>
|
}}>
|
||||||
<div className={buttonClasses.wrapper} >
|
<div className={buttonClasses.wrapper} >
|
||||||
<MessageButton type="report" callback={reportRev} />
|
<ReportButton onClick={reportRev} />
|
||||||
|
|
||||||
{canDeleteReview(review, UserStore.getCurrentUser().id) && (
|
{canDeleteReview(review, UserStore.getCurrentUser().id) && (
|
||||||
<MessageButton type="delete" callback={delReview} />
|
<DeleteButton onClick={delReview} />
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
)}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
104
src/plugins/reviewDB/components/ReviewModal.tsx
Normal file
104
src/plugins/reviewDB/components/ReviewModal.tsx
Normal file
@ -0,0 +1,104 @@
|
|||||||
|
/*
|
||||||
|
* Vencord, a modification for Discord's desktop app
|
||||||
|
* Copyright (c) 2023 Vendicated and contributors
|
||||||
|
*
|
||||||
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
import ErrorBoundary from "@components/ErrorBoundary";
|
||||||
|
import { ModalCloseButton, ModalContent, ModalFooter, ModalHeader, ModalRoot, ModalSize, openModal } from "@utils/modal";
|
||||||
|
import { useForceUpdater } from "@utils/react";
|
||||||
|
import { Paginator, Text, useRef, useState } from "@webpack/common";
|
||||||
|
|
||||||
|
import { Response, REVIEWS_PER_PAGE } from "../reviewDbApi";
|
||||||
|
import { settings } from "../settings";
|
||||||
|
import { cl } from "../utils";
|
||||||
|
import ReviewComponent from "./ReviewComponent";
|
||||||
|
import ReviewsView, { ReviewsInputComponent } from "./ReviewsView";
|
||||||
|
|
||||||
|
function Modal({ modalProps, discordId, name }: { modalProps: any; discordId: string; name: string; }) {
|
||||||
|
const [data, setData] = useState<Response>();
|
||||||
|
const [signal, refetch] = useForceUpdater(true);
|
||||||
|
const [page, setPage] = useState(1);
|
||||||
|
|
||||||
|
const ref = useRef<HTMLDivElement>(null);
|
||||||
|
|
||||||
|
const reviewCount = data?.reviewCount;
|
||||||
|
const ownReview = data?.reviews.find(r => r.sender.discordID === settings.store.user?.discordID);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<ErrorBoundary>
|
||||||
|
<ModalRoot {...modalProps} size={ModalSize.MEDIUM}>
|
||||||
|
<ModalHeader>
|
||||||
|
<Text variant="heading-lg/semibold" className={cl("modal-header")}>
|
||||||
|
{name}'s Reviews
|
||||||
|
{!!reviewCount && <span> ({reviewCount} Reviews)</span>}
|
||||||
|
</Text>
|
||||||
|
<ModalCloseButton onClick={modalProps.onClose} />
|
||||||
|
</ModalHeader>
|
||||||
|
|
||||||
|
<ModalContent scrollerRef={ref}>
|
||||||
|
<div className={cl("modal-reviews")}>
|
||||||
|
<ReviewsView
|
||||||
|
discordId={discordId}
|
||||||
|
name={name}
|
||||||
|
page={page}
|
||||||
|
refetchSignal={signal}
|
||||||
|
onFetchReviews={setData}
|
||||||
|
scrollToTop={() => ref.current?.scrollTo({ top: 0, behavior: "smooth" })}
|
||||||
|
hideOwnReview
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</ModalContent>
|
||||||
|
|
||||||
|
<ModalFooter className={cl("modal-footer")}>
|
||||||
|
<div>
|
||||||
|
{ownReview && (
|
||||||
|
<ReviewComponent
|
||||||
|
refetch={refetch}
|
||||||
|
review={ownReview}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
<ReviewsInputComponent
|
||||||
|
isAuthor={ownReview != null}
|
||||||
|
discordId={discordId}
|
||||||
|
name={name}
|
||||||
|
refetch={refetch}
|
||||||
|
/>
|
||||||
|
|
||||||
|
{!!reviewCount && (
|
||||||
|
<Paginator
|
||||||
|
currentPage={page}
|
||||||
|
maxVisiblePages={5}
|
||||||
|
pageSize={REVIEWS_PER_PAGE}
|
||||||
|
totalCount={reviewCount}
|
||||||
|
onPageChange={setPage}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
</ModalFooter>
|
||||||
|
</ModalRoot>
|
||||||
|
</ErrorBoundary>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
export function openReviewsModal(discordId: string, name: string) {
|
||||||
|
openModal(props => (
|
||||||
|
<Modal
|
||||||
|
modalProps={props}
|
||||||
|
discordId={discordId}
|
||||||
|
name={name}
|
||||||
|
/>
|
||||||
|
));
|
||||||
|
}
|
@ -16,42 +16,113 @@
|
|||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import { Settings } from "@api/Settings";
|
|
||||||
import { classes } from "@utils/misc";
|
import { classes } from "@utils/misc";
|
||||||
import { useAwaiter } from "@utils/react";
|
import { useAwaiter, useForceUpdater } from "@utils/react";
|
||||||
import { findLazy } from "@webpack";
|
import { findByPropsLazy } from "@webpack";
|
||||||
import { Forms, React, Text, UserStore } from "@webpack/common";
|
import { Forms, React, UserStore } from "@webpack/common";
|
||||||
import type { KeyboardEvent } from "react";
|
import type { KeyboardEvent } from "react";
|
||||||
|
|
||||||
import { addReview, getReviews } from "../Utils/ReviewDBAPI";
|
import { Review } from "../entities";
|
||||||
import { authorize, showToast } from "../Utils/Utils";
|
import { addReview, getReviews, Response, REVIEWS_PER_PAGE } from "../reviewDbApi";
|
||||||
|
import { settings } from "../settings";
|
||||||
|
import { authorize, cl, showToast } from "../utils";
|
||||||
import ReviewComponent from "./ReviewComponent";
|
import ReviewComponent from "./ReviewComponent";
|
||||||
|
|
||||||
const Classes = findLazy(m => typeof m.textarea === "string");
|
const Classes = findByPropsLazy("inputDefault", "editable");
|
||||||
|
|
||||||
export default function ReviewsView({ userId }: { userId: string; }) {
|
interface UserProps {
|
||||||
const { token } = Settings.plugins.ReviewDB;
|
discordId: string;
|
||||||
const [refetchCount, setRefetchCount] = React.useState(0);
|
name: string;
|
||||||
const [reviews, _, isLoading] = useAwaiter(() => getReviews(userId), {
|
}
|
||||||
fallbackValue: [],
|
|
||||||
deps: [refetchCount],
|
interface Props extends UserProps {
|
||||||
|
onFetchReviews(data: Response): void;
|
||||||
|
refetchSignal?: unknown;
|
||||||
|
showInput?: boolean;
|
||||||
|
page?: number;
|
||||||
|
scrollToTop?(): void;
|
||||||
|
hideOwnReview?: boolean;
|
||||||
|
}
|
||||||
|
|
||||||
|
export default function ReviewsView({
|
||||||
|
discordId,
|
||||||
|
name,
|
||||||
|
onFetchReviews,
|
||||||
|
refetchSignal,
|
||||||
|
scrollToTop,
|
||||||
|
page = 1,
|
||||||
|
showInput = false,
|
||||||
|
hideOwnReview = false,
|
||||||
|
}: Props) {
|
||||||
|
const [signal, refetch] = useForceUpdater(true);
|
||||||
|
|
||||||
|
const [reviewData] = useAwaiter(() => getReviews(discordId, (page - 1) * REVIEWS_PER_PAGE), {
|
||||||
|
fallbackValue: null,
|
||||||
|
deps: [refetchSignal, signal, page],
|
||||||
|
onSuccess: data => {
|
||||||
|
scrollToTop?.();
|
||||||
|
onFetchReviews(data!);
|
||||||
|
}
|
||||||
});
|
});
|
||||||
const username = UserStore.getUser(userId)?.username ?? "";
|
|
||||||
|
|
||||||
const dirtyRefetch = () => setRefetchCount(refetchCount + 1);
|
if (!reviewData) return null;
|
||||||
|
|
||||||
if (isLoading) return null;
|
return (
|
||||||
|
<>
|
||||||
|
<ReviewList
|
||||||
|
refetch={refetch}
|
||||||
|
reviews={reviewData!.reviews}
|
||||||
|
hideOwnReview={hideOwnReview}
|
||||||
|
/>
|
||||||
|
|
||||||
|
{showInput && (
|
||||||
|
<ReviewsInputComponent
|
||||||
|
name={name}
|
||||||
|
discordId={discordId}
|
||||||
|
refetch={refetch}
|
||||||
|
isAuthor={reviewData!.reviews?.some(r => r.sender.discordID === UserStore.getCurrentUser().id)}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
function ReviewList({ refetch, reviews, hideOwnReview }: { refetch(): void; reviews: Review[]; hideOwnReview: boolean; }) {
|
||||||
|
const myId = UserStore.getCurrentUser().id;
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className={cl("view")}>
|
||||||
|
{reviews?.map(review =>
|
||||||
|
(review.sender.discordID !== myId || !hideOwnReview) &&
|
||||||
|
<ReviewComponent
|
||||||
|
key={review.id}
|
||||||
|
review={review}
|
||||||
|
refetch={refetch}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
|
||||||
|
{reviews?.length === 0 && (
|
||||||
|
<Forms.FormText className={cl("placeholder")}>
|
||||||
|
Looks like nobody reviewed this user yet. You could be the first!
|
||||||
|
</Forms.FormText>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
export function ReviewsInputComponent({ discordId, isAuthor, refetch, name }: { discordId: string, name: string; isAuthor: boolean; refetch(): void; }) {
|
||||||
|
const { token } = settings.store;
|
||||||
|
|
||||||
function onKeyPress({ key, target }: KeyboardEvent<HTMLTextAreaElement>) {
|
function onKeyPress({ key, target }: KeyboardEvent<HTMLTextAreaElement>) {
|
||||||
if (key === "Enter") {
|
if (key === "Enter") {
|
||||||
addReview({
|
addReview({
|
||||||
userid: userId,
|
userid: discordId,
|
||||||
comment: (target as HTMLInputElement).value,
|
comment: (target as HTMLInputElement).value,
|
||||||
star: -1
|
star: -1
|
||||||
}).then(res => {
|
}).then(res => {
|
||||||
if (res?.success) {
|
if (res?.success) {
|
||||||
(target as HTMLInputElement).value = ""; // clear the input
|
(target as HTMLInputElement).value = ""; // clear the input
|
||||||
dirtyRefetch();
|
refetch();
|
||||||
} else if (res?.message) {
|
} else if (res?.message) {
|
||||||
showToast(res.message);
|
showToast(res.message);
|
||||||
}
|
}
|
||||||
@ -60,54 +131,27 @@ export default function ReviewsView({ userId }: { userId: string; }) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="vc-reviewdb-view">
|
<textarea
|
||||||
<Text
|
className={classes(Classes.inputDefault, "enter-comment", cl("input"))}
|
||||||
tag="h2"
|
onKeyDownCapture={e => {
|
||||||
variant="eyebrow"
|
if (e.key === "Enter") {
|
||||||
style={{
|
e.preventDefault(); // prevent newlines
|
||||||
marginBottom: "12px",
|
|
||||||
color: "var(--header-primary)"
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
User Reviews
|
|
||||||
</Text>
|
|
||||||
{reviews?.map(review =>
|
|
||||||
<ReviewComponent
|
|
||||||
key={review.id}
|
|
||||||
review={review}
|
|
||||||
refetch={dirtyRefetch}
|
|
||||||
/>
|
|
||||||
)}
|
|
||||||
{reviews?.length === 0 && (
|
|
||||||
<Forms.FormText style={{ padding: "12px", paddingTop: "0px", paddingLeft: "4px", fontWeight: "bold", fontStyle: "italic" }}>
|
|
||||||
Looks like nobody reviewed this user yet. You could be the first!
|
|
||||||
</Forms.FormText>
|
|
||||||
)}
|
|
||||||
<textarea
|
|
||||||
className={classes(Classes.textarea.replace("textarea", ""), "enter-comment")}
|
|
||||||
// this produces something like '-_59yqs ...' but since no class exists with that name its fine
|
|
||||||
placeholder={
|
|
||||||
token
|
|
||||||
? (reviews?.some(r => r.sender.discordID === UserStore.getCurrentUser().id)
|
|
||||||
? `Update review for @${username}`
|
|
||||||
: `Review @${username}`)
|
|
||||||
: "You need to authorize to review users!"
|
|
||||||
}
|
}
|
||||||
onKeyDown={onKeyPress}
|
}}
|
||||||
onClick={() => {
|
placeholder={
|
||||||
if (!token) {
|
!token
|
||||||
showToast("Opening authorization window...");
|
? "You need to authorize to review users!"
|
||||||
authorize();
|
: isAuthor
|
||||||
}
|
? `Update review for @${name}`
|
||||||
}}
|
: `Review @${name}`
|
||||||
|
}
|
||||||
style={{
|
onKeyDown={onKeyPress}
|
||||||
marginTop: "6px",
|
onClick={() => {
|
||||||
resize: "none",
|
if (!token) {
|
||||||
marginBottom: "12px",
|
showToast("Opening authorization window...");
|
||||||
overflow: "hidden",
|
authorize();
|
||||||
}}
|
}
|
||||||
/>
|
}}
|
||||||
</div>
|
/>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -22,7 +22,55 @@ export const enum UserType {
|
|||||||
Admin = 1
|
Admin = 1
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export const enum ReviewType {
|
||||||
|
User = 0,
|
||||||
|
Server = 1,
|
||||||
|
Support = 2,
|
||||||
|
System = 3
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface Badge {
|
||||||
|
name: string;
|
||||||
|
description: string;
|
||||||
|
icon: string;
|
||||||
|
redirectURL: string;
|
||||||
|
type: number;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface BanInfo {
|
||||||
|
id: string;
|
||||||
|
discordID: string;
|
||||||
|
reviewID: number;
|
||||||
|
reviewContent: string;
|
||||||
|
banEndDate: number;
|
||||||
|
}
|
||||||
|
|
||||||
export interface ReviewDBUser {
|
export interface ReviewDBUser {
|
||||||
lastReviewID: number,
|
ID: number;
|
||||||
|
discordID: string;
|
||||||
|
username: string;
|
||||||
|
profilePhoto: string;
|
||||||
|
clientMod: string;
|
||||||
|
warningCount: number;
|
||||||
|
badges: any[];
|
||||||
|
banInfo: BanInfo | null;
|
||||||
|
lastReviewID: number;
|
||||||
type: UserType;
|
type: UserType;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface ReviewAuthor {
|
||||||
|
id: number,
|
||||||
|
discordID: string,
|
||||||
|
username: string,
|
||||||
|
profilePhoto: string,
|
||||||
|
badges: Badge[];
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface Review {
|
||||||
|
comment: string,
|
||||||
|
id: number,
|
||||||
|
star: number,
|
||||||
|
sender: ReviewAuthor,
|
||||||
|
timestamp: number;
|
||||||
|
type?: ReviewType;
|
||||||
|
}
|
@ -1,26 +0,0 @@
|
|||||||
/*
|
|
||||||
* Vencord, a modification for Discord's desktop app
|
|
||||||
* Copyright (c) 2022 Vendicated and contributors
|
|
||||||
*
|
|
||||||
* This program is free software: you can redistribute it and/or modify
|
|
||||||
* it under the terms of the GNU General Public License as published by
|
|
||||||
* the Free Software Foundation, either version 3 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
|
||||||
* This program is distributed in the hope that it will be useful,
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
* GNU General Public License for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
*/
|
|
||||||
|
|
||||||
|
|
||||||
export interface Badge {
|
|
||||||
name: string;
|
|
||||||
description: string;
|
|
||||||
icon: string;
|
|
||||||
redirectURL : string;
|
|
||||||
type: number;
|
|
||||||
}
|
|
@ -1,35 +0,0 @@
|
|||||||
/*
|
|
||||||
* Vencord, a modification for Discord's desktop app
|
|
||||||
* Copyright (c) 2022 Vendicated and contributors
|
|
||||||
*
|
|
||||||
* This program is free software: you can redistribute it and/or modify
|
|
||||||
* it under the terms of the GNU General Public License as published by
|
|
||||||
* the Free Software Foundation, either version 3 of the License, or
|
|
||||||
* (at your option) any later version.
|
|
||||||
*
|
|
||||||
* This program is distributed in the hope that it will be useful,
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
* GNU General Public License for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU General Public License
|
|
||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
||||||
*/
|
|
||||||
|
|
||||||
import { Badge } from "./Badge";
|
|
||||||
|
|
||||||
export interface Sender {
|
|
||||||
id : number,
|
|
||||||
discordID: string,
|
|
||||||
username: string,
|
|
||||||
profilePhoto: string,
|
|
||||||
badges: Badge[]
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface Review {
|
|
||||||
comment: string,
|
|
||||||
id: number,
|
|
||||||
star: number,
|
|
||||||
sender: Sender,
|
|
||||||
timestamp: number
|
|
||||||
}
|
|
@ -18,22 +18,40 @@
|
|||||||
|
|
||||||
import "./style.css";
|
import "./style.css";
|
||||||
|
|
||||||
import { Settings } from "@api/Settings";
|
import { addContextMenuPatch, NavContextMenuPatchCallback, removeContextMenuPatch } from "@api/ContextMenu";
|
||||||
import ErrorBoundary from "@components/ErrorBoundary";
|
import ErrorBoundary from "@components/ErrorBoundary";
|
||||||
|
import ExpandableHeader from "@components/ExpandableHeader";
|
||||||
|
import { OpenExternalIcon } from "@components/Icons";
|
||||||
import { Devs } from "@utils/constants";
|
import { Devs } from "@utils/constants";
|
||||||
import definePlugin, { OptionType } from "@utils/types";
|
import definePlugin from "@utils/types";
|
||||||
import { Button } from "@webpack/common";
|
import { Alerts, Menu, useState } from "@webpack/common";
|
||||||
import { User } from "discord-types/general";
|
import { Guild, User } from "discord-types/general";
|
||||||
|
|
||||||
|
import { openReviewsModal } from "./components/ReviewModal";
|
||||||
import ReviewsView from "./components/ReviewsView";
|
import ReviewsView from "./components/ReviewsView";
|
||||||
import { getCurrentUserInfo } from "./Utils/ReviewDBAPI";
|
import { UserType } from "./entities";
|
||||||
import { authorize, showToast } from "./Utils/Utils";
|
import { getCurrentUserInfo } from "./reviewDbApi";
|
||||||
|
import { settings } from "./settings";
|
||||||
|
import { showToast } from "./utils";
|
||||||
|
|
||||||
|
const guildPopoutPatch: NavContextMenuPatchCallback = (children, props: { guild: Guild, onClose(): void; }) => () => {
|
||||||
|
children.push(
|
||||||
|
<Menu.MenuItem
|
||||||
|
label="View Reviews"
|
||||||
|
id="vc-rdb-server-reviews"
|
||||||
|
icon={OpenExternalIcon}
|
||||||
|
action={() => openReviewsModal(props.guild.id, props.guild.name)}
|
||||||
|
/>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
export default definePlugin({
|
export default definePlugin({
|
||||||
name: "ReviewDB",
|
name: "ReviewDB",
|
||||||
description: "Review other users (Adds a new settings to profiles)",
|
description: "Review other users (Adds a new settings to profiles)",
|
||||||
authors: [Devs.mantikafasi, Devs.Ven],
|
authors: [Devs.mantikafasi, Devs.Ven],
|
||||||
|
|
||||||
|
settings,
|
||||||
|
|
||||||
patches: [
|
patches: [
|
||||||
{
|
{
|
||||||
find: "disableBorderColor:!0",
|
find: "disableBorderColor:!0",
|
||||||
@ -44,51 +62,86 @@ export default definePlugin({
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
||||||
options: {
|
|
||||||
authorize: {
|
|
||||||
type: OptionType.COMPONENT,
|
|
||||||
description: "Authorise with ReviewDB",
|
|
||||||
component: () => (
|
|
||||||
<Button onClick={authorize}>
|
|
||||||
Authorise with ReviewDB
|
|
||||||
</Button>
|
|
||||||
)
|
|
||||||
},
|
|
||||||
notifyReviews: {
|
|
||||||
type: OptionType.BOOLEAN,
|
|
||||||
description: "Notify about new reviews on startup",
|
|
||||||
default: true,
|
|
||||||
},
|
|
||||||
showWarning: {
|
|
||||||
type: OptionType.BOOLEAN,
|
|
||||||
description: "Display warning to be respectful at the top of the reviews list",
|
|
||||||
default: true,
|
|
||||||
},
|
|
||||||
hideTimestamps: {
|
|
||||||
type: OptionType.BOOLEAN,
|
|
||||||
description: "Hide timestamps on reviews",
|
|
||||||
default: false,
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
async start() {
|
async start() {
|
||||||
const settings = Settings.plugins.ReviewDB;
|
const s = settings.store;
|
||||||
if (!settings.notifyReviews || !settings.token) return;
|
const { token, lastReviewId, notifyReviews } = s;
|
||||||
|
|
||||||
|
if (!notifyReviews || !token) return;
|
||||||
|
|
||||||
setTimeout(async () => {
|
setTimeout(async () => {
|
||||||
const user = await getCurrentUserInfo(settings.token);
|
const user = await getCurrentUserInfo(token);
|
||||||
if (settings.lastReviewId < user.lastReviewID) {
|
if (lastReviewId && lastReviewId < user.lastReviewID) {
|
||||||
settings.lastReviewId = user.lastReviewID;
|
s.lastReviewId = user.lastReviewID;
|
||||||
if (user.lastReviewID !== 0)
|
if (user.lastReviewID !== 0)
|
||||||
showToast("You have new reviews on your profile!");
|
showToast("You have new reviews on your profile!");
|
||||||
}
|
}
|
||||||
settings.userType = user.type;
|
|
||||||
|
addContextMenuPatch("guild-header-popout", guildPopoutPatch);
|
||||||
|
|
||||||
|
if (user.banInfo) {
|
||||||
|
const endDate = new Date(user.banInfo.banEndDate);
|
||||||
|
if (endDate.getTime() > Date.now() && (s.user?.banInfo?.banEndDate ?? 0) < endDate.getTime()) {
|
||||||
|
Alerts.show({
|
||||||
|
title: "You have been banned from ReviewDB",
|
||||||
|
body: (
|
||||||
|
<>
|
||||||
|
<p>
|
||||||
|
You are banned from ReviewDB {
|
||||||
|
user.type === UserType.Banned
|
||||||
|
? "permanently"
|
||||||
|
: "until " + endDate.toLocaleString()
|
||||||
|
}
|
||||||
|
</p>
|
||||||
|
{user.banInfo.reviewContent && (
|
||||||
|
<p>Offending Review: {user.banInfo.reviewContent}</p>
|
||||||
|
)}
|
||||||
|
<p>Continued offenses will result in a permanent ban.</p>
|
||||||
|
</>
|
||||||
|
),
|
||||||
|
cancelText: "Appeal",
|
||||||
|
confirmText: "Ok",
|
||||||
|
onCancel: () =>
|
||||||
|
VencordNative.native.openExternal(
|
||||||
|
"https://reviewdb.mantikafasi.dev/api/redirect?"
|
||||||
|
+ new URLSearchParams({
|
||||||
|
token: settings.store.token!,
|
||||||
|
page: "dashboard/appeal"
|
||||||
|
})
|
||||||
|
)
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
s.user = user;
|
||||||
}, 4000);
|
}, 4000);
|
||||||
},
|
},
|
||||||
|
|
||||||
getReviewsComponent: (user: User) => (
|
stop() {
|
||||||
<ErrorBoundary message="Failed to render Reviews">
|
removeContextMenuPatch("guild-header-popout", guildPopoutPatch);
|
||||||
<ReviewsView userId={user.id} />
|
},
|
||||||
</ErrorBoundary>
|
|
||||||
)
|
getReviewsComponent: ErrorBoundary.wrap((user: User) => {
|
||||||
|
const [reviewCount, setReviewCount] = useState<number>();
|
||||||
|
|
||||||
|
return (
|
||||||
|
<ExpandableHeader
|
||||||
|
headerText="User Reviews"
|
||||||
|
onMoreClick={() => openReviewsModal(user.id, user.username)}
|
||||||
|
moreTooltipText={
|
||||||
|
reviewCount && reviewCount > 50
|
||||||
|
? `View all ${reviewCount} reviews`
|
||||||
|
: "Open Review Modal"
|
||||||
|
}
|
||||||
|
onDropDownClick={state => settings.store.reviewsDropdownState = !state}
|
||||||
|
defaultState={settings.store.reviewsDropdownState}
|
||||||
|
>
|
||||||
|
<ReviewsView
|
||||||
|
discordId={user.id}
|
||||||
|
name={user.username}
|
||||||
|
onFetchReviews={r => setReviewCount(r.reviewCount)}
|
||||||
|
showInput
|
||||||
|
/>
|
||||||
|
</ExpandableHeader>
|
||||||
|
);
|
||||||
|
}, { message: "Failed to render Reviews" })
|
||||||
});
|
});
|
||||||
|
@ -16,54 +16,74 @@
|
|||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import { Settings } from "@api/Settings";
|
|
||||||
|
|
||||||
import { Review } from "../entities/Review";
|
import { Review, ReviewDBUser } from "./entities";
|
||||||
import { ReviewDBUser } from "../entities/User";
|
import { settings } from "./settings";
|
||||||
import { authorize, showToast } from "./Utils";
|
import { authorize, showToast } from "./utils";
|
||||||
|
|
||||||
const API_URL = "https://manti.vendicated.dev";
|
const API_URL = "https://manti.vendicated.dev";
|
||||||
|
|
||||||
const getToken = () => Settings.plugins.ReviewDB.token;
|
export const REVIEWS_PER_PAGE = 50;
|
||||||
|
|
||||||
interface Response {
|
export interface Response {
|
||||||
success: boolean,
|
success: boolean,
|
||||||
message: string;
|
message: string;
|
||||||
reviews: Review[];
|
reviews: Review[];
|
||||||
updated: boolean;
|
updated: boolean;
|
||||||
|
hasNextPage: boolean;
|
||||||
|
reviewCount: number;
|
||||||
}
|
}
|
||||||
|
|
||||||
const WarningFlag = 0b00000010;
|
const WarningFlag = 0b00000010;
|
||||||
|
|
||||||
export async function getReviews(id: string): Promise<Review[]> {
|
export async function getReviews(id: string, offset = 0): Promise<Response> {
|
||||||
var flags = 0;
|
let flags = 0;
|
||||||
if (!Settings.plugins.ReviewDB.showWarning) flags |= WarningFlag;
|
if (!settings.store.showWarning) flags |= WarningFlag;
|
||||||
const req = await fetch(API_URL + `/api/reviewdb/users/${id}/reviews?flags=${flags}`);
|
|
||||||
|
const params = new URLSearchParams({
|
||||||
|
flags: String(flags),
|
||||||
|
offset: String(offset)
|
||||||
|
});
|
||||||
|
const req = await fetch(`${API_URL}/api/reviewdb/users/${id}/reviews?${params}`);
|
||||||
|
|
||||||
|
const res = (req.status === 200)
|
||||||
|
? await req.json() as Response
|
||||||
|
: {
|
||||||
|
success: false,
|
||||||
|
message: "An Error occured while fetching reviews. Please try again later.",
|
||||||
|
reviews: [],
|
||||||
|
updated: false,
|
||||||
|
hasNextPage: false,
|
||||||
|
reviewCount: 0
|
||||||
|
};
|
||||||
|
|
||||||
const res = (req.status === 200) ? await req.json() as Response : { success: false, message: "An Error occured while fetching reviews. Please try again later.", reviews: [], updated: false };
|
|
||||||
if (!res.success) {
|
if (!res.success) {
|
||||||
showToast(res.message);
|
showToast(res.message);
|
||||||
return [
|
return {
|
||||||
{
|
...res,
|
||||||
id: 0,
|
reviews: [
|
||||||
comment: "An Error occured while fetching reviews. Please try again later.",
|
{
|
||||||
star: 0,
|
|
||||||
timestamp: 0,
|
|
||||||
sender: {
|
|
||||||
id: 0,
|
id: 0,
|
||||||
username: "Error",
|
comment: "An Error occured while fetching reviews. Please try again later.",
|
||||||
profilePhoto: "https://cdn.discordapp.com/attachments/1045394533384462377/1084900598035513447/646808599204593683.png?size=128",
|
star: 0,
|
||||||
discordID: "0",
|
timestamp: 0,
|
||||||
badges: []
|
sender: {
|
||||||
|
id: 0,
|
||||||
|
username: "Error",
|
||||||
|
profilePhoto: "https://cdn.discordapp.com/attachments/1045394533384462377/1084900598035513447/646808599204593683.png?size=128",
|
||||||
|
discordID: "0",
|
||||||
|
badges: []
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
]
|
||||||
];
|
};
|
||||||
}
|
}
|
||||||
return res.reviews;
|
|
||||||
|
return res;
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function addReview(review: any): Promise<Response | null> {
|
export async function addReview(review: any): Promise<Response | null> {
|
||||||
review.token = getToken();
|
review.token = settings.store.token;
|
||||||
|
|
||||||
if (!review.token) {
|
if (!review.token) {
|
||||||
showToast("Please authorize to add a review.");
|
showToast("Please authorize to add a review.");
|
||||||
@ -93,7 +113,7 @@ export function deleteReview(id: number): Promise<Response> {
|
|||||||
Accept: "application/json",
|
Accept: "application/json",
|
||||||
}),
|
}),
|
||||||
body: JSON.stringify({
|
body: JSON.stringify({
|
||||||
token: getToken(),
|
token: settings.store.token,
|
||||||
reviewid: id
|
reviewid: id
|
||||||
})
|
})
|
||||||
}).then(r => r.json());
|
}).then(r => r.json());
|
||||||
@ -108,16 +128,16 @@ export async function reportReview(id: number) {
|
|||||||
}),
|
}),
|
||||||
body: JSON.stringify({
|
body: JSON.stringify({
|
||||||
reviewid: id,
|
reviewid: id,
|
||||||
token: getToken()
|
token: settings.store.token
|
||||||
})
|
})
|
||||||
}).then(r => r.json()) as Response;
|
}).then(r => r.json()) as Response;
|
||||||
showToast(await res.message);
|
|
||||||
|
showToast(res.message);
|
||||||
}
|
}
|
||||||
|
|
||||||
export function getCurrentUserInfo(token: string): Promise<ReviewDBUser> {
|
export function getCurrentUserInfo(token: string): Promise<ReviewDBUser> {
|
||||||
return fetch(API_URL + "/api/reviewdb/users", {
|
return fetch(API_URL + "/api/reviewdb/users", {
|
||||||
body: JSON.stringify({ token }),
|
body: JSON.stringify({ token }),
|
||||||
method: "POST",
|
method: "POST",
|
||||||
})
|
}).then(r => r.json());
|
||||||
.then(r => r.json());
|
|
||||||
}
|
}
|
82
src/plugins/reviewDB/settings.tsx
Normal file
82
src/plugins/reviewDB/settings.tsx
Normal file
@ -0,0 +1,82 @@
|
|||||||
|
/*
|
||||||
|
* Vencord, a modification for Discord's desktop app
|
||||||
|
* Copyright (c) 2023 Vendicated and contributors
|
||||||
|
*
|
||||||
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
import { definePluginSettings } from "@api/Settings";
|
||||||
|
import { OptionType } from "@utils/types";
|
||||||
|
import { Button } from "@webpack/common";
|
||||||
|
|
||||||
|
import { ReviewDBUser } from "./entities";
|
||||||
|
import { authorize } from "./utils";
|
||||||
|
|
||||||
|
export const settings = definePluginSettings({
|
||||||
|
authorize: {
|
||||||
|
type: OptionType.COMPONENT,
|
||||||
|
description: "Authorize with ReviewDB",
|
||||||
|
component: () => (
|
||||||
|
<Button onClick={authorize}>
|
||||||
|
Authorize with ReviewDB
|
||||||
|
</Button>
|
||||||
|
)
|
||||||
|
},
|
||||||
|
notifyReviews: {
|
||||||
|
type: OptionType.BOOLEAN,
|
||||||
|
description: "Notify about new reviews on startup",
|
||||||
|
default: true,
|
||||||
|
},
|
||||||
|
showWarning: {
|
||||||
|
type: OptionType.BOOLEAN,
|
||||||
|
description: "Display warning to be respectful at the top of the reviews list",
|
||||||
|
default: true,
|
||||||
|
},
|
||||||
|
hideTimestamps: {
|
||||||
|
type: OptionType.BOOLEAN,
|
||||||
|
description: "Hide timestamps on reviews",
|
||||||
|
default: false,
|
||||||
|
},
|
||||||
|
website: {
|
||||||
|
type: OptionType.COMPONENT,
|
||||||
|
description: "ReviewDB website",
|
||||||
|
component: () => (
|
||||||
|
<Button onClick={() => {
|
||||||
|
let url = "https://reviewdb.mantikafasi.dev/";
|
||||||
|
if (settings.store.token)
|
||||||
|
url += "/api/redirect?token=" + encodeURIComponent(settings.store.token);
|
||||||
|
|
||||||
|
VencordNative.native.openExternal(url);
|
||||||
|
}}>
|
||||||
|
ReviewDB website
|
||||||
|
</Button>
|
||||||
|
)
|
||||||
|
},
|
||||||
|
supportServer: {
|
||||||
|
type: OptionType.COMPONENT,
|
||||||
|
description: "ReviewDB Support Server",
|
||||||
|
component: () => (
|
||||||
|
<Button onClick={() => {
|
||||||
|
VencordNative.native.openExternal("https://discord.gg/eWPBSbvznt");
|
||||||
|
}}>
|
||||||
|
ReviewDB Support Server
|
||||||
|
</Button>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}).withPrivateSettings<{
|
||||||
|
token?: string;
|
||||||
|
user?: ReviewDBUser;
|
||||||
|
lastReviewId?: number;
|
||||||
|
reviewsDropdownState?: boolean;
|
||||||
|
}>();
|
@ -1,3 +1,51 @@
|
|||||||
[class|="section"]:not([class|="lastSection"]) + .vc-reviewdb-view {
|
[class|="section"]:not([class|="lastSection"]) + .vc-rdb-view {
|
||||||
margin-top: 12px;
|
margin-top: 12px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.vc-rdb-badge {
|
||||||
|
vertical-align: middle;
|
||||||
|
margin-left: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.vc-rdb-input {
|
||||||
|
margin-top: 6px;
|
||||||
|
margin-bottom: 12px;
|
||||||
|
resize: none;
|
||||||
|
overflow: hidden;
|
||||||
|
background: transparent;
|
||||||
|
border: 1px solid var(--profile-message-input-border-color);
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.vc-rdb-placeholder {
|
||||||
|
margin-bottom: 4px;
|
||||||
|
font-weight: bold;
|
||||||
|
font-style: italic;
|
||||||
|
color: var(--text-muted);
|
||||||
|
}
|
||||||
|
|
||||||
|
.vc-rdb-modal-footer {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.vc-rdb-modal-footer > div {
|
||||||
|
width: 100%;
|
||||||
|
margin: 6px 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.vc-rdb-modal-footer .vc-rdb-input {
|
||||||
|
margin-bottom: 0;
|
||||||
|
background: var(--input-background);
|
||||||
|
}
|
||||||
|
|
||||||
|
.vc-rdb-modal-footer [class|="pageControlContainer"] {
|
||||||
|
margin-top: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.vc-rdb-modal-header {
|
||||||
|
flex-grow: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.vc-rdb-modal-reviews {
|
||||||
|
margin-top: 16px;
|
||||||
|
}
|
||||||
|
@ -16,14 +16,16 @@
|
|||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import { Settings } from "@api/Settings";
|
import { classNameFactory } from "@api/Styles";
|
||||||
import { Logger } from "@utils/Logger";
|
import { Logger } from "@utils/Logger";
|
||||||
import { openModal } from "@utils/modal";
|
import { openModal } from "@utils/modal";
|
||||||
import { findByProps } from "@webpack";
|
import { findByProps } from "@webpack";
|
||||||
import { FluxDispatcher, React, SelectedChannelStore, Toasts, UserUtils } from "@webpack/common";
|
import { FluxDispatcher, React, SelectedChannelStore, Toasts, UserUtils } from "@webpack/common";
|
||||||
|
|
||||||
import { Review } from "../entities/Review";
|
import { Review, UserType } from "./entities";
|
||||||
import { UserType } from "../entities/User";
|
import { settings } from "./settings";
|
||||||
|
|
||||||
|
export const cl = classNameFactory("vc-rdb-");
|
||||||
|
|
||||||
export async function openUserProfileModal(userId: string) {
|
export async function openUserProfileModal(userId: string) {
|
||||||
await UserUtils.fetchUser(userId);
|
await UserUtils.fetchUser(userId);
|
||||||
@ -44,28 +46,27 @@ export function authorize(callback?: any) {
|
|||||||
{...props}
|
{...props}
|
||||||
scopes={["identify"]}
|
scopes={["identify"]}
|
||||||
responseType="code"
|
responseType="code"
|
||||||
redirectUri="https://manti.vendicated.dev/URauth"
|
redirectUri="https://manti.vendicated.dev/api/reviewdb/auth"
|
||||||
permissions={0n}
|
permissions={0n}
|
||||||
clientId="915703782174752809"
|
clientId="915703782174752809"
|
||||||
cancelCompletesFlow={false}
|
cancelCompletesFlow={false}
|
||||||
callback={async (u: string) => {
|
callback={async (response: any) => {
|
||||||
try {
|
try {
|
||||||
const url = new URL(u);
|
const url = new URL(response.location);
|
||||||
url.searchParams.append("returnType", "json");
|
|
||||||
url.searchParams.append("clientMod", "vencord");
|
url.searchParams.append("clientMod", "vencord");
|
||||||
const res = await fetch(url, {
|
const res = await fetch(url, {
|
||||||
headers: new Headers({ Accept: "application/json" })
|
headers: new Headers({ Accept: "application/json" })
|
||||||
});
|
});
|
||||||
const { token, status } = await res.json();
|
const { token, success } = await res.json();
|
||||||
if (status === 0) {
|
if (success) {
|
||||||
Settings.plugins.ReviewDB.token = token;
|
settings.store.token = token;
|
||||||
showToast("Successfully logged in!");
|
showToast("Successfully logged in!");
|
||||||
callback?.();
|
callback?.();
|
||||||
} else if (res.status === 1) {
|
} else if (res.status === 1) {
|
||||||
showToast("An Error occurred while logging in.");
|
showToast("An Error occurred while logging in.");
|
||||||
}
|
}
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
new Logger("ReviewDB").error("Failed to authorise", e);
|
new Logger("ReviewDB").error("Failed to authorize", e);
|
||||||
}
|
}
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
@ -83,8 +84,9 @@ export function showToast(text: string) {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
export const sleep = (ms: number) => new Promise(r => setTimeout(r, ms));
|
|
||||||
|
|
||||||
export function canDeleteReview(review: Review, userId: string) {
|
export function canDeleteReview(review: Review, userId: string) {
|
||||||
if (review.sender.discordID === userId || Settings.plugins.ReviewDB.userType === UserType.Admin) return true;
|
return (
|
||||||
|
review.sender.discordID === userId
|
||||||
|
|| settings.store.user?.type === UserType.Admin
|
||||||
|
);
|
||||||
}
|
}
|
@ -38,7 +38,7 @@ const messageContextMenuPatch: NavContextMenuPatchCallback = (children, { messag
|
|||||||
// dms and group chats
|
// dms and group chats
|
||||||
const dmGroup = findGroupChildrenByChildId("pin", children);
|
const dmGroup = findGroupChildrenByChildId("pin", children);
|
||||||
if (dmGroup && !dmGroup.some(child => child?.props?.id === "reply")) {
|
if (dmGroup && !dmGroup.some(child => child?.props?.id === "reply")) {
|
||||||
const pinIndex = dmGroup.findIndex(c => c.props.id === "pin");
|
const pinIndex = dmGroup.findIndex(c => c?.props.id === "pin");
|
||||||
return dmGroup.splice(pinIndex + 1, 0, (
|
return dmGroup.splice(pinIndex + 1, 0, (
|
||||||
<Menu.MenuItem
|
<Menu.MenuItem
|
||||||
id="reply"
|
id="reply"
|
||||||
|
@ -16,15 +16,18 @@
|
|||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
import { Settings } from "@api/Settings";
|
||||||
import ErrorBoundary from "@components/ErrorBoundary";
|
import ErrorBoundary from "@components/ErrorBoundary";
|
||||||
import { LazyComponent } from "@utils/react";
|
import { LazyComponent } from "@utils/react";
|
||||||
import { formatDuration } from "@utils/text";
|
import { formatDuration } from "@utils/text";
|
||||||
import { find, findByPropsLazy, findStoreLazy } from "@webpack";
|
import { find, findByPropsLazy } from "@webpack";
|
||||||
import { FluxDispatcher, GuildMemberStore, GuildStore, moment, Parser, PermissionStore, SnowflakeUtils, Text, Timestamp, Tooltip } from "@webpack/common";
|
import { EmojiStore, FluxDispatcher, GuildMemberStore, GuildStore, moment, Parser, PermissionStore, SnowflakeUtils, Text, Timestamp, Tooltip, useEffect, useState } from "@webpack/common";
|
||||||
import type { Channel } from "discord-types/general";
|
import type { Channel } from "discord-types/general";
|
||||||
import type { ComponentType } from "react";
|
import type { ComponentType } from "react";
|
||||||
|
|
||||||
import { VIEW_CHANNEL } from "..";
|
import openRolesAndUsersPermissionsModal, { PermissionType, RoleOrUserPermission } from "../../permissionsViewer/components/RolesAndUsersPermissions";
|
||||||
|
import { sortPermissionOverwrites } from "../../permissionsViewer/utils";
|
||||||
|
import { settings, VIEW_CHANNEL } from "..";
|
||||||
|
|
||||||
enum SortOrderTypes {
|
enum SortOrderTypes {
|
||||||
LATEST_ACTIVITY = 0,
|
LATEST_ACTIVITY = 0,
|
||||||
@ -92,7 +95,6 @@ const TagComponent = LazyComponent(() => find(m => {
|
|||||||
return code.includes(".Messages.FORUM_TAG_A11Y_FILTER_BY_TAG") && !code.includes("increasedActivityPill");
|
return code.includes(".Messages.FORUM_TAG_A11Y_FILTER_BY_TAG") && !code.includes("increasedActivityPill");
|
||||||
}));
|
}));
|
||||||
|
|
||||||
const EmojiStore = findStoreLazy("EmojiStore");
|
|
||||||
const EmojiParser = findByPropsLazy("convertSurrogateToName");
|
const EmojiParser = findByPropsLazy("convertSurrogateToName");
|
||||||
const EmojiUtils = findByPropsLazy("getURL", "buildEmojiReactionColorsPlatformed");
|
const EmojiUtils = findByPropsLazy("getURL", "buildEmojiReactionColorsPlatformed");
|
||||||
|
|
||||||
@ -124,6 +126,9 @@ const VideoQualityModesToNames = {
|
|||||||
const HiddenChannelLogo = "/assets/433e3ec4319a9d11b0cbe39342614982.svg";
|
const HiddenChannelLogo = "/assets/433e3ec4319a9d11b0cbe39342614982.svg";
|
||||||
|
|
||||||
function HiddenChannelLockScreen({ channel }: { channel: ExtendedChannel; }) {
|
function HiddenChannelLockScreen({ channel }: { channel: ExtendedChannel; }) {
|
||||||
|
const [viewAllowedUsersAndRoles, setViewAllowedUsersAndRoles] = useState(settings.store.defaultAllowedUsersAndRolesDropdownState);
|
||||||
|
const [permissions, setPermissions] = useState<RoleOrUserPermission[]>([]);
|
||||||
|
|
||||||
const {
|
const {
|
||||||
type,
|
type,
|
||||||
topic,
|
topic,
|
||||||
@ -140,27 +145,39 @@ function HiddenChannelLockScreen({ channel }: { channel: ExtendedChannel; }) {
|
|||||||
bitrate,
|
bitrate,
|
||||||
rtcRegion,
|
rtcRegion,
|
||||||
videoQualityMode,
|
videoQualityMode,
|
||||||
permissionOverwrites
|
permissionOverwrites,
|
||||||
|
guild_id
|
||||||
} = channel;
|
} = channel;
|
||||||
|
|
||||||
const membersToFetch: Array<string> = [];
|
useEffect(() => {
|
||||||
|
const membersToFetch: Array<string> = [];
|
||||||
|
|
||||||
const guildOwnerId = GuildStore.getGuild(channel.guild_id).ownerId;
|
const guildOwnerId = GuildStore.getGuild(guild_id).ownerId;
|
||||||
if (!GuildMemberStore.getMember(channel.guild_id, guildOwnerId)) membersToFetch.push(guildOwnerId);
|
if (!GuildMemberStore.getMember(guild_id, guildOwnerId)) membersToFetch.push(guildOwnerId);
|
||||||
|
|
||||||
Object.values(permissionOverwrites).forEach(({ type, id: userId }) => {
|
Object.values(permissionOverwrites).forEach(({ type, id: userId }) => {
|
||||||
if (type === 1) {
|
if (type === 1 && !GuildMemberStore.getMember(guild_id, userId)) {
|
||||||
if (!GuildMemberStore.getMember(channel.guild_id, userId)) membersToFetch.push(userId);
|
membersToFetch.push(userId);
|
||||||
}
|
}
|
||||||
});
|
|
||||||
|
|
||||||
if (membersToFetch.length > 0) {
|
|
||||||
FluxDispatcher.dispatch({
|
|
||||||
type: "GUILD_MEMBERS_REQUEST",
|
|
||||||
guildIds: [channel.guild_id],
|
|
||||||
userIds: membersToFetch
|
|
||||||
});
|
});
|
||||||
}
|
|
||||||
|
if (membersToFetch.length > 0) {
|
||||||
|
FluxDispatcher.dispatch({
|
||||||
|
type: "GUILD_MEMBERS_REQUEST",
|
||||||
|
guildIds: [guild_id],
|
||||||
|
userIds: membersToFetch
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
if (Settings.plugins.PermissionsViewer.enabled) {
|
||||||
|
setPermissions(sortPermissionOverwrites(Object.values(permissionOverwrites).map(overwrite => ({
|
||||||
|
type: overwrite.type as PermissionType,
|
||||||
|
id: overwrite.id,
|
||||||
|
overwriteAllow: overwrite.allow,
|
||||||
|
overwriteDeny: overwrite.deny
|
||||||
|
})), guild_id));
|
||||||
|
}
|
||||||
|
}, [channelId]);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className={ChatScrollClasses.auto + " " + ChatScrollClasses.customTheme + " " + ChatClasses.chatContent + " " + "shc-lock-screen-outer-container"}>
|
<div className={ChatScrollClasses.auto + " " + ChatScrollClasses.customTheme + " " + ChatClasses.chatContent + " " + "shc-lock-screen-outer-container"}>
|
||||||
@ -182,7 +199,7 @@ function HiddenChannelLockScreen({ channel }: { channel: ExtendedChannel; }) {
|
|||||||
aria-hidden={true}
|
aria-hidden={true}
|
||||||
role="img"
|
role="img"
|
||||||
>
|
>
|
||||||
<path d="M.7 43.05 24 2.85l23.3 40.2Zm23.55-6.25q.75 0 1.275-.525.525-.525.525-1.275 0-.75-.525-1.3t-1.275-.55q-.8 0-1.325.55-.525.55-.525 1.3t.55 1.275q.55.525 1.3.525Zm-1.85-6.1h3.65V19.4H22.4Z" />
|
<path fill="currentColor" d="M.7 43.05 24 2.85l23.3 40.2Zm23.55-6.25q.75 0 1.275-.525.525-.525.525-1.275 0-.75-.525-1.3t-1.275-.55q-.8 0-1.325.55-.525.55-.525 1.3t.55 1.275q.55.525 1.3.525Zm-1.85-6.1h3.65V19.4H22.4Z" />
|
||||||
</svg>
|
</svg>
|
||||||
)}
|
)}
|
||||||
</Tooltip>
|
</Tooltip>
|
||||||
@ -192,7 +209,7 @@ function HiddenChannelLockScreen({ channel }: { channel: ExtendedChannel; }) {
|
|||||||
{(!channel.isGuildVoice() && !channel.isGuildStageVoice()) && (
|
{(!channel.isGuildVoice() && !channel.isGuildStageVoice()) && (
|
||||||
<Text variant="text-lg/normal">
|
<Text variant="text-lg/normal">
|
||||||
You can not see the {channel.isForumChannel() ? "posts" : "messages"} of this channel.
|
You can not see the {channel.isForumChannel() ? "posts" : "messages"} of this channel.
|
||||||
{channel.isForumChannel() && topic && topic.length > 0 && "However you may see its guidelines:"}
|
{channel.isForumChannel() && topic && topic.length > 0 && " However you may see its guidelines:"}
|
||||||
</Text >
|
</Text >
|
||||||
)}
|
)}
|
||||||
|
|
||||||
@ -268,8 +285,49 @@ function HiddenChannelLockScreen({ channel }: { channel: ExtendedChannel; }) {
|
|||||||
</div>
|
</div>
|
||||||
}
|
}
|
||||||
<div className="shc-lock-screen-allowed-users-and-roles-container">
|
<div className="shc-lock-screen-allowed-users-and-roles-container">
|
||||||
<Text variant="text-lg/bold">Allowed users and roles:</Text>
|
<div className="shc-lock-screen-allowed-users-and-roles-container-title">
|
||||||
<ChannelBeginHeader channel={channel} />
|
{Settings.plugins.PermissionsViewer.enabled && (
|
||||||
|
<Tooltip text="Permission Details">
|
||||||
|
{({ onMouseLeave, onMouseEnter }) => (
|
||||||
|
<button
|
||||||
|
onMouseLeave={onMouseLeave}
|
||||||
|
onMouseEnter={onMouseEnter}
|
||||||
|
className="shc-lock-screen-allowed-users-and-roles-container-permdetails-btn"
|
||||||
|
onClick={() => openRolesAndUsersPermissionsModal(permissions, GuildStore.getGuild(channel.guild_id), channel.name)}
|
||||||
|
>
|
||||||
|
<svg
|
||||||
|
width="24"
|
||||||
|
height="24"
|
||||||
|
viewBox="0 0 24 24"
|
||||||
|
>
|
||||||
|
<path fill="currentColor" d="M7 12.001C7 10.8964 6.10457 10.001 5 10.001C3.89543 10.001 3 10.8964 3 12.001C3 13.1055 3.89543 14.001 5 14.001C6.10457 14.001 7 13.1055 7 12.001ZM14 12.001C14 10.8964 13.1046 10.001 12 10.001C10.8954 10.001 10 10.8964 10 12.001C10 13.1055 10.8954 14.001 12 14.001C13.1046 14.001 14 13.1055 14 12.001ZM19 10.001C20.1046 10.001 21 10.8964 21 12.001C21 13.1055 20.1046 14.001 19 14.001C17.8954 14.001 17 13.1055 17 12.001C17 10.8964 17.8954 10.001 19 10.001Z" />
|
||||||
|
</svg>
|
||||||
|
</button>
|
||||||
|
)}
|
||||||
|
</Tooltip>
|
||||||
|
)}
|
||||||
|
<Text variant="text-lg/bold">Allowed users and roles:</Text>
|
||||||
|
<Tooltip text={viewAllowedUsersAndRoles ? "Hide Allowed Users and Roles" : "View Allowed Users and Roles"}>
|
||||||
|
{({ onMouseLeave, onMouseEnter }) => (
|
||||||
|
<button
|
||||||
|
onMouseLeave={onMouseLeave}
|
||||||
|
onMouseEnter={onMouseEnter}
|
||||||
|
className="shc-lock-screen-allowed-users-and-roles-container-toggle-btn"
|
||||||
|
onClick={() => setViewAllowedUsersAndRoles(v => !v)}
|
||||||
|
>
|
||||||
|
<svg
|
||||||
|
width="24"
|
||||||
|
height="24"
|
||||||
|
viewBox="0 0 24 24"
|
||||||
|
transform={viewAllowedUsersAndRoles ? "scale(1 -1)" : "scale(1 1)"}
|
||||||
|
>
|
||||||
|
<path fill="currentColor" d="M16.59 8.59003L12 13.17L7.41 8.59003L6 10L12 16L18 10L16.59 8.59003Z" />
|
||||||
|
</svg>
|
||||||
|
</button>
|
||||||
|
)}
|
||||||
|
</Tooltip>
|
||||||
|
</div>
|
||||||
|
{viewAllowedUsersAndRoles && <ChannelBeginHeader channel={channel} />}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -39,7 +39,7 @@ enum ShowMode {
|
|||||||
HiddenIconWithMutedStyle
|
HiddenIconWithMutedStyle
|
||||||
}
|
}
|
||||||
|
|
||||||
const settings = definePluginSettings({
|
export const settings = definePluginSettings({
|
||||||
hideUnreads: {
|
hideUnreads: {
|
||||||
description: "Hide Unreads",
|
description: "Hide Unreads",
|
||||||
type: OptionType.BOOLEAN,
|
type: OptionType.BOOLEAN,
|
||||||
@ -54,6 +54,11 @@ const settings = definePluginSettings({
|
|||||||
{ label: "Muted style with hidden eye icon on the right", value: ShowMode.HiddenIconWithMutedStyle },
|
{ label: "Muted style with hidden eye icon on the right", value: ShowMode.HiddenIconWithMutedStyle },
|
||||||
],
|
],
|
||||||
restartNeeded: true
|
restartNeeded: true
|
||||||
|
},
|
||||||
|
defaultAllowedUsersAndRolesDropdownState: {
|
||||||
|
description: "Whether the allowed users and roles dropdown on hidden channels should be open by default",
|
||||||
|
type: OptionType.BOOLEAN,
|
||||||
|
default: true
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -102,13 +107,13 @@ export default definePlugin({
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
// Prevent Discord from trying to connect to hidden channels
|
// Prevent Discord from trying to connect to hidden channels
|
||||||
match: /(?=\|\|\i\.default\.selectVoiceChannel\((\i)\.id\))/,
|
match: /if\(!\i&&!\i(?=.{0,50}?selectVoiceChannel\((\i)\.id\))/,
|
||||||
replace: (_, channel) => `||$self.isHiddenChannel(${channel})`
|
replace: (m, channel) => `${m}&&!$self.isHiddenChannel(${channel})`
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
// Make Discord show inside the channel if clicking on a hidden or locked channel
|
// Make Discord show inside the channel if clicking on a hidden or locked channel
|
||||||
match: /(?<=\|\|\i\.default\.selectVoiceChannel\((\i)\.id\);!__OVERLAY__&&\()/,
|
match: /!__OVERLAY__&&\((?<=selectVoiceChannel\((\i)\.id\).+?)/,
|
||||||
replace: (_, channel) => `$self.isHiddenChannel(${channel},true)||`
|
replace: (m, channel) => `${m}$self.isHiddenChannel(${channel},true)||`
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
@ -190,7 +195,7 @@ export default definePlugin({
|
|||||||
replace: (_, pushNotificationButtonExpression, channel) => `if($self.isHiddenChannel(${channel})){${pushNotificationButtonExpression}break;}`
|
replace: (_, pushNotificationButtonExpression, channel) => `if($self.isHiddenChannel(${channel})){${pushNotificationButtonExpression}break;}`
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
match: /(?<=renderHeaderToolbar=function.+?case \i\.\i\.GUILD_FORUM:if\(!\i\){)(?=.+?;(.+?{channel:(\i)},"notifications"\)\)))/,
|
match: /(?<=renderHeaderToolbar=function.+?case \i\.\i\.GUILD_FORUM:.+?if\(!\i\){)(?=.+?;(.+?{channel:(\i)},"notifications"\)\)))/,
|
||||||
replace: (_, pushNotificationButtonExpression, channel) => `if($self.isHiddenChannel(${channel})){${pushNotificationButtonExpression};break;}`
|
replace: (_, pushNotificationButtonExpression, channel) => `if($self.isHiddenChannel(${channel})){${pushNotificationButtonExpression};break;}`
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -33,9 +33,8 @@
|
|||||||
margin: inherit;
|
margin: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
.shc-lock-screen-heading-nsfw-icon > path {
|
.shc-lock-screen-heading-nsfw-icon {
|
||||||
fill: var(--text-normal);
|
color: var(--text-normal);
|
||||||
fill-rule: evenodd;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.shc-lock-screen-topic-container {
|
.shc-lock-screen-topic-container {
|
||||||
@ -99,6 +98,36 @@
|
|||||||
max-width: 70vw;
|
max-width: 70vw;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.shc-lock-screen-allowed-users-and-roles-container-title {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.shc-lock-screen-allowed-users-and-roles-container-toggle-btn {
|
||||||
|
all: unset;
|
||||||
|
margin-left: 5px;
|
||||||
|
cursor: pointer;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.shc-lock-screen-allowed-users-and-roles-container-toggle-btn > svg {
|
||||||
|
color: var(--text-normal);
|
||||||
|
}
|
||||||
|
|
||||||
|
.shc-lock-screen-allowed-users-and-roles-container-permdetails-btn {
|
||||||
|
all: unset;
|
||||||
|
margin-right: 5px;
|
||||||
|
cursor: pointer;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.shc-lock-screen-allowed-users-and-roles-container-permdetails-btn > svg {
|
||||||
|
color: var(--text-normal);
|
||||||
|
}
|
||||||
|
|
||||||
.shc-lock-screen-allowed-users-and-roles-container > [class^="members"] {
|
.shc-lock-screen-allowed-users-and-roles-container > [class^="members"] {
|
||||||
margin-left: 10px;
|
margin-left: 10px;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
|
@ -63,6 +63,7 @@ export default definePlugin({
|
|||||||
settings,
|
settings,
|
||||||
|
|
||||||
renderUsername: ({ author, message, isRepliedMessage, withMentionPrefix }: UsernameProps) => {
|
renderUsername: ({ author, message, isRepliedMessage, withMentionPrefix }: UsernameProps) => {
|
||||||
|
if (message.interaction) return author?.nick;
|
||||||
try {
|
try {
|
||||||
const { username } = message.author;
|
const { username } = message.author;
|
||||||
const { nick } = author;
|
const { nick } = author;
|
||||||
|
@ -20,6 +20,7 @@ import "./spotifyStyles.css";
|
|||||||
|
|
||||||
import ErrorBoundary from "@components/ErrorBoundary";
|
import ErrorBoundary from "@components/ErrorBoundary";
|
||||||
import { Flex } from "@components/Flex";
|
import { Flex } from "@components/Flex";
|
||||||
|
import { ImageIcon, LinkIcon, OpenExternalIcon } from "@components/Icons";
|
||||||
import { Link } from "@components/Link";
|
import { Link } from "@components/Link";
|
||||||
import { debounce } from "@utils/debounce";
|
import { debounce } from "@utils/debounce";
|
||||||
import { classes, copyWithToast } from "@utils/misc";
|
import { classes, copyWithToast } from "@utils/misc";
|
||||||
@ -88,12 +89,14 @@ function CopyContextMenu({ name, path }: { name: string; path: string; }) {
|
|||||||
id={copyId}
|
id={copyId}
|
||||||
label={`Copy ${name} Link`}
|
label={`Copy ${name} Link`}
|
||||||
action={() => copyWithToast("https://open.spotify.com" + path)}
|
action={() => copyWithToast("https://open.spotify.com" + path)}
|
||||||
|
icon={LinkIcon}
|
||||||
/>
|
/>
|
||||||
<Menu.MenuItem
|
<Menu.MenuItem
|
||||||
key={openId}
|
key={openId}
|
||||||
id={openId}
|
id={openId}
|
||||||
label={`Open ${name} in Spotify`}
|
label={`Open ${name} in Spotify`}
|
||||||
action={() => SpotifyStore.openExternal(path)}
|
action={() => SpotifyStore.openExternal(path)}
|
||||||
|
icon={OpenExternalIcon}
|
||||||
/>
|
/>
|
||||||
</Menu.Menu>
|
</Menu.Menu>
|
||||||
);
|
);
|
||||||
@ -221,6 +224,7 @@ function AlbumContextMenu({ track }: { track: Track; }) {
|
|||||||
id="open-album"
|
id="open-album"
|
||||||
label="Open Album"
|
label="Open Album"
|
||||||
action={() => SpotifyStore.openExternal(`/album/${track.album.id}`)}
|
action={() => SpotifyStore.openExternal(`/album/${track.album.id}`)}
|
||||||
|
icon={OpenExternalIcon}
|
||||||
/>
|
/>
|
||||||
<Menu.MenuItem
|
<Menu.MenuItem
|
||||||
key="view-cover"
|
key="view-cover"
|
||||||
@ -228,6 +232,7 @@ function AlbumContextMenu({ track }: { track: Track; }) {
|
|||||||
label="View Album Cover"
|
label="View Album Cover"
|
||||||
// trolley
|
// trolley
|
||||||
action={() => (Vencord.Plugins.plugins.ViewIcons as any).openImage(track.album.image.url)}
|
action={() => (Vencord.Plugins.plugins.ViewIcons as any).openImage(track.album.image.url)}
|
||||||
|
icon={ImageIcon}
|
||||||
/>
|
/>
|
||||||
<Menu.MenuControlItem
|
<Menu.MenuControlItem
|
||||||
id="spotify-volume"
|
id="spotify-volume"
|
||||||
|
@ -18,6 +18,7 @@
|
|||||||
|
|
||||||
import { DataStore } from "@api/index";
|
import { DataStore } from "@api/index";
|
||||||
import { Devs, SUPPORT_CHANNEL_ID } from "@utils/constants";
|
import { Devs, SUPPORT_CHANNEL_ID } from "@utils/constants";
|
||||||
|
import { isPluginDev } from "@utils/misc";
|
||||||
import { makeCodeblock } from "@utils/text";
|
import { makeCodeblock } from "@utils/text";
|
||||||
import definePlugin from "@utils/types";
|
import definePlugin from "@utils/types";
|
||||||
import { isOutdated } from "@utils/updater";
|
import { isOutdated } from "@utils/updater";
|
||||||
@ -30,6 +31,12 @@ import settings from "./settings";
|
|||||||
|
|
||||||
const REMEMBER_DISMISS_KEY = "Vencord-SupportHelper-Dismiss";
|
const REMEMBER_DISMISS_KEY = "Vencord-SupportHelper-Dismiss";
|
||||||
|
|
||||||
|
const AllowedChannelIds = [
|
||||||
|
SUPPORT_CHANNEL_ID,
|
||||||
|
"1024286218801926184", // Vencord > #bot-spam
|
||||||
|
"1033680203433660458", // Vencord > #v
|
||||||
|
];
|
||||||
|
|
||||||
export default definePlugin({
|
export default definePlugin({
|
||||||
name: "SupportHelper",
|
name: "SupportHelper",
|
||||||
required: true,
|
required: true,
|
||||||
@ -40,7 +47,7 @@ export default definePlugin({
|
|||||||
commands: [{
|
commands: [{
|
||||||
name: "vencord-debug",
|
name: "vencord-debug",
|
||||||
description: "Send Vencord Debug info",
|
description: "Send Vencord Debug info",
|
||||||
predicate: ctx => ctx.channel.id === SUPPORT_CHANNEL_ID,
|
predicate: ctx => AllowedChannelIds.includes(ctx.channel.id),
|
||||||
execute() {
|
execute() {
|
||||||
const { RELEASE_CHANNEL } = window.GLOBAL_ENV;
|
const { RELEASE_CHANNEL } = window.GLOBAL_ENV;
|
||||||
|
|
||||||
@ -51,21 +58,26 @@ export default definePlugin({
|
|||||||
return `Web (${navigator.userAgent})`;
|
return `Web (${navigator.userAgent})`;
|
||||||
})();
|
})();
|
||||||
|
|
||||||
|
const isApiPlugin = (plugin: string) => plugin.endsWith("API") || plugins[plugin].required;
|
||||||
|
|
||||||
|
const enabledPlugins = Object.keys(plugins).filter(p => Vencord.Plugins.isPluginEnabled(p) && !isApiPlugin(p));
|
||||||
|
const enabledApiPlugins = Object.keys(plugins).filter(p => Vencord.Plugins.isPluginEnabled(p) && isApiPlugin(p));
|
||||||
|
|
||||||
const debugInfo = `
|
const debugInfo = `
|
||||||
**Vencord Debug Info**
|
**Vencord Debug Info**
|
||||||
|
>>> Discord Branch: ${RELEASE_CHANNEL}
|
||||||
|
Client: ${client}
|
||||||
|
Platform: ${window.navigator.platform}
|
||||||
|
Vencord: ${gitHash}${settings.additionalInfo}
|
||||||
|
Outdated: ${isOutdated}
|
||||||
|
OpenAsar: ${"openasar" in window}
|
||||||
|
|
||||||
> Discord Branch: ${RELEASE_CHANNEL}
|
Enabled Plugins (${enabledPlugins.length + enabledApiPlugins.length}):
|
||||||
> Client: ${client}
|
${makeCodeblock(enabledPlugins.join(", ") + "\n\n" + enabledApiPlugins.join(", "))}
|
||||||
> Platform: ${window.navigator.platform}
|
|
||||||
> Vencord Version: ${gitHash}${settings.additionalInfo}
|
|
||||||
> OpenAsar: ${"openasar" in window}
|
|
||||||
> Outdated: ${isOutdated}
|
|
||||||
> Enabled Plugins:
|
|
||||||
${makeCodeblock(Object.keys(plugins).filter(Vencord.Plugins.isPluginEnabled).join(", "))}
|
|
||||||
`;
|
`;
|
||||||
|
|
||||||
return {
|
return {
|
||||||
content: debugInfo.trim()
|
content: debugInfo.trim().replaceAll("```\n", "```")
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}],
|
}],
|
||||||
@ -74,8 +86,7 @@ ${makeCodeblock(Object.keys(plugins).filter(Vencord.Plugins.isPluginEnabled).joi
|
|||||||
async CHANNEL_SELECT({ channelId }) {
|
async CHANNEL_SELECT({ channelId }) {
|
||||||
if (channelId !== SUPPORT_CHANNEL_ID) return;
|
if (channelId !== SUPPORT_CHANNEL_ID) return;
|
||||||
|
|
||||||
const myId = BigInt(UserStore.getCurrentUser().id);
|
if (isPluginDev(UserStore.getCurrentUser().id)) return;
|
||||||
if (Object.values(Devs).some(d => d.id === myId)) return;
|
|
||||||
|
|
||||||
if (isOutdated && gitHash !== await DataStore.get(REMEMBER_DISMISS_KEY)) {
|
if (isOutdated && gitHash !== await DataStore.get(REMEMBER_DISMISS_KEY)) {
|
||||||
const rememberDismiss = () => DataStore.set(REMEMBER_DISMISS_KEY, gitHash);
|
const rememberDismiss = () => DataStore.set(REMEMBER_DISMISS_KEY, gitHash);
|
||||||
|
@ -59,7 +59,7 @@ export async function translate(kind: "received" | "sent", text: string): Promis
|
|||||||
const res = await fetch(url);
|
const res = await fetch(url);
|
||||||
if (!res.ok)
|
if (!res.ok)
|
||||||
throw new Error(
|
throw new Error(
|
||||||
`Failed to translate "${text}" (${sourceLang} -> ${targetLang}`
|
`Failed to translate "${text}" (${sourceLang} -> ${targetLang})`
|
||||||
+ `\n${res.status} ${res.statusText}`
|
+ `\n${res.status} ${res.statusText}`
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -89,7 +89,7 @@ function TypingIndicator({ channelId }: { channelId: string; }) {
|
|||||||
<Tooltip text={tooltipText!}>
|
<Tooltip text={tooltipText!}>
|
||||||
{({ onMouseLeave, onMouseEnter }) => (
|
{({ onMouseLeave, onMouseEnter }) => (
|
||||||
<div
|
<div
|
||||||
style={{ marginLeft: 6, zIndex: 0, cursor: "pointer" }}
|
style={{ marginLeft: 6, height: 16, display: "flex", alignItems: "center", zIndex: 0, cursor: "pointer" }}
|
||||||
onMouseLeave={onMouseLeave}
|
onMouseLeave={onMouseLeave}
|
||||||
onMouseEnter={onMouseEnter}
|
onMouseEnter={onMouseEnter}
|
||||||
>
|
>
|
||||||
|
@ -89,7 +89,11 @@ const TypingUser = ErrorBoundary.wrap(function ({ user, guildId }: Props) {
|
|||||||
src={user.getAvatarURL(guildId, 128)} />
|
src={user.getAvatarURL(guildId, 128)} />
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
{GuildMemberStore.getNick(guildId!, user.id) || !guildId && RelationshipStore.getNickname(user.id) || user.username}
|
{GuildMemberStore.getNick(guildId!, user.id)
|
||||||
|
|| (!guildId && RelationshipStore.getNickname(user.id))
|
||||||
|
|| (user as any).globalName
|
||||||
|
|| user.username
|
||||||
|
}
|
||||||
</strong>
|
</strong>
|
||||||
);
|
);
|
||||||
}, { noop: true });
|
}, { noop: true });
|
||||||
|
@ -41,37 +41,48 @@ export default definePlugin({
|
|||||||
],
|
],
|
||||||
execute: async (args, ctx) => {
|
execute: async (args, ctx) => {
|
||||||
try {
|
try {
|
||||||
const { list: [definition] } = await (await fetch(`https://api.urbandictionary.com/v0/define?term=${args[0].value}`)).json();
|
const query = encodeURIComponent(args[0].value);
|
||||||
|
const { list: [definition] } = await (await fetch(`https://api.urbandictionary.com/v0/define?term=${query}`)).json();
|
||||||
|
|
||||||
if (!definition)
|
if (!definition)
|
||||||
return void sendBotMessage(ctx.channel.id, { content: "No results found." });
|
return void sendBotMessage(ctx.channel.id, { content: "No results found." });
|
||||||
|
|
||||||
const linkify = text => text.replace(/\[(.+?)\]/g, (_, word) => `[${word}](https://www.urbandictionary.com/define.php?term=${encodeURIComponent(word)})`);
|
const linkify = (text: string) => text
|
||||||
|
.replaceAll("\r\n", "\n")
|
||||||
|
.replace(/([*>_`~\\])/gsi, "\\$1")
|
||||||
|
.replace(/\[(.+?)\]/g, (_, word) => `[${word}](https://www.urbandictionary.com/define.php?term=${encodeURIComponent(word)} "Define '${word}' on Urban Dictionary")`)
|
||||||
|
.trim();
|
||||||
|
|
||||||
return void sendBotMessage(ctx.channel.id, {
|
return void sendBotMessage(ctx.channel.id, {
|
||||||
embeds: [
|
embeds: [
|
||||||
{
|
{
|
||||||
type: "rich",
|
type: "rich",
|
||||||
author: {
|
author: {
|
||||||
name: `Definition of ${definition.word}`,
|
name: `Uploaded by "${definition.author}"`,
|
||||||
url: definition.permalink
|
url: `https://www.urbandictionary.com/author.php?author=${encodeURIComponent(definition.author)}`,
|
||||||
},
|
},
|
||||||
|
title: definition.word,
|
||||||
|
url: `https://www.urbandictionary.com/define.php?term=${encodeURIComponent(definition.word)}`,
|
||||||
description: linkify(definition.definition),
|
description: linkify(definition.definition),
|
||||||
fields: [
|
fields: [
|
||||||
{
|
{
|
||||||
name: "Example",
|
name: "Example",
|
||||||
value: linkify(definition.example)
|
value: linkify(definition.example),
|
||||||
}
|
},
|
||||||
|
{
|
||||||
|
name: "Want more definitions?",
|
||||||
|
value: `Check out [more definitions](https://www.urbandictionary.com/define.php?term=${query} "Define "${args[0].value}" on Urban Dictionary") on Urban Dictionary.`,
|
||||||
|
},
|
||||||
],
|
],
|
||||||
color: 0xFF9900,
|
color: 0xFF9900,
|
||||||
footer: { text: `👍 ${definition.thumbs_up.toString()} | 👎 ${definition.thumbs_down.toString()} | Uploaded by ${definition.author}`, icon_url: "https://www.urbandictionary.com/favicon.ico" },
|
footer: { text: `👍 ${definition.thumbs_up.toString()} | 👎 ${definition.thumbs_down.toString()}`, icon_url: "https://www.urbandictionary.com/favicon.ico" },
|
||||||
timestamp: new Date(definition.written_on).toISOString()
|
timestamp: new Date(definition.written_on).toISOString(),
|
||||||
}
|
},
|
||||||
] as any
|
] as any,
|
||||||
});
|
});
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
return void sendBotMessage(ctx.channel.id, {
|
sendBotMessage(ctx.channel.id, {
|
||||||
content: `Something went wrong: \`${error}\``
|
content: `Something went wrong: \`${error}\``,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -17,8 +17,10 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
import { findOption, RequiredMessageOption } from "@api/Commands";
|
import { findOption, RequiredMessageOption } from "@api/Commands";
|
||||||
|
import { addPreEditListener, addPreSendListener, MessageObject, removePreEditListener, removePreSendListener } from "@api/MessageEvents";
|
||||||
|
import { definePluginSettings } from "@api/Settings";
|
||||||
import { Devs } from "@utils/constants";
|
import { Devs } from "@utils/constants";
|
||||||
import definePlugin from "@utils/types";
|
import definePlugin, { OptionType } from "@utils/types";
|
||||||
|
|
||||||
const endings = [
|
const endings = [
|
||||||
"rawr x3",
|
"rawr x3",
|
||||||
@ -65,6 +67,15 @@ const replacements = [
|
|||||||
["meow", "nya~"],
|
["meow", "nya~"],
|
||||||
];
|
];
|
||||||
|
|
||||||
|
const settings = definePluginSettings({
|
||||||
|
uwuEveryMessage: {
|
||||||
|
description: "Make every single message uwuified",
|
||||||
|
type: OptionType.BOOLEAN,
|
||||||
|
default: false,
|
||||||
|
restartNeeded: false
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
function selectRandomElement(arr) {
|
function selectRandomElement(arr) {
|
||||||
// generate a random index based on the length of the array
|
// generate a random index based on the length of the array
|
||||||
const randomIndex = Math.floor(Math.random() * arr.length);
|
const randomIndex = Math.floor(Math.random() * arr.length);
|
||||||
@ -94,8 +105,9 @@ function uwuify(message: string): string {
|
|||||||
export default definePlugin({
|
export default definePlugin({
|
||||||
name: "UwUifier",
|
name: "UwUifier",
|
||||||
description: "Simply uwuify commands",
|
description: "Simply uwuify commands",
|
||||||
authors: [Devs.echo, Devs.skyevg],
|
authors: [Devs.echo, Devs.skyevg, Devs.PandaNinjas],
|
||||||
dependencies: ["CommandsAPI"],
|
dependencies: ["CommandsAPI", "MessageEventsAPI"],
|
||||||
|
settings,
|
||||||
|
|
||||||
commands: [
|
commands: [
|
||||||
{
|
{
|
||||||
@ -108,4 +120,23 @@ export default definePlugin({
|
|||||||
}),
|
}),
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
|
||||||
|
onSend(msg: MessageObject) {
|
||||||
|
// Only run when it's enabled
|
||||||
|
if (settings.store.uwuEveryMessage) {
|
||||||
|
msg.content = uwuify(msg.content);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
start() {
|
||||||
|
this.preSend = addPreSendListener((_, msg) => this.onSend(msg));
|
||||||
|
this.preEdit = addPreEditListener((_cid, _mid, msg) =>
|
||||||
|
this.onSend(msg)
|
||||||
|
);
|
||||||
|
},
|
||||||
|
|
||||||
|
stop() {
|
||||||
|
removePreSendListener(this.preSend);
|
||||||
|
removePreEditListener(this.preEdit);
|
||||||
|
},
|
||||||
});
|
});
|
||||||
|
@ -59,17 +59,20 @@ function speak(text: string, settings: any = Settings.plugins.VcNarrator) {
|
|||||||
speechSynthesis.speak(speech);
|
speechSynthesis.speak(speech);
|
||||||
}
|
}
|
||||||
|
|
||||||
function clean(str: string, fallback: string) {
|
function clean(str: string) {
|
||||||
|
const replacer = Settings.plugins.VcNarrator.latinOnly
|
||||||
|
? /[^\p{Script=Latin}\p{Number}\p{Punctuation}\s]/gu
|
||||||
|
: /[^\p{Letter}\p{Number}\p{Punctuation}\s]/gu;
|
||||||
|
|
||||||
return str.normalize("NFKC")
|
return str.normalize("NFKC")
|
||||||
.replace(/[^\w ]/g, "")
|
.replace(replacer, "")
|
||||||
.trim()
|
.trim();
|
||||||
|| fallback;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function formatText(str: string, user: string, channel: string) {
|
function formatText(str: string, user: string, channel: string) {
|
||||||
return str
|
return str
|
||||||
.replaceAll("{{USER}}", clean(user, user ? "Someone" : ""))
|
.replaceAll("{{USER}}", clean(user) || (user ? "Someone" : ""))
|
||||||
.replaceAll("{{CHANNEL}}", clean(channel, "channel"));
|
.replaceAll("{{CHANNEL}}", clean(channel) || "channel");
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -165,7 +168,7 @@ export default definePlugin({
|
|||||||
if (!type) continue;
|
if (!type) continue;
|
||||||
|
|
||||||
const template = Settings.plugins.VcNarrator[type + "Message"];
|
const template = Settings.plugins.VcNarrator[type + "Message"];
|
||||||
const user = isMe ? "" : UserStore.getUser(userId).username;
|
const user = isMe && !Settings.plugins.VcNarrator.sayOwnName ? "" : UserStore.getUser(userId).username;
|
||||||
const channel = ChannelStore.getChannel(id).name;
|
const channel = ChannelStore.getChannel(id).name;
|
||||||
|
|
||||||
speak(formatText(template, user, channel));
|
speak(formatText(template, user, channel));
|
||||||
@ -230,6 +233,16 @@ export default definePlugin({
|
|||||||
markers: [0.1, 0.5, 1, 2, 5, 10],
|
markers: [0.1, 0.5, 1, 2, 5, 10],
|
||||||
stickToMarkers: false
|
stickToMarkers: false
|
||||||
},
|
},
|
||||||
|
sayOwnName: {
|
||||||
|
description: "Say own name",
|
||||||
|
type: OptionType.BOOLEAN,
|
||||||
|
default: false
|
||||||
|
},
|
||||||
|
latinOnly: {
|
||||||
|
description: "Strip non latin characters from names before saying them",
|
||||||
|
type: OptionType.BOOLEAN,
|
||||||
|
default: false
|
||||||
|
},
|
||||||
joinMessage: {
|
joinMessage: {
|
||||||
type: OptionType.STRING,
|
type: OptionType.STRING,
|
||||||
description: "Join Message",
|
description: "Join Message",
|
||||||
|
@ -18,6 +18,7 @@
|
|||||||
|
|
||||||
import { addContextMenuPatch, NavContextMenuPatchCallback, removeContextMenuPatch } from "@api/ContextMenu";
|
import { addContextMenuPatch, NavContextMenuPatchCallback, removeContextMenuPatch } from "@api/ContextMenu";
|
||||||
import { definePluginSettings } from "@api/Settings";
|
import { definePluginSettings } from "@api/Settings";
|
||||||
|
import { ImageIcon } from "@components/Icons";
|
||||||
import { Devs } from "@utils/constants";
|
import { Devs } from "@utils/constants";
|
||||||
import { ModalRoot, ModalSize, openModal } from "@utils/modal";
|
import { ModalRoot, ModalSize, openModal } from "@utils/modal";
|
||||||
import { LazyComponent } from "@utils/react";
|
import { LazyComponent } from "@utils/react";
|
||||||
@ -90,6 +91,7 @@ const UserContext: NavContextMenuPatchCallback = (children, { user, guildId }: U
|
|||||||
id="view-avatar"
|
id="view-avatar"
|
||||||
label="View Avatar"
|
label="View Avatar"
|
||||||
action={() => openImage(BannerStore.getUserAvatarURL(user, true, 512))}
|
action={() => openImage(BannerStore.getUserAvatarURL(user, true, 512))}
|
||||||
|
icon={ImageIcon}
|
||||||
/>
|
/>
|
||||||
{memberAvatar && (
|
{memberAvatar && (
|
||||||
<Menu.MenuItem
|
<Menu.MenuItem
|
||||||
@ -100,6 +102,7 @@ const UserContext: NavContextMenuPatchCallback = (children, { user, guildId }: U
|
|||||||
avatar: memberAvatar,
|
avatar: memberAvatar,
|
||||||
guildId
|
guildId
|
||||||
}, true))}
|
}, true))}
|
||||||
|
icon={ImageIcon}
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
</Menu.MenuGroup>
|
</Menu.MenuGroup>
|
||||||
@ -123,6 +126,7 @@ const GuildContext: NavContextMenuPatchCallback = (children, { guild: { id, icon
|
|||||||
canAnimate: true
|
canAnimate: true
|
||||||
}))
|
}))
|
||||||
}
|
}
|
||||||
|
icon={ImageIcon}
|
||||||
/>
|
/>
|
||||||
) : null}
|
) : null}
|
||||||
{banner ? (
|
{banner ? (
|
||||||
@ -135,6 +139,7 @@ const GuildContext: NavContextMenuPatchCallback = (children, { guild: { id, icon
|
|||||||
banner,
|
banner,
|
||||||
}, true))
|
}, true))
|
||||||
}
|
}
|
||||||
|
icon={ImageIcon}
|
||||||
/>
|
/>
|
||||||
) : null}
|
) : null}
|
||||||
</Menu.MenuGroup>
|
</Menu.MenuGroup>
|
||||||
|
@ -77,14 +77,14 @@ export async function authorizeCloud() {
|
|||||||
permissions={0n}
|
permissions={0n}
|
||||||
clientId={clientId}
|
clientId={clientId}
|
||||||
cancelCompletesFlow={false}
|
cancelCompletesFlow={false}
|
||||||
callback={async (callbackUrl: string) => {
|
callback={async ({ location }: any) => {
|
||||||
if (!callbackUrl) {
|
if (!location) {
|
||||||
Settings.cloud.authenticated = false;
|
Settings.cloud.authenticated = false;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const res = await fetch(callbackUrl, {
|
const res = await fetch(location, {
|
||||||
headers: new Headers({ Accept: "application/json" })
|
headers: new Headers({ Accept: "application/json" })
|
||||||
});
|
});
|
||||||
const { secret } = await res.json();
|
const { secret } = await res.json();
|
||||||
|
@ -29,7 +29,18 @@ export const REACT_GLOBAL = "Vencord.Webpack.Common.React";
|
|||||||
export const VENCORD_USER_AGENT = `Vencord/${gitHash}${gitRemote ? ` (https://github.com/${gitRemote})` : ""}`;
|
export const VENCORD_USER_AGENT = `Vencord/${gitHash}${gitRemote ? ` (https://github.com/${gitRemote})` : ""}`;
|
||||||
export const SUPPORT_CHANNEL_ID = "1026515880080842772";
|
export const SUPPORT_CHANNEL_ID = "1026515880080842772";
|
||||||
|
|
||||||
// Add yourself here if you made a plugin
|
export interface Dev {
|
||||||
|
name: string;
|
||||||
|
id: bigint;
|
||||||
|
badge?: boolean;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* If you made a plugin or substantial contribution, add yourself here.
|
||||||
|
* This object is used for the plugin author list, as well as to add a contributor badge to your profile.
|
||||||
|
* If you wish to stay fully anonymous, feel free to set ID to 0n.
|
||||||
|
* If you are fine with attribution but don't want the badge, add badge: false
|
||||||
|
*/
|
||||||
export const Devs = /* #__PURE__*/ Object.freeze({
|
export const Devs = /* #__PURE__*/ Object.freeze({
|
||||||
Ven: {
|
Ven: {
|
||||||
name: "Vendicated",
|
name: "Vendicated",
|
||||||
@ -201,7 +212,8 @@ export const Devs = /* #__PURE__*/ Object.freeze({
|
|||||||
},
|
},
|
||||||
nick: {
|
nick: {
|
||||||
name: "nick",
|
name: "nick",
|
||||||
id: 347884694408265729n
|
id: 347884694408265729n,
|
||||||
|
badge: false
|
||||||
},
|
},
|
||||||
whqwert: {
|
whqwert: {
|
||||||
name: "whqwert",
|
name: "whqwert",
|
||||||
@ -287,8 +299,37 @@ export const Devs = /* #__PURE__*/ Object.freeze({
|
|||||||
name: "carince",
|
name: "carince",
|
||||||
id: 818323528755314698n
|
id: 818323528755314698n
|
||||||
},
|
},
|
||||||
|
PandaNinjas: {
|
||||||
|
name: "PandaNinjas",
|
||||||
|
id: 455128749071925248n
|
||||||
|
},
|
||||||
CatNoir: {
|
CatNoir: {
|
||||||
name: "CatNoir",
|
name: "CatNoir",
|
||||||
id: 260371016348336128n
|
id: 260371016348336128n
|
||||||
|
},
|
||||||
|
outfoxxed: {
|
||||||
|
name: "outfoxxed",
|
||||||
|
id: 837425748435796060n
|
||||||
|
},
|
||||||
|
UwUDev: {
|
||||||
|
name: "UwU",
|
||||||
|
id: 691413039156690994n,
|
||||||
|
},
|
||||||
|
amia: {
|
||||||
|
name: "amia",
|
||||||
|
id: 142007603549962240n
|
||||||
|
},
|
||||||
|
ImLvna: {
|
||||||
|
name: "Luna <3",
|
||||||
|
id: 174200708818665472n
|
||||||
}
|
}
|
||||||
});
|
} satisfies Record<string, Dev>);
|
||||||
|
|
||||||
|
// iife so #__PURE__ works correctly
|
||||||
|
export const DevsById = /* #__PURE__*/ (() =>
|
||||||
|
Object.freeze(Object.fromEntries(
|
||||||
|
Object.entries(Devs)
|
||||||
|
.filter(d => d[1].id !== 0n)
|
||||||
|
.map(([_, v]) => [v.id, v] as const)
|
||||||
|
))
|
||||||
|
)() as Record<string, Dev>;
|
||||||
|
@ -16,11 +16,13 @@
|
|||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import { findLazy } from "@webpack";
|
import { MessageObject } from "@api/MessageEvents";
|
||||||
|
import { findByPropsLazy, findLazy } from "@webpack";
|
||||||
import { ChannelStore, ComponentDispatch, GuildStore, PrivateChannelsStore, SelectedChannelStore } from "@webpack/common";
|
import { ChannelStore, ComponentDispatch, GuildStore, PrivateChannelsStore, SelectedChannelStore } from "@webpack/common";
|
||||||
import { Guild } from "discord-types/general";
|
import { Guild, Message } from "discord-types/general";
|
||||||
|
|
||||||
const PreloadedUserSettings = findLazy(m => m.ProtoClass?.typeName.endsWith("PreloadedUserSettings"));
|
const PreloadedUserSettings = findLazy(m => m.ProtoClass?.typeName.endsWith("PreloadedUserSettings"));
|
||||||
|
const MessageActions = findByPropsLazy("editMessage", "sendMessage");
|
||||||
|
|
||||||
export function getCurrentChannel() {
|
export function getCurrentChannel() {
|
||||||
return ChannelStore.getChannel(SelectedChannelStore.getChannelId());
|
return ChannelStore.getChannel(SelectedChannelStore.getChannelId());
|
||||||
@ -49,3 +51,29 @@ export function insertTextIntoChatInputBox(text: string) {
|
|||||||
plainText: text
|
plainText: text
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
interface MessageExtra {
|
||||||
|
messageReference: Message["messageReference"];
|
||||||
|
allowedMentions: {
|
||||||
|
parse: string[];
|
||||||
|
replied_user: boolean;
|
||||||
|
};
|
||||||
|
stickerIds: string[];
|
||||||
|
}
|
||||||
|
|
||||||
|
export function sendMessage(
|
||||||
|
channelId: string,
|
||||||
|
data: Partial<MessageObject>,
|
||||||
|
waitForChannelReady?: boolean,
|
||||||
|
extra?: Partial<MessageExtra>
|
||||||
|
) {
|
||||||
|
const messageData = {
|
||||||
|
content: "",
|
||||||
|
invalidEmojis: [],
|
||||||
|
tts: false,
|
||||||
|
validNonShortcutEmojis: [],
|
||||||
|
...data
|
||||||
|
};
|
||||||
|
|
||||||
|
return MessageActions.sendMessage(channelId, messageData, waitForChannelReady, extra);
|
||||||
|
}
|
||||||
|
@ -18,6 +18,8 @@
|
|||||||
|
|
||||||
import { Clipboard, Toasts } from "@webpack/common";
|
import { Clipboard, Toasts } from "@webpack/common";
|
||||||
|
|
||||||
|
import { DevsById } from "./constants";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Recursively merges defaults into an object and returns the same object
|
* Recursively merges defaults into an object and returns the same object
|
||||||
* @param obj Object
|
* @param obj Object
|
||||||
@ -100,3 +102,5 @@ export function identity<T>(value: T): T {
|
|||||||
// https://developer.mozilla.org/en-US/docs/Web/HTTP/Browser_detection_using_the_user_agent#mobile_tablet_or_desktop
|
// https://developer.mozilla.org/en-US/docs/Web/HTTP/Browser_detection_using_the_user_agent#mobile_tablet_or_desktop
|
||||||
// "In summary, we recommend looking for the string Mobi anywhere in the User Agent to detect a mobile device."
|
// "In summary, we recommend looking for the string Mobi anywhere in the User Agent to detect a mobile device."
|
||||||
export const isMobile = navigator.userAgent.includes("Mobi");
|
export const isMobile = navigator.userAgent.includes("Mobi");
|
||||||
|
|
||||||
|
export const isPluginDev = (id: string) => Object.hasOwn(DevsById, id);
|
||||||
|
@ -67,6 +67,7 @@ interface AwaiterOpts<T> {
|
|||||||
fallbackValue: T;
|
fallbackValue: T;
|
||||||
deps?: unknown[];
|
deps?: unknown[];
|
||||||
onError?(e: any): void;
|
onError?(e: any): void;
|
||||||
|
onSuccess?(value: T): void;
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* Await a promise
|
* Await a promise
|
||||||
@ -94,8 +95,16 @@ export function useAwaiter<T>(factory: () => Promise<T>, providedOpts?: AwaiterO
|
|||||||
if (!state.pending) setState({ ...state, pending: true });
|
if (!state.pending) setState({ ...state, pending: true });
|
||||||
|
|
||||||
factory()
|
factory()
|
||||||
.then(value => isAlive && setState({ value, error: null, pending: false }))
|
.then(value => {
|
||||||
.catch(error => isAlive && (setState({ value: null, error, pending: false }), opts.onError?.(error)));
|
if (!isAlive) return;
|
||||||
|
setState({ value, error: null, pending: false });
|
||||||
|
opts.onSuccess?.(value);
|
||||||
|
})
|
||||||
|
.catch(error => {
|
||||||
|
if (!isAlive) return;
|
||||||
|
setState({ value: null, error, pending: false });
|
||||||
|
opts.onError?.(error);
|
||||||
|
});
|
||||||
|
|
||||||
return () => void (isAlive = false);
|
return () => void (isAlive = false);
|
||||||
}, opts.deps);
|
}, opts.deps);
|
||||||
|
@ -277,6 +277,8 @@ export interface DefinedSettings<D extends SettingsDefinition = SettingsDefiniti
|
|||||||
* will be an empty string until plugin is initialized
|
* will be an empty string until plugin is initialized
|
||||||
*/
|
*/
|
||||||
pluginName: string;
|
pluginName: string;
|
||||||
|
|
||||||
|
withPrivateSettings<T>(): this & { store: T; };
|
||||||
}
|
}
|
||||||
|
|
||||||
export type PartialExcept<T, R extends keyof T> = Partial<T> & Required<Pick<T, R>>;
|
export type PartialExcept<T, R extends keyof T> = Partial<T> & Required<Pick<T, R>>;
|
||||||
|
@ -43,6 +43,7 @@ export let ButtonLooks: t.ButtonLooks;
|
|||||||
export let Popout: t.Popout;
|
export let Popout: t.Popout;
|
||||||
export let Dialog: t.Dialog;
|
export let Dialog: t.Dialog;
|
||||||
export let TabBar: any;
|
export let TabBar: any;
|
||||||
|
export let Paginator: t.Paginator;
|
||||||
// token lagger real
|
// token lagger real
|
||||||
/** css colour resolver stuff, no clue what exactly this does, just copied usage from Discord */
|
/** css colour resolver stuff, no clue what exactly this does, just copied usage from Discord */
|
||||||
export let useToken: t.useToken;
|
export let useToken: t.useToken;
|
||||||
@ -53,6 +54,6 @@ export const Flex = waitForComponent<t.Flex>("Flex", ["Justify", "Align", "Wrap"
|
|||||||
export const ButtonWrapperClasses = findByPropsLazy("buttonWrapper", "buttonContent") as Record<string, string>;
|
export const ButtonWrapperClasses = findByPropsLazy("buttonWrapper", "buttonContent") as Record<string, string>;
|
||||||
|
|
||||||
waitFor("FormItem", m => {
|
waitFor("FormItem", m => {
|
||||||
({ useToken, Card, Button, FormSwitch: Switch, Tooltip, TextInput, TextArea, Text, Select, SearchableSelect, Slider, ButtonLooks, TabBar, Popout, Dialog } = m);
|
({ useToken, Card, Button, FormSwitch: Switch, Tooltip, TextInput, TextArea, Text, Select, SearchableSelect, Slider, ButtonLooks, TabBar, Popout, Dialog, Paginator } = m);
|
||||||
Forms = m;
|
Forms = m;
|
||||||
});
|
});
|
||||||
|
@ -25,7 +25,7 @@ import * as t from "./types/stores";
|
|||||||
|
|
||||||
export const Flux: t.Flux = findByPropsLazy("connectStores");
|
export const Flux: t.Flux = findByPropsLazy("connectStores");
|
||||||
|
|
||||||
type GenericStore = t.FluxStore & Record<string, any>;
|
export type GenericStore = t.FluxStore & Record<string, any>;
|
||||||
|
|
||||||
export let MessageStore: Omit<Stores.MessageStore, "getMessages"> & {
|
export let MessageStore: Omit<Stores.MessageStore, "getMessages"> & {
|
||||||
getMessages(chanId: string): any;
|
getMessages(chanId: string): any;
|
||||||
@ -37,6 +37,7 @@ export let PermissionStore: GenericStore;
|
|||||||
export let GuildChannelStore: GenericStore;
|
export let GuildChannelStore: GenericStore;
|
||||||
export let ReadStateStore: GenericStore;
|
export let ReadStateStore: GenericStore;
|
||||||
export let PresenceStore: GenericStore;
|
export let PresenceStore: GenericStore;
|
||||||
|
export let PoggerModeSettingsStore: GenericStore;
|
||||||
|
|
||||||
export let GuildStore: Stores.GuildStore & t.FluxStore;
|
export let GuildStore: Stores.GuildStore & t.FluxStore;
|
||||||
export let UserStore: Stores.UserStore & t.FluxStore;
|
export let UserStore: Stores.UserStore & t.FluxStore;
|
||||||
@ -49,6 +50,7 @@ export let RelationshipStore: Stores.RelationshipStore & t.FluxStore & {
|
|||||||
getSince(userId: string): string;
|
getSince(userId: string): string;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
export let EmojiStore: t.EmojiStore;
|
||||||
export let WindowStore: t.WindowStore;
|
export let WindowStore: t.WindowStore;
|
||||||
|
|
||||||
export const MaskedLinkStore = mapMangledModuleLazy('"MaskedLinkStore"', {
|
export const MaskedLinkStore = mapMangledModuleLazy('"MaskedLinkStore"', {
|
||||||
@ -87,3 +89,4 @@ waitForStore("ReadStateStore", m => ReadStateStore = m);
|
|||||||
waitForStore("GuildChannelStore", m => GuildChannelStore = m);
|
waitForStore("GuildChannelStore", m => GuildChannelStore = m);
|
||||||
waitForStore("MessageStore", m => MessageStore = m);
|
waitForStore("MessageStore", m => MessageStore = m);
|
||||||
waitForStore("WindowStore", m => WindowStore = m);
|
waitForStore("WindowStore", m => WindowStore = m);
|
||||||
|
waitForStore("EmojiStore", m => EmojiStore = m);
|
||||||
|
10
src/webpack/common/types/components.d.ts
vendored
10
src/webpack/common/types/components.d.ts
vendored
@ -387,3 +387,13 @@ export type useToken = (color: {
|
|||||||
css: string;
|
css: string;
|
||||||
resolve: Resolve;
|
resolve: Resolve;
|
||||||
}) => ReturnType<Resolve>;
|
}) => ReturnType<Resolve>;
|
||||||
|
|
||||||
|
export type Paginator = ComponentType<{
|
||||||
|
currentPage: number;
|
||||||
|
maxVisiblePages: number;
|
||||||
|
pageSize: number;
|
||||||
|
totalCount: number;
|
||||||
|
|
||||||
|
onPageChange?(page: number): void;
|
||||||
|
hideMaxPage?: boolean;
|
||||||
|
}>;
|
||||||
|
7
src/webpack/common/types/menu.d.ts
vendored
7
src/webpack/common/types/menu.d.ts
vendored
@ -16,7 +16,7 @@
|
|||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import type { ComponentType, CSSProperties, MouseEvent, PropsWithChildren, UIEvent } from "react";
|
import type { ComponentType, CSSProperties, MouseEvent, PropsWithChildren, ReactNode, UIEvent } from "react";
|
||||||
|
|
||||||
type RC<C> = ComponentType<PropsWithChildren<C & Record<string, any>>>;
|
type RC<C> = ComponentType<PropsWithChildren<C & Record<string, any>>>;
|
||||||
|
|
||||||
@ -35,11 +35,12 @@ export interface Menu {
|
|||||||
}>;
|
}>;
|
||||||
MenuItem: RC<{
|
MenuItem: RC<{
|
||||||
id: string;
|
id: string;
|
||||||
label: string;
|
label: ReactNode;
|
||||||
action?(e: MouseEvent): void;
|
action?(e: MouseEvent): void;
|
||||||
|
icon?: ComponentType<any>;
|
||||||
|
|
||||||
color?: string;
|
color?: string;
|
||||||
render?: ComponentType;
|
render?: ComponentType<any>;
|
||||||
onChildrenScroll?: Function;
|
onChildrenScroll?: Function;
|
||||||
childRowHeight?: number;
|
childRowHeight?: number;
|
||||||
listClassName?: string;
|
listClassName?: string;
|
||||||
|
101
src/webpack/common/types/stores.d.ts
vendored
101
src/webpack/common/types/stores.d.ts
vendored
@ -16,6 +16,8 @@
|
|||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
import { Channel } from "discord-types/general";
|
||||||
|
|
||||||
import { FluxDispatcher, FluxEvents } from "./utils";
|
import { FluxDispatcher, FluxEvents } from "./utils";
|
||||||
|
|
||||||
export class FluxStore {
|
export class FluxStore {
|
||||||
@ -38,3 +40,102 @@ export class WindowStore extends FluxStore {
|
|||||||
isFocused(): boolean;
|
isFocused(): boolean;
|
||||||
windowSize(): Record<"width" | "height", number>;
|
windowSize(): Record<"width" | "height", number>;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type Emoji = CustomEmoji | UnicodeEmoji;
|
||||||
|
export interface CustomEmoji {
|
||||||
|
allNamesString: string;
|
||||||
|
animated: boolean;
|
||||||
|
available: boolean;
|
||||||
|
guildId: string;
|
||||||
|
id: string;
|
||||||
|
managed: boolean;
|
||||||
|
name: string;
|
||||||
|
originalName?: string;
|
||||||
|
require_colons: boolean;
|
||||||
|
roles: string[];
|
||||||
|
url: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface UnicodeEmoji {
|
||||||
|
diversityChildren: Record<any, any>;
|
||||||
|
emojiObject: {
|
||||||
|
names: string[];
|
||||||
|
surrogates: string;
|
||||||
|
unicodeVersion: number;
|
||||||
|
};
|
||||||
|
index: number;
|
||||||
|
surrogates: string;
|
||||||
|
uniqueName: string;
|
||||||
|
useSpriteSheet: boolean;
|
||||||
|
get allNamesString(): string;
|
||||||
|
get animated(): boolean;
|
||||||
|
get defaultDiversityChild(): any;
|
||||||
|
get hasDiversity(): boolean | undefined;
|
||||||
|
get hasDiversityParent(): boolean | undefined;
|
||||||
|
get hasMultiDiversity(): boolean | undefined;
|
||||||
|
get hasMultiDiversityParent(): boolean | undefined;
|
||||||
|
get managed(): boolean;
|
||||||
|
get name(): string;
|
||||||
|
get names(): string[];
|
||||||
|
get optionallyDiverseSequence(): string | undefined;
|
||||||
|
get unicodeVersion(): number;
|
||||||
|
get url(): string;
|
||||||
|
}
|
||||||
|
|
||||||
|
export class EmojiStore extends FluxStore {
|
||||||
|
getCustomEmojiById(id?: string | null): CustomEmoji;
|
||||||
|
getUsableCustomEmojiById(id?: string | null): CustomEmoji;
|
||||||
|
getGuilds(): Record<string, {
|
||||||
|
id: string;
|
||||||
|
_emojiMap: Record<string, CustomEmoji>;
|
||||||
|
_emojis: CustomEmoji[];
|
||||||
|
get emojis(): CustomEmoji[];
|
||||||
|
get rawEmojis(): CustomEmoji[];
|
||||||
|
_usableEmojis: CustomEmoji[];
|
||||||
|
get usableEmojis(): CustomEmoji[];
|
||||||
|
_emoticons: any[];
|
||||||
|
get emoticons(): any[];
|
||||||
|
}>;
|
||||||
|
getGuildEmoji(guildId?: string | null): CustomEmoji[];
|
||||||
|
getNewlyAddedEmoji(guildId?: string | null): CustomEmoji[];
|
||||||
|
getTopEmoji(guildId?: string | null): CustomEmoji[];
|
||||||
|
getTopEmojisMetadata(guildId?: string | null): {
|
||||||
|
emojiIds: string[];
|
||||||
|
topEmojisTTL: number;
|
||||||
|
};
|
||||||
|
hasPendingUsage(): boolean;
|
||||||
|
hasUsableEmojiInAnyGuild(): boolean;
|
||||||
|
searchWithoutFetchingLatest(data: any): any;
|
||||||
|
getSearchResultsOrder(...args: any[]): any;
|
||||||
|
getState(): {
|
||||||
|
pendingUsages: { key: string, timestamp: number; }[];
|
||||||
|
};
|
||||||
|
searchWithoutFetchingLatest(data: {
|
||||||
|
channel: Channel,
|
||||||
|
query: string;
|
||||||
|
count?: number;
|
||||||
|
intention: number;
|
||||||
|
includeExternalGuilds?: boolean;
|
||||||
|
matchComparator?(name: string): boolean;
|
||||||
|
}): Record<"locked" | "unlocked", Emoji[]>;
|
||||||
|
|
||||||
|
getDisambiguatedEmojiContext(): {
|
||||||
|
backfillTopEmojis: Record<any, any>;
|
||||||
|
customEmojis: Record<string, CustomEmoji>;
|
||||||
|
emojisById: Record<string, CustomEmoji>;
|
||||||
|
emojisByName: Record<string, CustomEmoji>;
|
||||||
|
emoticonRegex: RegExp | null;
|
||||||
|
emoticonsByName: Record<string, any>;
|
||||||
|
escapedEmoticonNames: string;
|
||||||
|
favoriteNamesAndIds?: any;
|
||||||
|
favorites?: any;
|
||||||
|
frequentlyUsed?: any;
|
||||||
|
groupedCustomEmojis: Record<string, CustomEmoji[]>;
|
||||||
|
guildId?: string;
|
||||||
|
isFavoriteEmojiWithoutFetchingLatest(e: Emoji): boolean;
|
||||||
|
newlyAddedEmoji: Record<string, CustomEmoji[]>;
|
||||||
|
topEmojis?: any;
|
||||||
|
unicodeAliases: Record<string, string>;
|
||||||
|
get favoriteEmojisWithoutFetchingLatest(): Emoji[];
|
||||||
|
};
|
||||||
|
}
|
||||||
|
45
src/webpack/common/types/utils.d.ts
vendored
45
src/webpack/common/types/utils.d.ts
vendored
@ -85,6 +85,51 @@ export type RestAPI = Record<"delete" | "get" | "patch" | "post" | "put", (data:
|
|||||||
getAPIBaseURL(withVersion?: boolean): string;
|
getAPIBaseURL(withVersion?: boolean): string;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
export type Permissions = "CREATE_INSTANT_INVITE"
|
||||||
|
| "KICK_MEMBERS"
|
||||||
|
| "BAN_MEMBERS"
|
||||||
|
| "ADMINISTRATOR"
|
||||||
|
| "MANAGE_CHANNELS"
|
||||||
|
| "MANAGE_GUILD"
|
||||||
|
| "CHANGE_NICKNAME"
|
||||||
|
| "MANAGE_NICKNAMES"
|
||||||
|
| "MANAGE_ROLES"
|
||||||
|
| "MANAGE_WEBHOOKS"
|
||||||
|
| "MANAGE_GUILD_EXPRESSIONS"
|
||||||
|
| "VIEW_AUDIT_LOG"
|
||||||
|
| "VIEW_CHANNEL"
|
||||||
|
| "VIEW_GUILD_ANALYTICS"
|
||||||
|
| "VIEW_CREATOR_MONETIZATION_ANALYTICS"
|
||||||
|
| "MODERATE_MEMBERS"
|
||||||
|
| "SEND_MESSAGES"
|
||||||
|
| "SEND_TTS_MESSAGES"
|
||||||
|
| "MANAGE_MESSAGES"
|
||||||
|
| "EMBED_LINKS"
|
||||||
|
| "ATTACH_FILES"
|
||||||
|
| "READ_MESSAGE_HISTORY"
|
||||||
|
| "MENTION_EVERYONE"
|
||||||
|
| "USE_EXTERNAL_EMOJIS"
|
||||||
|
| "ADD_REACTIONS"
|
||||||
|
| "USE_APPLICATION_COMMANDS"
|
||||||
|
| "MANAGE_THREADS"
|
||||||
|
| "CREATE_PUBLIC_THREADS"
|
||||||
|
| "CREATE_PRIVATE_THREADS"
|
||||||
|
| "USE_EXTERNAL_STICKERS"
|
||||||
|
| "SEND_MESSAGES_IN_THREADS"
|
||||||
|
| "CONNECT"
|
||||||
|
| "SPEAK"
|
||||||
|
| "MUTE_MEMBERS"
|
||||||
|
| "DEAFEN_MEMBERS"
|
||||||
|
| "MOVE_MEMBERS"
|
||||||
|
| "USE_VAD"
|
||||||
|
| "PRIORITY_SPEAKER"
|
||||||
|
| "STREAM"
|
||||||
|
| "USE_EMBEDDED_ACTIVITIES"
|
||||||
|
| "REQUEST_TO_SPEAK"
|
||||||
|
| "MANAGE_EVENTS";
|
||||||
|
|
||||||
|
export type PermissionsBits = Record<Permissions, bigint>;
|
||||||
|
|
||||||
export interface Locale {
|
export interface Locale {
|
||||||
name: string;
|
name: string;
|
||||||
value: string;
|
value: string;
|
||||||
|
@ -114,3 +114,5 @@ waitFor("parseTopic", m => Parser = m);
|
|||||||
|
|
||||||
export let SettingsRouter: any;
|
export let SettingsRouter: any;
|
||||||
waitFor(["open", "saveAccountChanges"], m => SettingsRouter = m);
|
waitFor(["open", "saveAccountChanges"], m => SettingsRouter = m);
|
||||||
|
|
||||||
|
export const PermissionsBits: t.PermissionsBits = findLazy(m => typeof m.ADMINISTRATOR === "bigint");
|
||||||
|
@ -28,21 +28,27 @@ let webpackChunk: any[];
|
|||||||
|
|
||||||
const logger = new Logger("WebpackInterceptor", "#8caaee");
|
const logger = new Logger("WebpackInterceptor", "#8caaee");
|
||||||
|
|
||||||
Object.defineProperty(window, WEBPACK_CHUNK, {
|
if (window[WEBPACK_CHUNK]) {
|
||||||
get: () => webpackChunk,
|
logger.info(`Patching ${WEBPACK_CHUNK}.push (was already existant, likely from cache!)`);
|
||||||
set: v => {
|
_initWebpack(window[WEBPACK_CHUNK]);
|
||||||
if (v?.push !== Array.prototype.push) {
|
patchPush();
|
||||||
logger.info(`Patching ${WEBPACK_CHUNK}.push`);
|
} else {
|
||||||
_initWebpack(v);
|
Object.defineProperty(window, WEBPACK_CHUNK, {
|
||||||
patchPush();
|
get: () => webpackChunk,
|
||||||
// @ts-ignore
|
set: v => {
|
||||||
delete window[WEBPACK_CHUNK];
|
if (v?.push !== Array.prototype.push) {
|
||||||
window[WEBPACK_CHUNK] = v;
|
logger.info(`Patching ${WEBPACK_CHUNK}.push`);
|
||||||
}
|
_initWebpack(v);
|
||||||
webpackChunk = v;
|
patchPush();
|
||||||
},
|
// @ts-ignore
|
||||||
configurable: true
|
delete window[WEBPACK_CHUNK];
|
||||||
});
|
window[WEBPACK_CHUNK] = v;
|
||||||
|
}
|
||||||
|
webpackChunk = v;
|
||||||
|
},
|
||||||
|
configurable: true
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
function patchPush() {
|
function patchPush() {
|
||||||
function handlePush(chunk: any) {
|
function handlePush(chunk: any) {
|
||||||
|
Reference in New Issue
Block a user