mirror of
https://github.com/wanderer-industries/wanderer
synced 2025-12-05 15:25:34 +00:00
Compare commits
93 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
bb38e1710b | ||
|
|
0857a82de5 | ||
|
|
da5afcc91c | ||
|
|
0002979fda | ||
|
|
080af16d41 | ||
|
|
d03a0b7083 | ||
|
|
5ba21f5386 | ||
|
|
10eeae5295 | ||
|
|
a5bead15d0 | ||
|
|
0de674adde | ||
|
|
1db65965d0 | ||
|
|
bbed17f631 | ||
|
|
0af4a3a731 | ||
|
|
49d503705a | ||
|
|
c55dd7b8d9 | ||
|
|
7ddcab3537 | ||
|
|
040b46c345 | ||
|
|
cd11ab6775 | ||
|
|
a5d776f3b1 | ||
|
|
e02caf341d | ||
|
|
3c04caa67c | ||
|
|
e76b564cbf | ||
|
|
5b2de88c3d | ||
|
|
82080b232f | ||
|
|
666bc7af43 | ||
|
|
dc077d5a5b | ||
|
|
29c840c64a | ||
|
|
65e0f89f33 | ||
|
|
d3b9b36332 | ||
|
|
90bbf29ea1 | ||
|
|
57f73684e8 | ||
|
|
7833cdebb2 | ||
|
|
67a5ae2985 | ||
|
|
f58c52d26b | ||
|
|
41e7739461 | ||
|
|
332152b677 | ||
|
|
85b49fe1f0 | ||
|
|
e7924532be | ||
|
|
475d950ad6 | ||
|
|
e6cfb29c6f | ||
|
|
dee6e86db1 | ||
|
|
72f088331f | ||
|
|
bbf536d10e | ||
|
|
149ac98297 | ||
|
|
b90a2910c9 | ||
|
|
c4da8a3a8d | ||
|
|
3ca75583d2 | ||
|
|
5f4607ae6f | ||
|
|
d880c6873f | ||
|
|
937649b2ed | ||
|
|
78e912c886 | ||
|
|
696c7d2cd1 | ||
|
|
49c0cb026b | ||
|
|
7091341b4b | ||
|
|
8795ce6af3 | ||
|
|
239b34d15a | ||
|
|
729a5ad1a9 | ||
|
|
8febc2476b | ||
|
|
84b1317927 | ||
|
|
bfb504e5db | ||
|
|
9975deacfb | ||
|
|
f77f071003 | ||
|
|
4a8d55e83d | ||
|
|
9a99f40e2a | ||
|
|
428fa8035c | ||
|
|
745f3dee17 | ||
|
|
9907cc1875 | ||
|
|
130cd780a2 | ||
|
|
a808e5d1a5 | ||
|
|
b926117e26 | ||
|
|
fdf238accf | ||
|
|
4e1c27e8a3 | ||
|
|
a3e51a0ac5 | ||
|
|
d27bb0d54f | ||
|
|
f6a750f06b | ||
|
|
c4e2f63e69 | ||
|
|
675ffc8f42 | ||
|
|
cdc4221175 | ||
|
|
843f3363fd | ||
|
|
17653a6374 | ||
|
|
7d860533a0 | ||
|
|
0c751b3ced | ||
|
|
80a522ab06 | ||
|
|
0718d76e00 | ||
|
|
a4887c5358 | ||
|
|
2ad5e122ff | ||
|
|
832d874a0e | ||
|
|
6a133d4dbd | ||
|
|
d96dfa63c9 | ||
|
|
d5c8c05426 | ||
|
|
b6bb4647c7 | ||
|
|
a81f06b743 | ||
|
|
cb41a33546 |
@@ -1,12 +1,7 @@
|
|||||||
FROM elixir:1.16-otp-25
|
FROM elixir:1.17-otp-27
|
||||||
|
|
||||||
RUN apt update -yq
|
RUN apt install -yq curl gnupg
|
||||||
RUN apt install -yq curl gnupg mc inotify-tools
|
|
||||||
RUN apt --fix-broken install
|
RUN apt --fix-broken install
|
||||||
RUN apt remove -y nodejs nodejs-doc
|
|
||||||
RUN curl -sL https://deb.nodesource.com/setup_18.x | bash -
|
|
||||||
RUN apt install -y nodejs
|
|
||||||
RUN npm install --global yarn
|
|
||||||
|
|
||||||
RUN mix local.hex --force
|
RUN mix local.hex --force
|
||||||
|
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ version: "0.1"
|
|||||||
|
|
||||||
services:
|
services:
|
||||||
db:
|
db:
|
||||||
image: postgres:14.3
|
image: postgres:13-alpine
|
||||||
restart: always
|
restart: always
|
||||||
environment:
|
environment:
|
||||||
POSTGRES_USER: postgres
|
POSTGRES_USER: postgres
|
||||||
@@ -10,13 +10,13 @@ services:
|
|||||||
ports:
|
ports:
|
||||||
- "5432:5432"
|
- "5432:5432"
|
||||||
volumes:
|
volumes:
|
||||||
- db:/var/lib/postgresql/data
|
- db-new:/var/lib/postgresql/data
|
||||||
|
|
||||||
wanderer:
|
wanderer:
|
||||||
environment:
|
environment:
|
||||||
PORT: 8000
|
PORT: 8000
|
||||||
DB_HOST: db
|
DB_HOST: db
|
||||||
WEB_APP_URL: "http://localhost:4444"
|
WEB_APP_URL: "http://localhost:8000"
|
||||||
ERL_AFLAGS: "-kernel shell_history enabled"
|
ERL_AFLAGS: "-kernel shell_history enabled"
|
||||||
build:
|
build:
|
||||||
context: .
|
context: .
|
||||||
@@ -33,4 +33,4 @@ services:
|
|||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
elixir-artifacts: {}
|
elixir-artifacts: {}
|
||||||
db: {}
|
db-new: {}
|
||||||
|
|||||||
32
.github/workflows/build.yml
vendored
32
.github/workflows/build.yml
vendored
@@ -58,6 +58,8 @@ jobs:
|
|||||||
otp: ["27"]
|
otp: ["27"]
|
||||||
elixir: ["1.17"]
|
elixir: ["1.17"]
|
||||||
node-version: ["18.x"]
|
node-version: ["18.x"]
|
||||||
|
outputs:
|
||||||
|
commit_hash: ${{ steps.generate-changelog.outputs.commit_hash }}
|
||||||
steps:
|
steps:
|
||||||
- name: Prepare
|
- name: Prepare
|
||||||
run: |
|
run: |
|
||||||
@@ -108,16 +110,17 @@ jobs:
|
|||||||
run: mix compile
|
run: mix compile
|
||||||
|
|
||||||
- name: Generate Changelog & Update Tag Version
|
- name: Generate Changelog & Update Tag Version
|
||||||
|
id: generate-changelog
|
||||||
run: |
|
run: |
|
||||||
git config --global user.name 'CI'
|
git config --global user.name 'CI'
|
||||||
git config --global user.email 'ci@users.noreply.github.com'
|
git config --global user.email 'ci@users.noreply.github.com'
|
||||||
mix git_ops.release --force-patch --yes
|
mix git_ops.release --force-patch --yes
|
||||||
git push --follow-tags
|
git push --follow-tags
|
||||||
|
echo "commit_hash=$(git rev-parse HEAD)" >> $GITHUB_OUTPUT
|
||||||
|
|
||||||
docker:
|
docker:
|
||||||
name: 🛠 Build Docker Images
|
name: 🛠 Build Docker Images
|
||||||
needs:
|
needs: build
|
||||||
- build
|
|
||||||
runs-on: ubuntu-22.04
|
runs-on: ubuntu-22.04
|
||||||
permissions:
|
permissions:
|
||||||
checks: write
|
checks: write
|
||||||
@@ -141,6 +144,7 @@ jobs:
|
|||||||
- name: ⬇️ Checkout repo
|
- name: ⬇️ Checkout repo
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
with:
|
with:
|
||||||
|
ref: ${{ needs.build.outputs.commit_hash }}
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
|
|
||||||
- name: Prepare Changelog
|
- name: Prepare Changelog
|
||||||
@@ -189,6 +193,30 @@ jobs:
|
|||||||
- name: Image digest
|
- name: Image digest
|
||||||
run: echo ${{ steps.build.outputs.digest }}
|
run: echo ${{ steps.build.outputs.digest }}
|
||||||
|
|
||||||
|
- uses: markpatterson27/markdown-to-output@v1
|
||||||
|
id: extract-changelog
|
||||||
|
with:
|
||||||
|
filepath: CHANGELOG.md
|
||||||
|
|
||||||
|
- name: Get content
|
||||||
|
uses: 2428392/gh-truncate-string-action@v1.3.0
|
||||||
|
id: get-content
|
||||||
|
with:
|
||||||
|
stringToTruncate: |
|
||||||
|
📣 Wanderer new release available 🎉
|
||||||
|
|
||||||
|
**Version**: ${{ steps.get-latest-tag.outputs.tag }}
|
||||||
|
|
||||||
|
${{ steps.extract-changelog.outputs.body }}
|
||||||
|
maxLength: 500
|
||||||
|
truncationSymbol: "…"
|
||||||
|
|
||||||
|
- name: Discord Webhook Action
|
||||||
|
uses: tsickert/discord-webhook@v5.3.0
|
||||||
|
with:
|
||||||
|
webhook-url: ${{ secrets.DISCORD_WEBHOOK_URL }}
|
||||||
|
content: ${{ steps.get-content.outputs.string }}
|
||||||
|
|
||||||
create-release:
|
create-release:
|
||||||
name: 🏷 Create Release
|
name: 🏷 Create Release
|
||||||
runs-on: ubuntu-22.04
|
runs-on: ubuntu-22.04
|
||||||
|
|||||||
2
.github/workflows/release_actions.yml
vendored
2
.github/workflows/release_actions.yml
vendored
@@ -18,4 +18,4 @@ jobs:
|
|||||||
key: ${{ secrets.SSH_KEY }}
|
key: ${{ secrets.SSH_KEY }}
|
||||||
port: ${{ secrets.PORT }}
|
port: ${{ secrets.PORT }}
|
||||||
script: |
|
script: |
|
||||||
/app/release/linux/deploy.sh ${{ github.event.release.tag_name }}
|
/home/wanderer/app/deploy.sh ${{ github.event.release.tag_name }}
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
erlang 25.3
|
erlang 26.2.5.5
|
||||||
elixir 1.16-otp-25
|
elixir 1.17.3-otp-26
|
||||||
nodejs 18.0.0
|
nodejs 18.0.0
|
||||||
|
|||||||
212
CHANGELOG.md
212
CHANGELOG.md
@@ -2,11 +2,191 @@
|
|||||||
|
|
||||||
<!-- changelog -->
|
<!-- changelog -->
|
||||||
|
|
||||||
## [v1.12.5](https://github.com/wanderer-industries/wanderer/compare/v1.12.4...v1.12.5) (2024-10-22)
|
## [v1.20.0](https://github.com/wanderer-industries/wanderer/compare/v1.19.3...v1.20.0) (2024-11-22)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### Features:
|
||||||
|
|
||||||
|
* Core: Add connection type for Gates, add new Update logic
|
||||||
|
|
||||||
|
## [v1.19.3](https://github.com/wanderer-industries/wanderer/compare/v1.19.2...v1.19.3) (2024-11-20)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### Bug Fixes:
|
||||||
|
|
||||||
|
* Core: Fix adding systems on splash (#71)
|
||||||
|
|
||||||
|
* Core: Fix adding systems on splash
|
||||||
|
|
||||||
|
## [v1.19.2](https://github.com/wanderer-industries/wanderer/compare/v1.19.1...v1.19.2) (2024-11-19)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
## [v1.19.1](https://github.com/wanderer-industries/wanderer/compare/v1.19.0...v1.19.1) (2024-11-19)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
## [v1.19.0](https://github.com/wanderer-industries/wanderer/compare/v1.18.1...v1.19.0) (2024-11-19)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### Features:
|
||||||
|
|
||||||
|
* Signatures: Add user setting to show Inserted time in a separate column
|
||||||
|
|
||||||
|
## [v1.18.1](https://github.com/wanderer-industries/wanderer/compare/v1.18.0...v1.18.1) (2024-11-17)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
## [v1.18.0](https://github.com/wanderer-industries/wanderer/compare/v1.17.0...v1.18.0) (2024-11-16)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### Features:
|
||||||
|
|
||||||
|
* Map: a lot of design issues
|
||||||
|
|
||||||
|
## [v1.17.0](https://github.com/wanderer-industries/wanderer/compare/v1.16.1...v1.17.0) (2024-11-15)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### Features:
|
||||||
|
|
||||||
|
* Signatures: Add user setting to show Description in a separate column
|
||||||
|
|
||||||
|
## [v1.16.1](https://github.com/wanderer-industries/wanderer/compare/v1.16.0...v1.16.1) (2024-11-15)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### Bug Fixes:
|
||||||
|
|
||||||
|
* Signatures: Fix signature stored filters
|
||||||
|
|
||||||
|
## [v1.16.0](https://github.com/wanderer-industries/wanderer/compare/v1.15.5...v1.16.0) (2024-11-15)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### Features:
|
||||||
|
|
||||||
|
* Signatures: Add additional filters support to signature list, show description icon
|
||||||
|
|
||||||
|
## [v1.15.5](https://github.com/wanderer-industries/wanderer/compare/v1.15.4...v1.15.5) (2024-11-14)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
## [v1.15.4](https://github.com/wanderer-industries/wanderer/compare/v1.15.3...v1.15.4) (2024-11-14)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### Bug Fixes:
|
||||||
|
|
||||||
|
* Core: Untracked characters still tracked on map (#63)
|
||||||
|
|
||||||
|
## [v1.15.3](https://github.com/wanderer-industries/wanderer/compare/v1.15.2...v1.15.3) (2024-11-13)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
## [v1.15.2](https://github.com/wanderer-industries/wanderer/compare/v1.15.1...v1.15.2) (2024-11-07)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
## [v1.15.1](https://github.com/wanderer-industries/wanderer/compare/v1.15.0...v1.15.1) (2024-11-07)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### Bug Fixes:
|
||||||
|
|
||||||
|
* Dev: Update .devcontainer instructions
|
||||||
|
|
||||||
|
## [v1.15.0](https://github.com/wanderer-industries/wanderer/compare/v1.14.1...v1.15.0) (2024-11-07)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### Features:
|
||||||
|
|
||||||
|
* Connections: Add connection mark EOL time (#56)
|
||||||
|
|
||||||
|
## [v1.14.1](https://github.com/wanderer-industries/wanderer/compare/v1.14.0...v1.14.1) (2024-11-06)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### Bug Fixes:
|
||||||
|
|
||||||
|
* Core: Fix character tracking permissions
|
||||||
|
|
||||||
|
## [v1.14.0](https://github.com/wanderer-industries/wanderer/compare/v1.13.12...v1.14.0) (2024-11-05)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### Features:
|
||||||
|
|
||||||
|
* ACL: Add an ability to assign member role without DnD
|
||||||
|
|
||||||
|
## [v1.13.12](https://github.com/wanderer-industries/wanderer/compare/v1.13.11...v1.13.12) (2024-11-04)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### Bug Fixes:
|
||||||
|
|
||||||
|
* Map: Fix system revert issues
|
||||||
|
|
||||||
|
## [v1.13.11](https://github.com/wanderer-industries/wanderer/compare/v1.13.10...v1.13.11) (2024-11-02)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### Bug Fixes:
|
||||||
|
|
||||||
|
* Map: Fix system revert issues
|
||||||
|
|
||||||
|
## [v1.13.10](https://github.com/wanderer-industries/wanderer/compare/v1.13.9...v1.13.10) (2024-11-01)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### Bug Fixes:
|
||||||
|
|
||||||
|
* Map: Fix system revert issues
|
||||||
|
|
||||||
|
## [v1.13.9](https://github.com/wanderer-industries/wanderer/compare/v1.13.8...v1.13.9) (2024-11-01)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
## [v1.13.8](https://github.com/wanderer-industries/wanderer/compare/v1.13.7...v1.13.8) (2024-10-28)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
## [v1.13.0](https://github.com/wanderer-industries/wanderer/compare/v1.12.11...v1.13.0) (2024-10-28)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
### Features:
|
||||||
|
|
||||||
|
* Core: Use ESI /characters/affiliation API
|
||||||
|
|
||||||
## [v1.12.4](https://github.com/wanderer-industries/wanderer/compare/v1.12.3...v1.12.4) (2024-10-21)
|
## [v1.12.4](https://github.com/wanderer-industries/wanderer/compare/v1.12.3...v1.12.4) (2024-10-21)
|
||||||
|
|
||||||
|
|
||||||
@@ -25,11 +205,6 @@
|
|||||||
|
|
||||||
* Map: Fix regression issues
|
* Map: Fix regression issues
|
||||||
|
|
||||||
## [v1.12.2](https://github.com/wanderer-industries/wanderer/compare/v1.12.1...v1.12.2) (2024-10-16)
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## [v1.12.1](https://github.com/wanderer-industries/wanderer/compare/v1.12.0...v1.12.1) (2024-10-16)
|
## [v1.12.1](https://github.com/wanderer-industries/wanderer/compare/v1.12.0...v1.12.1) (2024-10-16)
|
||||||
|
|
||||||
|
|
||||||
@@ -48,31 +223,6 @@
|
|||||||
|
|
||||||
* Map: Prettify user settings
|
* Map: Prettify user settings
|
||||||
|
|
||||||
## [v1.11.5](https://github.com/wanderer-industries/wanderer/compare/v1.11.4...v1.11.5) (2024-10-16)
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## [v1.11.4](https://github.com/wanderer-industries/wanderer/compare/v1.11.3...v1.11.4) (2024-10-16)
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## [v1.11.3](https://github.com/wanderer-industries/wanderer/compare/v1.11.2...v1.11.3) (2024-10-16)
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## [v1.11.2](https://github.com/wanderer-industries/wanderer/compare/v1.11.1...v1.11.2) (2024-10-15)
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## [v1.11.1](https://github.com/wanderer-industries/wanderer/compare/v1.11.0...v1.11.1) (2024-10-14)
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## [v1.11.0](https://github.com/wanderer-industries/wanderer/compare/v1.10.0...v1.11.0) (2024-10-14)
|
## [v1.11.0](https://github.com/wanderer-industries/wanderer/compare/v1.10.0...v1.11.0) (2024-10-14)
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
18
README.md
18
README.md
@@ -20,11 +20,11 @@ Interested to learn more? [Check more on our website](https://wanderer.ltd/news)
|
|||||||
|
|
||||||
Wanderer is open source project and we have a free as in beer and self-hosted solution called [Wanderer Community Edition (CE)](https://wanderer.ltd/news/community-edition). Here are the differences between Wanderer and Wanderer CE:
|
Wanderer is open source project and we have a free as in beer and self-hosted solution called [Wanderer Community Edition (CE)](https://wanderer.ltd/news/community-edition). Here are the differences between Wanderer and Wanderer CE:
|
||||||
|
|
||||||
| | Wanderer Cloud | Wanderer Community Edition |
|
| | Wanderer Cloud | Wanderer Community Edition |
|
||||||
| ------------- | ------------- | ------------- |
|
| ----------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||||
| **Infrastructure management** | Easy and convenient. It takes 2 minutes to register your character and create a map. We manage everything so you don’t have to worry about anything and can focus on gameplay. | You do it all yourself. You need to get a server and you need to manage your infrastructure. You are responsible for installation, maintenance, upgrades, server capacity, uptime, backup, security, stability, consistency, loading time and so on.|
|
| **Infrastructure management** | Easy and convenient. It takes 2 minutes to register your character and create a map. We manage everything so you don’t have to worry about anything and can focus on gameplay. | You do it all yourself. You need to get a server and you need to manage your infrastructure. You are responsible for installation, maintenance, upgrades, server capacity, uptime, backup, security, stability, consistency, loading time and so on. |
|
||||||
| **Release schedule** | Continuously developed and improved with new features and updates multiple times per week. | Latest features and improvements won't be immediately available.|
|
| **Release schedule** | Continuously developed and improved with new features and updates multiple times per week. | Latest features and improvements won't be immediately available. |
|
||||||
| **Server location** | All visitor data is exclusively processed on EU-owned cloud infrastructure. We keep your site data on a secure, encrypted and green energy powered server in Germany. This ensures that your site data is protected by the strict European Union data privacy laws and ensures compliance with GDPR. Your website data never leaves the EU. | You have full control and can host your instance on any server in any country that you wish. Host it on a server in your basement or host it with any cloud provider wherever you want, even those that are not GDPR compliant.|
|
| **Server location** | All visitor data is exclusively processed on EU-owned cloud infrastructure. We keep your site data on a secure, encrypted and green energy powered server in Germany. This ensures that your site data is protected by the strict European Union data privacy laws and ensures compliance with GDPR. Your website data never leaves the EU. | You have full control and can host your instance on any server in any country that you wish. Host it on a server in your basement or host it with any cloud provider wherever you want, even those that are not GDPR compliant. |
|
||||||
|
|
||||||
Interested in self-hosting Wanderer CE on your server? Take a look at our [Wanderer CE installation instructions](https://github.com/wanderer-industries/community-edition/).
|
Interested in self-hosting Wanderer CE on your server? Take a look at our [Wanderer CE installation instructions](https://github.com/wanderer-industries/community-edition/).
|
||||||
|
|
||||||
@@ -54,7 +54,13 @@ Now you can visit [`localhost:8000`](http://localhost:8000) from your browser.
|
|||||||
#### Using .devcontainer
|
#### Using .devcontainer
|
||||||
|
|
||||||
- Run devcontainer
|
- Run devcontainer
|
||||||
- See how to start server in #setup section
|
- Install additional dependencies inside Dev container
|
||||||
|
- `root@0d0a785313b6:/app# apt update`
|
||||||
|
- `root@0d0a785313b6:/app# curl -sL https://deb.nodesource.com/setup_18.x | bash -`
|
||||||
|
- `root@0d0a785313b6:/app# apt-get install nodejs inotify-tools -y`
|
||||||
|
- `root@0d0a785313b6:/app# mix setup`
|
||||||
|
|
||||||
|
- See how to run server in #Run section
|
||||||
|
|
||||||
#### Using nix flakes
|
#### Using nix flakes
|
||||||
|
|
||||||
|
|||||||
@@ -466,3 +466,407 @@ body {
|
|||||||
transform: rotate(-360deg);
|
transform: rotate(-360deg);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Map refresh */
|
||||||
|
.socket {
|
||||||
|
scale: 0.5;
|
||||||
|
width: 150px;
|
||||||
|
height: 150px;
|
||||||
|
left: 50%;
|
||||||
|
/* margin-left: -75px; */
|
||||||
|
top: 50%;
|
||||||
|
/* margin-top: -50px; */
|
||||||
|
}
|
||||||
|
|
||||||
|
.hex-brick {
|
||||||
|
background: #000;
|
||||||
|
width: 30px;
|
||||||
|
height: 17px;
|
||||||
|
position: absolute;
|
||||||
|
top: 5px;
|
||||||
|
animation-name: fade;
|
||||||
|
animation-duration: 2s;
|
||||||
|
animation-iteration-count: infinite;
|
||||||
|
-webkit-animation-name: fade;
|
||||||
|
-webkit-animation-duration: 2s;
|
||||||
|
-webkit-animation-iteration-count: infinite;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hex-brick--active {
|
||||||
|
animation-name: fade-active;
|
||||||
|
-webkit-animation-name: fade-active;
|
||||||
|
}
|
||||||
|
|
||||||
|
.h2 {
|
||||||
|
transform: rotate(60deg);
|
||||||
|
-webkit-transform: rotate(60deg);
|
||||||
|
}
|
||||||
|
|
||||||
|
.h3 {
|
||||||
|
transform: rotate(-60deg);
|
||||||
|
-webkit-transform: rotate(-60deg);
|
||||||
|
}
|
||||||
|
|
||||||
|
.gel {
|
||||||
|
height: 30px;
|
||||||
|
width: 30px;
|
||||||
|
transition: all 0.3s;
|
||||||
|
-webkit-transition: all 0.3s;
|
||||||
|
position: absolute;
|
||||||
|
top: 50%;
|
||||||
|
left: 50%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.center-gel {
|
||||||
|
margin-left: -15px;
|
||||||
|
margin-top: -15px;
|
||||||
|
|
||||||
|
animation-name: pulse-version;
|
||||||
|
animation-duration: 2s;
|
||||||
|
animation-iteration-count: infinite;
|
||||||
|
-webkit-animation-name: pulse-version;
|
||||||
|
-webkit-animation-duration: 2s;
|
||||||
|
-webkit-animation-iteration-count: infinite;
|
||||||
|
}
|
||||||
|
|
||||||
|
.c1 {
|
||||||
|
margin-left: -47px;
|
||||||
|
margin-top: -15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.c2 {
|
||||||
|
margin-left: -31px;
|
||||||
|
margin-top: -43px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.c3 {
|
||||||
|
margin-left: 1px;
|
||||||
|
margin-top: -43px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.c4 {
|
||||||
|
margin-left: 17px;
|
||||||
|
margin-top: -15px;
|
||||||
|
}
|
||||||
|
.c5 {
|
||||||
|
margin-left: -31px;
|
||||||
|
margin-top: 13px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.c6 {
|
||||||
|
margin-left: 1px;
|
||||||
|
margin-top: 13px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.c7 {
|
||||||
|
margin-left: -63px;
|
||||||
|
margin-top: -43px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.c8 {
|
||||||
|
margin-left: 33px;
|
||||||
|
margin-top: -43px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.c9 {
|
||||||
|
margin-left: -15px;
|
||||||
|
margin-top: 41px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.c10 {
|
||||||
|
margin-left: -63px;
|
||||||
|
margin-top: 13px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.c11 {
|
||||||
|
margin-left: 33px;
|
||||||
|
margin-top: 13px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.c12 {
|
||||||
|
margin-left: -15px;
|
||||||
|
margin-top: -71px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.c13 {
|
||||||
|
margin-left: -47px;
|
||||||
|
margin-top: -71px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.c14 {
|
||||||
|
margin-left: 17px;
|
||||||
|
margin-top: -71px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.c15 {
|
||||||
|
margin-left: -47px;
|
||||||
|
margin-top: 41px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.c16 {
|
||||||
|
margin-left: 17px;
|
||||||
|
margin-top: 41px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.c17 {
|
||||||
|
margin-left: -79px;
|
||||||
|
margin-top: -15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.c18 {
|
||||||
|
margin-left: 49px;
|
||||||
|
margin-top: -15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.c19 {
|
||||||
|
margin-left: -63px;
|
||||||
|
margin-top: -99px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.c20 {
|
||||||
|
margin-left: 33px;
|
||||||
|
margin-top: -99px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.c21 {
|
||||||
|
margin-left: 1px;
|
||||||
|
margin-top: -99px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.c22 {
|
||||||
|
margin-left: -31px;
|
||||||
|
margin-top: -99px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.c23 {
|
||||||
|
margin-left: -63px;
|
||||||
|
margin-top: 69px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.c24 {
|
||||||
|
margin-left: 33px;
|
||||||
|
margin-top: 69px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.c25 {
|
||||||
|
margin-left: 1px;
|
||||||
|
margin-top: 69px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.c26 {
|
||||||
|
margin-left: -31px;
|
||||||
|
margin-top: 69px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.c27 {
|
||||||
|
margin-left: -79px;
|
||||||
|
margin-top: -15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.c28 {
|
||||||
|
margin-left: -95px;
|
||||||
|
margin-top: -43px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.c29 {
|
||||||
|
margin-left: -95px;
|
||||||
|
margin-top: 13px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.c30 {
|
||||||
|
margin-left: 49px;
|
||||||
|
margin-top: 41px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.c31 {
|
||||||
|
margin-left: -79px;
|
||||||
|
margin-top: -71px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.c32 {
|
||||||
|
margin-left: -111px;
|
||||||
|
margin-top: -15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.c33 {
|
||||||
|
margin-left: 65px;
|
||||||
|
margin-top: -43px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.c34 {
|
||||||
|
margin-left: 65px;
|
||||||
|
margin-top: 13px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.c35 {
|
||||||
|
margin-left: -79px;
|
||||||
|
margin-top: 41px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.c36 {
|
||||||
|
margin-left: 49px;
|
||||||
|
margin-top: -71px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.c37 {
|
||||||
|
margin-left: 81px;
|
||||||
|
margin-top: -15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.r1 {
|
||||||
|
animation-name: pulse-version;
|
||||||
|
animation-duration: 2s;
|
||||||
|
animation-iteration-count: infinite;
|
||||||
|
animation-delay: 0.2s;
|
||||||
|
-webkit-animation-name: pulse-version;
|
||||||
|
-webkit-animation-duration: 2s;
|
||||||
|
-webkit-animation-iteration-count: infinite;
|
||||||
|
-webkit-animation-delay: 0.2s;
|
||||||
|
}
|
||||||
|
|
||||||
|
.r2 {
|
||||||
|
animation-name: pulse-version;
|
||||||
|
animation-duration: 2s;
|
||||||
|
animation-iteration-count: infinite;
|
||||||
|
animation-delay: 0.4s;
|
||||||
|
-webkit-animation-name: pulse-version;
|
||||||
|
-webkit-animation-duration: 2s;
|
||||||
|
-webkit-animation-iteration-count: infinite;
|
||||||
|
-webkit-animation-delay: 0.4s;
|
||||||
|
}
|
||||||
|
|
||||||
|
.r3 {
|
||||||
|
animation-name: pulse-version;
|
||||||
|
animation-duration: 2s;
|
||||||
|
animation-iteration-count: infinite;
|
||||||
|
animation-delay: 0.6s;
|
||||||
|
-webkit-animation-name: pulse-version;
|
||||||
|
-webkit-animation-duration: 2s;
|
||||||
|
-webkit-animation-iteration-count: infinite;
|
||||||
|
-webkit-animation-delay: 0.6s;
|
||||||
|
}
|
||||||
|
|
||||||
|
.r1 > .hex-brick {
|
||||||
|
animation-name: fade;
|
||||||
|
animation-duration: 2s;
|
||||||
|
animation-iteration-count: infinite;
|
||||||
|
animation-delay: 0.2s;
|
||||||
|
-webkit-animation-name: fade;
|
||||||
|
-webkit-animation-duration: 2s;
|
||||||
|
-webkit-animation-iteration-count: infinite;
|
||||||
|
-webkit-animation-delay: 0.2s;
|
||||||
|
}
|
||||||
|
|
||||||
|
.r1 > .hex-brick--active {
|
||||||
|
animation-name: fade-active;
|
||||||
|
-webkit-animation-name: fade-active;
|
||||||
|
}
|
||||||
|
|
||||||
|
.r2 > .hex-brick {
|
||||||
|
animation-name: fade;
|
||||||
|
animation-duration: 2s;
|
||||||
|
animation-iteration-count: infinite;
|
||||||
|
animation-delay: 0.4s;
|
||||||
|
-webkit-animation-name: fade;
|
||||||
|
-webkit-animation-duration: 2s;
|
||||||
|
-webkit-animation-iteration-count: infinite;
|
||||||
|
-webkit-animation-delay: 0.4s;
|
||||||
|
}
|
||||||
|
|
||||||
|
.r2 > .hex-brick--active {
|
||||||
|
animation-name: fade-active;
|
||||||
|
-webkit-animation-name: fade-active;
|
||||||
|
}
|
||||||
|
|
||||||
|
.r3 > .hex-brick {
|
||||||
|
animation-name: fade;
|
||||||
|
animation-duration: 2s;
|
||||||
|
animation-iteration-count: infinite;
|
||||||
|
animation-delay: 0.6s;
|
||||||
|
-webkit-animation-name: fade;
|
||||||
|
-webkit-animation-duration: 2s;
|
||||||
|
-webkit-animation-iteration-count: infinite;
|
||||||
|
-webkit-animation-delay: 0.6s;
|
||||||
|
}
|
||||||
|
|
||||||
|
.r3 > .hex-brick--active {
|
||||||
|
animation-name: fade-active;
|
||||||
|
-webkit-animation-name: fade-active;
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes pulse-version {
|
||||||
|
0% {
|
||||||
|
-webkit-transform: scale(1);
|
||||||
|
transform: scale(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
50% {
|
||||||
|
-webkit-transform: scale(0.01);
|
||||||
|
transform: scale(0.01);
|
||||||
|
}
|
||||||
|
|
||||||
|
100% {
|
||||||
|
-webkit-transform: scale(1);
|
||||||
|
transform: scale(1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes fade {
|
||||||
|
0% {
|
||||||
|
background: #09d0e2;
|
||||||
|
}
|
||||||
|
|
||||||
|
50% {
|
||||||
|
background: #8ae6ee;
|
||||||
|
}
|
||||||
|
|
||||||
|
100% {
|
||||||
|
background: #09d0e2;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes fade-active {
|
||||||
|
0% {
|
||||||
|
background: #ff52d9;
|
||||||
|
}
|
||||||
|
|
||||||
|
50% {
|
||||||
|
background: #ff52d9;
|
||||||
|
}
|
||||||
|
|
||||||
|
100% {
|
||||||
|
background: #ff52d9;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@-webkit-keyframes pulse {
|
||||||
|
0% {
|
||||||
|
-webkit-transform: scale(1);
|
||||||
|
transform: scale(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
50% {
|
||||||
|
-webkit-transform: scale(0.01);
|
||||||
|
transform: scale(0.01);
|
||||||
|
}
|
||||||
|
|
||||||
|
100% {
|
||||||
|
-webkit-transform: scale(1);
|
||||||
|
transform: scale(1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@-webkit-keyframes fade {
|
||||||
|
0% {
|
||||||
|
background: #abf8ff;
|
||||||
|
}
|
||||||
|
|
||||||
|
50% {
|
||||||
|
background: #389ca6;
|
||||||
|
}
|
||||||
|
|
||||||
|
100% {
|
||||||
|
background: #abf8ff;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
/* Map refresh END */
|
||||||
|
|||||||
@@ -15,11 +15,10 @@ const ErrorFallback = () => {
|
|||||||
};
|
};
|
||||||
|
|
||||||
export default function MapRoot({ hooks }) {
|
export default function MapRoot({ hooks }) {
|
||||||
const mapRef = useRef<MapHandlers>(null);
|
|
||||||
const providerRef = useRef<MapHandlers>(null);
|
const providerRef = useRef<MapHandlers>(null);
|
||||||
const hooksRef = useRef<any>(hooks);
|
const hooksRef = useRef<any>(hooks);
|
||||||
|
|
||||||
const mapperHandlerRefs = useRef([mapRef, providerRef]);
|
const mapperHandlerRefs = useRef([providerRef]);
|
||||||
|
|
||||||
const { handleCommand, handleMapEvent, handleMapEvents } = useMapperHandlers(mapperHandlerRefs.current, hooksRef);
|
const { handleCommand, handleMapEvent, handleMapEvents } = useMapperHandlers(mapperHandlerRefs.current, hooksRef);
|
||||||
|
|
||||||
@@ -41,7 +40,7 @@ export default function MapRoot({ hooks }) {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<PrimeReactProvider>
|
<PrimeReactProvider>
|
||||||
<MapRootProvider fwdRef={providerRef} outCommand={handleCommand} mapRef={mapRef}>
|
<MapRootProvider fwdRef={providerRef} outCommand={handleCommand}>
|
||||||
<ErrorBoundary FallbackComponent={ErrorFallback} onError={logError}>
|
<ErrorBoundary FallbackComponent={ErrorFallback} onError={logError}>
|
||||||
<ReactFlowProvider>
|
<ReactFlowProvider>
|
||||||
<MapRootContent />
|
<MapRootContent />
|
||||||
|
|||||||
@@ -85,3 +85,26 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.p-dropdown-label, .p-inputtext {
|
||||||
|
padding: 0.25rem 0.75rem;
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.p-dropdown-item {
|
||||||
|
padding: 0.25rem 0.5rem;
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.p-dropdown-item-group {
|
||||||
|
padding: 0.25rem 0.75rem;
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.p-dropdown-trigger {
|
||||||
|
width: 14px;
|
||||||
|
margin: 0 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.p-dropdown-empty-message {
|
||||||
|
padding: 0.25rem 0.5rem;
|
||||||
|
}
|
||||||
|
|||||||
@@ -1,20 +1,19 @@
|
|||||||
import { useCallback } from 'react';
|
import { useCallback } from 'react';
|
||||||
import clsx from 'clsx';
|
import clsx from 'clsx';
|
||||||
import { useAutoAnimate } from '@formkit/auto-animate/react';
|
import { useAutoAnimate } from '@formkit/auto-animate/react';
|
||||||
import { useMapRootState } from '@/hooks/Mapper/mapRootProvider';
|
|
||||||
import { Commands } from '@/hooks/Mapper/types/mapHandlers.ts';
|
import { Commands } from '@/hooks/Mapper/types/mapHandlers.ts';
|
||||||
import { CharacterTypeRaw } from '@/hooks/Mapper/types';
|
import { CharacterTypeRaw } from '@/hooks/Mapper/types';
|
||||||
|
import { emitMapEvent } from '@/hooks/Mapper/events';
|
||||||
|
|
||||||
const Characters = ({ data }: { data: CharacterTypeRaw[] }) => {
|
const Characters = ({ data }: { data: CharacterTypeRaw[] }) => {
|
||||||
const [parent] = useAutoAnimate();
|
const [parent] = useAutoAnimate();
|
||||||
const { mapRef } = useMapRootState();
|
|
||||||
|
|
||||||
const handleSelect = useCallback(
|
const handleSelect = useCallback((character: CharacterTypeRaw) => {
|
||||||
(character: CharacterTypeRaw) => {
|
emitMapEvent({
|
||||||
mapRef.current?.command(Commands.centerSystem, character?.location?.solar_system_id?.toString());
|
name: Commands.centerSystem,
|
||||||
},
|
data: character?.location?.solar_system_id?.toString(),
|
||||||
[mapRef],
|
});
|
||||||
);
|
}, []);
|
||||||
|
|
||||||
const items = data.map(character => (
|
const items = data.map(character => (
|
||||||
<li
|
<li
|
||||||
|
|||||||
@@ -18,7 +18,7 @@ export const useTagMenu = (
|
|||||||
ref.current = { onSystemTag, systems, systemId };
|
ref.current = { onSystemTag, systems, systemId };
|
||||||
|
|
||||||
return useCallback(() => {
|
return useCallback(() => {
|
||||||
const { onSystemTag, systemId , systems} = ref.current;
|
const { onSystemTag, systemId, systems } = ref.current;
|
||||||
const system = systemId ? getSystemById(systems, systemId) : undefined;
|
const system = systemId ? getSystemById(systems, systemId) : undefined;
|
||||||
|
|
||||||
const isSelectedLetters = AVAILABLE_LETTERS.includes(system?.tag ?? '');
|
const isSelectedLetters = AVAILABLE_LETTERS.includes(system?.tag ?? '');
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ import { OutCommand, OutCommandHandler } from '@/hooks/Mapper/types/mapHandlers.
|
|||||||
import { SolarSystemRawType } from '@/hooks/Mapper/types';
|
import { SolarSystemRawType } from '@/hooks/Mapper/types';
|
||||||
import { WaypointSetContextHandler } from '@/hooks/Mapper/components/contexts/types.ts';
|
import { WaypointSetContextHandler } from '@/hooks/Mapper/components/contexts/types.ts';
|
||||||
import { ctxManager } from '@/hooks/Mapper/utils/contextManager.ts';
|
import { ctxManager } from '@/hooks/Mapper/utils/contextManager.ts';
|
||||||
|
import { useDeleteSystems } from '@/hooks/Mapper/components/contexts/hooks';
|
||||||
|
|
||||||
interface UseContextMenuSystemHandlersProps {
|
interface UseContextMenuSystemHandlersProps {
|
||||||
hubs: string[];
|
hubs: string[];
|
||||||
@@ -16,8 +17,10 @@ export const useContextMenuSystemHandlers = ({ systems, hubs, outCommand }: UseC
|
|||||||
|
|
||||||
const [system, setSystem] = useState<string>();
|
const [system, setSystem] = useState<string>();
|
||||||
|
|
||||||
const ref = useRef({ hubs, system, systems, outCommand });
|
const { deleteSystems } = useDeleteSystems();
|
||||||
ref.current = { hubs, system, systems, outCommand };
|
|
||||||
|
const ref = useRef({ hubs, system, systems, outCommand, deleteSystems });
|
||||||
|
ref.current = { hubs, system, systems, outCommand, deleteSystems };
|
||||||
|
|
||||||
const open = useCallback((ev: any, systemId: string) => {
|
const open = useCallback((ev: any, systemId: string) => {
|
||||||
setSystem(systemId);
|
setSystem(systemId);
|
||||||
@@ -27,12 +30,12 @@ export const useContextMenuSystemHandlers = ({ systems, hubs, outCommand }: UseC
|
|||||||
}, []);
|
}, []);
|
||||||
|
|
||||||
const onDeleteSystem = useCallback(() => {
|
const onDeleteSystem = useCallback(() => {
|
||||||
const { system, outCommand } = ref.current;
|
const { system, deleteSystems } = ref.current;
|
||||||
if (!system) {
|
if (!system) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
outCommand({ type: OutCommand.deleteSystems, data: [system] });
|
deleteSystems([system]);
|
||||||
setSystem(undefined);
|
setSystem(undefined);
|
||||||
}, []);
|
}, []);
|
||||||
|
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ import { getSystemById } from '@/hooks/Mapper/helpers';
|
|||||||
import { useWaypointMenu } from '@/hooks/Mapper/components/contexts/hooks';
|
import { useWaypointMenu } from '@/hooks/Mapper/components/contexts/hooks';
|
||||||
import { WaypointSetContextHandler } from '@/hooks/Mapper/components/contexts/types.ts';
|
import { WaypointSetContextHandler } from '@/hooks/Mapper/components/contexts/types.ts';
|
||||||
import { FastSystemActions } from '@/hooks/Mapper/components/contexts/components';
|
import { FastSystemActions } from '@/hooks/Mapper/components/contexts/components';
|
||||||
import { useJumpPlannerMenu } from '@/hooks/Mapper/components/contexts/hooks/useJumpPlannerMenu';
|
import { useJumpPlannerMenu } from '@/hooks/Mapper/components/contexts/hooks';
|
||||||
import { Route } from '@/hooks/Mapper/types/routes.ts';
|
import { Route } from '@/hooks/Mapper/types/routes.ts';
|
||||||
|
|
||||||
export interface ContextMenuSystemInfoProps {
|
export interface ContextMenuSystemInfoProps {
|
||||||
|
|||||||
@@ -1,25 +1,25 @@
|
|||||||
import { RefObject, useCallback, useRef, useState } from 'react';
|
import * as React from 'react';
|
||||||
|
import { useCallback, useRef, useState } from 'react';
|
||||||
import { ContextMenu } from 'primereact/contextmenu';
|
import { ContextMenu } from 'primereact/contextmenu';
|
||||||
import { Commands, MapHandlers, OutCommand, OutCommandHandler } from '@/hooks/Mapper/types/mapHandlers.ts';
|
import { Commands, OutCommand, OutCommandHandler } from '@/hooks/Mapper/types/mapHandlers.ts';
|
||||||
import { WaypointSetContextHandler } from '@/hooks/Mapper/components/contexts/types.ts';
|
import { WaypointSetContextHandler } from '@/hooks/Mapper/components/contexts/types.ts';
|
||||||
import { ctxManager } from '@/hooks/Mapper/utils/contextManager.ts';
|
import { ctxManager } from '@/hooks/Mapper/utils/contextManager.ts';
|
||||||
import * as React from 'react';
|
|
||||||
import { SolarSystemStaticInfoRaw } from '@/hooks/Mapper/types';
|
import { SolarSystemStaticInfoRaw } from '@/hooks/Mapper/types';
|
||||||
|
import { emitMapEvent } from '@/hooks/Mapper/events';
|
||||||
|
|
||||||
interface UseContextMenuSystemHandlersProps {
|
interface UseContextMenuSystemHandlersProps {
|
||||||
hubs: string[];
|
hubs: string[];
|
||||||
outCommand: OutCommandHandler;
|
outCommand: OutCommandHandler;
|
||||||
mapRef: RefObject<MapHandlers>;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export const useContextMenuSystemInfoHandlers = ({ hubs, outCommand, mapRef }: UseContextMenuSystemHandlersProps) => {
|
export const useContextMenuSystemInfoHandlers = ({ hubs, outCommand }: UseContextMenuSystemHandlersProps) => {
|
||||||
const contextMenuRef = useRef<ContextMenu | null>(null);
|
const contextMenuRef = useRef<ContextMenu | null>(null);
|
||||||
|
|
||||||
const [system, setSystem] = useState<string>();
|
const [system, setSystem] = useState<string>();
|
||||||
const routeRef = useRef<(SolarSystemStaticInfoRaw | undefined)[]>([]);
|
const routeRef = useRef<(SolarSystemStaticInfoRaw | undefined)[]>([]);
|
||||||
|
|
||||||
const ref = useRef({ hubs, system, outCommand, mapRef });
|
const ref = useRef({ hubs, system, outCommand });
|
||||||
ref.current = { hubs, system, outCommand, mapRef };
|
ref.current = { hubs, system, outCommand };
|
||||||
|
|
||||||
const open = useCallback(
|
const open = useCallback(
|
||||||
(ev: React.SyntheticEvent, systemId: string, route: (SolarSystemStaticInfoRaw | undefined)[]) => {
|
(ev: React.SyntheticEvent, systemId: string, route: (SolarSystemStaticInfoRaw | undefined)[]) => {
|
||||||
@@ -48,7 +48,7 @@ export const useContextMenuSystemInfoHandlers = ({ hubs, outCommand, mapRef }: U
|
|||||||
}, []);
|
}, []);
|
||||||
|
|
||||||
const onAddSystem = useCallback(() => {
|
const onAddSystem = useCallback(() => {
|
||||||
const { system: solarSystemId, outCommand, mapRef } = ref.current;
|
const { system: solarSystemId, outCommand } = ref.current;
|
||||||
if (!solarSystemId) {
|
if (!solarSystemId) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -60,7 +60,11 @@ export const useContextMenuSystemInfoHandlers = ({ hubs, outCommand, mapRef }: U
|
|||||||
},
|
},
|
||||||
});
|
});
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
mapRef.current?.command(Commands.centerSystem, solarSystemId);
|
emitMapEvent({
|
||||||
|
name: Commands.centerSystem,
|
||||||
|
data: solarSystemId,
|
||||||
|
});
|
||||||
|
|
||||||
setSystem(undefined);
|
setSystem(undefined);
|
||||||
}, 200);
|
}, 200);
|
||||||
}, []);
|
}, []);
|
||||||
|
|||||||
@@ -1,17 +1,17 @@
|
|||||||
import { Node } from 'reactflow';
|
import { Node } from 'reactflow';
|
||||||
import { useRef, useState } from 'react';
|
import { useCallback, useRef, useState } from 'react';
|
||||||
import { ContextMenu } from 'primereact/contextmenu';
|
import { ContextMenu } from 'primereact/contextmenu';
|
||||||
import { OutCommand } from '@/hooks/Mapper/types/mapHandlers.ts';
|
|
||||||
import { SolarSystemRawType } from '@/hooks/Mapper/types';
|
import { SolarSystemRawType } from '@/hooks/Mapper/types';
|
||||||
import { ctxManager } from '@/hooks/Mapper/utils/contextManager.ts';
|
import { ctxManager } from '@/hooks/Mapper/utils/contextManager.ts';
|
||||||
import { useMapRootState } from '@/hooks/Mapper/mapRootProvider';
|
|
||||||
import { NodeSelectionMouseHandler } from '@/hooks/Mapper/components/contexts/types.ts';
|
import { NodeSelectionMouseHandler } from '@/hooks/Mapper/components/contexts/types.ts';
|
||||||
|
import { useDeleteSystems } from '@/hooks/Mapper/components/contexts/hooks';
|
||||||
|
|
||||||
export const useContextMenuSystemMultipleHandlers = () => {
|
export const useContextMenuSystemMultipleHandlers = () => {
|
||||||
const contextMenuRef = useRef<ContextMenu | null>(null);
|
const contextMenuRef = useRef<ContextMenu | null>(null);
|
||||||
const { outCommand } = useMapRootState();
|
|
||||||
const [systems, setSystems] = useState<Node<SolarSystemRawType>[]>();
|
const [systems, setSystems] = useState<Node<SolarSystemRawType>[]>();
|
||||||
|
|
||||||
|
const { deleteSystems } = useDeleteSystems();
|
||||||
|
|
||||||
const handleSystemMultipleContext: NodeSelectionMouseHandler = (ev, systems_) => {
|
const handleSystemMultipleContext: NodeSelectionMouseHandler = (ev, systems_) => {
|
||||||
setSystems(systems_);
|
setSystems(systems_);
|
||||||
ev.preventDefault();
|
ev.preventDefault();
|
||||||
@@ -19,7 +19,7 @@ export const useContextMenuSystemMultipleHandlers = () => {
|
|||||||
contextMenuRef.current?.show(ev);
|
contextMenuRef.current?.show(ev);
|
||||||
};
|
};
|
||||||
|
|
||||||
const onDeleteSystems = () => {
|
const onDeleteSystems = useCallback(() => {
|
||||||
if (!systems) {
|
if (!systems) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -29,12 +29,11 @@ export const useContextMenuSystemMultipleHandlers = () => {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
outCommand({ type: OutCommand.deleteSystems, data: sysToDel });
|
deleteSystems(sysToDel);
|
||||||
};
|
}, [deleteSystems, systems]);
|
||||||
|
|
||||||
return {
|
return {
|
||||||
handleSystemMultipleContext,
|
handleSystemMultipleContext,
|
||||||
|
|
||||||
contextMenuRef,
|
contextMenuRef,
|
||||||
onDeleteSystems,
|
onDeleteSystems,
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -1 +1,3 @@
|
|||||||
export * from './useWaypointMenu';
|
export * from './useWaypointMenu';
|
||||||
|
export * from './useJumpPlannerMenu';
|
||||||
|
export * from './useDeleteSystems';
|
||||||
|
|||||||
@@ -0,0 +1,18 @@
|
|||||||
|
import { OutCommand } from '@/hooks/Mapper/types/mapHandlers.ts';
|
||||||
|
import { useMapRootState } from '@/hooks/Mapper/mapRootProvider';
|
||||||
|
|
||||||
|
export const useDeleteSystems = () => {
|
||||||
|
const { outCommand } = useMapRootState();
|
||||||
|
|
||||||
|
const deleteSystems = (systemIds: string[]) => {
|
||||||
|
if (!systemIds || !systemIds.length) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
outCommand({ type: OutCommand.deleteSystems, data: systemIds });
|
||||||
|
};
|
||||||
|
|
||||||
|
return {
|
||||||
|
deleteSystems,
|
||||||
|
};
|
||||||
|
};
|
||||||
2
assets/js/hooks/Mapper/components/hooks/index.ts
Normal file
2
assets/js/hooks/Mapper/components/hooks/index.ts
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
export * from './useSystemInfo';
|
||||||
|
export * from './useGetOwnOnlineCharacters';
|
||||||
33
assets/js/hooks/Mapper/components/hooks/useSystemInfo.ts
Normal file
33
assets/js/hooks/Mapper/components/hooks/useSystemInfo.ts
Normal file
@@ -0,0 +1,33 @@
|
|||||||
|
import { useMapRootState } from '@/hooks/Mapper/mapRootProvider';
|
||||||
|
import { useMemo } from 'react';
|
||||||
|
import { getSystemById } from '@/hooks/Mapper/helpers';
|
||||||
|
import { useLoadSystemStatic } from '@/hooks/Mapper/mapRootProvider/hooks/useLoadSystemStatic.ts';
|
||||||
|
|
||||||
|
interface UseSystemInfoProps {
|
||||||
|
systemId: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
export const useSystemInfo = ({ systemId }: UseSystemInfoProps) => {
|
||||||
|
const {
|
||||||
|
data: { systems, connections },
|
||||||
|
} = useMapRootState();
|
||||||
|
|
||||||
|
const { systems: systemStatics } = useLoadSystemStatic({ systems: [systemId] });
|
||||||
|
|
||||||
|
return useMemo(() => {
|
||||||
|
const staticInfo = systemStatics.get(parseInt(systemId));
|
||||||
|
const dynamicInfo = getSystemById(systems, systemId);
|
||||||
|
|
||||||
|
if (!staticInfo || !dynamicInfo) {
|
||||||
|
throw new Error(`Error on getting system ${systemId}`);
|
||||||
|
}
|
||||||
|
|
||||||
|
const leadsTo = connections
|
||||||
|
.filter(x => [x.source, x.target].includes(systemId))
|
||||||
|
.map(x => [x.source, x.target])
|
||||||
|
.flat()
|
||||||
|
.filter(x => x !== systemId);
|
||||||
|
|
||||||
|
return { dynamicInfo, staticInfo, leadsTo };
|
||||||
|
}, [systemStatics, systemId, systems, connections]);
|
||||||
|
};
|
||||||
@@ -5,21 +5,21 @@ import ReactFlow, {
|
|||||||
Edge,
|
Edge,
|
||||||
MiniMap,
|
MiniMap,
|
||||||
Node,
|
Node,
|
||||||
|
NodeChange,
|
||||||
NodeDragHandler,
|
NodeDragHandler,
|
||||||
OnConnect,
|
OnConnect,
|
||||||
OnMoveEnd,
|
OnMoveEnd,
|
||||||
OnSelectionChangeFunc,
|
OnSelectionChangeFunc,
|
||||||
SelectionDragHandler,
|
SelectionDragHandler,
|
||||||
SelectionMode,
|
SelectionMode,
|
||||||
useEdgesState,
|
useReactFlow,
|
||||||
useNodesState,
|
|
||||||
} from 'reactflow';
|
} from 'reactflow';
|
||||||
import 'reactflow/dist/style.css';
|
import 'reactflow/dist/style.css';
|
||||||
import classes from './Map.module.scss';
|
import classes from './Map.module.scss';
|
||||||
import './styles/neon-theme.scss';
|
import './styles/neon-theme.scss';
|
||||||
import './styles/eve-common.scss';
|
import './styles/eve-common.scss';
|
||||||
import { MapProvider, useMapState } from './MapProvider';
|
import { MapProvider, useMapState } from './MapProvider';
|
||||||
import { useMapHandlers, useUpdateNodes } from './hooks';
|
import { useNodesState, useEdgesState, useMapHandlers, useUpdateNodes } from './hooks';
|
||||||
import { MapHandlers, OutCommand, OutCommandHandler } from '@/hooks/Mapper/types/mapHandlers.ts';
|
import { MapHandlers, OutCommand, OutCommandHandler } from '@/hooks/Mapper/types/mapHandlers.ts';
|
||||||
import {
|
import {
|
||||||
ContextMenuConnection,
|
ContextMenuConnection,
|
||||||
@@ -89,12 +89,14 @@ interface MapCompProps {
|
|||||||
refn: ForwardedRef<MapHandlers>;
|
refn: ForwardedRef<MapHandlers>;
|
||||||
onCommand: OutCommandHandler;
|
onCommand: OutCommandHandler;
|
||||||
onSelectionChange: OnMapSelectionChange;
|
onSelectionChange: OnMapSelectionChange;
|
||||||
|
onManualDelete(systems: string[]): void;
|
||||||
onConnectionInfoClick?(e: SolarSystemConnection): void;
|
onConnectionInfoClick?(e: SolarSystemConnection): void;
|
||||||
onSelectionContextMenu?: NodeSelectionMouseHandler;
|
onSelectionContextMenu?: NodeSelectionMouseHandler;
|
||||||
minimapClasses?: string;
|
minimapClasses?: string;
|
||||||
isShowMinimap?: boolean;
|
isShowMinimap?: boolean;
|
||||||
onSystemContextMenu: (event: MouseEvent<Element>, systemId: string) => void;
|
onSystemContextMenu: (event: MouseEvent<Element>, systemId: string) => void;
|
||||||
showKSpaceBG?: boolean;
|
showKSpaceBG?: boolean;
|
||||||
|
isThickConnections?: boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
const MapComp = ({
|
const MapComp = ({
|
||||||
@@ -105,17 +107,19 @@ const MapComp = ({
|
|||||||
onSystemContextMenu,
|
onSystemContextMenu,
|
||||||
onConnectionInfoClick,
|
onConnectionInfoClick,
|
||||||
onSelectionContextMenu,
|
onSelectionContextMenu,
|
||||||
|
onManualDelete,
|
||||||
isShowMinimap,
|
isShowMinimap,
|
||||||
showKSpaceBG,
|
showKSpaceBG,
|
||||||
|
isThickConnections,
|
||||||
}: MapCompProps) => {
|
}: MapCompProps) => {
|
||||||
const [nodes, , onNodesChange] = useNodesState<SolarSystemRawType>(initialNodes);
|
const { getNode } = useReactFlow();
|
||||||
const [edges, , onEdgesChange] = useEdgesState<Edge<SolarSystemConnection>[]>(initialEdges);
|
const [nodes, , onNodesChange] = useNodesState<Node<SolarSystemRawType>>(initialNodes);
|
||||||
|
const [edges, , onEdgesChange] = useEdgesState<Edge<SolarSystemConnection>>(initialEdges);
|
||||||
|
|
||||||
useMapHandlers(refn, onSelectionChange);
|
useMapHandlers(refn, onSelectionChange);
|
||||||
useUpdateNodes(nodes);
|
useUpdateNodes(nodes);
|
||||||
const { handleRootContext, ...rootCtxProps } = useContextMenuRootHandlers();
|
const { handleRootContext, ...rootCtxProps } = useContextMenuRootHandlers();
|
||||||
const { handleConnectionContext, ...connectionCtxProps } = useContextMenuConnectionHandlers();
|
const { handleConnectionContext, ...connectionCtxProps } = useContextMenuConnectionHandlers();
|
||||||
|
|
||||||
const { update } = useMapState();
|
const { update } = useMapState();
|
||||||
|
|
||||||
const onConnect: OnConnect = useCallback(
|
const onConnect: OnConnect = useCallback(
|
||||||
@@ -171,12 +175,44 @@ const MapComp = ({
|
|||||||
localStorage.setItem(SESSION_KEY.viewPort, JSON.stringify(viewport));
|
localStorage.setItem(SESSION_KEY.viewPort, JSON.stringify(viewport));
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const handleNodesChange = useCallback(
|
||||||
|
(changes: NodeChange[]) => {
|
||||||
|
const systemsIdsToRemove: string[] = [];
|
||||||
|
|
||||||
|
const nextChanges = changes.reduce((acc, change) => {
|
||||||
|
if (change.type !== 'remove') {
|
||||||
|
return [...acc, change];
|
||||||
|
}
|
||||||
|
|
||||||
|
const node = getNode(change.id);
|
||||||
|
if (!node) {
|
||||||
|
return [...acc, change];
|
||||||
|
}
|
||||||
|
|
||||||
|
if (node.data.locked) {
|
||||||
|
return acc;
|
||||||
|
}
|
||||||
|
|
||||||
|
systemsIdsToRemove.push(node.data.id);
|
||||||
|
return [...acc, change];
|
||||||
|
}, [] as NodeChange[]);
|
||||||
|
|
||||||
|
if (systemsIdsToRemove.length > 0) {
|
||||||
|
onManualDelete(systemsIdsToRemove);
|
||||||
|
}
|
||||||
|
|
||||||
|
onNodesChange(nextChanges);
|
||||||
|
},
|
||||||
|
[getNode, onManualDelete, onNodesChange],
|
||||||
|
);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
update(x => ({
|
update(x => ({
|
||||||
...x,
|
...x,
|
||||||
showKSpaceBG: showKSpaceBG,
|
showKSpaceBG: showKSpaceBG,
|
||||||
|
isThickConnections: isThickConnections,
|
||||||
}));
|
}));
|
||||||
}, [showKSpaceBG, update]);
|
}, [showKSpaceBG, isThickConnections, update]);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
@@ -184,7 +220,7 @@ const MapComp = ({
|
|||||||
<ReactFlow
|
<ReactFlow
|
||||||
nodes={nodes}
|
nodes={nodes}
|
||||||
edges={edges}
|
edges={edges}
|
||||||
onNodesChange={onNodesChange}
|
onNodesChange={handleNodesChange}
|
||||||
onEdgesChange={onEdgesChange}
|
onEdgesChange={onEdgesChange}
|
||||||
onConnect={onConnect}
|
onConnect={onConnect}
|
||||||
// TODO we need save into session all of this
|
// TODO we need save into session all of this
|
||||||
@@ -200,6 +236,7 @@ const MapComp = ({
|
|||||||
onConnectStart={() => update({ isConnecting: true })}
|
onConnectStart={() => update({ isConnecting: true })}
|
||||||
onConnectEnd={() => update({ isConnecting: false })}
|
onConnectEnd={() => update({ isConnecting: false })}
|
||||||
onNodeMouseEnter={(_, node) => update({ hoverNodeId: node.id })}
|
onNodeMouseEnter={(_, node) => update({ hoverNodeId: node.id })}
|
||||||
|
// onKeyUp=
|
||||||
onNodeMouseLeave={() => update({ hoverNodeId: null })}
|
onNodeMouseLeave={() => update({ hoverNodeId: null })}
|
||||||
onEdgeClick={(_, t) => {
|
onEdgeClick={(_, t) => {
|
||||||
onConnectionInfoClick?.(t.data);
|
onConnectionInfoClick?.(t.data);
|
||||||
@@ -219,10 +256,10 @@ const MapComp = ({
|
|||||||
minZoom={0.2}
|
minZoom={0.2}
|
||||||
maxZoom={1.5}
|
maxZoom={1.5}
|
||||||
elevateNodesOnSelect
|
elevateNodesOnSelect
|
||||||
|
deleteKeyCode={['Delete']}
|
||||||
// TODO need create clear example with problem with that flag
|
// TODO need create clear example with problem with that flag
|
||||||
// if system is not visible edge not drawing (and any render in Custom node is not happening)
|
// if system is not visible edge not drawing (and any render in Custom node is not happening)
|
||||||
// onlyRenderVisibleElements
|
// onlyRenderVisibleElements
|
||||||
deleteKeyCode={null}
|
|
||||||
selectionMode={SelectionMode.Partial}
|
selectionMode={SelectionMode.Partial}
|
||||||
>
|
>
|
||||||
{isShowMinimap && <MiniMap pannable zoomable ariaLabel="Mini map" className={minimapClasses} />}
|
{isShowMinimap && <MiniMap pannable zoomable ariaLabel="Mini map" className={minimapClasses} />}
|
||||||
|
|||||||
@@ -8,6 +8,7 @@ export type MapData = MapUnionTypes & {
|
|||||||
hoverNodeId: string | null;
|
hoverNodeId: string | null;
|
||||||
visibleNodes: Set<string>;
|
visibleNodes: Set<string>;
|
||||||
showKSpaceBG: boolean;
|
showKSpaceBG: boolean;
|
||||||
|
isThickConnections: boolean;
|
||||||
};
|
};
|
||||||
|
|
||||||
interface MapProviderProps {
|
interface MapProviderProps {
|
||||||
@@ -17,6 +18,7 @@ interface MapProviderProps {
|
|||||||
|
|
||||||
const INITIAL_DATA: MapData = {
|
const INITIAL_DATA: MapData = {
|
||||||
wormholesData: {},
|
wormholesData: {},
|
||||||
|
wormholes: [],
|
||||||
effects: {},
|
effects: {},
|
||||||
characters: [],
|
characters: [],
|
||||||
userCharacters: [],
|
userCharacters: [],
|
||||||
@@ -29,6 +31,7 @@ const INITIAL_DATA: MapData = {
|
|||||||
hoverNodeId: null,
|
hoverNodeId: null,
|
||||||
visibleNodes: new Set(),
|
visibleNodes: new Set(),
|
||||||
showKSpaceBG: false,
|
showKSpaceBG: false,
|
||||||
|
isThickConnections: false,
|
||||||
};
|
};
|
||||||
|
|
||||||
export interface MapContextProps {
|
export interface MapContextProps {
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ import { ContextMenu } from 'primereact/contextmenu';
|
|||||||
import { PrimeIcons } from 'primereact/api';
|
import { PrimeIcons } from 'primereact/api';
|
||||||
import { MenuItem } from 'primereact/menuitem';
|
import { MenuItem } from 'primereact/menuitem';
|
||||||
import { Edge } from '@reactflow/core/dist/esm/types/edges';
|
import { Edge } from '@reactflow/core/dist/esm/types/edges';
|
||||||
import { MassState, ShipSizeStatus, SolarSystemConnection, TimeStatus } from '@/hooks/Mapper/types';
|
import { ConnectionType, MassState, ShipSizeStatus, SolarSystemConnection, TimeStatus } from '@/hooks/Mapper/types';
|
||||||
import clsx from 'clsx';
|
import clsx from 'clsx';
|
||||||
import classes from './ContextMenuConnection.module.scss';
|
import classes from './ContextMenuConnection.module.scss';
|
||||||
import { MASS_STATE_NAMES, MASS_STATE_NAMES_ORDER } from '@/hooks/Mapper/components/map/constants.ts';
|
import { MASS_STATE_NAMES, MASS_STATE_NAMES_ORDER } from '@/hooks/Mapper/components/map/constants.ts';
|
||||||
@@ -35,36 +35,49 @@ export const ContextMenuConnection: React.FC<ContextMenuConnectionProps> = ({
|
|||||||
}
|
}
|
||||||
|
|
||||||
const isFrigateSize = edge.data?.ship_size_type === ShipSizeStatus.small;
|
const isFrigateSize = edge.data?.ship_size_type === ShipSizeStatus.small;
|
||||||
|
const isWormhole = edge.data?.type !== ConnectionType.gate;
|
||||||
|
|
||||||
return [
|
return [
|
||||||
{
|
...(isWormhole
|
||||||
label: `EOL`,
|
? [
|
||||||
className: clsx({
|
{
|
||||||
[classes.ConnectionTimeEOL]: edge.data?.time_status === TimeStatus.eol,
|
label: `EOL`,
|
||||||
}),
|
className: clsx({
|
||||||
icon: PrimeIcons.CLOCK,
|
[classes.ConnectionTimeEOL]: edge.data?.time_status === TimeStatus.eol,
|
||||||
command: onChangeTimeState,
|
}),
|
||||||
},
|
icon: PrimeIcons.CLOCK,
|
||||||
{
|
command: onChangeTimeState,
|
||||||
label: `Frigate`,
|
},
|
||||||
className: clsx({
|
]
|
||||||
[classes.ConnectionFrigate]: isFrigateSize,
|
: []),
|
||||||
}),
|
...(isWormhole
|
||||||
icon: PrimeIcons.CLOUD,
|
? [
|
||||||
command: () =>
|
{
|
||||||
onChangeShipSizeStatus(
|
label: `Frigate`,
|
||||||
edge.data?.ship_size_type === ShipSizeStatus.small ? ShipSizeStatus.normal : ShipSizeStatus.small,
|
className: clsx({
|
||||||
),
|
[classes.ConnectionFrigate]: isFrigateSize,
|
||||||
},
|
}),
|
||||||
{
|
icon: PrimeIcons.CLOUD,
|
||||||
label: `Save mass`,
|
command: () =>
|
||||||
className: clsx({
|
onChangeShipSizeStatus(
|
||||||
[classes.ConnectionSave]: edge.data?.locked,
|
edge.data?.ship_size_type === ShipSizeStatus.small ? ShipSizeStatus.normal : ShipSizeStatus.small,
|
||||||
}),
|
),
|
||||||
icon: PrimeIcons.LOCK,
|
},
|
||||||
command: () => onToggleMassSave(!edge.data?.locked),
|
]
|
||||||
},
|
: []),
|
||||||
...(!isFrigateSize
|
...(isWormhole
|
||||||
|
? [
|
||||||
|
{
|
||||||
|
label: `Save mass`,
|
||||||
|
className: clsx({
|
||||||
|
[classes.ConnectionSave]: edge.data?.locked,
|
||||||
|
}),
|
||||||
|
icon: PrimeIcons.LOCK,
|
||||||
|
command: () => onToggleMassSave(!edge.data?.locked),
|
||||||
|
},
|
||||||
|
]
|
||||||
|
: []),
|
||||||
|
...(isWormhole && !isFrigateSize
|
||||||
? [
|
? [
|
||||||
{
|
{
|
||||||
label: `Mass status`,
|
label: `Mass status`,
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ import { ContextMenu } from 'primereact/contextmenu';
|
|||||||
import { useMapState } from '../../MapProvider.tsx';
|
import { useMapState } from '../../MapProvider.tsx';
|
||||||
import { OutCommand } from '@/hooks/Mapper/types/mapHandlers.ts';
|
import { OutCommand } from '@/hooks/Mapper/types/mapHandlers.ts';
|
||||||
import { Edge } from '@reactflow/core/dist/esm/types/edges';
|
import { Edge } from '@reactflow/core/dist/esm/types/edges';
|
||||||
import { MassState, ShipSizeStatus, SolarSystemConnection, TimeStatus } from '@/hooks/Mapper/types';
|
import { ConnectionType, MassState, ShipSizeStatus, SolarSystemConnection, TimeStatus } from '@/hooks/Mapper/types';
|
||||||
import { ctxManager } from '@/hooks/Mapper/utils/contextManager.ts';
|
import { ctxManager } from '@/hooks/Mapper/utils/contextManager.ts';
|
||||||
|
|
||||||
export const useContextMenuConnectionHandlers = () => {
|
export const useContextMenuConnectionHandlers = () => {
|
||||||
@@ -47,6 +47,23 @@ export const useContextMenuConnectionHandlers = () => {
|
|||||||
setEdge(undefined);
|
setEdge(undefined);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const onChangeType = useCallback((type: ConnectionType) => {
|
||||||
|
const { edge, outCommand } = ref.current;
|
||||||
|
|
||||||
|
if (!edge) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
outCommand({
|
||||||
|
type: OutCommand.updateConnectionType,
|
||||||
|
data: {
|
||||||
|
source: edge.source,
|
||||||
|
target: edge.target,
|
||||||
|
value: type,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}, []);
|
||||||
|
|
||||||
const onChangeMassState = useCallback((status: MassState) => {
|
const onChangeMassState = useCallback((status: MassState) => {
|
||||||
const { edge, outCommand } = ref.current;
|
const { edge, outCommand } = ref.current;
|
||||||
|
|
||||||
@@ -118,6 +135,7 @@ export const useContextMenuConnectionHandlers = () => {
|
|||||||
contextMenuRef,
|
contextMenuRef,
|
||||||
onDeleteConnection,
|
onDeleteConnection,
|
||||||
onChangeTimeState,
|
onChangeTimeState,
|
||||||
|
onChangeType,
|
||||||
onChangeMassState,
|
onChangeMassState,
|
||||||
onChangeShipSizeStatus,
|
onChangeShipSizeStatus,
|
||||||
onToggleMassSave,
|
onToggleMassSave,
|
||||||
|
|||||||
@@ -21,7 +21,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
&.Frigate {
|
&.Frigate {
|
||||||
stroke: #4e62c9;
|
stroke: #d4f0ff;
|
||||||
}
|
}
|
||||||
|
|
||||||
&.Hovered {
|
&.Hovered {
|
||||||
@@ -37,9 +37,16 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
&.Frigate {
|
&.Frigate {
|
||||||
stroke: #41acd7;
|
stroke: #d4f0ff;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&.Tick {
|
||||||
|
stroke-width: 3px;
|
||||||
|
|
||||||
|
&.Hovered {
|
||||||
|
stroke-width: 3px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -61,6 +68,14 @@
|
|||||||
stroke: #ef7dce;
|
stroke: #ef7dce;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&.Tick {
|
||||||
|
stroke-width: 5px;
|
||||||
|
|
||||||
|
&.TimeCrit {
|
||||||
|
stroke-width: 6px;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.ClickPath {
|
.ClickPath {
|
||||||
@@ -93,5 +108,14 @@
|
|||||||
width: 5px;
|
width: 5px;
|
||||||
height: 5px;
|
height: 5px;
|
||||||
z-index: 1001;
|
z-index: 1001;
|
||||||
|
|
||||||
|
&.Tick {
|
||||||
|
width: 7px;
|
||||||
|
height: 7px;
|
||||||
|
|
||||||
|
&.Right {
|
||||||
|
margin-left: 0px;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -4,36 +4,58 @@ import classes from './SolarSystemEdge.module.scss';
|
|||||||
import { EdgeLabelRenderer, EdgeProps, getBezierPath, Position, useStore } from 'reactflow';
|
import { EdgeLabelRenderer, EdgeProps, getBezierPath, Position, useStore } from 'reactflow';
|
||||||
import { getEdgeParams } from '@/hooks/Mapper/components/map/utils.ts';
|
import { getEdgeParams } from '@/hooks/Mapper/components/map/utils.ts';
|
||||||
import clsx from 'clsx';
|
import clsx from 'clsx';
|
||||||
import { MassState, ShipSizeStatus, SolarSystemConnection, TimeStatus } from '@/hooks/Mapper/types';
|
import { ConnectionType, MassState, ShipSizeStatus, SolarSystemConnection, TimeStatus } from '@/hooks/Mapper/types';
|
||||||
import { PrimeIcons } from 'primereact/api';
|
import { PrimeIcons } from 'primereact/api';
|
||||||
import { WdTooltipWrapper } from '@/hooks/Mapper/components/ui-kit/WdTooltipWrapper';
|
import { WdTooltipWrapper } from '@/hooks/Mapper/components/ui-kit/WdTooltipWrapper';
|
||||||
|
import { useMapState } from '@/hooks/Mapper/components/map/MapProvider.tsx';
|
||||||
|
|
||||||
const MAP_TRANSLATES: Record<string, string> = {
|
const MAP_TRANSLATES: Record<string, string> = {
|
||||||
[Position.Top]: 'translate(-50%, 0%)',
|
[Position.Top]: 'translate(-48%, 0%)',
|
||||||
[Position.Bottom]: 'translate(-50%, -100%)',
|
[Position.Bottom]: 'translate(-50%, -100%)',
|
||||||
[Position.Left]: 'translate(0%, -50%)',
|
[Position.Left]: 'translate(0%, -50%)',
|
||||||
[Position.Right]: 'translate(-100%, -50%)',
|
[Position.Right]: 'translate(-100%, -50%)',
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const MAP_OFFSETS_TICK: Record<string, { x: number; y: number }> = {
|
||||||
|
[Position.Top]: { x: 0, y: 3 },
|
||||||
|
[Position.Bottom]: { x: 0, y: -3 },
|
||||||
|
[Position.Left]: { x: 3, y: 0 },
|
||||||
|
[Position.Right]: { x: -3, y: 0 },
|
||||||
|
};
|
||||||
|
|
||||||
|
const MAP_OFFSETS: Record<string, { x: number; y: number }> = {
|
||||||
|
[Position.Top]: { x: 0, y: 0 },
|
||||||
|
[Position.Bottom]: { x: 0, y: 0 },
|
||||||
|
[Position.Left]: { x: 0, y: 0 },
|
||||||
|
[Position.Right]: { x: 0, y: 0 },
|
||||||
|
};
|
||||||
|
|
||||||
export const SolarSystemEdge = ({ id, source, target, markerEnd, style, data }: EdgeProps<SolarSystemConnection>) => {
|
export const SolarSystemEdge = ({ id, source, target, markerEnd, style, data }: EdgeProps<SolarSystemConnection>) => {
|
||||||
const sourceNode = useStore(useCallback(store => store.nodeInternals.get(source), [source]));
|
const sourceNode = useStore(useCallback(store => store.nodeInternals.get(source), [source]));
|
||||||
const targetNode = useStore(useCallback(store => store.nodeInternals.get(target), [target]));
|
const targetNode = useStore(useCallback(store => store.nodeInternals.get(target), [target]));
|
||||||
|
const isWormhole = data?.type !== ConnectionType.gate;
|
||||||
|
|
||||||
|
const {
|
||||||
|
data: { isThickConnections },
|
||||||
|
} = useMapState();
|
||||||
|
|
||||||
const [hovered, setHovered] = useState(false);
|
const [hovered, setHovered] = useState(false);
|
||||||
|
|
||||||
const [path, labelX, labelY, sx, sy, tx, ty, sourcePos, targetPos] = useMemo(() => {
|
const [path, labelX, labelY, sx, sy, tx, ty, sourcePos, targetPos] = useMemo(() => {
|
||||||
const { sx, sy, tx, ty, sourcePos, targetPos } = getEdgeParams(sourceNode, targetNode);
|
const { sx, sy, tx, ty, sourcePos, targetPos } = getEdgeParams(sourceNode, targetNode);
|
||||||
|
|
||||||
|
const offset = isThickConnections ? MAP_OFFSETS_TICK[targetPos] : MAP_OFFSETS[targetPos];
|
||||||
|
|
||||||
const [edgePath, labelX, labelY] = getBezierPath({
|
const [edgePath, labelX, labelY] = getBezierPath({
|
||||||
sourceX: sx,
|
sourceX: sx - offset.x,
|
||||||
sourceY: sy,
|
sourceY: sy - offset.y,
|
||||||
sourcePosition: sourcePos,
|
sourcePosition: sourcePos,
|
||||||
targetPosition: targetPos,
|
targetPosition: targetPos,
|
||||||
targetX: tx,
|
targetX: tx + offset.x,
|
||||||
targetY: ty,
|
targetY: ty + offset.y,
|
||||||
});
|
});
|
||||||
return [edgePath, labelX, labelY, sx, sy, tx, ty, sourcePos, targetPos];
|
return [edgePath, labelX, labelY, sx, sy, tx, ty, sourcePos, targetPos];
|
||||||
}, [sourceNode, targetNode]);
|
}, [isThickConnections, sourceNode, targetNode]);
|
||||||
|
|
||||||
if (!sourceNode || !targetNode || !data) {
|
if (!sourceNode || !targetNode || !data) {
|
||||||
return null;
|
return null;
|
||||||
@@ -44,7 +66,8 @@ export const SolarSystemEdge = ({ id, source, target, markerEnd, style, data }:
|
|||||||
<path
|
<path
|
||||||
id={`back_${id}`}
|
id={`back_${id}`}
|
||||||
className={clsx(classes.EdgePathBack, {
|
className={clsx(classes.EdgePathBack, {
|
||||||
[classes.TimeCrit]: data.time_status === TimeStatus.eol,
|
[classes.Tick]: isThickConnections,
|
||||||
|
[classes.TimeCrit]: isWormhole && data.time_status === TimeStatus.eol,
|
||||||
[classes.Hovered]: hovered,
|
[classes.Hovered]: hovered,
|
||||||
})}
|
})}
|
||||||
d={path}
|
d={path}
|
||||||
@@ -54,10 +77,11 @@ export const SolarSystemEdge = ({ id, source, target, markerEnd, style, data }:
|
|||||||
<path
|
<path
|
||||||
id={`front_${id}`}
|
id={`front_${id}`}
|
||||||
className={clsx(classes.EdgePathFront, {
|
className={clsx(classes.EdgePathFront, {
|
||||||
|
[classes.Tick]: isThickConnections,
|
||||||
[classes.Hovered]: hovered,
|
[classes.Hovered]: hovered,
|
||||||
[classes.MassVerge]: data.mass_status === MassState.verge,
|
[classes.MassVerge]: isWormhole && data.mass_status === MassState.verge,
|
||||||
[classes.MassHalf]: data.mass_status === MassState.half,
|
[classes.MassHalf]: isWormhole && data.mass_status === MassState.half,
|
||||||
[classes.Frigate]: data.ship_size_type === ShipSizeStatus.small,
|
[classes.Frigate]: isWormhole && data.ship_size_type === ShipSizeStatus.small,
|
||||||
})}
|
})}
|
||||||
d={path}
|
d={path}
|
||||||
markerEnd={markerEnd}
|
markerEnd={markerEnd}
|
||||||
@@ -75,11 +99,19 @@ export const SolarSystemEdge = ({ id, source, target, markerEnd, style, data }:
|
|||||||
|
|
||||||
<EdgeLabelRenderer>
|
<EdgeLabelRenderer>
|
||||||
<div
|
<div
|
||||||
className={clsx(classes.Handle, 'react-flow__handle absolute nodrag pointer-events-none')}
|
className={clsx(
|
||||||
|
classes.Handle,
|
||||||
|
{ [classes.Tick]: isThickConnections, [classes.Right]: Position.Right === sourcePos },
|
||||||
|
'react-flow__handle absolute nodrag pointer-events-none',
|
||||||
|
)}
|
||||||
style={{ transform: `${MAP_TRANSLATES[sourcePos]} translate(${sx}px,${sy}px)` }}
|
style={{ transform: `${MAP_TRANSLATES[sourcePos]} translate(${sx}px,${sy}px)` }}
|
||||||
/>
|
/>
|
||||||
<div
|
<div
|
||||||
className={clsx(classes.Handle, 'react-flow__handle absolute nodrag pointer-events-none')}
|
className={clsx(
|
||||||
|
classes.Handle,
|
||||||
|
{ [classes.Tick]: isThickConnections },
|
||||||
|
'react-flow__handle absolute nodrag pointer-events-none',
|
||||||
|
)}
|
||||||
style={{ transform: `${MAP_TRANSLATES[targetPos]} translate(${tx}px,${ty}px)` }}
|
style={{ transform: `${MAP_TRANSLATES[targetPos]} translate(${tx}px,${ty}px)` }}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
@@ -89,7 +121,7 @@ export const SolarSystemEdge = ({ id, source, target, markerEnd, style, data }:
|
|||||||
transform: `translate(-50%, -50%) translate(${labelX}px,${labelY}px)`,
|
transform: `translate(-50%, -50%) translate(${labelX}px,${labelY}px)`,
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
{data.locked && (
|
{isWormhole && data.locked && (
|
||||||
<WdTooltipWrapper
|
<WdTooltipWrapper
|
||||||
content="Save mass"
|
content="Save mass"
|
||||||
className={clsx(
|
className={clsx(
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
@import "@/hooks/Mapper/components/map/styles/eve-common-variables";
|
@import '@/hooks/Mapper/components/map/styles/eve-common-variables';
|
||||||
|
|
||||||
$pastel-blue: #5a7d9a;
|
$pastel-blue: #5a7d9a;
|
||||||
$pastel-pink: #d291bc;
|
$pastel-pink: #d291bc;
|
||||||
@@ -25,9 +25,11 @@ $tooltip-bg: #202020; // Темный фон для подсказок
|
|||||||
z-index: 1;
|
z-index: 1;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
|
||||||
|
&.Mataria,
|
||||||
&.Mataria, &.Amarria, &.Gallente, &.Caldaria {
|
&.Amarria,
|
||||||
&::Before {
|
&.Gallente,
|
||||||
|
&.Caldaria {
|
||||||
|
&::before {
|
||||||
content: '';
|
content: '';
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 0;
|
top: 0;
|
||||||
@@ -44,42 +46,40 @@ $tooltip-bg: #202020; // Темный фон для подсказок
|
|||||||
|
|
||||||
&.Mataria {
|
&.Mataria {
|
||||||
&::before {
|
&::before {
|
||||||
background-image: url("/images/mataria.png");
|
background-image: url('/images/mataria-180.png');
|
||||||
opacity: 0.6;
|
opacity: 0.6;
|
||||||
background-position-x: -28px;
|
background-position-x: 1px;
|
||||||
background-position-y: -3px;
|
background-position-y: -14px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&.Caldaria {
|
&.Caldaria {
|
||||||
&::before {
|
&::before {
|
||||||
background-image: url("/images/caldaria.png");
|
background-image: url('/images/caldaria-180.png');
|
||||||
opacity: 0.6;
|
opacity: 0.6;
|
||||||
background-position-x: -16px;
|
background-position-x: 1px;
|
||||||
background-position-y: -17px;
|
background-position-y: -10px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&.Amarria {
|
&.Amarria {
|
||||||
&::before {
|
&::before {
|
||||||
opacity: 0.45;
|
opacity: 0.45;
|
||||||
background-image: url("/images/amarr.png");
|
background-image: url('/images/amarr-180.png');
|
||||||
background-position-x: 0px;
|
background-position-x: 0;
|
||||||
background-position-y: -1px;
|
background-position-y: -13px;
|
||||||
width: calc(100% + 10px)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&.Gallente {
|
&.Gallente {
|
||||||
&::before {
|
&::before {
|
||||||
opacity: 0.6;
|
opacity: 0.5;
|
||||||
background-image: url("/images/gallente.png");
|
background-image: url('/images/gallente-180.png');
|
||||||
background-position-x: -1px;
|
background-position-x: 1px;
|
||||||
background-position-y: -10px;
|
background-position-y: 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
&.selected {
|
&.selected {
|
||||||
border-color: $pastel-pink;
|
border-color: $pastel-pink;
|
||||||
box-shadow: 0 0 10px #9a1af1c2;
|
box-shadow: 0 0 10px #9a1af1c2;
|
||||||
@@ -95,7 +95,7 @@ $tooltip-bg: #202020; // Темный фон для подсказок
|
|||||||
|
|
||||||
&.eve-system-status-home {
|
&.eve-system-status-home {
|
||||||
border: 1px solid darken($eve-solar-system-status-color-home, 30%);
|
border: 1px solid darken($eve-solar-system-status-color-home, 30%);
|
||||||
background-image: linear-gradient(45deg, $eve-solar-system-status-friendly, transparent);
|
background-image: linear-gradient(275deg, $eve-solar-system-status-friendly, transparent);
|
||||||
|
|
||||||
&.selected {
|
&.selected {
|
||||||
border-color: $eve-solar-system-status-color-home;
|
border-color: $eve-solar-system-status-color-home;
|
||||||
@@ -104,7 +104,7 @@ $tooltip-bg: #202020; // Темный фон для подсказок
|
|||||||
|
|
||||||
&.eve-system-status-friendly {
|
&.eve-system-status-friendly {
|
||||||
border: 1px solid darken($eve-solar-system-status-color-friendly, 20%);
|
border: 1px solid darken($eve-solar-system-status-color-friendly, 20%);
|
||||||
background-image: linear-gradient(45deg, darken($eve-solar-system-status-friendly, 30%), transparent);
|
background-image: linear-gradient(275deg, darken($eve-solar-system-status-friendly, 30%), transparent);
|
||||||
|
|
||||||
&.selected {
|
&.selected {
|
||||||
border-color: darken($eve-solar-system-status-color-friendly, 5%);
|
border-color: darken($eve-solar-system-status-color-friendly, 5%);
|
||||||
@@ -113,7 +113,7 @@ $tooltip-bg: #202020; // Темный фон для подсказок
|
|||||||
|
|
||||||
&.eve-system-status-lookingFor {
|
&.eve-system-status-lookingFor {
|
||||||
border: 1px solid darken($eve-solar-system-status-color-lookingFor, 15%);
|
border: 1px solid darken($eve-solar-system-status-color-lookingFor, 15%);
|
||||||
background-image: linear-gradient(45deg, #45ff8f2f, #457fff2f);
|
background-image: linear-gradient(275deg, #45ff8f2f, #457fff2f);
|
||||||
|
|
||||||
&.selected {
|
&.selected {
|
||||||
border-color: $pastel-pink;
|
border-color: $pastel-pink;
|
||||||
@@ -121,17 +121,16 @@ $tooltip-bg: #202020; // Темный фон для подсказок
|
|||||||
}
|
}
|
||||||
|
|
||||||
&.eve-system-status-warning {
|
&.eve-system-status-warning {
|
||||||
background-image: linear-gradient(45deg, $eve-solar-system-status-warning, transparent);
|
background-image: linear-gradient(275deg, $eve-solar-system-status-warning, transparent);
|
||||||
}
|
}
|
||||||
|
|
||||||
&.eve-system-status-dangerous {
|
&.eve-system-status-dangerous {
|
||||||
background-image: linear-gradient(45deg, $eve-solar-system-status-dangerous, transparent);
|
background-image: linear-gradient(275deg, $eve-solar-system-status-dangerous, transparent);
|
||||||
}
|
}
|
||||||
|
|
||||||
&.eve-system-status-target {
|
&.eve-system-status-target {
|
||||||
background-image: linear-gradient(45deg, $eve-solar-system-status-target, transparent);
|
background-image: linear-gradient(275deg, $eve-solar-system-status-target, transparent);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.Bookmarks {
|
.Bookmarks {
|
||||||
@@ -158,7 +157,7 @@ $tooltip-bg: #202020; // Темный фон для подсказок
|
|||||||
//background-color: #833ca4;
|
//background-color: #833ca4;
|
||||||
|
|
||||||
&:not(:first-child) {
|
&:not(:first-child) {
|
||||||
box-shadow: inset 4px -3px 4px rgba(0, 0, 0, .3);
|
box-shadow: inset 4px -3px 4px rgba(0, 0, 0, 0.3);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -181,7 +180,6 @@ $tooltip-bg: #202020; // Темный фон для подсказок
|
|||||||
font-size: 9px;
|
font-size: 9px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.icon {
|
.icon {
|
||||||
@@ -214,14 +212,20 @@ $tooltip-bg: #202020; // Темный фон для подсказок
|
|||||||
color: #ffb01d;
|
color: #ffb01d;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Firefox kostyl */
|
||||||
|
@-moz-document url-prefix() {
|
||||||
|
.classSystemName {
|
||||||
|
font-family: inherit !important;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.classSystemName {
|
.classSystemName {
|
||||||
//font-weight: bold;
|
//font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
.solarSystemName {
|
.solarSystemName {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.BottomRow {
|
.BottomRow {
|
||||||
@@ -266,6 +270,13 @@ $tooltip-bg: #202020; // Темный фон для подсказок
|
|||||||
& > * {
|
& > * {
|
||||||
line-height: 10px;
|
line-height: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Firefox kostyl */
|
||||||
|
@-moz-document url-prefix() {
|
||||||
|
position: relative;
|
||||||
|
top: -1px;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.Handlers {
|
.Handlers {
|
||||||
@@ -288,11 +299,40 @@ $tooltip-bg: #202020; // Темный фон для подсказок
|
|||||||
border-color: $pastel-pink;
|
border-color: $pastel-pink;
|
||||||
}
|
}
|
||||||
|
|
||||||
&.HandleTop { top: -2px }
|
&.HandleTop {
|
||||||
|
top: -2px;
|
||||||
|
}
|
||||||
|
|
||||||
&.HandleRight { right: -2px }
|
&.HandleRight {
|
||||||
|
right: -2px;
|
||||||
|
}
|
||||||
|
|
||||||
&.HandleBottom { bottom: -2px }
|
&.HandleBottom {
|
||||||
|
bottom: -2px;
|
||||||
|
}
|
||||||
|
|
||||||
&.HandleLeft { left: -2px }
|
&.HandleLeft {
|
||||||
|
left: -2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.Tick {
|
||||||
|
width: 7px;
|
||||||
|
height: 7px;
|
||||||
|
|
||||||
|
&.HandleTop {
|
||||||
|
top: -3px;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.HandleRight {
|
||||||
|
right: -3px;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.HandleBottom {
|
||||||
|
bottom: -3px;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.HandleLeft {
|
||||||
|
left: -3px;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -79,6 +79,7 @@ export const SolarSystemNode = memo(({ data, selected }: WrapNodeProps<MapSolarS
|
|||||||
hoverNodeId,
|
hoverNodeId,
|
||||||
visibleNodes,
|
visibleNodes,
|
||||||
showKSpaceBG,
|
showKSpaceBG,
|
||||||
|
isThickConnections,
|
||||||
},
|
},
|
||||||
outCommand,
|
outCommand,
|
||||||
} = useMapState();
|
} = useMapState();
|
||||||
@@ -133,7 +134,7 @@ export const SolarSystemNode = memo(({ data, selected }: WrapNodeProps<MapSolarS
|
|||||||
<div className={classes.Bookmarks}>
|
<div className={classes.Bookmarks}>
|
||||||
{labelCustom !== '' && (
|
{labelCustom !== '' && (
|
||||||
<div className={clsx(classes.Bookmark, MARKER_BOOKMARK_BG_STYLES.custom)}>
|
<div className={clsx(classes.Bookmark, MARKER_BOOKMARK_BG_STYLES.custom)}>
|
||||||
<div>{labelCustom}</div>
|
<span className="[text-shadow:_0_1px_0_rgb(0_0_0_/_40%)] ">{labelCustom}</span>
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
@@ -168,14 +169,16 @@ export const SolarSystemNode = memo(({ data, selected }: WrapNodeProps<MapSolarS
|
|||||||
{visible && (
|
{visible && (
|
||||||
<>
|
<>
|
||||||
<div className={classes.HeadRow}>
|
<div className={classes.HeadRow}>
|
||||||
<div className={clsx(classes.classTitle, classTitleColor)}>{class_title ?? '-'}</div>
|
<div className={clsx(classes.classTitle, classTitleColor, '[text-shadow:_0_1px_0_rgb(0_0_0_/_40%)]')}>
|
||||||
|
{class_title ?? '-'}
|
||||||
|
</div>
|
||||||
{tag != null && tag !== '' && (
|
{tag != null && tag !== '' && (
|
||||||
<div className={clsx(classes.TagTitle, 'text-sky-400 font-medium')}>{tag}</div>
|
<div className={clsx(classes.TagTitle, 'text-sky-400 font-medium')}>{tag}</div>
|
||||||
)}
|
)}
|
||||||
<div
|
<div
|
||||||
className={clsx(
|
className={clsx(
|
||||||
classes.classSystemName,
|
classes.classSystemName,
|
||||||
'flex-grow overflow-hidden text-ellipsis whitespace-nowrap font-sans',
|
'[text-shadow:_0_1px_0_rgb(0_0_0_/_40%)] flex-grow overflow-hidden text-ellipsis whitespace-nowrap font-sans',
|
||||||
)}
|
)}
|
||||||
>
|
>
|
||||||
{solar_system_name}
|
{solar_system_name}
|
||||||
@@ -196,16 +199,16 @@ export const SolarSystemNode = memo(({ data, selected }: WrapNodeProps<MapSolarS
|
|||||||
|
|
||||||
<div className={clsx(classes.BottomRow, 'flex items-center justify-between')}>
|
<div className={clsx(classes.BottomRow, 'flex items-center justify-between')}>
|
||||||
{customName && (
|
{customName && (
|
||||||
<div className="text-blue-300 whitespace-nowrap overflow-hidden text-ellipsis mr-0.5">{customName}</div>
|
<div className="[text-shadow:_0_1px_0_rgb(0_0_0_/_40%)] text-blue-300 whitespace-nowrap overflow-hidden text-ellipsis mr-0.5">
|
||||||
|
{customName}
|
||||||
|
</div>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
{!isWormhole && !customName && (
|
{!isWormhole && !customName && (
|
||||||
<div
|
<div
|
||||||
className={clsx('text-stone-400 whitespace-nowrap overflow-hidden text-ellipsis mr-0.5', {
|
className={clsx(
|
||||||
['text-teal-100 font-bold']: space === Spaces.Caldari,
|
'[text-shadow:_0_1px_0_rgb(0_0_0_/_40%)] text-stone-300 whitespace-nowrap overflow-hidden text-ellipsis mr-0.5',
|
||||||
['text-yellow-100 font-bold']: space === Spaces.Amarr || space === Spaces.Matar,
|
)}
|
||||||
['text-lime-200/80 font-bold']: space === Spaces.Gallente,
|
|
||||||
})}
|
|
||||||
>
|
>
|
||||||
{region_name}
|
{region_name}
|
||||||
</div>
|
</div>
|
||||||
@@ -215,10 +218,10 @@ export const SolarSystemNode = memo(({ data, selected }: WrapNodeProps<MapSolarS
|
|||||||
|
|
||||||
<div className="flex items-center justify-end">
|
<div className="flex items-center justify-end">
|
||||||
<div className="flex gap-1 items-center">
|
<div className="flex gap-1 items-center">
|
||||||
{locked && <i className={PrimeIcons.LOCK} style={{ fontSize: '0.45rem' }}></i>}
|
{locked && <i className={PrimeIcons.LOCK} style={{ fontSize: '0.45rem', fontWeight: 'bold' }}></i>}
|
||||||
|
|
||||||
{hubs.includes(solar_system_id.toString()) && (
|
{hubs.includes(solar_system_id.toString()) && (
|
||||||
<i className={PrimeIcons.MAP_MARKER} style={{ fontSize: '0.45rem' }}></i>
|
<i className={PrimeIcons.MAP_MARKER} style={{ fontSize: '0.45rem', fontWeight: 'bold' }}></i>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
{charactersInSystem.length > 0 && (
|
{charactersInSystem.length > 0 && (
|
||||||
@@ -237,28 +240,40 @@ export const SolarSystemNode = memo(({ data, selected }: WrapNodeProps<MapSolarS
|
|||||||
<div onMouseDownCapture={dbClick} className={classes.Handlers}>
|
<div onMouseDownCapture={dbClick} className={classes.Handlers}>
|
||||||
<Handle
|
<Handle
|
||||||
type="source"
|
type="source"
|
||||||
className={clsx(classes.Handle, classes.HandleTop, { [classes.selected]: selected })}
|
className={clsx(classes.Handle, classes.HandleTop, {
|
||||||
|
[classes.selected]: selected,
|
||||||
|
[classes.Tick]: isThickConnections,
|
||||||
|
})}
|
||||||
style={{ visibility: showHandlers ? 'visible' : 'hidden' }}
|
style={{ visibility: showHandlers ? 'visible' : 'hidden' }}
|
||||||
position={Position.Top}
|
position={Position.Top}
|
||||||
id="a"
|
id="a"
|
||||||
/>
|
/>
|
||||||
<Handle
|
<Handle
|
||||||
type="source"
|
type="source"
|
||||||
className={clsx(classes.Handle, classes.HandleRight, { [classes.selected]: selected })}
|
className={clsx(classes.Handle, classes.HandleRight, {
|
||||||
|
[classes.selected]: selected,
|
||||||
|
[classes.Tick]: isThickConnections,
|
||||||
|
})}
|
||||||
style={{ visibility: showHandlers ? 'visible' : 'hidden' }}
|
style={{ visibility: showHandlers ? 'visible' : 'hidden' }}
|
||||||
position={Position.Right}
|
position={Position.Right}
|
||||||
id="b"
|
id="b"
|
||||||
/>
|
/>
|
||||||
<Handle
|
<Handle
|
||||||
type="source"
|
type="source"
|
||||||
className={clsx(classes.Handle, classes.HandleBottom, { [classes.selected]: selected })}
|
className={clsx(classes.Handle, classes.HandleBottom, {
|
||||||
|
[classes.selected]: selected,
|
||||||
|
[classes.Tick]: isThickConnections,
|
||||||
|
})}
|
||||||
style={{ visibility: showHandlers ? 'visible' : 'hidden' }}
|
style={{ visibility: showHandlers ? 'visible' : 'hidden' }}
|
||||||
position={Position.Bottom}
|
position={Position.Bottom}
|
||||||
id="c"
|
id="c"
|
||||||
/>
|
/>
|
||||||
<Handle
|
<Handle
|
||||||
type="source"
|
type="source"
|
||||||
className={clsx(classes.Handle, classes.HandleLeft, { [classes.selected]: selected })}
|
className={clsx(classes.Handle, classes.HandleLeft, {
|
||||||
|
[classes.selected]: selected,
|
||||||
|
[classes.Tick]: isThickConnections,
|
||||||
|
})}
|
||||||
style={{ visibility: showHandlers ? 'visible' : 'hidden' }}
|
style={{ visibility: showHandlers ? 'visible' : 'hidden' }}
|
||||||
position={Position.Left}
|
position={Position.Left}
|
||||||
id="d"
|
id="d"
|
||||||
|
|||||||
@@ -18,5 +18,9 @@ export const WormholeClassComp = ({ id }: WormholeClassComp) => {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const colorClass = WORMHOLE_CLASS_STYLES[wormholeDataAdditional.wormholeClassID.toString()];
|
const colorClass = WORMHOLE_CLASS_STYLES[wormholeDataAdditional.wormholeClassID.toString()];
|
||||||
return <div className={clsx(colorClass)}>{wormholeDataAdditional.shortName}</div>;
|
return (
|
||||||
|
<div className={clsx(colorClass, '[text-shadow:_0_1px_0_rgb(0_0_0_/_40%)]')}>
|
||||||
|
{wormholeDataAdditional.shortName}
|
||||||
|
</div>
|
||||||
|
);
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import { MassState } from '@/hooks/Mapper/types';
|
import { ConnectionType, MassState } from '@/hooks/Mapper/types';
|
||||||
|
|
||||||
export enum SOLAR_SYSTEM_CLASS_IDS {
|
export enum SOLAR_SYSTEM_CLASS_IDS {
|
||||||
ccp1 = -1,
|
ccp1 = -1,
|
||||||
@@ -30,11 +30,77 @@ export enum SOLAR_SYSTEM_CLASS_IDS {
|
|||||||
zarzakh = 10100,
|
zarzakh = 10100,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export enum SOLAR_SYSTEM_CLASS_GROUPS {
|
||||||
|
ccp = 'ccp',
|
||||||
|
c1 = 'c1',
|
||||||
|
c2 = 'c2',
|
||||||
|
c3 = 'c3',
|
||||||
|
c4 = 'c4',
|
||||||
|
c5 = 'c5',
|
||||||
|
c6 = 'c6',
|
||||||
|
hs = 'hs',
|
||||||
|
ls = 'ls',
|
||||||
|
ns = 'ns',
|
||||||
|
thera = 'thera',
|
||||||
|
c13 = 'c13',
|
||||||
|
drifter = 'drifter',
|
||||||
|
unknown = 'unknown',
|
||||||
|
pochven = 'pochven',
|
||||||
|
jovian = 'jovian',
|
||||||
|
}
|
||||||
|
|
||||||
|
export const SOLAR_SYSTEM_TO_CLASS_GROUPS_CLASSES = {
|
||||||
|
c1: ['c1'],
|
||||||
|
c2: ['c2'],
|
||||||
|
c3: ['c3'],
|
||||||
|
c4: ['c4'],
|
||||||
|
c5: ['c5'],
|
||||||
|
c6: ['c6'],
|
||||||
|
hs: ['hs'],
|
||||||
|
ls: ['ls'],
|
||||||
|
ns: ['ns'],
|
||||||
|
thera: ['thera'],
|
||||||
|
c13: ['c13'],
|
||||||
|
pochven: ['pochven'],
|
||||||
|
drifter: ['sentinel', 'barbican', 'vidette', 'conflux', 'redoubt'],
|
||||||
|
jove: ['jove'],
|
||||||
|
};
|
||||||
|
|
||||||
|
export const SOLAR_SYSTEM_CLASSES_TO_CLASS_GROUPS = {
|
||||||
|
ccp1: SOLAR_SYSTEM_CLASS_GROUPS.ccp,
|
||||||
|
c1: SOLAR_SYSTEM_CLASS_GROUPS.c1,
|
||||||
|
c2: SOLAR_SYSTEM_CLASS_GROUPS.c2,
|
||||||
|
c3: SOLAR_SYSTEM_CLASS_GROUPS.c3,
|
||||||
|
c4: SOLAR_SYSTEM_CLASS_GROUPS.c4,
|
||||||
|
c5: SOLAR_SYSTEM_CLASS_GROUPS.c5,
|
||||||
|
c6: SOLAR_SYSTEM_CLASS_GROUPS.c6,
|
||||||
|
hs: SOLAR_SYSTEM_CLASS_GROUPS.hs,
|
||||||
|
ls: SOLAR_SYSTEM_CLASS_GROUPS.ls,
|
||||||
|
ns: SOLAR_SYSTEM_CLASS_GROUPS.ns,
|
||||||
|
ccp2: SOLAR_SYSTEM_CLASS_GROUPS.ccp,
|
||||||
|
ccp3: SOLAR_SYSTEM_CLASS_GROUPS.ccp,
|
||||||
|
thera: SOLAR_SYSTEM_CLASS_GROUPS.thera,
|
||||||
|
c13: SOLAR_SYSTEM_CLASS_GROUPS.c13,
|
||||||
|
sentinel: SOLAR_SYSTEM_CLASS_GROUPS.drifter,
|
||||||
|
baribican: SOLAR_SYSTEM_CLASS_GROUPS.drifter,
|
||||||
|
vidette: SOLAR_SYSTEM_CLASS_GROUPS.drifter,
|
||||||
|
conflux: SOLAR_SYSTEM_CLASS_GROUPS.drifter,
|
||||||
|
redoubt: SOLAR_SYSTEM_CLASS_GROUPS.drifter,
|
||||||
|
a1: SOLAR_SYSTEM_CLASS_GROUPS.unknown,
|
||||||
|
a2: SOLAR_SYSTEM_CLASS_GROUPS.unknown,
|
||||||
|
a3: SOLAR_SYSTEM_CLASS_GROUPS.unknown,
|
||||||
|
a4: SOLAR_SYSTEM_CLASS_GROUPS.unknown,
|
||||||
|
a5: SOLAR_SYSTEM_CLASS_GROUPS.unknown,
|
||||||
|
ccp4: SOLAR_SYSTEM_CLASS_GROUPS.ccp,
|
||||||
|
pochven: SOLAR_SYSTEM_CLASS_GROUPS.pochven,
|
||||||
|
};
|
||||||
|
|
||||||
type WormholesAdditionalInfoType = {
|
type WormholesAdditionalInfoType = {
|
||||||
id: string;
|
id: string;
|
||||||
shortName: string;
|
shortName: string;
|
||||||
wormholeClassID: number;
|
wormholeClassID: number;
|
||||||
title: string;
|
title: string;
|
||||||
|
shortTitle: string;
|
||||||
effectPower?: number;
|
effectPower?: number;
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -45,6 +111,7 @@ export const WORMHOLES_ADDITIONAL_INFO_RAW: WormholesAdditionalInfoType[] = [
|
|||||||
shortName: 'CCP',
|
shortName: 'CCP',
|
||||||
wormholeClassID: -1,
|
wormholeClassID: -1,
|
||||||
title: 'CCP System',
|
title: 'CCP System',
|
||||||
|
shortTitle: 'CCP',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 'c1',
|
id: 'c1',
|
||||||
@@ -52,6 +119,7 @@ export const WORMHOLES_ADDITIONAL_INFO_RAW: WormholesAdditionalInfoType[] = [
|
|||||||
wormholeClassID: 1,
|
wormholeClassID: 1,
|
||||||
effectPower: 1,
|
effectPower: 1,
|
||||||
title: 'Class 1',
|
title: 'Class 1',
|
||||||
|
shortTitle: 'C1',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 'c2',
|
id: 'c2',
|
||||||
@@ -59,6 +127,7 @@ export const WORMHOLES_ADDITIONAL_INFO_RAW: WormholesAdditionalInfoType[] = [
|
|||||||
wormholeClassID: 2,
|
wormholeClassID: 2,
|
||||||
effectPower: 2,
|
effectPower: 2,
|
||||||
title: 'Class 2',
|
title: 'Class 2',
|
||||||
|
shortTitle: 'C2',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 'c3',
|
id: 'c3',
|
||||||
@@ -66,6 +135,7 @@ export const WORMHOLES_ADDITIONAL_INFO_RAW: WormholesAdditionalInfoType[] = [
|
|||||||
wormholeClassID: 3,
|
wormholeClassID: 3,
|
||||||
effectPower: 3,
|
effectPower: 3,
|
||||||
title: 'Class 3',
|
title: 'Class 3',
|
||||||
|
shortTitle: 'C3',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 'c4',
|
id: 'c4',
|
||||||
@@ -73,6 +143,7 @@ export const WORMHOLES_ADDITIONAL_INFO_RAW: WormholesAdditionalInfoType[] = [
|
|||||||
wormholeClassID: 4,
|
wormholeClassID: 4,
|
||||||
effectPower: 4,
|
effectPower: 4,
|
||||||
title: 'Class 4',
|
title: 'Class 4',
|
||||||
|
shortTitle: 'C4',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 'c5',
|
id: 'c5',
|
||||||
@@ -80,6 +151,7 @@ export const WORMHOLES_ADDITIONAL_INFO_RAW: WormholesAdditionalInfoType[] = [
|
|||||||
wormholeClassID: 5,
|
wormholeClassID: 5,
|
||||||
effectPower: 5,
|
effectPower: 5,
|
||||||
title: 'Class 5',
|
title: 'Class 5',
|
||||||
|
shortTitle: 'C5',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 'c6',
|
id: 'c6',
|
||||||
@@ -87,42 +159,49 @@ export const WORMHOLES_ADDITIONAL_INFO_RAW: WormholesAdditionalInfoType[] = [
|
|||||||
wormholeClassID: 6,
|
wormholeClassID: 6,
|
||||||
effectPower: 6,
|
effectPower: 6,
|
||||||
title: 'Class 6',
|
title: 'Class 6',
|
||||||
|
shortTitle: 'C6',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 'hs',
|
id: 'hs',
|
||||||
shortName: 'H',
|
shortName: 'H',
|
||||||
wormholeClassID: 7,
|
wormholeClassID: 7,
|
||||||
title: 'High-sec',
|
title: 'High-sec',
|
||||||
|
shortTitle: 'High-sec',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 'ls',
|
id: 'ls',
|
||||||
shortName: 'L',
|
shortName: 'L',
|
||||||
wormholeClassID: 8,
|
wormholeClassID: 8,
|
||||||
title: 'Low-sec',
|
title: 'Low-sec',
|
||||||
|
shortTitle: 'Low-sec',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 'ns',
|
id: 'ns',
|
||||||
shortName: 'N',
|
shortName: 'N',
|
||||||
wormholeClassID: 9,
|
wormholeClassID: 9,
|
||||||
title: 'Null-sec',
|
title: 'Null-sec',
|
||||||
|
shortTitle: 'Null-sec',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 'ccp2',
|
id: 'ccp2',
|
||||||
shortName: 'CCP',
|
shortName: 'CCP',
|
||||||
wormholeClassID: 10,
|
wormholeClassID: 10,
|
||||||
title: 'CCP System',
|
title: 'CCP System',
|
||||||
|
shortTitle: 'CCP',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 'ccp3',
|
id: 'ccp3',
|
||||||
shortName: 'CCP',
|
shortName: 'CCP',
|
||||||
wormholeClassID: 11,
|
wormholeClassID: 11,
|
||||||
title: 'CCP System',
|
title: 'CCP System',
|
||||||
|
shortTitle: 'CCP',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 'thera',
|
id: 'thera',
|
||||||
shortName: 'T',
|
shortName: 'T',
|
||||||
wormholeClassID: 12,
|
wormholeClassID: 12,
|
||||||
title: 'Class 12 (Thera)',
|
title: 'Class 12 (Thera)',
|
||||||
|
shortTitle: 'Thera',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 'c13',
|
id: 'c13',
|
||||||
@@ -130,6 +209,7 @@ export const WORMHOLES_ADDITIONAL_INFO_RAW: WormholesAdditionalInfoType[] = [
|
|||||||
wormholeClassID: 13,
|
wormholeClassID: 13,
|
||||||
effectPower: 6,
|
effectPower: 6,
|
||||||
title: 'Class 13 (Shattered Frigate)',
|
title: 'Class 13 (Shattered Frigate)',
|
||||||
|
shortTitle: 'C13',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 'sentinel',
|
id: 'sentinel',
|
||||||
@@ -137,6 +217,7 @@ export const WORMHOLES_ADDITIONAL_INFO_RAW: WormholesAdditionalInfoType[] = [
|
|||||||
wormholeClassID: 14,
|
wormholeClassID: 14,
|
||||||
effectPower: 2,
|
effectPower: 2,
|
||||||
title: 'Class 14 (Sentinel Drifter)',
|
title: 'Class 14 (Sentinel Drifter)',
|
||||||
|
shortTitle: 'Sentinel',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 'barbican',
|
id: 'barbican',
|
||||||
@@ -144,6 +225,7 @@ export const WORMHOLES_ADDITIONAL_INFO_RAW: WormholesAdditionalInfoType[] = [
|
|||||||
wormholeClassID: 15,
|
wormholeClassID: 15,
|
||||||
effectPower: 2,
|
effectPower: 2,
|
||||||
title: 'Class 15 (Barbican Drifter)',
|
title: 'Class 15 (Barbican Drifter)',
|
||||||
|
shortTitle: 'Barbican',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 'vidette',
|
id: 'vidette',
|
||||||
@@ -151,6 +233,7 @@ export const WORMHOLES_ADDITIONAL_INFO_RAW: WormholesAdditionalInfoType[] = [
|
|||||||
wormholeClassID: 16,
|
wormholeClassID: 16,
|
||||||
effectPower: 2,
|
effectPower: 2,
|
||||||
title: 'Class 16 (Vidette Drifter)',
|
title: 'Class 16 (Vidette Drifter)',
|
||||||
|
shortTitle: 'Vidette',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 'conflux',
|
id: 'conflux',
|
||||||
@@ -158,6 +241,7 @@ export const WORMHOLES_ADDITIONAL_INFO_RAW: WormholesAdditionalInfoType[] = [
|
|||||||
wormholeClassID: 17,
|
wormholeClassID: 17,
|
||||||
effectPower: 2,
|
effectPower: 2,
|
||||||
title: 'Class 17 (Conflux Drifter)',
|
title: 'Class 17 (Conflux Drifter)',
|
||||||
|
shortTitle: 'Conflux',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 'redoubt',
|
id: 'redoubt',
|
||||||
@@ -165,59 +249,79 @@ export const WORMHOLES_ADDITIONAL_INFO_RAW: WormholesAdditionalInfoType[] = [
|
|||||||
wormholeClassID: 18,
|
wormholeClassID: 18,
|
||||||
effectPower: 2,
|
effectPower: 2,
|
||||||
title: 'Class 18 (Redoubt Drifter)',
|
title: 'Class 18 (Redoubt Drifter)',
|
||||||
|
shortTitle: 'Redoubt',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 'a1',
|
id: 'a1',
|
||||||
shortName: 'A1',
|
shortName: 'A1',
|
||||||
wormholeClassID: 19,
|
wormholeClassID: 19,
|
||||||
title: '(Abyssal class 1)',
|
title: '(Abyssal class 1)',
|
||||||
|
shortTitle: 'A1',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 'a2',
|
id: 'a2',
|
||||||
shortName: 'A2',
|
shortName: 'A2',
|
||||||
wormholeClassID: 20,
|
wormholeClassID: 20,
|
||||||
title: '(Abyssal class 2)',
|
title: '(Abyssal class 2)',
|
||||||
|
shortTitle: 'A2',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 'a3',
|
id: 'a3',
|
||||||
shortName: 'A3',
|
shortName: 'A3',
|
||||||
wormholeClassID: 21,
|
wormholeClassID: 21,
|
||||||
title: '(Abyssal class 3)',
|
title: '(Abyssal class 3)',
|
||||||
|
shortTitle: 'A3',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 'a4',
|
id: 'a4',
|
||||||
shortName: 'A4',
|
shortName: 'A4',
|
||||||
wormholeClassID: 22,
|
wormholeClassID: 22,
|
||||||
title: '(Abyssal class 4)',
|
title: '(Abyssal class 4)',
|
||||||
|
shortTitle: 'A4',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 'a5',
|
id: 'a5',
|
||||||
shortName: 'A5',
|
shortName: 'A5',
|
||||||
wormholeClassID: 23,
|
wormholeClassID: 23,
|
||||||
title: '(Abyssal class 5)',
|
title: '(Abyssal class 5)',
|
||||||
|
shortTitle: 'A5',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 'ccp4',
|
id: 'ccp4',
|
||||||
shortName: 'CCP',
|
shortName: 'CCP',
|
||||||
wormholeClassID: 24,
|
wormholeClassID: 24,
|
||||||
title: 'CCP System (Penalty)',
|
title: 'CCP System (Penalty)',
|
||||||
|
shortTitle: 'CCP',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 'pochven',
|
id: 'pochven',
|
||||||
shortName: 'P',
|
shortName: 'P',
|
||||||
wormholeClassID: 25,
|
wormholeClassID: 25,
|
||||||
title: 'Triglavian space (Pochven)',
|
title: 'Triglavian space (Pochven)',
|
||||||
|
shortTitle: 'Pochven',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 'zarzakh',
|
id: 'zarzakh',
|
||||||
shortName: 'N',
|
shortName: 'N',
|
||||||
wormholeClassID: 10100,
|
wormholeClassID: 10100,
|
||||||
title: 'Pirate space',
|
title: 'Pirate space',
|
||||||
|
shortTitle: 'Zarzakh',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 'k162',
|
||||||
|
shortName: 'K162',
|
||||||
|
wormholeClassID: 10101,
|
||||||
|
title: 'Reverse',
|
||||||
|
shortTitle: 'K162',
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
export const WORMHOLES_ADDITIONAL_INFO: Record<string, WormholesAdditionalInfoType> =
|
export const WORMHOLES_ADDITIONAL_INFO: Record<string, WormholesAdditionalInfoType> =
|
||||||
WORMHOLES_ADDITIONAL_INFO_RAW.reduce((acc, x) => ({ ...acc, [x.id]: x }), {});
|
WORMHOLES_ADDITIONAL_INFO_RAW.reduce((acc, x) => ({ ...acc, [x.id]: x }), {});
|
||||||
|
|
||||||
|
export const WORMHOLES_ADDITIONAL_INFO_BY_CLASS_ID: Record<string, WormholesAdditionalInfoType> =
|
||||||
|
WORMHOLES_ADDITIONAL_INFO_RAW.reduce((acc, x) => ({ ...acc, [x.wormholeClassID]: x }), {});
|
||||||
|
|
||||||
// export const SOLAR_SYSTEM_CLASS_NAMES = {
|
// export const SOLAR_SYSTEM_CLASS_NAMES = {
|
||||||
// ccp1 = ,
|
// ccp1 = ,
|
||||||
// c1 = ,
|
// c1 = ,
|
||||||
@@ -608,6 +712,13 @@ export const STATUS_CLASSES: Record<number, string> = {
|
|||||||
[STATUSES.dangerous]: 'eve-system-status-dangerous',
|
[STATUSES.dangerous]: 'eve-system-status-dangerous',
|
||||||
};
|
};
|
||||||
|
|
||||||
|
export const TYPE_NAMES_ORDER = [ConnectionType.wormhole, ConnectionType.gate];
|
||||||
|
|
||||||
|
export const TYPE_NAMES = {
|
||||||
|
[ConnectionType.wormhole]: 'Wormhole',
|
||||||
|
[ConnectionType.gate]: 'Gate',
|
||||||
|
};
|
||||||
|
|
||||||
export const MASS_STATE_NAMES_ORDER = [MassState.verge, MassState.half, MassState.normal];
|
export const MASS_STATE_NAMES_ORDER = [MassState.verge, MassState.half, MassState.normal];
|
||||||
|
|
||||||
export const MASS_STATE_NAMES = {
|
export const MASS_STATE_NAMES = {
|
||||||
|
|||||||
@@ -2,28 +2,18 @@ import { Node, useReactFlow } from 'reactflow';
|
|||||||
import { useCallback, useRef } from 'react';
|
import { useCallback, useRef } from 'react';
|
||||||
import { CommandAddSystems } from '@/hooks/Mapper/types/mapHandlers.ts';
|
import { CommandAddSystems } from '@/hooks/Mapper/types/mapHandlers.ts';
|
||||||
import { convertSystem2Node } from '../../helpers';
|
import { convertSystem2Node } from '../../helpers';
|
||||||
import { useMapState } from '@/hooks/Mapper/components/map/MapProvider.tsx';
|
|
||||||
|
|
||||||
export const useMapAddSystems = () => {
|
export const useMapAddSystems = () => {
|
||||||
const rf = useReactFlow();
|
const rf = useReactFlow();
|
||||||
const {
|
|
||||||
data: { systems },
|
|
||||||
update,
|
|
||||||
} = useMapState();
|
|
||||||
|
|
||||||
const ref = useRef({ rf, systems, update });
|
const ref = useRef({ rf });
|
||||||
ref.current = { update, systems, rf };
|
ref.current = { rf };
|
||||||
|
|
||||||
return useCallback(
|
return useCallback((systems: CommandAddSystems) => {
|
||||||
(systems: CommandAddSystems) => {
|
const { rf } = ref.current;
|
||||||
const nodes = rf.getNodes();
|
const nodes = rf.getNodes();
|
||||||
const prepared: Node[] = systems.filter(x => !nodes.some(y => x.id === y.id)).map(convertSystem2Node);
|
|
||||||
rf.addNodes(prepared);
|
|
||||||
|
|
||||||
ref.current.update({
|
const prepared: Node[] = systems.filter(x => !nodes.some(y => x.id === y.id)).map(convertSystem2Node);
|
||||||
systems: [...ref.current.systems.filter(sys => systems.some(x => sys.id !== x.id)), ...systems],
|
rf.addNodes(prepared);
|
||||||
});
|
}, []);
|
||||||
},
|
|
||||||
[rf],
|
|
||||||
);
|
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -5,24 +5,21 @@ import { OnMapSelectionChange } from '@/hooks/Mapper/components/map/map.types.ts
|
|||||||
|
|
||||||
export const useMapRemoveSystems = (onSelectionChange: OnMapSelectionChange) => {
|
export const useMapRemoveSystems = (onSelectionChange: OnMapSelectionChange) => {
|
||||||
const rf = useReactFlow();
|
const rf = useReactFlow();
|
||||||
const ref = useRef({ onSelectionChange });
|
const ref = useRef({ onSelectionChange, rf });
|
||||||
ref.current = { onSelectionChange };
|
ref.current = { onSelectionChange, rf };
|
||||||
|
|
||||||
return useCallback(
|
return useCallback((systems: CommandRemoveSystems) => {
|
||||||
(systems: CommandRemoveSystems) => {
|
ref.current.rf.deleteElements({ nodes: systems.map(x => ({ id: `${x}` })) });
|
||||||
rf.deleteElements({ nodes: systems.map(x => ({ id: `${x}` })) });
|
|
||||||
|
|
||||||
const newSelection = rf
|
const newSelection = ref.current.rf
|
||||||
.getNodes()
|
.getNodes()
|
||||||
.filter(x => !systems.includes(parseInt(x.id)))
|
.filter(x => !systems.includes(parseInt(x.id)))
|
||||||
.filter(x => x.selected)
|
.filter(x => x.selected)
|
||||||
.map(x => x.id);
|
.map(x => x.id);
|
||||||
|
|
||||||
ref.current.onSelectionChange({
|
ref.current.onSelectionChange({
|
||||||
systems: newSelection,
|
systems: newSelection,
|
||||||
connections: [],
|
connections: [],
|
||||||
});
|
});
|
||||||
},
|
}, []);
|
||||||
[rf],
|
|
||||||
);
|
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -1,2 +1,3 @@
|
|||||||
export * from './useMapHandlers';
|
export * from './useMapHandlers';
|
||||||
export * from './useUpdateNodes';
|
export * from './useUpdateNodes';
|
||||||
|
export * from './useNodesEdgesState';
|
||||||
|
|||||||
@@ -18,6 +18,7 @@ import {
|
|||||||
CommandUpdateSystems,
|
CommandUpdateSystems,
|
||||||
MapHandlers,
|
MapHandlers,
|
||||||
} from '@/hooks/Mapper/types/mapHandlers.ts';
|
} from '@/hooks/Mapper/types/mapHandlers.ts';
|
||||||
|
|
||||||
import {
|
import {
|
||||||
useCommandsCharacters,
|
useCommandsCharacters,
|
||||||
useCommandsConnections,
|
useCommandsConnections,
|
||||||
@@ -57,16 +58,16 @@ export const useMapHandlers = (ref: ForwardedRef<MapHandlers>, onSelectionChange
|
|||||||
mapInit(data as CommandInit);
|
mapInit(data as CommandInit);
|
||||||
break;
|
break;
|
||||||
case Commands.addSystems:
|
case Commands.addSystems:
|
||||||
mapAddSystems(data as CommandAddSystems);
|
setTimeout(() => mapAddSystems(data as CommandAddSystems), 100);
|
||||||
break;
|
break;
|
||||||
case Commands.updateSystems:
|
case Commands.updateSystems:
|
||||||
mapUpdateSystems(data as CommandUpdateSystems);
|
mapUpdateSystems(data as CommandUpdateSystems);
|
||||||
break;
|
break;
|
||||||
case Commands.removeSystems:
|
case Commands.removeSystems:
|
||||||
removeSystems(data as CommandRemoveSystems);
|
setTimeout(() => removeSystems(data as CommandRemoveSystems), 100);
|
||||||
break;
|
break;
|
||||||
case Commands.addConnections:
|
case Commands.addConnections:
|
||||||
addConnections(data as CommandAddConnections);
|
setTimeout(() => addConnections(data as CommandAddConnections), 100);
|
||||||
break;
|
break;
|
||||||
case Commands.removeConnections:
|
case Commands.removeConnections:
|
||||||
removeConnections(data as CommandRemoveConnections);
|
removeConnections(data as CommandRemoveConnections);
|
||||||
@@ -111,13 +112,17 @@ export const useMapHandlers = (ref: ForwardedRef<MapHandlers>, onSelectionChange
|
|||||||
connections: [],
|
connections: [],
|
||||||
});
|
});
|
||||||
selectSystem(systemId as CommandSelectSystem);
|
selectSystem(systemId as CommandSelectSystem);
|
||||||
}, 100);
|
}, 500);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case Commands.routes:
|
case Commands.routes:
|
||||||
// do nothing here
|
// do nothing here
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case Commands.signaturesUpdated:
|
||||||
|
// do nothing here
|
||||||
|
break;
|
||||||
|
|
||||||
case Commands.linkSignatureToSystem:
|
case Commands.linkSignatureToSystem:
|
||||||
// do nothing here
|
// do nothing here
|
||||||
break;
|
break;
|
||||||
|
|||||||
@@ -0,0 +1,36 @@
|
|||||||
|
import { useState, useCallback, type Dispatch, type SetStateAction } from 'react';
|
||||||
|
|
||||||
|
import { applyNodeChanges, applyEdgeChanges } from '../utils/changes';
|
||||||
|
import { OnNodesChange, Edge, OnEdgesChange, Node } from 'reactflow';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Hook for managing the state of nodes - should only be used for prototyping / simple use cases.
|
||||||
|
*
|
||||||
|
* @public
|
||||||
|
* @param initialNodes
|
||||||
|
* @returns an array [nodes, setNodes, onNodesChange]
|
||||||
|
*/
|
||||||
|
export function useNodesState<NodeType extends Node>(
|
||||||
|
initialNodes: NodeType[],
|
||||||
|
): [NodeType[], Dispatch<SetStateAction<NodeType[]>>, OnNodesChange] {
|
||||||
|
const [nodes, setNodes] = useState(initialNodes);
|
||||||
|
const onNodesChange: OnNodesChange = useCallback(changes => setNodes(nds => applyNodeChanges(changes, nds)), []);
|
||||||
|
|
||||||
|
return [nodes, setNodes, onNodesChange];
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Hook for managing the state of edges - should only be used for prototyping / simple use cases.
|
||||||
|
*
|
||||||
|
* @public
|
||||||
|
* @param initialEdges
|
||||||
|
* @returns an array [edges, setEdges, onEdgesChange]
|
||||||
|
*/
|
||||||
|
export function useEdgesState<EdgeType extends Edge = Edge>(
|
||||||
|
initialEdges: EdgeType[],
|
||||||
|
): [EdgeType[], Dispatch<SetStateAction<EdgeType[]>>, OnEdgesChange] {
|
||||||
|
const [edges, setEdges] = useState(initialEdges);
|
||||||
|
const onEdgesChange: OnEdgesChange = useCallback(changes => setEdges(eds => applyEdgeChanges(changes, eds)), []);
|
||||||
|
|
||||||
|
return [edges, setEdges, onEdgesChange];
|
||||||
|
}
|
||||||
174
assets/js/hooks/Mapper/components/map/utils/changes.ts
Normal file
174
assets/js/hooks/Mapper/components/map/utils/changes.ts
Normal file
@@ -0,0 +1,174 @@
|
|||||||
|
/* eslint-disable @typescript-eslint/no-explicit-any */
|
||||||
|
import { EdgeChange, NodeChange, Node, Edge } from 'reactflow';
|
||||||
|
|
||||||
|
// This function applies changes to nodes or edges that are triggered by React Flow internally.
|
||||||
|
// When you drag a node for example, React Flow will send a position change update.
|
||||||
|
// This function then applies the changes and returns the updated elements.
|
||||||
|
function applyChanges(changes: any[], elements: any[]): any[] {
|
||||||
|
// we need this hack to handle the setNodes and setEdges function of the useReactFlow hook for controlled flows
|
||||||
|
if (changes.some(c => c.type === 'reset')) {
|
||||||
|
return changes.filter(c => c.type === 'reset').map(c => c.item);
|
||||||
|
}
|
||||||
|
|
||||||
|
const updatedElements: any[] = [];
|
||||||
|
// By storing a map of changes for each element, we can a quick lookup as we
|
||||||
|
// iterate over the elements array!
|
||||||
|
const changesMap = new Map<any, any[]>();
|
||||||
|
const addItemChanges: any[] = [];
|
||||||
|
|
||||||
|
for (const change of changes) {
|
||||||
|
if (change.type === 'add') {
|
||||||
|
addItemChanges.push(change);
|
||||||
|
continue;
|
||||||
|
} else if (change.type === 'remove' || change.type === 'replace') {
|
||||||
|
// For a 'remove' change we can safely ignore any other changes queued for
|
||||||
|
// the same element, it's going to be removed anyway!
|
||||||
|
changesMap.set(change.id, [change]);
|
||||||
|
} else {
|
||||||
|
const elementChanges = changesMap.get(change.id);
|
||||||
|
|
||||||
|
if (elementChanges) {
|
||||||
|
// If we have some changes queued already, we can do a mutable update of
|
||||||
|
// that array and save ourselves some copying.
|
||||||
|
elementChanges.push(change);
|
||||||
|
} else {
|
||||||
|
changesMap.set(change.id, [change]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
for (const element of elements) {
|
||||||
|
const changes = changesMap.get(element.id);
|
||||||
|
|
||||||
|
// When there are no changes for an element we can just push it unmodified,
|
||||||
|
// no need to copy it.
|
||||||
|
if (!changes) {
|
||||||
|
updatedElements.push(element);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
// If we have a 'remove' change queued, it'll be the only change in the array
|
||||||
|
if (changes[0].type === 'remove') {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (changes[0].type === 'replace') {
|
||||||
|
updatedElements.push({ ...changes[0].item });
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
// For other types of changes, we want to start with a shallow copy of the
|
||||||
|
// object so React knows this element has changed. Sequential changes will
|
||||||
|
/// each _mutate_ this object, so there's only ever one copy.
|
||||||
|
const updatedElement = { ...element };
|
||||||
|
|
||||||
|
for (const change of changes) {
|
||||||
|
applyChange(change, updatedElement);
|
||||||
|
}
|
||||||
|
|
||||||
|
updatedElements.push(updatedElement);
|
||||||
|
}
|
||||||
|
|
||||||
|
// we need to wait for all changes to be applied before adding new items
|
||||||
|
// to be able to add them at the correct index
|
||||||
|
if (addItemChanges.length) {
|
||||||
|
addItemChanges.forEach(change => {
|
||||||
|
if (change.index !== undefined) {
|
||||||
|
updatedElements.splice(change.index, 0, { ...change.item });
|
||||||
|
} else {
|
||||||
|
updatedElements.push({ ...change.item });
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
return updatedElements;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Applies a single change to an element. This is a *mutable* update.
|
||||||
|
function applyChange(change: any, element: any): any {
|
||||||
|
switch (change.type) {
|
||||||
|
case 'select': {
|
||||||
|
element.selected = change.selected;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
case 'position': {
|
||||||
|
if (typeof change.position !== 'undefined') {
|
||||||
|
element.position = change.position;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (typeof change.dragging !== 'undefined') {
|
||||||
|
element.dragging = change.dragging;
|
||||||
|
}
|
||||||
|
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
case 'dimensions': {
|
||||||
|
if (typeof change.dimensions !== 'undefined') {
|
||||||
|
element.measured ??= {};
|
||||||
|
element.measured.width = change.dimensions.width;
|
||||||
|
element.measured.height = change.dimensions.height;
|
||||||
|
|
||||||
|
if (change.setAttributes) {
|
||||||
|
element.width = change.dimensions.width;
|
||||||
|
element.height = change.dimensions.height;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (typeof change.resizing === 'boolean') {
|
||||||
|
element.resizing = change.resizing;
|
||||||
|
}
|
||||||
|
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Drop in function that applies node changes to an array of nodes.
|
||||||
|
* @public
|
||||||
|
* @remarks Various events on the <ReactFlow /> component can produce an {@link NodeChange} that describes how to update the edges of your flow in some way.
|
||||||
|
If you don't need any custom behaviour, this util can be used to take an array of these changes and apply them to your edges.
|
||||||
|
* @param changes - Array of changes to apply
|
||||||
|
* @param nodes - Array of nodes to apply the changes to
|
||||||
|
* @returns Array of updated nodes
|
||||||
|
* @example
|
||||||
|
* const onNodesChange = useCallback(
|
||||||
|
(changes) => {
|
||||||
|
setNodes((oldNodes) => applyNodeChanges(changes, oldNodes));
|
||||||
|
},
|
||||||
|
[setNodes],
|
||||||
|
);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<ReactFLow nodes={nodes} edges={edges} onNodesChange={onNodesChange} />
|
||||||
|
);
|
||||||
|
*/
|
||||||
|
export function applyNodeChanges<NodeType extends Node = Node>(changes: NodeChange[], nodes: NodeType[]): NodeType[] {
|
||||||
|
return applyChanges(changes, nodes) as NodeType[];
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Drop in function that applies edge changes to an array of edges.
|
||||||
|
* @public
|
||||||
|
* @remarks Various events on the <ReactFlow /> component can produce an {@link EdgeChange} that describes how to update the edges of your flow in some way.
|
||||||
|
If you don't need any custom behaviour, this util can be used to take an array of these changes and apply them to your edges.
|
||||||
|
* @param changes - Array of changes to apply
|
||||||
|
* @param edges - Array of edge to apply the changes to
|
||||||
|
* @returns Array of updated edges
|
||||||
|
* @example
|
||||||
|
* const onEdgesChange = useCallback(
|
||||||
|
(changes) => {
|
||||||
|
setEdges((oldEdges) => applyEdgeChanges(changes, oldEdges));
|
||||||
|
},
|
||||||
|
[setEdges],
|
||||||
|
);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<ReactFlow nodes={nodes} edges={edges} onEdgesChange={onEdgesChange} />
|
||||||
|
);
|
||||||
|
*/
|
||||||
|
export function applyEdgeChanges<EdgeType extends Edge = Edge>(changes: EdgeChange[], edges: EdgeType[]): EdgeType[] {
|
||||||
|
return applyChanges(changes, edges) as EdgeType[];
|
||||||
|
}
|
||||||
@@ -48,6 +48,7 @@ const restoreWindowsFromLS = (): WidgetGridItem[] => {
|
|||||||
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
||||||
const raw = localStorage.getItem(SESSION_KEY.windows);
|
const raw = localStorage.getItem(SESSION_KEY.windows);
|
||||||
if (!raw) {
|
if (!raw) {
|
||||||
|
console.warn('No windows found in local storage!!');
|
||||||
return DEFAULT_WINDOWS;
|
return DEFAULT_WINDOWS;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -63,7 +64,7 @@ const restoreWindowsFromLS = (): WidgetGridItem[] => {
|
|||||||
};
|
};
|
||||||
|
|
||||||
export const MapInterface = () => {
|
export const MapInterface = () => {
|
||||||
const [items, setItems] = useState<WidgetGridItem[]>(restoreWindowsFromLS());
|
const [items, setItems] = useState<WidgetGridItem[]>(restoreWindowsFromLS);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<WidgetsGrid
|
<WidgetsGrid
|
||||||
|
|||||||
@@ -79,7 +79,7 @@ export const SystemCustomLabelDialog = ({ systemId, visible, setVisible }: Syste
|
|||||||
|
|
||||||
// @ts-ignore
|
// @ts-ignore
|
||||||
const handleInput = useCallback(e => {
|
const handleInput = useCallback(e => {
|
||||||
e.target.value = e.target.value.toUpperCase().replace(/[^A-Z0-9[\](){}]/g, '');
|
e.target.value = e.target.value.toUpperCase().replace(/[^A-Z0-9\-[\](){}]/g, '');
|
||||||
}, []);
|
}, []);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
|||||||
@@ -10,13 +10,17 @@ import {
|
|||||||
Setting,
|
Setting,
|
||||||
COSMIC_SIGNATURE,
|
COSMIC_SIGNATURE,
|
||||||
} from '@/hooks/Mapper/components/mapInterface/widgets/SystemSignatures/SystemSignatureSettingsDialog';
|
} from '@/hooks/Mapper/components/mapInterface/widgets/SystemSignatures/SystemSignatureSettingsDialog';
|
||||||
|
import { SignatureGroup } from '@/hooks/Mapper/types';
|
||||||
|
|
||||||
interface SystemLinkSignatureDialogProps {
|
interface SystemLinkSignatureDialogProps {
|
||||||
data: CommandLinkSignatureToSystem;
|
data: CommandLinkSignatureToSystem;
|
||||||
setVisible: (visible: boolean) => void;
|
setVisible: (visible: boolean) => void;
|
||||||
}
|
}
|
||||||
|
|
||||||
const signatureSettings: Setting[] = [{ key: COSMIC_SIGNATURE, name: 'Show Cosmic Signatures', value: true }];
|
const signatureSettings: Setting[] = [
|
||||||
|
{ key: COSMIC_SIGNATURE, name: 'Show Cosmic Signatures', value: true },
|
||||||
|
{ key: SignatureGroup.Wormhole, name: 'Wormhole', value: true },
|
||||||
|
];
|
||||||
|
|
||||||
export const SystemLinkSignatureDialog = ({ data, setVisible }: SystemLinkSignatureDialogProps) => {
|
export const SystemLinkSignatureDialog = ({ data, setVisible }: SystemLinkSignatureDialogProps) => {
|
||||||
const { outCommand } = useMapRootState();
|
const { outCommand } = useMapRootState();
|
||||||
@@ -59,6 +63,7 @@ export const SystemLinkSignatureDialog = ({ data, setVisible }: SystemLinkSignat
|
|||||||
>
|
>
|
||||||
<SystemSignaturesContent
|
<SystemSignaturesContent
|
||||||
systemId={`${data.solar_system_source}`}
|
systemId={`${data.solar_system_source}`}
|
||||||
|
hideLinkedSignatures
|
||||||
settings={signatureSettings}
|
settings={signatureSettings}
|
||||||
onSelect={handleSelect}
|
onSelect={handleSelect}
|
||||||
selectable={true}
|
selectable={true}
|
||||||
|
|||||||
@@ -90,7 +90,7 @@ export const SystemSettingsDialog = ({ systemId, visible, setVisible }: SystemSe
|
|||||||
}, []);
|
}, []);
|
||||||
|
|
||||||
const handleInput = useCallback((e: any) => {
|
const handleInput = useCallback((e: any) => {
|
||||||
e.target.value = e.target.value.toUpperCase().replace(/[^A-Z0-9[\](){}]/g, '');
|
e.target.value = e.target.value.toUpperCase().replace(/[^A-Z0-9\-[\](){}]/g, '');
|
||||||
}, []);
|
}, []);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ import { SystemViewStandalone, WdTooltip, WdTooltipHandlers } from '@/hooks/Mapp
|
|||||||
import { getBackgroundClass, getShapeClass } from '@/hooks/Mapper/components/map/helpers';
|
import { getBackgroundClass, getShapeClass } from '@/hooks/Mapper/components/map/helpers';
|
||||||
import { MouseEvent, useCallback, useRef, useState } from 'react';
|
import { MouseEvent, useCallback, useRef, useState } from 'react';
|
||||||
import { Commands } from '@/hooks/Mapper/types';
|
import { Commands } from '@/hooks/Mapper/types';
|
||||||
import { useMapRootState } from '@/hooks/Mapper/mapRootProvider';
|
import { emitMapEvent } from '@/hooks/Mapper/events';
|
||||||
|
|
||||||
export type RouteSystemProps = {
|
export type RouteSystemProps = {
|
||||||
destination: number;
|
destination: number;
|
||||||
@@ -88,11 +88,10 @@ export interface RoutesListProps {
|
|||||||
|
|
||||||
export const RoutesList = ({ data, onContextMenu }: RoutesListProps) => {
|
export const RoutesList = ({ data, onContextMenu }: RoutesListProps) => {
|
||||||
const [selected, setSelected] = useState<number | null>(null);
|
const [selected, setSelected] = useState<number | null>(null);
|
||||||
const { mapRef } = useMapRootState();
|
|
||||||
|
|
||||||
const handleClick = useCallback(
|
const handleClick = useCallback(
|
||||||
(systemId: number) => mapRef.current?.command(Commands.centerSystem, systemId.toString()),
|
(systemId: number) => emitMapEvent({ name: Commands.centerSystem, data: systemId?.toString() }),
|
||||||
[mapRef],
|
[],
|
||||||
);
|
);
|
||||||
|
|
||||||
if (!data.has_connection) {
|
if (!data.has_connection) {
|
||||||
|
|||||||
@@ -30,7 +30,6 @@ const sortByDist = (a: Route, b: Route) => {
|
|||||||
export const RoutesWidgetContent = () => {
|
export const RoutesWidgetContent = () => {
|
||||||
const {
|
const {
|
||||||
data: { selectedSystems, hubs = [], systems, routes },
|
data: { selectedSystems, hubs = [], systems, routes },
|
||||||
mapRef,
|
|
||||||
outCommand,
|
outCommand,
|
||||||
} = useMapRootState();
|
} = useMapRootState();
|
||||||
|
|
||||||
@@ -42,7 +41,6 @@ export const RoutesWidgetContent = () => {
|
|||||||
const { open, ...systemCtxProps } = useContextMenuSystemInfoHandlers({
|
const { open, ...systemCtxProps } = useContextMenuSystemInfoHandlers({
|
||||||
outCommand,
|
outCommand,
|
||||||
hubs,
|
hubs,
|
||||||
mapRef,
|
|
||||||
});
|
});
|
||||||
|
|
||||||
const preparedHubs = useMemo(() => {
|
const preparedHubs = useMemo(() => {
|
||||||
|
|||||||
@@ -13,9 +13,10 @@ export const SystemInfoContent = ({ systemId }: SystemInfoContentProps) => {
|
|||||||
data: { systems, wormholesData },
|
data: { systems, wormholesData },
|
||||||
} = useMapRootState();
|
} = useMapRootState();
|
||||||
|
|
||||||
const sys = getSystemById(systems, systemId)!;
|
const sys = getSystemById(systems, systemId)! || {};
|
||||||
const { description } = sys;
|
const { description } = sys;
|
||||||
const { system_class, region_name, constellation_name, statics, effect_name, effect_power } = sys.system_static_info;
|
const { system_class, region_name, constellation_name, statics, effect_name, effect_power } =
|
||||||
|
sys.system_static_info || {};
|
||||||
const isWH = isWormholeSpace(system_class);
|
const isWH = isWormholeSpace(system_class);
|
||||||
const sortedStatics = useMemo(() => sortWHClasses(wormholesData, statics), [wormholesData, statics]);
|
const sortedStatics = useMemo(() => sortWHClasses(wormholesData, statics), [wormholesData, statics]);
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,79 @@
|
|||||||
|
.verticalTabsContainer {
|
||||||
|
display: flex;
|
||||||
|
width: 100%;
|
||||||
|
min-height: 300px;
|
||||||
|
|
||||||
|
:global {
|
||||||
|
.p-tabview {
|
||||||
|
width: 100%;
|
||||||
|
display: flex;
|
||||||
|
align-items: flex-start;
|
||||||
|
}
|
||||||
|
|
||||||
|
.p-tabview-panels {
|
||||||
|
padding: 6px 1rem !important;
|
||||||
|
flex-grow: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.p-tabview-nav-container {
|
||||||
|
border-right: none;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.p-tabview-nav {
|
||||||
|
flex-direction: column;
|
||||||
|
width: 150px;
|
||||||
|
min-height: 100%;
|
||||||
|
border: none;
|
||||||
|
|
||||||
|
li {
|
||||||
|
width: 100%;
|
||||||
|
border-right: 4px solid var(--surface-hover);
|
||||||
|
background-color: var(--surface-card);
|
||||||
|
|
||||||
|
transition:
|
||||||
|
background-color 200ms,
|
||||||
|
border-right-color 200ms;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
background-color: var(--surface-hover);
|
||||||
|
border-right: 4px solid var(--surface-100);
|
||||||
|
}
|
||||||
|
|
||||||
|
.p-tabview-nav-link {
|
||||||
|
transition: color 200ms;
|
||||||
|
|
||||||
|
justify-content: flex-end;
|
||||||
|
padding: 10px;
|
||||||
|
//background-color: var(--surface-card);
|
||||||
|
background-color: initial;
|
||||||
|
border: none;
|
||||||
|
color: var(--gray-400);
|
||||||
|
|
||||||
|
border-radius: initial;
|
||||||
|
font-weight: 400;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.p-tabview-selected {
|
||||||
|
background-color: var(--surface-50);
|
||||||
|
border-right: 4px solid var(--primary-color);
|
||||||
|
|
||||||
|
.p-tabview-nav-link {
|
||||||
|
font-weight: 600;
|
||||||
|
color: var(--primary-color);
|
||||||
|
}
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
//background-color: var(--surface-hover);
|
||||||
|
border-right: 4px solid var(--primary-color);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.p-tabview-panel {
|
||||||
|
flex-grow: 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -2,8 +2,10 @@ import { Dialog } from 'primereact/dialog';
|
|||||||
import { useCallback, useState } from 'react';
|
import { useCallback, useState } from 'react';
|
||||||
import { Button } from 'primereact/button';
|
import { Button } from 'primereact/button';
|
||||||
import { Checkbox } from 'primereact/checkbox';
|
import { Checkbox } from 'primereact/checkbox';
|
||||||
|
import { TabPanel, TabView } from 'primereact/tabview';
|
||||||
|
import styles from './SystemSignatureSettingsDialog.module.scss';
|
||||||
|
|
||||||
export type Setting = { key: string; name: string; value: boolean };
|
export type Setting = { key: string; name: string; value: boolean; isFilter?: boolean };
|
||||||
|
|
||||||
export const COSMIC_SIGNATURE = 'Cosmic Signature';
|
export const COSMIC_SIGNATURE = 'Cosmic Signature';
|
||||||
export const COSMIC_ANOMALY = 'Cosmic Anomaly';
|
export const COSMIC_ANOMALY = 'Cosmic Anomaly';
|
||||||
@@ -24,8 +26,12 @@ export const SystemSignatureSettingsDialog = ({
|
|||||||
onSave,
|
onSave,
|
||||||
onCancel,
|
onCancel,
|
||||||
}: SystemSignatureSettingsDialogProps) => {
|
}: SystemSignatureSettingsDialogProps) => {
|
||||||
|
const [activeIndex, setActiveIndex] = useState(0);
|
||||||
const [settings, setSettings] = useState<Setting[]>(defaultSettings);
|
const [settings, setSettings] = useState<Setting[]>(defaultSettings);
|
||||||
|
|
||||||
|
const filterSettings = settings.filter(setting => setting.isFilter);
|
||||||
|
const userSettings = settings.filter(setting => !setting.isFilter);
|
||||||
|
|
||||||
const handleSettingsChange = (key: string) => {
|
const handleSettingsChange = (key: string) => {
|
||||||
setSettings(prevState => prevState.map(item => (item.key === key ? { ...item, value: !item.value } : item)));
|
setSettings(prevState => prevState.map(item => (item.key === key ? { ...item, value: !item.value } : item)));
|
||||||
};
|
};
|
||||||
@@ -35,23 +41,53 @@ export const SystemSignatureSettingsDialog = ({
|
|||||||
}, [onSave, settings]);
|
}, [onSave, settings]);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Dialog header="Filter signatures" visible draggable={false} style={{ width: '300px' }} onHide={onCancel}>
|
<Dialog header="System Signatures Settings" visible={true} onHide={onCancel} className="w-full max-w-lg">
|
||||||
<div className="flex flex-col gap-3">
|
<div className="flex flex-col gap-3">
|
||||||
<div className="flex flex-col gap-2">
|
<div className="flex flex-col gap-2">
|
||||||
{settings.map(setting => {
|
<div className={styles.verticalTabsContainer}>
|
||||||
return (
|
<TabView
|
||||||
<div key={setting.key} className="flex items-center">
|
activeIndex={activeIndex}
|
||||||
<Checkbox
|
onTabChange={e => setActiveIndex(e.index)}
|
||||||
inputId={setting.key}
|
className={styles.verticalTabView}
|
||||||
checked={setting.value}
|
>
|
||||||
onChange={() => handleSettingsChange(setting.key)}
|
<TabPanel header="Filters" headerClassName={styles.verticalTabHeader}>
|
||||||
/>
|
<div className="w-full h-full flex flex-col gap-1">
|
||||||
<label htmlFor={setting.key} className="ml-2">
|
{filterSettings.map(setting => {
|
||||||
{setting.name}
|
return (
|
||||||
</label>
|
<div key={setting.key} className="flex items-center">
|
||||||
</div>
|
<Checkbox
|
||||||
);
|
inputId={setting.key}
|
||||||
})}
|
checked={setting.value}
|
||||||
|
onChange={() => handleSettingsChange(setting.key)}
|
||||||
|
/>
|
||||||
|
<label htmlFor={setting.key} className="ml-2">
|
||||||
|
{setting.name}
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
})}
|
||||||
|
</div>
|
||||||
|
</TabPanel>
|
||||||
|
<TabPanel header="User Interface" headerClassName={styles.verticalTabHeader}>
|
||||||
|
<div className="w-full h-full flex flex-col gap-1">
|
||||||
|
{userSettings.map(setting => {
|
||||||
|
return (
|
||||||
|
<div key={setting.key} className="flex items-center">
|
||||||
|
<Checkbox
|
||||||
|
inputId={setting.key}
|
||||||
|
checked={setting.value}
|
||||||
|
onChange={() => handleSettingsChange(setting.key)}
|
||||||
|
/>
|
||||||
|
<label htmlFor={setting.key} className="ml-2">
|
||||||
|
{setting.name}
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
})}
|
||||||
|
</div>
|
||||||
|
</TabPanel>
|
||||||
|
</TabView>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className="flex gap-2 justify-end">
|
<div className="flex gap-2 justify-end">
|
||||||
|
|||||||
@@ -12,6 +12,7 @@ import {
|
|||||||
SHIP,
|
SHIP,
|
||||||
DRONE,
|
DRONE,
|
||||||
} from './SystemSignatureSettingsDialog';
|
} from './SystemSignatureSettingsDialog';
|
||||||
|
import { SignatureGroup } from '@/hooks/Mapper/types';
|
||||||
|
|
||||||
import React, { useCallback, useEffect, useState } from 'react';
|
import React, { useCallback, useEffect, useState } from 'react';
|
||||||
|
|
||||||
@@ -19,17 +20,27 @@ import { PrimeIcons } from 'primereact/api';
|
|||||||
|
|
||||||
import { useMapRootState } from '@/hooks/Mapper/mapRootProvider';
|
import { useMapRootState } from '@/hooks/Mapper/mapRootProvider';
|
||||||
|
|
||||||
const settings: Setting[] = [
|
const SIGNATURE_SETTINGS_KEY = 'wanderer_system_signature_settings_v4_1';
|
||||||
{ key: COSMIC_ANOMALY, name: 'Show Anomalies', value: true },
|
export const SHOW_DESCRIPTION_COLUMN_SETTING = 'show_description_column_setting';
|
||||||
{ key: COSMIC_SIGNATURE, name: 'Show Cosmic Signatures', value: true },
|
export const SHOW_INSERTED_COLUMN_SETTING = 'show_inserted_column_setting';
|
||||||
{ key: DEPLOYABLE, name: 'Show Deployables', value: true },
|
|
||||||
{ key: STRUCTURE, name: 'Show Structures', value: true },
|
|
||||||
{ key: STARBASE, name: 'Show Starbase', value: true },
|
|
||||||
{ key: SHIP, name: 'Show Ships', value: true },
|
|
||||||
{ key: DRONE, name: 'Show Drones And Charges', value: true },
|
|
||||||
];
|
|
||||||
|
|
||||||
const SIGNATURE_SETTINGS_KEY = 'wanderer_system_signature_settings';
|
const settings: Setting[] = [
|
||||||
|
{ key: SHOW_INSERTED_COLUMN_SETTING, name: 'Show Inserted Column', value: false, isFilter: false },
|
||||||
|
{ key: SHOW_DESCRIPTION_COLUMN_SETTING, name: 'Show Description Column', value: false, isFilter: false },
|
||||||
|
{ key: COSMIC_ANOMALY, name: 'Show Anomalies', value: true, isFilter: true },
|
||||||
|
{ key: COSMIC_SIGNATURE, name: 'Show Cosmic Signatures', value: true, isFilter: true },
|
||||||
|
{ key: DEPLOYABLE, name: 'Show Deployables', value: true, isFilter: true },
|
||||||
|
{ key: STRUCTURE, name: 'Show Structures', value: true, isFilter: true },
|
||||||
|
{ key: STARBASE, name: 'Show Starbase', value: true, isFilter: true },
|
||||||
|
{ key: SHIP, name: 'Show Ships', value: true, isFilter: true },
|
||||||
|
{ key: DRONE, name: 'Show Drones And Charges', value: true, isFilter: true },
|
||||||
|
{ key: SignatureGroup.Wormhole, name: 'Show Wormholes', value: true, isFilter: true },
|
||||||
|
{ key: SignatureGroup.RelicSite, name: 'Show Relic Sites', value: true, isFilter: true },
|
||||||
|
{ key: SignatureGroup.DataSite, name: 'Show Data Sites', value: true, isFilter: true },
|
||||||
|
{ key: SignatureGroup.OreSite, name: 'Show Ore Sites', value: true, isFilter: true },
|
||||||
|
{ key: SignatureGroup.GasSite, name: 'Show Gas Sites', value: true, isFilter: true },
|
||||||
|
{ key: SignatureGroup.CombatSite, name: 'Show Combat Sites', value: true, isFilter: true },
|
||||||
|
];
|
||||||
|
|
||||||
const defaultSettings = () => {
|
const defaultSettings = () => {
|
||||||
return [...settings];
|
return [...settings];
|
||||||
@@ -91,8 +102,7 @@ export const SystemSignatures = () => {
|
|||||||
</InfoDrawer>
|
</InfoDrawer>
|
||||||
<InfoDrawer title={<b className="text-slate-50">How to delete?</b>}>
|
<InfoDrawer title={<b className="text-slate-50">How to delete?</b>}>
|
||||||
For delete any signature first of all you need select before
|
For delete any signature first of all you need select before
|
||||||
<br /> and then use <b className="text-sky-500">Del</b> or{' '}
|
<br /> and then use <b className="text-sky-500">Backspace</b>
|
||||||
<b className="text-sky-500">Backspace</b>
|
|
||||||
</InfoDrawer>
|
</InfoDrawer>
|
||||||
</div>
|
</div>
|
||||||
) as React.ReactNode,
|
) as React.ReactNode,
|
||||||
|
|||||||
@@ -1,10 +1,11 @@
|
|||||||
import { useMapRootState } from '@/hooks/Mapper/mapRootProvider';
|
import { useMapRootState } from '@/hooks/Mapper/mapRootProvider';
|
||||||
import { useClipboard } from '@/hooks/Mapper/hooks/useClipboard';
|
import { useClipboard } from '@/hooks/Mapper/hooks/useClipboard';
|
||||||
import { parseSignatures } from '@/hooks/Mapper/helpers';
|
import { parseSignatures } from '@/hooks/Mapper/helpers';
|
||||||
import { OutCommand } from '@/hooks/Mapper/types/mapHandlers.ts';
|
import { Commands, OutCommand } from '@/hooks/Mapper/types/mapHandlers.ts';
|
||||||
import { WdTooltip, WdTooltipHandlers } from '@/hooks/Mapper/components/ui-kit';
|
import { WdTooltip, WdTooltipHandlers } from '@/hooks/Mapper/components/ui-kit';
|
||||||
|
import { GROUPS_LIST } from '@/hooks/Mapper/components/mapInterface/widgets/SystemSignatures/constants.ts';
|
||||||
|
|
||||||
import { DataTable, DataTableRowMouseEvent, SortOrder } from 'primereact/datatable';
|
import { DataTable, DataTableRowClickEvent, DataTableRowMouseEvent, SortOrder } from 'primereact/datatable';
|
||||||
import { Column } from 'primereact/column';
|
import { Column } from 'primereact/column';
|
||||||
import { useCallback, useEffect, useMemo, useRef, useState } from 'react';
|
import { useCallback, useEffect, useMemo, useRef, useState } from 'react';
|
||||||
import useRefState from 'react-usestateref';
|
import useRefState from 'react-usestateref';
|
||||||
@@ -21,14 +22,22 @@ import {
|
|||||||
getRowColorByTimeLeft,
|
getRowColorByTimeLeft,
|
||||||
} from '@/hooks/Mapper/components/mapInterface/widgets/SystemSignatures/helpers';
|
} from '@/hooks/Mapper/components/mapInterface/widgets/SystemSignatures/helpers';
|
||||||
import {
|
import {
|
||||||
|
renderDescription,
|
||||||
renderIcon,
|
renderIcon,
|
||||||
renderName,
|
renderInfoColumn,
|
||||||
renderTimeLeft,
|
renderInsertedTimeLeft,
|
||||||
renderLinkedSystem,
|
renderUpdatedTimeLeft,
|
||||||
} from '@/hooks/Mapper/components/mapInterface/widgets/SystemSignatures/renders';
|
} from '@/hooks/Mapper/components/mapInterface/widgets/SystemSignatures/renders';
|
||||||
// import { PrimeIcons } from 'primereact/api';
|
|
||||||
import useLocalStorageState from 'use-local-storage-state';
|
import useLocalStorageState from 'use-local-storage-state';
|
||||||
|
import { PrimeIcons } from 'primereact/api';
|
||||||
|
import { SignatureSettings } from '@/hooks/Mapper/components/mapRootContent/components/SignatureSettings';
|
||||||
|
import { useMapEventListener } from '@/hooks/Mapper/events';
|
||||||
|
import { WdTooltipWrapper } from '@/hooks/Mapper/components/ui-kit/WdTooltipWrapper';
|
||||||
|
import { COSMIC_SIGNATURE } from '@/hooks/Mapper/components/mapInterface/widgets/SystemSignatures/SystemSignatureSettingsDialog';
|
||||||
|
import {
|
||||||
|
SHOW_DESCRIPTION_COLUMN_SETTING,
|
||||||
|
SHOW_INSERTED_COLUMN_SETTING,
|
||||||
|
} from '@/hooks/Mapper/components/mapInterface/widgets/SystemSignatures';
|
||||||
type SystemSignaturesSortSettings = {
|
type SystemSignaturesSortSettings = {
|
||||||
sortField: string;
|
sortField: string;
|
||||||
sortOrder: SortOrder;
|
sortOrder: SortOrder;
|
||||||
@@ -42,10 +51,17 @@ const SORT_DEFAULT_VALUES: SystemSignaturesSortSettings = {
|
|||||||
interface SystemSignaturesContentProps {
|
interface SystemSignaturesContentProps {
|
||||||
systemId: string;
|
systemId: string;
|
||||||
settings: Setting[];
|
settings: Setting[];
|
||||||
|
hideLinkedSignatures?: boolean;
|
||||||
selectable?: boolean;
|
selectable?: boolean;
|
||||||
onSelect?: (signature: SystemSignature) => void;
|
onSelect?: (signature: SystemSignature) => void;
|
||||||
}
|
}
|
||||||
export const SystemSignaturesContent = ({ systemId, settings, selectable, onSelect }: SystemSignaturesContentProps) => {
|
export const SystemSignaturesContent = ({
|
||||||
|
systemId,
|
||||||
|
settings,
|
||||||
|
hideLinkedSignatures,
|
||||||
|
selectable,
|
||||||
|
onSelect,
|
||||||
|
}: SystemSignaturesContentProps) => {
|
||||||
const { outCommand } = useMapRootState();
|
const { outCommand } = useMapRootState();
|
||||||
|
|
||||||
const [signatures, setSignatures, signaturesRef] = useRefState<SystemSignature[]>([]);
|
const [signatures, setSignatures, signaturesRef] = useRefState<SystemSignature[]>([]);
|
||||||
@@ -53,6 +69,7 @@ export const SystemSignaturesContent = ({ systemId, settings, selectable, onSele
|
|||||||
const [nameColumnWidth, setNameColumnWidth] = useState('auto');
|
const [nameColumnWidth, setNameColumnWidth] = useState('auto');
|
||||||
const [parsedSignatures, setParsedSignatures] = useState<SystemSignature[]>([]);
|
const [parsedSignatures, setParsedSignatures] = useState<SystemSignature[]>([]);
|
||||||
const [askUser, setAskUser] = useState(false);
|
const [askUser, setAskUser] = useState(false);
|
||||||
|
const [selectedSignature, setSelectedSignature] = useState<SystemSignature | null>(null);
|
||||||
|
|
||||||
const [hoveredSig, setHoveredSig] = useState<SystemSignature | null>(null);
|
const [hoveredSig, setHoveredSig] = useState<SystemSignature | null>(null);
|
||||||
|
|
||||||
@@ -77,13 +94,41 @@ export const SystemSignaturesContent = ({ systemId, settings, selectable, onSele
|
|||||||
}
|
}
|
||||||
}, []);
|
}, []);
|
||||||
|
|
||||||
|
const groupSettings = useMemo(() => settings.filter(s => (GROUPS_LIST as string[]).includes(s.key)), [settings]);
|
||||||
|
const showDescriptionColumn = useMemo(
|
||||||
|
() => settings.find(s => s.key === SHOW_DESCRIPTION_COLUMN_SETTING)?.value,
|
||||||
|
[settings],
|
||||||
|
);
|
||||||
|
|
||||||
|
const showInsertedColumn = useMemo(
|
||||||
|
() => settings.find(s => s.key === SHOW_INSERTED_COLUMN_SETTING)?.value,
|
||||||
|
[settings],
|
||||||
|
);
|
||||||
|
|
||||||
const filteredSignatures = useMemo(() => {
|
const filteredSignatures = useMemo(() => {
|
||||||
return signatures
|
return signatures
|
||||||
.filter(x => settings.find(y => y.key === x.kind)?.value)
|
.filter(x => {
|
||||||
|
if (hideLinkedSignatures && !!x.linked_system) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
const isCosmicSignature = x.kind === COSMIC_SIGNATURE;
|
||||||
|
|
||||||
|
if (isCosmicSignature) {
|
||||||
|
const showCosmicSignatures = settings.find(y => y.key === COSMIC_SIGNATURE)?.value;
|
||||||
|
if (showCosmicSignatures) {
|
||||||
|
return !x.group || groupSettings.find(y => y.key === x.group)?.value;
|
||||||
|
} else {
|
||||||
|
return !!x.group && groupSettings.find(y => y.key === x.group)?.value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return settings.find(y => y.key === x.kind)?.value;
|
||||||
|
})
|
||||||
.sort((a, b) => {
|
.sort((a, b) => {
|
||||||
return new Date(b.updated_at || 0).getTime() - new Date(a.updated_at || 0).getTime();
|
return new Date(b.updated_at || 0).getTime() - new Date(a.updated_at || 0).getTime();
|
||||||
});
|
});
|
||||||
}, [signatures, settings]);
|
}, [signatures, settings, groupSettings, hideLinkedSignatures]);
|
||||||
|
|
||||||
const handleGetSignatures = useCallback(async () => {
|
const handleGetSignatures = useCallback(async () => {
|
||||||
const { signatures } = await outCommand({
|
const { signatures } = await outCommand({
|
||||||
@@ -95,26 +140,6 @@ export const SystemSignaturesContent = ({ systemId, settings, selectable, onSele
|
|||||||
setSignatures(signatures);
|
setSignatures(signatures);
|
||||||
}, [outCommand, systemId]);
|
}, [outCommand, systemId]);
|
||||||
|
|
||||||
// const updateSignatures = useCallback(
|
|
||||||
// async (newSignatures: SystemSignature[], updateOnly: boolean) => {
|
|
||||||
// const { added, updated, removed } = getActualSigs(signaturesRef.current, newSignatures, updateOnly);
|
|
||||||
|
|
||||||
// const { signatures: updatedSignatures } = await outCommand({
|
|
||||||
// type: OutCommand.updateSignatures,
|
|
||||||
// data: {
|
|
||||||
// system_id: systemId,
|
|
||||||
// added,
|
|
||||||
// updated,
|
|
||||||
// removed,
|
|
||||||
// },
|
|
||||||
// });
|
|
||||||
|
|
||||||
// setSignatures(() => updatedSignatures);
|
|
||||||
// setSelectedSignatures([]);
|
|
||||||
// },
|
|
||||||
// [outCommand, systemId],
|
|
||||||
// );
|
|
||||||
|
|
||||||
const handleUpdateSignatures = useCallback(
|
const handleUpdateSignatures = useCallback(
|
||||||
async (newSignatures: SystemSignature[], updateOnly: boolean) => {
|
async (newSignatures: SystemSignature[], updateOnly: boolean) => {
|
||||||
const { added, updated, removed } = getActualSigs(signaturesRef.current, newSignatures, updateOnly);
|
const { added, updated, removed } = getActualSigs(signaturesRef.current, newSignatures, updateOnly);
|
||||||
@@ -164,6 +189,8 @@ export const SystemSignaturesContent = ({ systemId, settings, selectable, onSele
|
|||||||
}, [parsedSignatures, handleUpdateSignatures]);
|
}, [parsedSignatures, handleUpdateSignatures]);
|
||||||
|
|
||||||
const handleSelectSignatures = useCallback(
|
const handleSelectSignatures = useCallback(
|
||||||
|
// TODO still will be good to define types if we use typescript
|
||||||
|
// @ts-ignore
|
||||||
e => {
|
e => {
|
||||||
if (selectable) {
|
if (selectable) {
|
||||||
onSelect?.(e.value);
|
onSelect?.(e.value);
|
||||||
@@ -176,7 +203,7 @@ export const SystemSignaturesContent = ({ systemId, settings, selectable, onSele
|
|||||||
|
|
||||||
useHotkey(true, ['a'], handleSelectAll);
|
useHotkey(true, ['a'], handleSelectAll);
|
||||||
|
|
||||||
useHotkey(false, ['Backspace', 'Delete'], handleDeleteSelected);
|
useHotkey(false, ['Backspace'], handleDeleteSelected);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (selectable) {
|
if (selectable) {
|
||||||
@@ -212,6 +239,18 @@ export const SystemSignaturesContent = ({ systemId, settings, selectable, onSele
|
|||||||
handleGetSignatures();
|
handleGetSignatures();
|
||||||
}, [systemId]);
|
}, [systemId]);
|
||||||
|
|
||||||
|
useMapEventListener(event => {
|
||||||
|
switch (event.name) {
|
||||||
|
case Commands.signaturesUpdated:
|
||||||
|
if (event.data?.toString() !== systemId.toString()) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
handleGetSignatures();
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
const observer = new ResizeObserver(handleResize);
|
const observer = new ResizeObserver(handleResize);
|
||||||
if (tableRef.current) {
|
if (tableRef.current) {
|
||||||
@@ -240,13 +279,22 @@ export const SystemSignaturesContent = ({ systemId, settings, selectable, onSele
|
|||||||
setHoveredSig(null);
|
setHoveredSig(null);
|
||||||
}, []);
|
}, []);
|
||||||
|
|
||||||
// const renderToolbar = (/*row: SystemSignature*/) => {
|
const renderToolbar = (/*row: SystemSignature*/) => {
|
||||||
// return (
|
return (
|
||||||
// <div className="flex justify-end items-center gap-2">
|
<div className="flex justify-end items-center gap-2 mr-[4px]">
|
||||||
// <span className={clsx(PrimeIcons.PENCIL, 'text-[10px]')}></span>
|
<WdTooltipWrapper content="To Edit Signature do double click">
|
||||||
// </div>
|
<span className={clsx(PrimeIcons.PENCIL, 'text-[10px]')}></span>
|
||||||
// );
|
</WdTooltipWrapper>
|
||||||
// };
|
</div>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
const [showSignatureSettings, setShowSignatureSettings] = useState(false);
|
||||||
|
|
||||||
|
const handleRowClick = (e: DataTableRowClickEvent) => {
|
||||||
|
setSelectedSignature(e.data as SystemSignature);
|
||||||
|
setShowSignatureSettings(true);
|
||||||
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
@@ -257,6 +305,7 @@ export const SystemSignaturesContent = ({ systemId, settings, selectable, onSele
|
|||||||
</div>
|
</div>
|
||||||
) : (
|
) : (
|
||||||
<>
|
<>
|
||||||
|
{/* @ts-ignore */}
|
||||||
<DataTable
|
<DataTable
|
||||||
className={classes.Table}
|
className={classes.Table}
|
||||||
value={filteredSignatures}
|
value={filteredSignatures}
|
||||||
@@ -268,6 +317,7 @@ export const SystemSignaturesContent = ({ systemId, settings, selectable, onSele
|
|||||||
dataKey="eve_id"
|
dataKey="eve_id"
|
||||||
tableClassName="w-full select-none"
|
tableClassName="w-full select-none"
|
||||||
resizableColumns={false}
|
resizableColumns={false}
|
||||||
|
onRowDoubleClick={handleRowClick}
|
||||||
rowHover
|
rowHover
|
||||||
selectAll
|
selectAll
|
||||||
sortField={sortSettings.sortField}
|
sortField={sortSettings.sortField}
|
||||||
@@ -291,7 +341,7 @@ export const SystemSignaturesContent = ({ systemId, settings, selectable, onSele
|
|||||||
<Column
|
<Column
|
||||||
bodyClassName="p-0 px-1"
|
bodyClassName="p-0 px-1"
|
||||||
field="group"
|
field="group"
|
||||||
body={renderIcon}
|
body={x => renderIcon(x)}
|
||||||
style={{ maxWidth: 26, minWidth: 26, width: 26, height: 25 }}
|
style={{ maxWidth: 26, minWidth: 26, width: 26, height: 25 }}
|
||||||
></Column>
|
></Column>
|
||||||
|
|
||||||
@@ -310,41 +360,53 @@ export const SystemSignaturesContent = ({ systemId, settings, selectable, onSele
|
|||||||
sortable
|
sortable
|
||||||
></Column>
|
></Column>
|
||||||
<Column
|
<Column
|
||||||
field="name"
|
field="info"
|
||||||
header="Name"
|
// header="Info"
|
||||||
bodyClassName="text-ellipsis overflow-hidden whitespace-nowrap"
|
bodyClassName="text-ellipsis overflow-hidden whitespace-nowrap"
|
||||||
body={renderName}
|
body={renderInfoColumn}
|
||||||
style={{ maxWidth: nameColumnWidth }}
|
style={{ maxWidth: nameColumnWidth }}
|
||||||
hidden={compact || medium}
|
hidden={compact || medium}
|
||||||
sortable
|
|
||||||
></Column>
|
|
||||||
<Column
|
|
||||||
field="linked_system"
|
|
||||||
header="Leads To"
|
|
||||||
headerClassName="whitespace-nowrap"
|
|
||||||
bodyClassName="text-ellipsis overflow-hidden whitespace-nowrap"
|
|
||||||
body={renderLinkedSystem}
|
|
||||||
style={{ maxWidth: nameColumnWidth }}
|
|
||||||
hidden={compact}
|
|
||||||
sortable
|
|
||||||
></Column>
|
></Column>
|
||||||
|
{showDescriptionColumn && (
|
||||||
|
<Column
|
||||||
|
field="description"
|
||||||
|
header="Description"
|
||||||
|
bodyClassName="text-ellipsis overflow-hidden whitespace-nowrap"
|
||||||
|
body={renderDescription}
|
||||||
|
hidden={compact}
|
||||||
|
sortable
|
||||||
|
></Column>
|
||||||
|
)}
|
||||||
|
|
||||||
|
{showInsertedColumn && (
|
||||||
|
<Column
|
||||||
|
field="inserted_at"
|
||||||
|
header="Inserted"
|
||||||
|
dataType="date"
|
||||||
|
bodyClassName="w-[70px] text-ellipsis overflow-hidden whitespace-nowrap"
|
||||||
|
body={renderInsertedTimeLeft}
|
||||||
|
sortable
|
||||||
|
></Column>
|
||||||
|
)}
|
||||||
|
|
||||||
<Column
|
<Column
|
||||||
field="updated_at"
|
field="updated_at"
|
||||||
header="Updated"
|
header="Updated"
|
||||||
dataType="date"
|
dataType="date"
|
||||||
bodyClassName="w-[80px] text-ellipsis overflow-hidden whitespace-nowrap"
|
bodyClassName="w-[70px] text-ellipsis overflow-hidden whitespace-nowrap"
|
||||||
body={renderTimeLeft}
|
body={renderUpdatedTimeLeft}
|
||||||
sortable
|
sortable
|
||||||
></Column>
|
></Column>
|
||||||
|
|
||||||
{/*<Column*/}
|
{!selectable && (
|
||||||
{/* bodyClassName="p-0 pl-1 pr-2"*/}
|
<Column
|
||||||
{/* field="group"*/}
|
bodyClassName="p-0 pl-1 pr-2"
|
||||||
{/* body={renderToolbar}*/}
|
field="group"
|
||||||
{/* headerClassName={headerClasses}*/}
|
body={renderToolbar}
|
||||||
{/* style={{ maxWidth: 26, minWidth: 26, width: 26 }}*/}
|
// headerClassName={headerClasses}
|
||||||
{/*></Column>*/}
|
style={{ maxWidth: 26, minWidth: 26, width: 26 }}
|
||||||
|
></Column>
|
||||||
|
)}
|
||||||
</DataTable>
|
</DataTable>
|
||||||
</>
|
</>
|
||||||
)}
|
)}
|
||||||
@@ -353,6 +415,16 @@ export const SystemSignaturesContent = ({ systemId, settings, selectable, onSele
|
|||||||
ref={tooltipRef}
|
ref={tooltipRef}
|
||||||
content={hoveredSig ? <SignatureView {...hoveredSig} /> : null}
|
content={hoveredSig ? <SignatureView {...hoveredSig} /> : null}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
|
{showSignatureSettings && (
|
||||||
|
<SignatureSettings
|
||||||
|
systemId={systemId}
|
||||||
|
show
|
||||||
|
onHide={() => setShowSignatureSettings(false)}
|
||||||
|
signatureData={selectedSignature}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
|
||||||
{askUser && (
|
{askUser && (
|
||||||
<div className="absolute left-[1px] top-[29px] h-[calc(100%-30px)] w-[calc(100%-3px)] bg-stone-900/10 backdrop-blur-sm">
|
<div className="absolute left-[1px] top-[29px] h-[calc(100%-30px)] w-[calc(100%-3px)] bg-stone-900/10 backdrop-blur-sm">
|
||||||
<div className="absolute top-0 left-0 w-full h-full flex flex-col items-center justify-center">
|
<div className="absolute top-0 left-0 w-full h-full flex flex-col items-center justify-center">
|
||||||
|
|||||||
@@ -19,6 +19,8 @@ export const getActualSigs = (
|
|||||||
const isNeedUpgrade = getState(GROUPS_LIST, newSig) > getState(GROUPS_LIST, oldSig);
|
const isNeedUpgrade = getState(GROUPS_LIST, newSig) > getState(GROUPS_LIST, oldSig);
|
||||||
if (isNeedUpgrade) {
|
if (isNeedUpgrade) {
|
||||||
updated.push({ ...oldSig, group: newSig.group, name: newSig.name });
|
updated.push({ ...oldSig, group: newSig.group, name: newSig.name });
|
||||||
|
} else {
|
||||||
|
updated.push({ ...oldSig });
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if (!updateOnly) {
|
if (!updateOnly) {
|
||||||
|
|||||||
@@ -1,4 +1,7 @@
|
|||||||
export * from './renderIcon';
|
export * from './renderIcon';
|
||||||
|
export * from './renderDescription';
|
||||||
export * from './renderName';
|
export * from './renderName';
|
||||||
export * from './renderTimeLeft';
|
export * from './renderInsertedTimeLeft';
|
||||||
|
export * from './renderUpdatedTimeLeft';
|
||||||
export * from './renderLinkedSystem';
|
export * from './renderLinkedSystem';
|
||||||
|
export * from './renderInfoColumn';
|
||||||
|
|||||||
@@ -0,0 +1,5 @@
|
|||||||
|
import { SystemSignature } from '@/hooks/Mapper/types';
|
||||||
|
|
||||||
|
export const renderDescription = (row: SystemSignature) => {
|
||||||
|
return <span title={row?.description}>{row?.description}</span>;
|
||||||
|
};
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
import { SignatureGroup, SystemSignature } from '@/hooks/Mapper/types';
|
import { GroupType, SignatureGroup, SystemSignature } from '@/hooks/Mapper/types';
|
||||||
import { GROUPS } from '@/hooks/Mapper/components/mapInterface/widgets/SystemSignatures/constants.ts';
|
import { GROUPS } from '@/hooks/Mapper/components/mapInterface/widgets/SystemSignatures/constants.ts';
|
||||||
|
|
||||||
export const renderIcon = (row: SystemSignature) => {
|
export const renderIcon = (row: SystemSignature, customSize?: Omit<GroupType, 'icon' | 'id'>) => {
|
||||||
if (row.group == null) {
|
if (row.group == null) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
@@ -13,7 +13,7 @@ export const renderIcon = (row: SystemSignature) => {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="flex justify-center items-center">
|
<div className="flex justify-center items-center">
|
||||||
<img src={group.icon} style={{ width: group.w, height: group.h }} />
|
<img src={group.icon} style={{ width: customSize?.w ?? group.w, height: customSize?.h ?? group.h }} />
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -0,0 +1,3 @@
|
|||||||
|
.whFontSize {
|
||||||
|
font-size: 11px !important;
|
||||||
|
}
|
||||||
@@ -0,0 +1,58 @@
|
|||||||
|
import { PrimeIcons } from 'primereact/api';
|
||||||
|
import { SignatureGroup, SystemSignature } from '@/hooks/Mapper/types';
|
||||||
|
import { SystemViewStandalone, WHClassView } from '@/hooks/Mapper/components/ui-kit';
|
||||||
|
|
||||||
|
import { WdTooltipWrapper } from '@/hooks/Mapper/components/ui-kit/WdTooltipWrapper';
|
||||||
|
|
||||||
|
import clsx from 'clsx';
|
||||||
|
import { renderName } from './renderName.tsx';
|
||||||
|
import classes from './renderInfoColumn.module.scss';
|
||||||
|
|
||||||
|
export const renderInfoColumn = (row: SystemSignature) => {
|
||||||
|
if (!row.group || row.group === SignatureGroup.Wormhole) {
|
||||||
|
return (
|
||||||
|
<div className="flex justify-start items-center gap-[6px]">
|
||||||
|
{row.type && (
|
||||||
|
<WHClassView
|
||||||
|
className="text-[11px]"
|
||||||
|
classNameWh={classes.whFontSize}
|
||||||
|
highlightName
|
||||||
|
hideWhClass={!!row.linked_system}
|
||||||
|
whClassName={row.type}
|
||||||
|
noOffset
|
||||||
|
useShortTitle
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
|
||||||
|
{row.linked_system && (
|
||||||
|
<>
|
||||||
|
{/*<span className="w-4 h-4 hero-arrow-long-right"></span>*/}
|
||||||
|
<span title={row.linked_system?.solar_system_name}>
|
||||||
|
<SystemViewStandalone
|
||||||
|
className={clsx('select-none text-center cursor-context-menu')}
|
||||||
|
hideRegion
|
||||||
|
{...row.linked_system}
|
||||||
|
/>
|
||||||
|
</span>
|
||||||
|
</>
|
||||||
|
)}
|
||||||
|
{row.description && (
|
||||||
|
<WdTooltipWrapper content={row.description}>
|
||||||
|
<span className={clsx(PrimeIcons.EXCLAMATION_CIRCLE, 'text-[12px]')}></span>
|
||||||
|
</WdTooltipWrapper>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className="flex gap-1 items-center">
|
||||||
|
{renderName(row)}{' '}
|
||||||
|
{row.description && (
|
||||||
|
<WdTooltipWrapper content={row.description}>
|
||||||
|
<span className={clsx(PrimeIcons.EXCLAMATION_CIRCLE, 'text-[12px]')}></span>
|
||||||
|
</WdTooltipWrapper>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
};
|
||||||
@@ -0,0 +1,10 @@
|
|||||||
|
import { SystemSignature } from '@/hooks/Mapper/types';
|
||||||
|
import { TimeLeft } from '@/hooks/Mapper/components/ui-kit';
|
||||||
|
|
||||||
|
export const renderInsertedTimeLeft = (row: SystemSignature) => {
|
||||||
|
return (
|
||||||
|
<div className="flex w-full items-center">
|
||||||
|
<TimeLeft cDate={row.inserted_at ? new Date(row.inserted_at) : undefined} />
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
};
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
import { SystemSignature } from '@/hooks/Mapper/types';
|
import { SystemSignature } from '@/hooks/Mapper/types';
|
||||||
import { TimeLeft } from '@/hooks/Mapper/components/ui-kit';
|
import { TimeLeft } from '@/hooks/Mapper/components/ui-kit';
|
||||||
|
|
||||||
export const renderTimeLeft = (row: SystemSignature) => {
|
export const renderUpdatedTimeLeft = (row: SystemSignature) => {
|
||||||
return (
|
return (
|
||||||
<div className="flex w-full items-center">
|
<div className="flex w-full items-center">
|
||||||
<TimeLeft cDate={row.updated_at ? new Date(row.updated_at) : undefined} />
|
<TimeLeft cDate={row.updated_at ? new Date(row.updated_at) : undefined} />
|
||||||
@@ -7,13 +7,13 @@ import { useCallback, useState } from 'react';
|
|||||||
import { OnTheMap, RightBar } from '@/hooks/Mapper/components/mapRootContent/components';
|
import { OnTheMap, RightBar } from '@/hooks/Mapper/components/mapRootContent/components';
|
||||||
import { MapContextMenu } from '@/hooks/Mapper/components/mapRootContent/components/MapContextMenu/MapContextMenu.tsx';
|
import { MapContextMenu } from '@/hooks/Mapper/components/mapRootContent/components/MapContextMenu/MapContextMenu.tsx';
|
||||||
import { useSkipContextMenu } from '@/hooks/Mapper/hooks/useSkipContextMenu';
|
import { useSkipContextMenu } from '@/hooks/Mapper/hooks/useSkipContextMenu';
|
||||||
import { MapSettings } from "@/hooks/Mapper/components/mapRootContent/components/MapSettings";
|
import { MapSettings } from '@/hooks/Mapper/components/mapRootContent/components/MapSettings';
|
||||||
|
|
||||||
export interface MapRootContentProps {}
|
export interface MapRootContentProps {}
|
||||||
|
|
||||||
// eslint-disable-next-line no-empty-pattern
|
// eslint-disable-next-line no-empty-pattern
|
||||||
export const MapRootContent = ({}: MapRootContentProps) => {
|
export const MapRootContent = ({}: MapRootContentProps) => {
|
||||||
const { mapRef, interfaceSettings } = useMapRootState();
|
const { interfaceSettings } = useMapRootState();
|
||||||
const { isShowMenu } = interfaceSettings;
|
const { isShowMenu } = interfaceSettings;
|
||||||
|
|
||||||
const [showOnTheMap, setShowOnTheMap] = useState(false);
|
const [showOnTheMap, setShowOnTheMap] = useState(false);
|
||||||
@@ -26,7 +26,7 @@ export const MapRootContent = ({}: MapRootContentProps) => {
|
|||||||
useSkipContextMenu();
|
useSkipContextMenu();
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Layout map={<MapWrapper refn={mapRef} />}>
|
<Layout map={<MapWrapper />}>
|
||||||
{!isShowMenu ? (
|
{!isShowMenu ? (
|
||||||
<div className="absolute top-0 left-14 w-[calc(100%-3.5rem)] h-[calc(100%-3.5rem)] pointer-events-none">
|
<div className="absolute top-0 left-14 w-[calc(100%-3.5rem)] h-[calc(100%-3.5rem)] pointer-events-none">
|
||||||
<div className="absolute top-0 left-0 w-[calc(100%-3.5rem)] h-full pointer-events-none">
|
<div className="absolute top-0 left-0 w-[calc(100%-3.5rem)] h-full pointer-events-none">
|
||||||
|
|||||||
@@ -1,13 +1,22 @@
|
|||||||
import classes from './Connections.module.scss';
|
import classes from './Connections.module.scss';
|
||||||
import { Sidebar } from 'primereact/sidebar';
|
import { Sidebar } from 'primereact/sidebar';
|
||||||
import { useEffect, useMemo, useState } from 'react';
|
import { useEffect, useMemo, useState, useCallback } from 'react';
|
||||||
import { useMapRootState } from '@/hooks/Mapper/mapRootProvider';
|
import { useMapRootState } from '@/hooks/Mapper/mapRootProvider';
|
||||||
import { VirtualScroller, VirtualScrollerTemplateOptions } from 'primereact/virtualscroller';
|
import { VirtualScroller, VirtualScrollerTemplateOptions } from 'primereact/virtualscroller';
|
||||||
import clsx from 'clsx';
|
import clsx from 'clsx';
|
||||||
import { ConnectionOutput, OutCommand, Passage, SolarSystemConnection } from '@/hooks/Mapper/types';
|
import {
|
||||||
|
ConnectionType,
|
||||||
|
ConnectionOutput,
|
||||||
|
ConnectionInfoOutput,
|
||||||
|
OutCommand,
|
||||||
|
Passage,
|
||||||
|
SolarSystemConnection,
|
||||||
|
} from '@/hooks/Mapper/types';
|
||||||
|
|
||||||
import { PassageCard } from './PassageCard';
|
import { PassageCard } from './PassageCard';
|
||||||
import { InfoDrawer, SystemView } from '@/hooks/Mapper/components/ui-kit';
|
import { InfoDrawer, SystemView } from '@/hooks/Mapper/components/ui-kit';
|
||||||
import { kgToTons } from '@/hooks/Mapper/utils/kgToTons.ts';
|
import { kgToTons } from '@/hooks/Mapper/utils/kgToTons.ts';
|
||||||
|
import { TimeAgo } from '@/hooks/Mapper/components/ui-kit';
|
||||||
|
|
||||||
const sortByDate = (a: string, b: string) => new Date(a).getTime() - new Date(b).getTime();
|
const sortByDate = (a: string, b: string) => new Date(a).getTime() - new Date(b).getTime();
|
||||||
|
|
||||||
@@ -68,26 +77,49 @@ export const Connections = ({ selectedConnection, onHide }: OnTheMapProps) => {
|
|||||||
return connections.find(x => x.source === selectedConnection.source && x.target === selectedConnection.target);
|
return connections.find(x => x.source === selectedConnection.source && x.target === selectedConnection.target);
|
||||||
}, [connections, selectedConnection]);
|
}, [connections, selectedConnection]);
|
||||||
|
|
||||||
|
const isWormhole = useMemo(() => {
|
||||||
|
return cnInfo?.type !== ConnectionType.gate;
|
||||||
|
}, [cnInfo]);
|
||||||
|
|
||||||
const [passages, setPassages] = useState<Passage[]>([]);
|
const [passages, setPassages] = useState<Passage[]>([]);
|
||||||
|
const [info, setInfo] = useState<ConnectionInfoOutput>(null);
|
||||||
|
|
||||||
|
const loadInfo = useCallback(
|
||||||
|
async (connection: SolarSystemConnection) => {
|
||||||
|
const result = await outCommand<ConnectionInfoOutput>({
|
||||||
|
type: OutCommand.getConnectionInfo,
|
||||||
|
data: {
|
||||||
|
from: connection.source,
|
||||||
|
to: connection.target,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
setInfo(result);
|
||||||
|
},
|
||||||
|
[outCommand],
|
||||||
|
);
|
||||||
|
|
||||||
|
const loadPassages = useCallback(
|
||||||
|
async (connection: SolarSystemConnection) => {
|
||||||
|
const result = await outCommand<ConnectionOutput>({
|
||||||
|
type: OutCommand.getPassages,
|
||||||
|
data: {
|
||||||
|
from: connection.source,
|
||||||
|
to: connection.target,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
setPassages(result.passages.sort((a, b) => sortByDate(b.inserted_at, a.inserted_at)));
|
||||||
|
},
|
||||||
|
[outCommand],
|
||||||
|
);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (!selectedConnection) {
|
if (!selectedConnection) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
loadInfo(selectedConnection);
|
||||||
const loadInfo = async () => {
|
loadPassages(selectedConnection);
|
||||||
const result = await outCommand<ConnectionOutput>({
|
|
||||||
type: OutCommand.getPassages,
|
|
||||||
data: {
|
|
||||||
from: selectedConnection.source,
|
|
||||||
to: selectedConnection.target,
|
|
||||||
},
|
|
||||||
});
|
|
||||||
|
|
||||||
setPassages(result.passages.sort((a, b) => sortByDate(b.inserted_at, a.inserted_at)));
|
|
||||||
};
|
|
||||||
|
|
||||||
loadInfo();
|
|
||||||
}, [selectedConnection]);
|
}, [selectedConnection]);
|
||||||
|
|
||||||
const approximateMass = useMemo(() => {
|
const approximateMass = useMemo(() => {
|
||||||
@@ -128,9 +160,17 @@ export const Connections = ({ selectedConnection, onHide }: OnTheMapProps) => {
|
|||||||
</InfoDrawer>
|
</InfoDrawer>
|
||||||
|
|
||||||
{/* Connection Info Row */}
|
{/* Connection Info Row */}
|
||||||
<InfoDrawer title="Approximate mass of passages" rightSide>
|
{isWormhole && (
|
||||||
{kgToTons(approximateMass)}
|
<>
|
||||||
</InfoDrawer>
|
<InfoDrawer title="Approximate mass of passages" rightSide>
|
||||||
|
{kgToTons(approximateMass)}
|
||||||
|
</InfoDrawer>
|
||||||
|
|
||||||
|
<InfoDrawer title="Mark EOL Time" rightSide>
|
||||||
|
{info?.marl_eol_time ? <TimeAgo timestamp={info.marl_eol_time} /> : ' unknown '}
|
||||||
|
</InfoDrawer>
|
||||||
|
</>
|
||||||
|
)}
|
||||||
|
|
||||||
<div className="flex gap-2"></div>
|
<div className="flex gap-2"></div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -61,6 +61,7 @@ const CONNECTIONS_CHECKBOXES_PROPS: CheckboxesList = [
|
|||||||
|
|
||||||
const UI_CHECKBOXES_PROPS: CheckboxesList = [
|
const UI_CHECKBOXES_PROPS: CheckboxesList = [
|
||||||
{ prop: InterfaceStoredSettingsProps.isShowMenu, label: 'Enable compact map menu bar' },
|
{ prop: InterfaceStoredSettingsProps.isShowMenu, label: 'Enable compact map menu bar' },
|
||||||
|
{ prop: InterfaceStoredSettingsProps.isThickConnections, label: 'Thicker connections' },
|
||||||
];
|
];
|
||||||
|
|
||||||
export const MapSettings = ({ show, onHide }: MapSettingsProps) => {
|
export const MapSettings = ({ show, onHide }: MapSettingsProps) => {
|
||||||
|
|||||||
@@ -0,0 +1,10 @@
|
|||||||
|
import { createGenericContext } from '@/hooks/Mapper/utils/abstractContextProvider.tsx';
|
||||||
|
|
||||||
|
export interface SystemsSettingsProvider {
|
||||||
|
systemId: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
const { Provider, useContextValue } = createGenericContext<SystemsSettingsProvider>();
|
||||||
|
|
||||||
|
export const SystemsSettingsProvider = Provider;
|
||||||
|
export const useSystemsSettingsProvider = useContextValue;
|
||||||
@@ -0,0 +1,81 @@
|
|||||||
|
.verticalTabsContainer {
|
||||||
|
width: 100%;
|
||||||
|
min-height: 300px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.verticalTabsContainer {
|
||||||
|
display: flex;
|
||||||
|
width: 100%;
|
||||||
|
min-height: 300px;
|
||||||
|
|
||||||
|
:global {
|
||||||
|
.p-tabview {
|
||||||
|
width: 100%;
|
||||||
|
display: flex;
|
||||||
|
align-items: flex-start;
|
||||||
|
}
|
||||||
|
|
||||||
|
.p-tabview-panels {
|
||||||
|
padding: 6px 1rem !important;
|
||||||
|
flex-grow: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.p-tabview-nav-container {
|
||||||
|
border-right: none;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.p-tabview-nav {
|
||||||
|
flex-direction: column;
|
||||||
|
width: 150px;
|
||||||
|
min-height: 100%;
|
||||||
|
border: none;
|
||||||
|
|
||||||
|
li {
|
||||||
|
width: 100%;
|
||||||
|
border-right: 4px solid var(--surface-hover);
|
||||||
|
background-color: var(--surface-card);
|
||||||
|
|
||||||
|
transition: background-color 200ms, border-right-color 200ms;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
background-color: var(--surface-hover);
|
||||||
|
border-right: 4px solid var(--surface-100);
|
||||||
|
}
|
||||||
|
|
||||||
|
.p-tabview-nav-link {
|
||||||
|
transition: color 200ms;
|
||||||
|
|
||||||
|
justify-content: flex-end;
|
||||||
|
padding: 10px;
|
||||||
|
background-color: initial;
|
||||||
|
border: none;
|
||||||
|
color: var(--gray-400);
|
||||||
|
|
||||||
|
border-radius: initial;
|
||||||
|
font-weight: 400;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.p-tabview-selected {
|
||||||
|
background-color: var(--surface-50);
|
||||||
|
border-right: 4px solid var(--primary-color);
|
||||||
|
|
||||||
|
.p-tabview-nav-link {
|
||||||
|
font-weight: 600;
|
||||||
|
color: var(--primary-color);
|
||||||
|
}
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
border-right: 4px solid var(--primary-color);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.p-tabview-panel {
|
||||||
|
flex-grow: 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,176 @@
|
|||||||
|
import { Dialog } from 'primereact/dialog';
|
||||||
|
import { useCallback, useEffect } from 'react';
|
||||||
|
import { OutCommand, SignatureGroup, SystemSignature } from '@/hooks/Mapper/types';
|
||||||
|
import { Controller, FormProvider, useForm } from 'react-hook-form';
|
||||||
|
import {
|
||||||
|
SignatureGroupContent,
|
||||||
|
SignatureGroupSelect,
|
||||||
|
} from '@/hooks/Mapper/components/mapRootContent/components/SignatureSettings/components';
|
||||||
|
import { InputText } from 'primereact/inputtext';
|
||||||
|
import { SystemsSettingsProvider } from '@/hooks/Mapper/components/mapRootContent/components/SignatureSettings/Provider.tsx';
|
||||||
|
import { Button } from 'primereact/button';
|
||||||
|
import { useMapRootState } from '@/hooks/Mapper/mapRootProvider';
|
||||||
|
|
||||||
|
type SystemSignaturePrepared = Omit<SystemSignature, 'linked_system'> & { linked_system: string };
|
||||||
|
|
||||||
|
export interface MapSettingsProps {
|
||||||
|
systemId: string;
|
||||||
|
show: boolean;
|
||||||
|
onHide: () => void;
|
||||||
|
signatureData: SystemSignature | null;
|
||||||
|
}
|
||||||
|
|
||||||
|
export const SignatureSettings = ({ systemId, show, onHide, signatureData }: MapSettingsProps) => {
|
||||||
|
const { outCommand } = useMapRootState();
|
||||||
|
|
||||||
|
const handleShow = async () => {};
|
||||||
|
const signatureForm = useForm<Partial<SystemSignaturePrepared>>({});
|
||||||
|
|
||||||
|
const handleSave = useCallback(
|
||||||
|
async (e: any) => {
|
||||||
|
e?.preventDefault();
|
||||||
|
if (!signatureData) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const { group, ...values } = signatureForm.getValues();
|
||||||
|
let out = { ...signatureData };
|
||||||
|
|
||||||
|
switch (group) {
|
||||||
|
case SignatureGroup.Wormhole:
|
||||||
|
if (values.linked_system) {
|
||||||
|
await outCommand({
|
||||||
|
type: OutCommand.linkSignatureToSystem,
|
||||||
|
data: {
|
||||||
|
signature_eve_id: signatureData.eve_id,
|
||||||
|
solar_system_source: systemId,
|
||||||
|
solar_system_target: values.linked_system,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
if (values.type != null) {
|
||||||
|
out = { ...out, type: values.type };
|
||||||
|
}
|
||||||
|
|
||||||
|
if (signatureData.group !== SignatureGroup.Wormhole) {
|
||||||
|
out = { ...out, name: '' };
|
||||||
|
}
|
||||||
|
|
||||||
|
break;
|
||||||
|
case SignatureGroup.CosmicSignature:
|
||||||
|
out = { ...out, type: '', name: '' };
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
if (values.name != null) {
|
||||||
|
out = { ...out, name: values.name ?? '' };
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (values.description != null) {
|
||||||
|
out = { ...out, description: values.description };
|
||||||
|
}
|
||||||
|
|
||||||
|
// Note: when type of signature changed from WH to other type - we should drop name
|
||||||
|
if (
|
||||||
|
group !== SignatureGroup.Wormhole && // new
|
||||||
|
signatureData.group === SignatureGroup.Wormhole && // prev
|
||||||
|
signatureData.linked_system
|
||||||
|
) {
|
||||||
|
await outCommand({
|
||||||
|
type: OutCommand.unlinkSignature,
|
||||||
|
data: { signature_eve_id: signatureData.eve_id, solar_system_source: systemId },
|
||||||
|
});
|
||||||
|
|
||||||
|
out = { ...out, type: '' };
|
||||||
|
}
|
||||||
|
|
||||||
|
if (group === SignatureGroup.Wormhole && signatureData.linked_system != null && values.linked_system === null) {
|
||||||
|
await outCommand({
|
||||||
|
type: OutCommand.unlinkSignature,
|
||||||
|
data: { signature_eve_id: signatureData.eve_id, solar_system_source: systemId },
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
// Note: despite groups have optional type - this will always set
|
||||||
|
out = { ...out, group: group! };
|
||||||
|
|
||||||
|
await outCommand({
|
||||||
|
type: OutCommand.updateSignatures,
|
||||||
|
data: {
|
||||||
|
system_id: systemId,
|
||||||
|
added: [],
|
||||||
|
updated: [out],
|
||||||
|
removed: [],
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
signatureForm.reset();
|
||||||
|
onHide();
|
||||||
|
},
|
||||||
|
[signatureForm, onHide, outCommand, signatureData, systemId],
|
||||||
|
);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
if (!signatureData) {
|
||||||
|
signatureForm.reset();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const { linked_system, ...rest } = signatureData;
|
||||||
|
|
||||||
|
signatureForm.reset({
|
||||||
|
linked_system: linked_system?.solar_system_id.toString() ?? undefined,
|
||||||
|
...rest,
|
||||||
|
});
|
||||||
|
}, [signatureForm, signatureData]);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Dialog
|
||||||
|
header={`Signature Edit [${signatureData?.eve_id}]`}
|
||||||
|
visible={show}
|
||||||
|
draggable={false}
|
||||||
|
style={{ width: '390px' }}
|
||||||
|
onShow={handleShow}
|
||||||
|
onHide={() => {
|
||||||
|
if (!show) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
onHide();
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<SystemsSettingsProvider initialValue={{ systemId }}>
|
||||||
|
<FormProvider {...signatureForm}>
|
||||||
|
<form onSubmit={handleSave}>
|
||||||
|
<div className="flex flex-col gap-2 justify-between">
|
||||||
|
<div className="w-full flex flex-col gap-1 p-1 min-h-[150px]">
|
||||||
|
<label className="grid grid-cols-[100px_250px_1fr] gap-2 items-center text-[14px]">
|
||||||
|
<span>Group:</span>
|
||||||
|
<SignatureGroupSelect name="group" />
|
||||||
|
</label>
|
||||||
|
|
||||||
|
<SignatureGroupContent />
|
||||||
|
|
||||||
|
<label className="grid grid-cols-[100px_250px_1fr] gap-2 items-center text-[14px]">
|
||||||
|
<span>Description:</span>
|
||||||
|
<Controller
|
||||||
|
name="description"
|
||||||
|
control={signatureForm.control}
|
||||||
|
render={({ field }) => (
|
||||||
|
<InputText placeholder="Type description" value={field.value} onChange={field.onChange} />
|
||||||
|
)}
|
||||||
|
/>
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="flex gap-2 justify-end">
|
||||||
|
<Button onClick={handleSave} outlined size="small" label="Save"></Button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
</FormProvider>
|
||||||
|
</SystemsSettingsProvider>
|
||||||
|
</Dialog>
|
||||||
|
);
|
||||||
|
};
|
||||||
@@ -0,0 +1,45 @@
|
|||||||
|
import { Controller, useFormContext } from 'react-hook-form';
|
||||||
|
import { SignatureGroup, SystemSignature } from '@/hooks/Mapper/types';
|
||||||
|
import { useSystemsSettingsProvider } from '@/hooks/Mapper/components/mapRootContent/components/SignatureSettings/Provider.tsx';
|
||||||
|
import { SignatureGroupContentWormholes } from '@/hooks/Mapper/components/mapRootContent/components/SignatureSettings/components/SignatureGroupContentWormholes.tsx';
|
||||||
|
import { InputText } from 'primereact/inputtext';
|
||||||
|
|
||||||
|
export interface SignatureGroupContentProps {}
|
||||||
|
|
||||||
|
export const SignatureGroupContent = ({}: SignatureGroupContentProps) => {
|
||||||
|
const { watch, control } = useFormContext<SystemSignature>();
|
||||||
|
const group = watch('group');
|
||||||
|
|
||||||
|
const {
|
||||||
|
value: { systemId },
|
||||||
|
} = useSystemsSettingsProvider();
|
||||||
|
|
||||||
|
if (!systemId) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (group === SignatureGroup.Wormhole) {
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<SignatureGroupContentWormholes />
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (group === SignatureGroup.CosmicSignature) {
|
||||||
|
return <div></div>;
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div>
|
||||||
|
<label className="grid grid-cols-[100px_250px_1fr] gap-2 items-center text-[14px]">
|
||||||
|
<span>Name:</span>
|
||||||
|
<Controller
|
||||||
|
name="name"
|
||||||
|
control={control}
|
||||||
|
render={({ field }) => <InputText placeholder="Name" value={field.value} onChange={field.onChange} />}
|
||||||
|
/>
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
};
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
export * from './SignatureGroupContent';
|
||||||
@@ -0,0 +1,18 @@
|
|||||||
|
import { SignatureWormholeTypeSelect } from '@/hooks/Mapper/components/mapRootContent/components/SignatureSettings/components/SignatureWormholeTypeSelect';
|
||||||
|
import { SignatureLeadsToSelect } from '@/hooks/Mapper/components/mapRootContent/components/SignatureSettings/components/SignatureLeadsToSelect';
|
||||||
|
|
||||||
|
export const SignatureGroupContentWormholes = () => {
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<label className="grid grid-cols-[100px_250px_1fr] gap-2 items-center text-[14px]">
|
||||||
|
<span>Type:</span>
|
||||||
|
<SignatureWormholeTypeSelect name="type" />
|
||||||
|
</label>
|
||||||
|
|
||||||
|
<label className="grid grid-cols-[100px_250px_1fr] gap-2 items-center text-[14px]">
|
||||||
|
<span>Leads To:</span>
|
||||||
|
<SignatureLeadsToSelect name="linked_system" />
|
||||||
|
</label>
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
};
|
||||||
@@ -0,0 +1,59 @@
|
|||||||
|
import { Dropdown } from 'primereact/dropdown';
|
||||||
|
import clsx from 'clsx';
|
||||||
|
import { SignatureGroup, SystemSignature } from '@/hooks/Mapper/types';
|
||||||
|
import { renderIcon } from '@/hooks/Mapper/components/mapInterface/widgets/SystemSignatures/renders';
|
||||||
|
import { Controller, useFormContext } from 'react-hook-form';
|
||||||
|
|
||||||
|
const signatureGroupOptions = Object.keys(SignatureGroup).map(x => ({
|
||||||
|
value: SignatureGroup[x as keyof typeof SignatureGroup],
|
||||||
|
label: SignatureGroup[x as keyof typeof SignatureGroup],
|
||||||
|
}));
|
||||||
|
|
||||||
|
// @ts-ignore
|
||||||
|
const renderSignatureTemplate = option => {
|
||||||
|
if (!option) {
|
||||||
|
return 'No group selected';
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className="flex gap-2 items-center">
|
||||||
|
<span className="w-[20px] mt-[1px] flex justify-center items-center">
|
||||||
|
{renderIcon(
|
||||||
|
{ group: option.label } as SystemSignature,
|
||||||
|
option.label === SignatureGroup.CosmicSignature ? { w: 10, h: 10 } : { w: 16, h: 16 },
|
||||||
|
)}
|
||||||
|
</span>
|
||||||
|
<span>{option.label}</span>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export interface SignatureGroupSelectProps {
|
||||||
|
name: string;
|
||||||
|
defaultValue?: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
export const SignatureGroupSelect = ({ name, defaultValue = '' }: SignatureGroupSelectProps) => {
|
||||||
|
const { control } = useFormContext();
|
||||||
|
return (
|
||||||
|
<Controller
|
||||||
|
name={name}
|
||||||
|
control={control}
|
||||||
|
defaultValue={defaultValue}
|
||||||
|
render={({ field }) => (
|
||||||
|
<Dropdown
|
||||||
|
value={field.value}
|
||||||
|
onChange={field.onChange}
|
||||||
|
options={signatureGroupOptions}
|
||||||
|
optionLabel="label"
|
||||||
|
optionValue="value"
|
||||||
|
placeholder="Select group"
|
||||||
|
className={clsx('w-full')}
|
||||||
|
scrollHeight="240px"
|
||||||
|
itemTemplate={renderSignatureTemplate}
|
||||||
|
valueTemplate={renderSignatureTemplate}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
/>
|
||||||
|
);
|
||||||
|
};
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
export * from './SignatureGroupSelect';
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
.SystemView {
|
||||||
|
font-size: 14px !important;
|
||||||
|
}
|
||||||
@@ -0,0 +1,108 @@
|
|||||||
|
import { Dropdown } from 'primereact/dropdown';
|
||||||
|
import clsx from 'clsx';
|
||||||
|
import { Controller, useFormContext } from 'react-hook-form';
|
||||||
|
import { useSystemsSettingsProvider } from '@/hooks/Mapper/components/mapRootContent/components/SignatureSettings/Provider.tsx';
|
||||||
|
import { useSystemInfo } from '@/hooks/Mapper/components/hooks';
|
||||||
|
import { useMemo } from 'react';
|
||||||
|
import { SystemView } from '@/hooks/Mapper/components/ui-kit';
|
||||||
|
import classes from './SignatureLeadsToSelect.module.scss';
|
||||||
|
import { useLoadSystemStatic } from '@/hooks/Mapper/mapRootProvider/hooks/useLoadSystemStatic.ts';
|
||||||
|
import { SystemSignature } from '@/hooks/Mapper/types';
|
||||||
|
import { WORMHOLES_ADDITIONAL_INFO_BY_CLASS_ID } from '@/hooks/Mapper/components/map/constants.ts';
|
||||||
|
import { useMapRootState } from '@/hooks/Mapper/mapRootProvider';
|
||||||
|
|
||||||
|
// @ts-ignore
|
||||||
|
const renderLinkedSystemItem = (option: { value: string }) => {
|
||||||
|
if (option.value == null) {
|
||||||
|
return <div className="flex gap-2 items-center">No linked system</div>;
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className="flex gap-2 items-center">
|
||||||
|
<SystemView systemId={option.value} className={classes.SystemView} />
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
// @ts-ignore
|
||||||
|
const renderLinkedSystemValue = (option: { value: string }) => {
|
||||||
|
if (!option) {
|
||||||
|
return 'Select Leads To system';
|
||||||
|
}
|
||||||
|
|
||||||
|
if (option.value == null) {
|
||||||
|
return 'Select Leads To system';
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className="flex gap-2 items-center">
|
||||||
|
<SystemView systemId={option.value} className={classes.SystemView} />
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
const renderLeadsToEmpty = () => <div className="flex items-center text-[14px]">No wormhole to select</div>;
|
||||||
|
|
||||||
|
export interface SignatureLeadsToSelectProps {
|
||||||
|
name: string;
|
||||||
|
defaultValue?: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
export const SignatureLeadsToSelect = ({ name, defaultValue = '' }: SignatureLeadsToSelectProps) => {
|
||||||
|
const { control, watch } = useFormContext<SystemSignature>();
|
||||||
|
const group = watch('type');
|
||||||
|
|
||||||
|
const {
|
||||||
|
value: { systemId },
|
||||||
|
} = useSystemsSettingsProvider();
|
||||||
|
|
||||||
|
const { leadsTo } = useSystemInfo({ systemId });
|
||||||
|
const { systems: systemStatics } = useLoadSystemStatic({ systems: leadsTo });
|
||||||
|
const {
|
||||||
|
data: { wormholes },
|
||||||
|
} = useMapRootState();
|
||||||
|
|
||||||
|
const leadsToOptions = useMemo(() => {
|
||||||
|
return [
|
||||||
|
{ value: null },
|
||||||
|
...leadsTo
|
||||||
|
.filter(systemId => {
|
||||||
|
const systemStatic = systemStatics.get(parseInt(systemId));
|
||||||
|
const whInfo = wormholes.find(x => x.name === group);
|
||||||
|
|
||||||
|
if (!systemStatic || !whInfo || group === 'K162') {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
const { id: whType } = WORMHOLES_ADDITIONAL_INFO_BY_CLASS_ID[systemStatic.system_class];
|
||||||
|
return whInfo.dest === whType;
|
||||||
|
})
|
||||||
|
.map(x => ({ value: x })),
|
||||||
|
];
|
||||||
|
}, [group, leadsTo, systemStatics, wormholes]);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Controller
|
||||||
|
// @ts-ignore
|
||||||
|
name={name}
|
||||||
|
control={control}
|
||||||
|
defaultValue={defaultValue}
|
||||||
|
render={({ field }) => {
|
||||||
|
return (
|
||||||
|
<Dropdown
|
||||||
|
value={field.value}
|
||||||
|
onChange={field.onChange}
|
||||||
|
options={leadsToOptions}
|
||||||
|
optionValue="value"
|
||||||
|
placeholder="Select Leads To wormhole"
|
||||||
|
className={clsx('w-full')}
|
||||||
|
scrollHeight="240px"
|
||||||
|
itemTemplate={renderLinkedSystemItem}
|
||||||
|
valueTemplate={renderLinkedSystemValue}
|
||||||
|
emptyMessage={renderLeadsToEmpty}
|
||||||
|
/>
|
||||||
|
);
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
);
|
||||||
|
};
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
export * from './SignatureLeadsToSelect.tsx';
|
||||||
@@ -0,0 +1,134 @@
|
|||||||
|
import { Dropdown } from 'primereact/dropdown';
|
||||||
|
import clsx from 'clsx';
|
||||||
|
import { Respawn, SolarSystemStaticInfoRaw, WormholeDataRaw } from '@/hooks/Mapper/types';
|
||||||
|
import { Controller, useFormContext } from 'react-hook-form';
|
||||||
|
import { useMapRootState } from '@/hooks/Mapper/mapRootProvider';
|
||||||
|
import { useSystemsSettingsProvider } from '@/hooks/Mapper/components/mapRootContent/components/SignatureSettings/Provider.tsx';
|
||||||
|
import { useSystemInfo } from '@/hooks/Mapper/components/hooks';
|
||||||
|
import {
|
||||||
|
SOLAR_SYSTEM_CLASSES_TO_CLASS_GROUPS,
|
||||||
|
WORMHOLES_ADDITIONAL_INFO_BY_CLASS_ID,
|
||||||
|
} from '@/hooks/Mapper/components/map/constants.ts';
|
||||||
|
import { useMemo } from 'react';
|
||||||
|
import { WHClassView } from '@/hooks/Mapper/components/ui-kit';
|
||||||
|
|
||||||
|
const getPossibleWormholes = (systemStatic: SolarSystemStaticInfoRaw, wormholes: WormholeDataRaw[]) => {
|
||||||
|
const { id: whType } = WORMHOLES_ADDITIONAL_INFO_BY_CLASS_ID[systemStatic.system_class];
|
||||||
|
|
||||||
|
// @ts-ignore
|
||||||
|
const spawnClassGroup = SOLAR_SYSTEM_CLASSES_TO_CLASS_GROUPS[whType];
|
||||||
|
const possibleWHTypes = wormholes.filter(x => x.src.includes(spawnClassGroup));
|
||||||
|
|
||||||
|
return {
|
||||||
|
statics: possibleWHTypes
|
||||||
|
.filter(x => x.respawn.some(y => y === Respawn.static))
|
||||||
|
.filter(x => systemStatic.statics.includes(x.name)),
|
||||||
|
k162: wormholes.find(x => x.name === 'K162')!,
|
||||||
|
wanderings: possibleWHTypes.filter(x => x.respawn.some(y => y === Respawn.wandering)),
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
// @ts-ignore
|
||||||
|
const renderWHTypeGroupTemplate = option => {
|
||||||
|
return (
|
||||||
|
<div className="flex gap-2 items-center">
|
||||||
|
<span>{option.label}</span>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
// @ts-ignore
|
||||||
|
const renderWHTypeTemplateValue = (option: { label: string; data: WormholeDataRaw }) => {
|
||||||
|
if (!option) {
|
||||||
|
return 'Select wormhole type';
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className="flex gap-2 items-center">
|
||||||
|
<WHClassView whClassName={option.data.name} noOffset useShortTitle />
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
// @ts-ignore
|
||||||
|
const renderWHTypeTemplate = (option: { label: string; data: WormholeDataRaw }) => {
|
||||||
|
return (
|
||||||
|
<div className="flex gap-2 items-center ml-[1rem]">
|
||||||
|
<WHClassView whClassName={option.data.name} noOffset useShortTitle />
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export interface SignatureGroupSelectProps {
|
||||||
|
name: string;
|
||||||
|
defaultValue?: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
export const SignatureWormholeTypeSelect = ({ name, defaultValue = '' }: SignatureGroupSelectProps) => {
|
||||||
|
const { control } = useFormContext();
|
||||||
|
|
||||||
|
const {
|
||||||
|
data: { wormholes },
|
||||||
|
} = useMapRootState();
|
||||||
|
|
||||||
|
const {
|
||||||
|
value: { systemId },
|
||||||
|
} = useSystemsSettingsProvider();
|
||||||
|
|
||||||
|
const system = useSystemInfo({ systemId });
|
||||||
|
|
||||||
|
const possibleWormholesOptions = useMemo(() => {
|
||||||
|
const possibleWormholes = getPossibleWormholes(system.staticInfo, wormholes);
|
||||||
|
|
||||||
|
return [
|
||||||
|
{
|
||||||
|
label: 'Statics',
|
||||||
|
items: [
|
||||||
|
...possibleWormholes.statics.map(x => ({
|
||||||
|
label: x.name,
|
||||||
|
value: x.name,
|
||||||
|
data: x,
|
||||||
|
})),
|
||||||
|
{
|
||||||
|
value: possibleWormholes.k162.name,
|
||||||
|
label: possibleWormholes.k162.name,
|
||||||
|
data: possibleWormholes.k162,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'Wanderings',
|
||||||
|
items: possibleWormholes.wanderings.map(x => ({
|
||||||
|
label: x.name,
|
||||||
|
value: x.name,
|
||||||
|
data: x,
|
||||||
|
})),
|
||||||
|
},
|
||||||
|
];
|
||||||
|
}, [system, wormholes]);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Controller
|
||||||
|
name={name}
|
||||||
|
control={control}
|
||||||
|
defaultValue={defaultValue}
|
||||||
|
render={({ field }) => (
|
||||||
|
<Dropdown
|
||||||
|
value={field.value}
|
||||||
|
onChange={field.onChange}
|
||||||
|
options={possibleWormholesOptions}
|
||||||
|
optionLabel="label"
|
||||||
|
optionValue="value"
|
||||||
|
placeholder="Select wormhole type"
|
||||||
|
optionGroupLabel="label"
|
||||||
|
optionGroupChildren="items"
|
||||||
|
className={clsx('w-full')}
|
||||||
|
scrollHeight="240px"
|
||||||
|
optionGroupTemplate={renderWHTypeGroupTemplate}
|
||||||
|
itemTemplate={renderWHTypeTemplate}
|
||||||
|
valueTemplate={renderWHTypeTemplateValue}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
/>
|
||||||
|
);
|
||||||
|
};
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
export * from './SignatureWormholeTypeSelect';
|
||||||
@@ -0,0 +1,2 @@
|
|||||||
|
export * from './SignatureGroupSelect';
|
||||||
|
export * from './SignatureGroupContent';
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
export * from './SignatureSettings.tsx';
|
||||||
@@ -1,14 +1,14 @@
|
|||||||
import { Map } from '@/hooks/Mapper/components/map/Map.tsx';
|
import { Map } from '@/hooks/Mapper/components/map/Map.tsx';
|
||||||
import { ForwardedRef, useCallback, useRef, useState } from 'react';
|
import { useCallback, useRef, useState } from 'react';
|
||||||
import { MapHandlers, OutCommand, OutCommandHandler, SolarSystemConnection } from '@/hooks/Mapper/types';
|
import { OutCommand, OutCommandHandler, SolarSystemConnection } from '@/hooks/Mapper/types';
|
||||||
import { MapRootData, useMapRootState } from '@/hooks/Mapper/mapRootProvider';
|
import { MapRootData, useMapRootState } from '@/hooks/Mapper/mapRootProvider';
|
||||||
import { OnMapSelectionChange } from '@/hooks/Mapper/components/map/map.types.ts';
|
import { OnMapSelectionChange } from '@/hooks/Mapper/components/map/map.types.ts';
|
||||||
import isEqual from 'lodash.isequal';
|
import isEqual from 'lodash.isequal';
|
||||||
import { ContextMenuSystem, useContextMenuSystemHandlers } from '@/hooks/Mapper/components/contexts';
|
import { ContextMenuSystem, useContextMenuSystemHandlers } from '@/hooks/Mapper/components/contexts';
|
||||||
import {
|
import {
|
||||||
SystemCustomLabelDialog,
|
SystemCustomLabelDialog,
|
||||||
SystemSettingsDialog,
|
|
||||||
SystemLinkSignatureDialog,
|
SystemLinkSignatureDialog,
|
||||||
|
SystemSettingsDialog,
|
||||||
} from '@/hooks/Mapper/components/mapInterface/components';
|
} from '@/hooks/Mapper/components/mapInterface/components';
|
||||||
import classes from './MapWrapper.module.scss';
|
import classes from './MapWrapper.module.scss';
|
||||||
import { Connections } from '@/hooks/Mapper/components/mapRootContent/components/Connections';
|
import { Connections } from '@/hooks/Mapper/components/mapRootContent/components/Connections';
|
||||||
@@ -20,25 +20,45 @@ import { Commands } from '@/hooks/Mapper/types/mapHandlers.ts';
|
|||||||
import { useMapEventListener } from '@/hooks/Mapper/events';
|
import { useMapEventListener } from '@/hooks/Mapper/events';
|
||||||
|
|
||||||
import { STORED_INTERFACE_DEFAULT_VALUES } from '@/hooks/Mapper/mapRootProvider/MapRootProvider';
|
import { STORED_INTERFACE_DEFAULT_VALUES } from '@/hooks/Mapper/mapRootProvider/MapRootProvider';
|
||||||
|
import { useDeleteSystems } from '@/hooks/Mapper/components/contexts/hooks';
|
||||||
interface MapWrapperProps {
|
import { useCommonMapEventProcessor } from '@/hooks/Mapper/components/mapWrapper/hooks/useCommonMapEventProcessor.ts';
|
||||||
refn: ForwardedRef<MapHandlers>;
|
|
||||||
}
|
|
||||||
|
|
||||||
// TODO: INFO - this component needs for abstract work with Map instance
|
// TODO: INFO - this component needs for abstract work with Map instance
|
||||||
export const MapWrapper = ({ refn }: MapWrapperProps) => {
|
export const MapWrapper = () => {
|
||||||
const {
|
const {
|
||||||
update,
|
update,
|
||||||
outCommand,
|
outCommand,
|
||||||
data: { selectedConnections, selectedSystems, hubs, systems },
|
data: { selectedConnections, selectedSystems, hubs, systems },
|
||||||
interfaceSettings: { isShowMenu, isShowMinimap = STORED_INTERFACE_DEFAULT_VALUES.isShowMinimap, isShowKSpace },
|
interfaceSettings: {
|
||||||
|
isShowMenu,
|
||||||
|
isShowMinimap = STORED_INTERFACE_DEFAULT_VALUES.isShowMinimap,
|
||||||
|
isShowKSpace,
|
||||||
|
isThickConnections,
|
||||||
|
},
|
||||||
} = useMapRootState();
|
} = useMapRootState();
|
||||||
|
const { deleteSystems } = useDeleteSystems();
|
||||||
|
const { mapRef, runCommand } = useCommonMapEventProcessor();
|
||||||
|
|
||||||
const { open, ...systemContextProps } = useContextMenuSystemHandlers({ systems, hubs, outCommand });
|
const { open, ...systemContextProps } = useContextMenuSystemHandlers({ systems, hubs, outCommand });
|
||||||
const { handleSystemMultipleContext, ...systemMultipleCtxProps } = useContextMenuSystemMultipleHandlers();
|
const { handleSystemMultipleContext, ...systemMultipleCtxProps } = useContextMenuSystemMultipleHandlers();
|
||||||
|
|
||||||
const ref = useRef({ selectedConnections, selectedSystems, systemContextProps, systems });
|
const [openSettings, setOpenSettings] = useState<string | null>(null);
|
||||||
ref.current = { selectedConnections, selectedSystems, systemContextProps, systems };
|
const [openLinkSignatures, setOpenLinkSignatures] = useState<any | null>(null);
|
||||||
|
const [openCustomLabel, setOpenCustomLabel] = useState<string | null>(null);
|
||||||
|
const [selectedConnection, setSelectedConnection] = useState<SolarSystemConnection | null>(null);
|
||||||
|
|
||||||
|
const ref = useRef({ selectedConnections, selectedSystems, systemContextProps, systems, deleteSystems });
|
||||||
|
ref.current = { selectedConnections, selectedSystems, systemContextProps, systems, deleteSystems };
|
||||||
|
|
||||||
|
useMapEventListener(event => {
|
||||||
|
switch (event.name) {
|
||||||
|
case Commands.linkSignatureToSystem:
|
||||||
|
setOpenLinkSignatures(event.data);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
runCommand(event);
|
||||||
|
});
|
||||||
|
|
||||||
const onSelectionChange: OnMapSelectionChange = useCallback(
|
const onSelectionChange: OnMapSelectionChange = useCallback(
|
||||||
({ systems, connections }) => {
|
({ systems, connections }) => {
|
||||||
@@ -59,9 +79,6 @@ export const MapWrapper = ({ refn }: MapWrapperProps) => {
|
|||||||
[update],
|
[update],
|
||||||
);
|
);
|
||||||
|
|
||||||
const [openSettings, setOpenSettings] = useState<string | null>(null);
|
|
||||||
const [openLinkSignatures, setOpenLinkSignatures] = useState<any | null>(null);
|
|
||||||
const [openCustomLabel, setOpenCustomLabel] = useState<string | null>(null);
|
|
||||||
const handleCommand: OutCommandHandler = useCallback(
|
const handleCommand: OutCommandHandler = useCallback(
|
||||||
event => {
|
event => {
|
||||||
switch (event.type) {
|
switch (event.type) {
|
||||||
@@ -95,22 +112,19 @@ export const MapWrapper = ({ refn }: MapWrapperProps) => {
|
|||||||
[open],
|
[open],
|
||||||
);
|
);
|
||||||
|
|
||||||
const [selectedConnection, setSelectedConnection] = useState<SolarSystemConnection | null>(null);
|
|
||||||
|
|
||||||
const handleConnectionDbClick = useCallback((e: SolarSystemConnection) => setSelectedConnection(e), []);
|
const handleConnectionDbClick = useCallback((e: SolarSystemConnection) => setSelectedConnection(e), []);
|
||||||
|
|
||||||
useMapEventListener(event => {
|
const handleManualDelete = useCallback((toDelete: string[]) => {
|
||||||
switch (event.name) {
|
const restDel = toDelete.filter(x => ref.current.systems.some(y => y.id === x));
|
||||||
case Commands.linkSignatureToSystem:
|
if (restDel.length > 0) {
|
||||||
setOpenLinkSignatures(event.data);
|
ref.current.deleteSystems(restDel);
|
||||||
return true;
|
|
||||||
}
|
}
|
||||||
});
|
}, []);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<Map
|
<Map
|
||||||
ref={refn}
|
ref={mapRef}
|
||||||
onCommand={handleCommand}
|
onCommand={handleCommand}
|
||||||
onSelectionChange={onSelectionChange}
|
onSelectionChange={onSelectionChange}
|
||||||
onConnectionInfoClick={handleConnectionDbClick}
|
onConnectionInfoClick={handleConnectionDbClick}
|
||||||
@@ -119,6 +133,8 @@ export const MapWrapper = ({ refn }: MapWrapperProps) => {
|
|||||||
minimapClasses={!isShowMenu ? classes.MiniMap : undefined}
|
minimapClasses={!isShowMenu ? classes.MiniMap : undefined}
|
||||||
isShowMinimap={isShowMinimap}
|
isShowMinimap={isShowMinimap}
|
||||||
showKSpaceBG={isShowKSpace}
|
showKSpaceBG={isShowKSpace}
|
||||||
|
onManualDelete={handleManualDelete}
|
||||||
|
isThickConnections={isThickConnections}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
{openSettings != null && (
|
{openSettings != null && (
|
||||||
|
|||||||
@@ -0,0 +1,38 @@
|
|||||||
|
import { MutableRefObject, useCallback, useEffect, useRef } from 'react';
|
||||||
|
import { Command, Commands, MapHandlers } from '@/hooks/Mapper/types';
|
||||||
|
import { MapEvent } from '@/hooks/Mapper/events';
|
||||||
|
import { useMapRootState } from '@/hooks/Mapper/mapRootProvider';
|
||||||
|
|
||||||
|
export const useCommonMapEventProcessor = () => {
|
||||||
|
const mapRef = useRef<MapHandlers>() as MutableRefObject<MapHandlers>;
|
||||||
|
const {
|
||||||
|
data: { systems },
|
||||||
|
} = useMapRootState();
|
||||||
|
|
||||||
|
const refQueue = useRef<MapEvent<Command>[]>([]);
|
||||||
|
|
||||||
|
// const ref = useRef({})
|
||||||
|
|
||||||
|
const runCommand = useCallback(({ name, data }: MapEvent<Command>) => {
|
||||||
|
switch (name) {
|
||||||
|
case Commands.addSystems:
|
||||||
|
case Commands.removeSystems:
|
||||||
|
// case Commands.addConnections:
|
||||||
|
refQueue.current.push({ name, data });
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// @ts-ignore hz why here type error
|
||||||
|
mapRef.current?.command(name, data);
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
refQueue.current.forEach(x => mapRef.current?.command(x.name, x.data));
|
||||||
|
refQueue.current = [];
|
||||||
|
}, [systems]);
|
||||||
|
|
||||||
|
return {
|
||||||
|
mapRef,
|
||||||
|
runCommand,
|
||||||
|
};
|
||||||
|
};
|
||||||
@@ -4,7 +4,7 @@ import classes from './CharacterCard.module.scss';
|
|||||||
import { SystemView } from '@/hooks/Mapper/components/ui-kit/SystemView';
|
import { SystemView } from '@/hooks/Mapper/components/ui-kit/SystemView';
|
||||||
import { CharacterTypeRaw, WithIsOwnCharacter } from '@/hooks/Mapper/types';
|
import { CharacterTypeRaw, WithIsOwnCharacter } from '@/hooks/Mapper/types';
|
||||||
import { Commands } from '@/hooks/Mapper/types/mapHandlers.ts';
|
import { Commands } from '@/hooks/Mapper/types/mapHandlers.ts';
|
||||||
import { useMapRootState } from '@/hooks/Mapper/mapRootProvider';
|
import { emitMapEvent } from '@/hooks/Mapper/events';
|
||||||
|
|
||||||
type CharacterCardProps = {
|
type CharacterCardProps = {
|
||||||
compact?: boolean;
|
compact?: boolean;
|
||||||
@@ -34,11 +34,12 @@ export const CharacterCard = ({
|
|||||||
useSystemsCache,
|
useSystemsCache,
|
||||||
...char
|
...char
|
||||||
}: CharacterCardProps) => {
|
}: CharacterCardProps) => {
|
||||||
const { mapRef } = useMapRootState();
|
|
||||||
|
|
||||||
const handleSelect = useCallback(() => {
|
const handleSelect = useCallback(() => {
|
||||||
mapRef.current?.command(Commands.centerSystem, char?.location?.solar_system_id?.toString());
|
emitMapEvent({
|
||||||
}, [mapRef, char]);
|
name: Commands.centerSystem,
|
||||||
|
data: char?.location?.solar_system_id?.toString(),
|
||||||
|
});
|
||||||
|
}, [char]);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className={clsx(classes.CharacterCard, 'w-full text-xs', 'flex flex-col box-border')} onClick={handleSelect}>
|
<div className={clsx(classes.CharacterCard, 'w-full text-xs', 'flex flex-col box-border')} onClick={handleSelect}>
|
||||||
|
|||||||
@@ -5,6 +5,11 @@
|
|||||||
.WHClassViewContent {
|
.WHClassViewContent {
|
||||||
display: flex;
|
display: flex;
|
||||||
gap: 2px;
|
gap: 2px;
|
||||||
|
|
||||||
|
&.NoOffset {
|
||||||
|
gap: 4px;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.WHClassName {
|
.WHClassName {
|
||||||
@@ -13,3 +18,12 @@
|
|||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
top: -2px;
|
top: -2px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.NoOffset {
|
||||||
|
*.WHClassName {
|
||||||
|
position: relative;
|
||||||
|
font-size: 12px;
|
||||||
|
font-weight: initial !important;
|
||||||
|
top: initial !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
@@ -16,26 +16,42 @@ const prepareMass = (mass: number) => {
|
|||||||
|
|
||||||
export interface WHClassViewProps {
|
export interface WHClassViewProps {
|
||||||
whClassName: string;
|
whClassName: string;
|
||||||
|
noOffset?: boolean;
|
||||||
|
useShortTitle?: boolean;
|
||||||
|
hideWhClass?: boolean;
|
||||||
|
highlightName?: boolean;
|
||||||
|
className?: string;
|
||||||
|
classNameWh?: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
export const WHClassView = ({ whClassName }: WHClassViewProps) => {
|
export const WHClassView = ({
|
||||||
|
whClassName,
|
||||||
|
noOffset,
|
||||||
|
useShortTitle,
|
||||||
|
hideWhClass,
|
||||||
|
highlightName,
|
||||||
|
className,
|
||||||
|
classNameWh,
|
||||||
|
}: WHClassViewProps) => {
|
||||||
const {
|
const {
|
||||||
data: { wormholesData },
|
data: { wormholesData },
|
||||||
} = useMapRootState();
|
} = useMapRootState();
|
||||||
|
|
||||||
const whData = useMemo(() => wormholesData[whClassName], [whClassName, wormholesData]);
|
const whData = useMemo(() => wormholesData[whClassName], [whClassName, wormholesData]);
|
||||||
const whClass = useMemo(() => WORMHOLES_ADDITIONAL_INFO[whData.dest], [whData.dest]);
|
const whClass = useMemo(() => WORMHOLES_ADDITIONAL_INFO[whData.dest], [whData.dest]);
|
||||||
const whClassStyle = WORMHOLE_CLASS_STYLES[whClass.wormholeClassID];
|
const whClassStyle = WORMHOLE_CLASS_STYLES[whClass?.wormholeClassID] ?? '';
|
||||||
|
|
||||||
|
const uid = useMemo(() => new Date().getTime().toString(), []);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className={classes.WHClassViewRoot}>
|
<div className={clsx(classes.WHClassViewRoot, className)}>
|
||||||
<Tooltip
|
<Tooltip
|
||||||
target={`.wh-name${whClassName}`}
|
target={`.wh-name${whClassName}${uid}`}
|
||||||
position="right"
|
position="right"
|
||||||
mouseTrack
|
mouseTrack
|
||||||
mouseTrackLeft={20}
|
mouseTrackLeft={20}
|
||||||
mouseTrackTop={30}
|
mouseTrackTop={30}
|
||||||
className="border border-green-300 rounded border-opacity-10 bg-stone-900 bg-opacity-70 "
|
className="border border-green-300 rounded border-opacity-10 bg-stone-900 bg-opacity-90 "
|
||||||
>
|
>
|
||||||
<div className="flex gap-3">
|
<div className="flex gap-3">
|
||||||
<div className="flex flex-col gap-1">
|
<div className="flex flex-col gap-1">
|
||||||
@@ -49,9 +65,20 @@ export const WHClassView = ({ whClassName }: WHClassViewProps) => {
|
|||||||
</div>
|
</div>
|
||||||
</Tooltip>
|
</Tooltip>
|
||||||
|
|
||||||
<div className={clsx(classes.WHClassViewContent, 'wh-name select-none cursor-help', `wh-name${whClassName}`)}>
|
<div
|
||||||
<span>{whClassName}</span>
|
className={clsx(
|
||||||
<span className={clsx(classes.WHClassName, whClassStyle)}>{whClass.shortName}</span>
|
classes.WHClassViewContent,
|
||||||
|
{ [classes.NoOffset]: noOffset },
|
||||||
|
'wh-name select-none cursor-help',
|
||||||
|
`wh-name${whClassName}${uid}`,
|
||||||
|
)}
|
||||||
|
>
|
||||||
|
<span className={clsx({ [whClassStyle]: highlightName })}>{whClassName}</span>
|
||||||
|
{!hideWhClass && whClass && (
|
||||||
|
<span className={clsx(classes.WHClassName, whClassStyle, classNameWh)}>
|
||||||
|
{useShortTitle ? whClass.shortTitle : whClass.shortName}
|
||||||
|
</span>
|
||||||
|
)}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -1,13 +1,12 @@
|
|||||||
import { createEvent } from 'react-event-hook';
|
import { createEvent } from 'react-event-hook';
|
||||||
|
|
||||||
export interface MapEvent {
|
import { Command, CommandData } from '@/hooks/Mapper/types/mapHandlers.ts';
|
||||||
name: string;
|
|
||||||
data: {
|
export interface MapEvent<T extends Command> {
|
||||||
solar_system_source: number;
|
name: T;
|
||||||
solar_system_target: number;
|
data: CommandData[T];
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const { useMapEventListener, emitMapEvent } = createEvent('map-event')<MapEvent>();
|
const { useMapEventListener, emitMapEvent } = createEvent('map-event')<MapEvent<Command>>();
|
||||||
|
|
||||||
export { useMapEventListener, emitMapEvent };
|
export { useMapEventListener, emitMapEvent };
|
||||||
|
|||||||
@@ -19,6 +19,7 @@ export const parseSignatures = (value: string, availableKeys: string[]): SystemS
|
|||||||
kind: availableKeys.includes(sigArrInfo[1]) ? sigArrInfo[1] : COSMIC_SIGNATURE,
|
kind: availableKeys.includes(sigArrInfo[1]) ? sigArrInfo[1] : COSMIC_SIGNATURE,
|
||||||
group: sigArrInfo[2],
|
group: sigArrInfo[2],
|
||||||
name: sigArrInfo[3],
|
name: sigArrInfo[3],
|
||||||
|
type: '',
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -2,6 +2,10 @@ import { WORMHOLES_ADDITIONAL_INFO } from '@/hooks/Mapper/components/map/constan
|
|||||||
import { WormholeDataRaw } from '@/hooks/Mapper/types';
|
import { WormholeDataRaw } from '@/hooks/Mapper/types';
|
||||||
|
|
||||||
export const sortWHClasses = (wormholesData: Record<string, WormholeDataRaw>, statics: string[]) => {
|
export const sortWHClasses = (wormholesData: Record<string, WormholeDataRaw>, statics: string[]) => {
|
||||||
|
if (!statics) {
|
||||||
|
return [];
|
||||||
|
}
|
||||||
|
|
||||||
return statics
|
return statics
|
||||||
.map(x => wormholesData[x])
|
.map(x => wormholesData[x])
|
||||||
.map(x => ({ name: x.name, ...WORMHOLES_ADDITIONAL_INFO[x.dest] }))
|
.map(x => ({ name: x.name, ...WORMHOLES_ADDITIONAL_INFO[x.dest] }))
|
||||||
|
|||||||
@@ -12,6 +12,7 @@ export type MapRootData = MapUnionTypes & {
|
|||||||
|
|
||||||
const INITIAL_DATA: MapRootData = {
|
const INITIAL_DATA: MapRootData = {
|
||||||
wormholesData: {},
|
wormholesData: {},
|
||||||
|
wormholes: [],
|
||||||
effects: {},
|
effects: {},
|
||||||
characters: [],
|
characters: [],
|
||||||
userCharacters: [],
|
userCharacters: [],
|
||||||
@@ -30,24 +31,26 @@ export enum InterfaceStoredSettingsProps {
|
|||||||
isShowMenu = 'isShowMenu',
|
isShowMenu = 'isShowMenu',
|
||||||
isShowMinimap = 'isShowMinimap',
|
isShowMinimap = 'isShowMinimap',
|
||||||
isShowKSpace = 'isShowKSpace',
|
isShowKSpace = 'isShowKSpace',
|
||||||
|
isThickConnections = 'isThickConnections',
|
||||||
}
|
}
|
||||||
|
|
||||||
export type InterfaceStoredSettings = {
|
export type InterfaceStoredSettings = {
|
||||||
isShowMenu: boolean;
|
isShowMenu: boolean;
|
||||||
isShowMinimap: boolean;
|
isShowMinimap: boolean;
|
||||||
isShowKSpace: boolean;
|
isShowKSpace: boolean;
|
||||||
|
isThickConnections: boolean;
|
||||||
};
|
};
|
||||||
|
|
||||||
export const STORED_INTERFACE_DEFAULT_VALUES: InterfaceStoredSettings = {
|
export const STORED_INTERFACE_DEFAULT_VALUES: InterfaceStoredSettings = {
|
||||||
isShowMenu: false,
|
isShowMenu: false,
|
||||||
isShowMinimap: true,
|
isShowMinimap: true,
|
||||||
isShowKSpace: false,
|
isShowKSpace: false,
|
||||||
|
isThickConnections: false,
|
||||||
};
|
};
|
||||||
|
|
||||||
export interface MapRootContextProps {
|
export interface MapRootContextProps {
|
||||||
update: ContextStoreDataUpdate<MapRootData>;
|
update: ContextStoreDataUpdate<MapRootData>;
|
||||||
data: MapRootData;
|
data: MapRootData;
|
||||||
mapRef: RefObject<MapHandlers>;
|
|
||||||
outCommand: OutCommandHandler;
|
outCommand: OutCommandHandler;
|
||||||
interfaceSettings: InterfaceStoredSettings;
|
interfaceSettings: InterfaceStoredSettings;
|
||||||
setInterfaceSettings: Dispatch<SetStateAction<InterfaceStoredSettings>>;
|
setInterfaceSettings: Dispatch<SetStateAction<InterfaceStoredSettings>>;
|
||||||
@@ -56,7 +59,6 @@ export interface MapRootContextProps {
|
|||||||
const MapRootContext = createContext<MapRootContextProps>({
|
const MapRootContext = createContext<MapRootContextProps>({
|
||||||
update: () => {},
|
update: () => {},
|
||||||
data: { ...INITIAL_DATA },
|
data: { ...INITIAL_DATA },
|
||||||
mapRef: { current: null },
|
|
||||||
// @ts-ignore
|
// @ts-ignore
|
||||||
outCommand: async () => void 0,
|
outCommand: async () => void 0,
|
||||||
interfaceSettings: STORED_INTERFACE_DEFAULT_VALUES,
|
interfaceSettings: STORED_INTERFACE_DEFAULT_VALUES,
|
||||||
@@ -66,7 +68,6 @@ const MapRootContext = createContext<MapRootContextProps>({
|
|||||||
type MapRootProviderProps = {
|
type MapRootProviderProps = {
|
||||||
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
||||||
fwdRef: ForwardedRef<any>;
|
fwdRef: ForwardedRef<any>;
|
||||||
mapRef: RefObject<MapHandlers>;
|
|
||||||
outCommand: OutCommandHandler;
|
outCommand: OutCommandHandler;
|
||||||
} & WithChildren;
|
} & WithChildren;
|
||||||
|
|
||||||
@@ -77,7 +78,7 @@ const MapRootHandlers = forwardRef(({ children }: WithChildren, fwdRef: Forwarde
|
|||||||
});
|
});
|
||||||
|
|
||||||
// eslint-disable-next-line react/display-name
|
// eslint-disable-next-line react/display-name
|
||||||
export const MapRootProvider = ({ children, fwdRef, mapRef, outCommand }: MapRootProviderProps) => {
|
export const MapRootProvider = ({ children, fwdRef, outCommand }: MapRootProviderProps) => {
|
||||||
const { update, ref } = useContextStore<MapRootData>({ ...INITIAL_DATA });
|
const { update, ref } = useContextStore<MapRootData>({ ...INITIAL_DATA });
|
||||||
|
|
||||||
const [interfaceSettings, setInterfaceSettings] = useLocalStorageState<InterfaceStoredSettings>(
|
const [interfaceSettings, setInterfaceSettings] = useLocalStorageState<InterfaceStoredSettings>(
|
||||||
@@ -93,7 +94,6 @@ export const MapRootProvider = ({ children, fwdRef, mapRef, outCommand }: MapRoo
|
|||||||
update,
|
update,
|
||||||
data: ref,
|
data: ref,
|
||||||
outCommand: outCommand,
|
outCommand: outCommand,
|
||||||
mapRef: mapRef,
|
|
||||||
setInterfaceSettings,
|
setInterfaceSettings,
|
||||||
interfaceSettings,
|
interfaceSettings,
|
||||||
}}
|
}}
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
import { useMapRootState } from '@/hooks/Mapper/mapRootProvider';
|
import { useMapRootState } from '@/hooks/Mapper/mapRootProvider';
|
||||||
import { useCallback, useRef } from 'react';
|
import { useCallback, useRef } from 'react';
|
||||||
import { CommandAddSystems, CommandRemoveSystems, CommandUpdateSystems } from '@/hooks/Mapper/types';
|
import { CommandAddSystems, CommandRemoveSystems, CommandUpdateSystems } from '@/hooks/Mapper/types';
|
||||||
|
import { useLoadSystemStatic } from '@/hooks/Mapper/mapRootProvider/hooks/useLoadSystemStatic.ts';
|
||||||
|
|
||||||
export const useCommandsSystems = () => {
|
export const useCommandsSystems = () => {
|
||||||
const {
|
const {
|
||||||
@@ -8,40 +9,52 @@ export const useCommandsSystems = () => {
|
|||||||
data: { systems },
|
data: { systems },
|
||||||
} = useMapRootState();
|
} = useMapRootState();
|
||||||
|
|
||||||
const ref = useRef({ systems, update });
|
const { addSystemStatic } = useLoadSystemStatic({ systems: [] });
|
||||||
ref.current = { systems, update };
|
|
||||||
|
|
||||||
const addSystems = useCallback(
|
const ref = useRef({ systems, update, addSystemStatic });
|
||||||
(addSystems: CommandAddSystems) => {
|
ref.current = { systems, update, addSystemStatic };
|
||||||
update({
|
|
||||||
systems: [...ref.current.systems.filter(sys => addSystems.some(x => sys.id !== x.id)), ...addSystems],
|
const addSystems = useCallback((systemsToAdd: CommandAddSystems) => {
|
||||||
});
|
const { update, addSystemStatic, systems } = ref.current;
|
||||||
},
|
|
||||||
[update],
|
systemsToAdd.forEach(sys => {
|
||||||
);
|
if (sys.system_static_info) {
|
||||||
|
addSystemStatic(sys.system_static_info);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
update(
|
||||||
|
{
|
||||||
|
systems: [...systems.filter(sys => !systemsToAdd.some(x => sys.id === x.id)), ...systemsToAdd],
|
||||||
|
},
|
||||||
|
true,
|
||||||
|
);
|
||||||
|
}, []);
|
||||||
|
|
||||||
const removeSystems = useCallback((toRemove: CommandRemoveSystems) => {
|
const removeSystems = useCallback((toRemove: CommandRemoveSystems) => {
|
||||||
const { update, systems } = ref.current;
|
const { update, systems } = ref.current;
|
||||||
update({
|
update(
|
||||||
systems: systems.filter(x => !toRemove.includes(parseInt(x.id))),
|
{
|
||||||
});
|
systems: systems.filter(x => !toRemove.includes(parseInt(x.id))),
|
||||||
|
},
|
||||||
|
true,
|
||||||
|
);
|
||||||
}, []);
|
}, []);
|
||||||
|
|
||||||
const updateSystems = useCallback(
|
const updateSystems = useCallback((updatedSystems: CommandUpdateSystems) => {
|
||||||
(systems: CommandUpdateSystems) => {
|
const { update, systems } = ref.current;
|
||||||
const out = ref.current.systems.map(current => {
|
|
||||||
const newSystem = systems.find(x => current.id === x.id);
|
|
||||||
if (!newSystem) {
|
|
||||||
return current;
|
|
||||||
}
|
|
||||||
|
|
||||||
return newSystem;
|
const out = systems.map(current => {
|
||||||
});
|
const newSystem = updatedSystems.find(x => current.id === x.id);
|
||||||
|
if (!newSystem) {
|
||||||
|
return current;
|
||||||
|
}
|
||||||
|
|
||||||
update({ systems: out });
|
return newSystem;
|
||||||
},
|
});
|
||||||
[update],
|
|
||||||
);
|
update({ systems: out }, true);
|
||||||
|
}, []);
|
||||||
|
|
||||||
return { addSystems, removeSystems, updateSystems };
|
return { addSystems, removeSystems, updateSystems };
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -24,6 +24,7 @@ export const useMapInit = () => {
|
|||||||
|
|
||||||
if (wormholes) {
|
if (wormholes) {
|
||||||
updateData.wormholesData = wormholes.reduce((acc, x) => ({ ...acc, [x.name]: x }), {});
|
updateData.wormholesData = wormholes.reduce((acc, x) => ({ ...acc, [x.name]: x }), {});
|
||||||
|
updateData.wormholes = wormholes;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (effects) {
|
if (effects) {
|
||||||
|
|||||||
@@ -24,7 +24,7 @@ interface UseLoadSystemStaticProps {
|
|||||||
systems: (number | string)[];
|
systems: (number | string)[];
|
||||||
}
|
}
|
||||||
|
|
||||||
export const useLoadSystemStatic = ({ systems }: UseLoadSystemStaticProps) => {
|
export const useLoadSystemStatic = ({ systems = [] }: UseLoadSystemStaticProps) => {
|
||||||
const { outCommand } = useMapRootState();
|
const { outCommand } = useMapRootState();
|
||||||
const [loading, setLoading] = useState(false);
|
const [loading, setLoading] = useState(false);
|
||||||
const [lastUpdateKey, setLastUpdateKey] = useState(0);
|
const [lastUpdateKey, setLastUpdateKey] = useState(0);
|
||||||
@@ -51,6 +51,9 @@ export const useLoadSystemStatic = ({ systems }: UseLoadSystemStaticProps) => {
|
|||||||
}, []);
|
}, []);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
|
if (!systems.length) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
loadSystems(systems);
|
loadSystems(systems);
|
||||||
// eslint-disable-next-line
|
// eslint-disable-next-line
|
||||||
}, [systems]);
|
}, [systems]);
|
||||||
|
|||||||
@@ -44,59 +44,63 @@ export const useMapRootHandlers = (ref: ForwardedRef<MapHandlers>) => {
|
|||||||
return {
|
return {
|
||||||
command(type, data) {
|
command(type, data) {
|
||||||
switch (type) {
|
switch (type) {
|
||||||
case Commands.init:
|
case Commands.init: // USED
|
||||||
mapInit(data as CommandInit);
|
mapInit(data as CommandInit);
|
||||||
break;
|
break;
|
||||||
case Commands.addSystems:
|
case Commands.addSystems: // USED
|
||||||
addSystems(data as CommandAddSystems);
|
addSystems(data as CommandAddSystems);
|
||||||
break;
|
break;
|
||||||
case Commands.updateSystems:
|
case Commands.updateSystems: // USED
|
||||||
updateSystems(data as CommandUpdateSystems);
|
updateSystems(data as CommandUpdateSystems);
|
||||||
break;
|
break;
|
||||||
case Commands.removeSystems:
|
case Commands.removeSystems: // USED
|
||||||
removeSystems(data as CommandRemoveSystems);
|
removeSystems(data as CommandRemoveSystems);
|
||||||
break;
|
break;
|
||||||
case Commands.addConnections:
|
case Commands.addConnections: // USED
|
||||||
addConnections(data as CommandAddConnections);
|
addConnections(data as CommandAddConnections);
|
||||||
break;
|
break;
|
||||||
case Commands.removeConnections:
|
case Commands.removeConnections: // USED
|
||||||
removeConnections(data as CommandRemoveConnections);
|
removeConnections(data as CommandRemoveConnections);
|
||||||
break;
|
break;
|
||||||
case Commands.updateConnection:
|
case Commands.updateConnection: // USED
|
||||||
updateConnection(data as CommandUpdateConnection);
|
updateConnection(data as CommandUpdateConnection);
|
||||||
break;
|
break;
|
||||||
case Commands.charactersUpdated:
|
case Commands.charactersUpdated: // USED
|
||||||
charactersUpdated(data as CommandCharactersUpdated);
|
charactersUpdated(data as CommandCharactersUpdated);
|
||||||
break;
|
break;
|
||||||
case Commands.characterAdded:
|
case Commands.characterAdded: // USED
|
||||||
characterAdded(data as CommandCharacterAdded);
|
characterAdded(data as CommandCharacterAdded);
|
||||||
break;
|
break;
|
||||||
case Commands.characterRemoved:
|
case Commands.characterRemoved: // USED
|
||||||
characterRemoved(data as CommandCharacterRemoved);
|
characterRemoved(data as CommandCharacterRemoved);
|
||||||
break;
|
break;
|
||||||
case Commands.characterUpdated:
|
case Commands.characterUpdated: // USED
|
||||||
characterUpdated(data as CommandCharacterUpdated);
|
characterUpdated(data as CommandCharacterUpdated);
|
||||||
break;
|
break;
|
||||||
case Commands.presentCharacters:
|
case Commands.presentCharacters: // USED
|
||||||
presentCharacters(data as CommandPresentCharacters);
|
presentCharacters(data as CommandPresentCharacters);
|
||||||
break;
|
break;
|
||||||
case Commands.mapUpdated:
|
case Commands.mapUpdated: // USED
|
||||||
mapUpdated(data as CommandMapUpdated);
|
mapUpdated(data as CommandMapUpdated);
|
||||||
break;
|
break;
|
||||||
case Commands.routes:
|
case Commands.routes:
|
||||||
mapRoutes(data as CommandRoutes);
|
mapRoutes(data as CommandRoutes);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case Commands.centerSystem:
|
case Commands.signaturesUpdated: // USED
|
||||||
// do nothing here
|
// do nothing here
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case Commands.selectSystem:
|
case Commands.linkSignatureToSystem: // USED
|
||||||
// do nothing here
|
// do nothing here
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case Commands.linkSignatureToSystem:
|
case Commands.centerSystem: // USED
|
||||||
emitMapEvent({ name: Commands.linkSignatureToSystem, data });
|
// do nothing here
|
||||||
|
break;
|
||||||
|
|
||||||
|
case Commands.selectSystem: // USED
|
||||||
|
// do nothing here
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case Commands.killsUpdated:
|
case Commands.killsUpdated:
|
||||||
@@ -107,6 +111,8 @@ export const useMapRootHandlers = (ref: ForwardedRef<MapHandlers>) => {
|
|||||||
console.warn(`JOipP Interface handlers: Unknown command: ${type}`, data);
|
console.warn(`JOipP Interface handlers: Unknown command: ${type}`, data);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
emitMapEvent({ name: type, data });
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -1,3 +1,8 @@
|
|||||||
|
export enum ConnectionType {
|
||||||
|
wormhole,
|
||||||
|
gate,
|
||||||
|
}
|
||||||
|
|
||||||
export enum MassState {
|
export enum MassState {
|
||||||
normal,
|
normal,
|
||||||
half,
|
half,
|
||||||
@@ -32,4 +37,6 @@ export type SolarSystemConnection = {
|
|||||||
|
|
||||||
source: string;
|
source: string;
|
||||||
target: string;
|
target: string;
|
||||||
|
|
||||||
|
type?: ConnectionType;
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -11,6 +11,10 @@ export type Passage = {
|
|||||||
character: PassageLimitedCharacterType;
|
character: PassageLimitedCharacterType;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
export type ConnectionInfoOutput = {
|
||||||
|
marl_eol_time: string;
|
||||||
|
};
|
||||||
|
|
||||||
export type ConnectionOutput = {
|
export type ConnectionOutput = {
|
||||||
passages: Passage[];
|
passages: Passage[];
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -24,6 +24,7 @@ export enum Commands {
|
|||||||
centerSystem = 'center_system',
|
centerSystem = 'center_system',
|
||||||
selectSystem = 'select_system',
|
selectSystem = 'select_system',
|
||||||
linkSignatureToSystem = 'link_signature_to_system',
|
linkSignatureToSystem = 'link_signature_to_system',
|
||||||
|
signaturesUpdated = 'signatures_updated',
|
||||||
}
|
}
|
||||||
|
|
||||||
export type Command =
|
export type Command =
|
||||||
@@ -44,7 +45,8 @@ export type Command =
|
|||||||
| Commands.routes
|
| Commands.routes
|
||||||
| Commands.selectSystem
|
| Commands.selectSystem
|
||||||
| Commands.centerSystem
|
| Commands.centerSystem
|
||||||
| Commands.linkSignatureToSystem;
|
| Commands.linkSignatureToSystem
|
||||||
|
| Commands.signaturesUpdated;
|
||||||
|
|
||||||
export type CommandInit = {
|
export type CommandInit = {
|
||||||
systems: SolarSystemRawType[];
|
systems: SolarSystemRawType[];
|
||||||
@@ -81,6 +83,7 @@ export type CommandLinkSignatureToSystem = {
|
|||||||
solar_system_source: number;
|
solar_system_source: number;
|
||||||
solar_system_target: number;
|
solar_system_target: number;
|
||||||
};
|
};
|
||||||
|
export type CommandLinkSignaturesUpdated = number;
|
||||||
|
|
||||||
export interface CommandData {
|
export interface CommandData {
|
||||||
[Commands.init]: CommandInit;
|
[Commands.init]: CommandInit;
|
||||||
@@ -101,6 +104,7 @@ export interface CommandData {
|
|||||||
[Commands.selectSystem]: CommandSelectSystem;
|
[Commands.selectSystem]: CommandSelectSystem;
|
||||||
[Commands.centerSystem]: CommandCenterSystem;
|
[Commands.centerSystem]: CommandCenterSystem;
|
||||||
[Commands.linkSignatureToSystem]: CommandLinkSignatureToSystem;
|
[Commands.linkSignatureToSystem]: CommandLinkSignatureToSystem;
|
||||||
|
[Commands.signaturesUpdated]: CommandLinkSignaturesUpdated;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface MapHandlers {
|
export interface MapHandlers {
|
||||||
@@ -114,10 +118,13 @@ export enum OutCommand {
|
|||||||
getCharacterJumps = 'get_character_jumps',
|
getCharacterJumps = 'get_character_jumps',
|
||||||
getSignatures = 'get_signatures',
|
getSignatures = 'get_signatures',
|
||||||
getSystemStaticInfos = 'get_system_static_infos',
|
getSystemStaticInfos = 'get_system_static_infos',
|
||||||
|
getConnectionInfo = 'get_connection_info',
|
||||||
updateConnectionTimeStatus = 'update_connection_time_status',
|
updateConnectionTimeStatus = 'update_connection_time_status',
|
||||||
|
updateConnectionType = 'update_connection_type',
|
||||||
updateConnectionMassStatus = 'update_connection_mass_status',
|
updateConnectionMassStatus = 'update_connection_mass_status',
|
||||||
updateConnectionShipSizeType = 'update_connection_ship_size_type',
|
updateConnectionShipSizeType = 'update_connection_ship_size_type',
|
||||||
updateConnectionLocked = 'update_connection_locked',
|
updateConnectionLocked = 'update_connection_locked',
|
||||||
|
updateConnectionCustomInfo = 'update_connection_custom_info',
|
||||||
updateSignatures = 'update_signatures',
|
updateSignatures = 'update_signatures',
|
||||||
updateSystemName = 'update_system_name',
|
updateSystemName = 'update_system_name',
|
||||||
updateSystemDescription = 'update_system_description',
|
updateSystemDescription = 'update_system_description',
|
||||||
@@ -143,6 +150,7 @@ export enum OutCommand {
|
|||||||
|
|
||||||
getUserSettings = 'get_user_settings',
|
getUserSettings = 'get_user_settings',
|
||||||
updateUserSettings = 'update_user_settings',
|
updateUserSettings = 'update_user_settings',
|
||||||
|
unlinkSignature = 'unlink_signature',
|
||||||
}
|
}
|
||||||
|
|
||||||
export type OutCommandHandler = <T = any>(event: { type: OutCommand; data: any }) => Promise<T>;
|
export type OutCommandHandler = <T = any>(event: { type: OutCommand; data: any }) => Promise<T>;
|
||||||
|
|||||||
@@ -7,6 +7,7 @@ import { SolarSystemConnection } from '@/hooks/Mapper/types/connection.ts';
|
|||||||
|
|
||||||
export type MapUnionTypes = {
|
export type MapUnionTypes = {
|
||||||
wormholesData: Record<string, WormholeDataRaw>;
|
wormholesData: Record<string, WormholeDataRaw>;
|
||||||
|
wormholes: WormholeDataRaw[];
|
||||||
effects: Record<string, EffectRaw>;
|
effects: Record<string, EffectRaw>;
|
||||||
characters: CharacterTypeRaw[];
|
characters: CharacterTypeRaw[];
|
||||||
userCharacters: string[];
|
userCharacters: string[];
|
||||||
|
|||||||
@@ -1,23 +1,13 @@
|
|||||||
import { SolarSystemStaticInfoRaw } from '@/hooks/Mapper/types';
|
import { SolarSystemStaticInfoRaw } from '@/hooks/Mapper/types';
|
||||||
|
|
||||||
export type SystemSignature = {
|
|
||||||
eve_id: string;
|
|
||||||
kind: string;
|
|
||||||
name: string;
|
|
||||||
description?: string;
|
|
||||||
group: string;
|
|
||||||
linked_system?: SolarSystemStaticInfoRaw;
|
|
||||||
updated_at?: string;
|
|
||||||
};
|
|
||||||
|
|
||||||
export enum SignatureGroup {
|
export enum SignatureGroup {
|
||||||
|
CosmicSignature = 'Cosmic Signature',
|
||||||
|
Wormhole = 'Wormhole',
|
||||||
GasSite = 'Gas Site',
|
GasSite = 'Gas Site',
|
||||||
RelicSite = 'Relic Site',
|
RelicSite = 'Relic Site',
|
||||||
DataSite = 'Data Site',
|
DataSite = 'Data Site',
|
||||||
OreSite = 'Ore Site',
|
OreSite = 'Ore Site',
|
||||||
CombatSite = 'Combat Site',
|
CombatSite = 'Combat Site',
|
||||||
Wormhole = 'Wormhole',
|
|
||||||
CosmicSignature = 'Cosmic Signature',
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export type GroupType = {
|
export type GroupType = {
|
||||||
@@ -26,3 +16,15 @@ export type GroupType = {
|
|||||||
w: number;
|
w: number;
|
||||||
h: number;
|
h: number;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
export type SystemSignature = {
|
||||||
|
eve_id: string;
|
||||||
|
kind: string;
|
||||||
|
name: string;
|
||||||
|
description?: string;
|
||||||
|
group: SignatureGroup;
|
||||||
|
type: string;
|
||||||
|
linked_system?: SolarSystemStaticInfoRaw;
|
||||||
|
inserted_at?: string;
|
||||||
|
updated_at?: string;
|
||||||
|
};
|
||||||
|
|||||||
@@ -1,3 +1,9 @@
|
|||||||
|
export enum Respawn {
|
||||||
|
static = 'static',
|
||||||
|
wandering = 'wandering',
|
||||||
|
reverse = 'reverse',
|
||||||
|
}
|
||||||
|
|
||||||
export type WormholeDataRaw = {
|
export type WormholeDataRaw = {
|
||||||
dest: string;
|
dest: string;
|
||||||
id: number;
|
id: number;
|
||||||
@@ -5,7 +11,7 @@ export type WormholeDataRaw = {
|
|||||||
mass_regen: number;
|
mass_regen: number;
|
||||||
max_mass_per_jump: number;
|
max_mass_per_jump: number;
|
||||||
name: string;
|
name: string;
|
||||||
sibling_groups: any;
|
respawn: Respawn[];
|
||||||
src: string[];
|
src: string[];
|
||||||
static: boolean;
|
static: boolean;
|
||||||
total_mass: number;
|
total_mass: number;
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
import { RefObject, useCallback } from 'react';
|
import { RefObject, useCallback } from 'react';
|
||||||
|
|
||||||
import { MapHandlers } from '@/hooks/Mapper/types/mapHandlers.ts';
|
import { MapHandlers } from '@/hooks/Mapper/types/mapHandlers.ts';
|
||||||
import { getQueryVariable } from './utils';
|
|
||||||
|
|
||||||
export const useMapperHandlers = (handlerRefs: RefObject<MapHandlers>[], hooksRef: RefObject<any>) => {
|
export const useMapperHandlers = (handlerRefs: RefObject<MapHandlers>[], hooksRef: RefObject<any>) => {
|
||||||
const handleCommand = useCallback(
|
const handleCommand = useCallback(
|
||||||
@@ -16,10 +15,6 @@ export const useMapperHandlers = (handlerRefs: RefObject<MapHandlers>[], hooksRe
|
|||||||
);
|
);
|
||||||
|
|
||||||
const handleMapEvent = useCallback(({ type, body }) => {
|
const handleMapEvent = useCallback(({ type, body }) => {
|
||||||
if (getQueryVariable('debug') === 'true') {
|
|
||||||
console.log(type, body);
|
|
||||||
}
|
|
||||||
|
|
||||||
handlerRefs.forEach(ref => {
|
handlerRefs.forEach(ref => {
|
||||||
if (!ref.current) {
|
if (!ref.current) {
|
||||||
return;
|
return;
|
||||||
|
|||||||
26
assets/js/hooks/Mapper/utils/abstractContextProvider.tsx
Normal file
26
assets/js/hooks/Mapper/utils/abstractContextProvider.tsx
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
import { createContext, ReactNode, useContext, useState } from 'react';
|
||||||
|
|
||||||
|
type ContextType<T> = {
|
||||||
|
value: T;
|
||||||
|
setValue: (newValue: T) => void;
|
||||||
|
};
|
||||||
|
|
||||||
|
export const createGenericContext = <T,>() => {
|
||||||
|
const context = createContext<ContextType<T> | undefined>(undefined);
|
||||||
|
|
||||||
|
const Provider = ({ children, initialValue }: { children: ReactNode; initialValue: T }) => {
|
||||||
|
const [value, setValue] = useState<T>(initialValue);
|
||||||
|
|
||||||
|
return <context.Provider value={{ value, setValue }}>{children}</context.Provider>;
|
||||||
|
};
|
||||||
|
|
||||||
|
const useContextValue = () => {
|
||||||
|
const contextValue = useContext(context);
|
||||||
|
if (!contextValue) {
|
||||||
|
throw new Error('useContextValue must be used within a Provider');
|
||||||
|
}
|
||||||
|
return contextValue;
|
||||||
|
};
|
||||||
|
|
||||||
|
return { Provider, useContextValue };
|
||||||
|
};
|
||||||
@@ -8,7 +8,7 @@ export default {
|
|||||||
const selector = '#' + this.el.id;
|
const selector = '#' + this.el.id;
|
||||||
|
|
||||||
const droppable = new Droppable(containers, {
|
const droppable = new Droppable(containers, {
|
||||||
delay: 150,
|
delay: 100,
|
||||||
draggable: '.draggable',
|
draggable: '.draggable',
|
||||||
dropzone: '.dropzone',
|
dropzone: '.dropzone',
|
||||||
mirror: {
|
mirror: {
|
||||||
|
|||||||
@@ -4,13 +4,26 @@ export default {
|
|||||||
mounted() {
|
mounted() {
|
||||||
const hook = this;
|
const hook = this;
|
||||||
|
|
||||||
const button = hook.el.querySelector('.update-button');
|
const refreshZone = hook.el.querySelector('#refresh-area');
|
||||||
|
|
||||||
button.addEventListener('click', function () {
|
const handleUpdate = function (e: Event) {
|
||||||
const lastVersion = hook.el.dataset.version;
|
const hexBricks = hook.el.querySelectorAll('.hex-brick');
|
||||||
localStorage.setItem(LAST_VERSION_KEY, lastVersion);
|
|
||||||
window.location.reload();
|
// Add a new class to each element
|
||||||
});
|
hexBricks.forEach(el => {
|
||||||
|
el.classList.add('hex-brick--active');
|
||||||
|
});
|
||||||
|
|
||||||
|
setTimeout(() => {
|
||||||
|
const lastVersion = hook.el.dataset.version;
|
||||||
|
localStorage.setItem(LAST_VERSION_KEY, lastVersion);
|
||||||
|
|
||||||
|
window.location.reload();
|
||||||
|
}, 2000);
|
||||||
|
};
|
||||||
|
|
||||||
|
refreshZone.addEventListener('click', handleUpdate);
|
||||||
|
refreshZone.addEventListener('mouseover', handleUpdate);
|
||||||
|
|
||||||
this.updated();
|
this.updated();
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -13,8 +13,6 @@
|
|||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@formkit/auto-animate": "0.7.0",
|
"@formkit/auto-animate": "0.7.0",
|
||||||
"@react-rxjs/core": "^0.10.7",
|
|
||||||
"@react-rxjs/utils": "^0.9.7",
|
|
||||||
"@shopify/draggable": "^1.1.3",
|
"@shopify/draggable": "^1.1.3",
|
||||||
"clsx": "^2.1.1",
|
"clsx": "^2.1.1",
|
||||||
"daisyui": "^4.11.1",
|
"daisyui": "^4.11.1",
|
||||||
@@ -31,9 +29,9 @@
|
|||||||
"react-event-hook": "^3.1.2",
|
"react-event-hook": "^3.1.2",
|
||||||
"react-flow-renderer": "^10.3.17",
|
"react-flow-renderer": "^10.3.17",
|
||||||
"react-grid-layout": "^1.3.4",
|
"react-grid-layout": "^1.3.4",
|
||||||
|
"react-hook-form": "^7.53.1",
|
||||||
"react-usestateref": "^1.0.9",
|
"react-usestateref": "^1.0.9",
|
||||||
"reactflow": "^11.10.4",
|
"reactflow": "^11.11.4",
|
||||||
"rxjs": "^7.8.1",
|
|
||||||
"tailwindcss": "^3.3.6",
|
"tailwindcss": "^3.3.6",
|
||||||
"topbar": "^3.0.0",
|
"topbar": "^3.0.0",
|
||||||
"use-local-storage-state": "^19.3.1"
|
"use-local-storage-state": "^19.3.1"
|
||||||
|
|||||||
BIN
assets/static/images/amarr-180.png
Normal file
BIN
assets/static/images/amarr-180.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 187 KiB |
BIN
assets/static/images/caldaria-180.png
Normal file
BIN
assets/static/images/caldaria-180.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 109 KiB |
BIN
assets/static/images/gallente-180.png
Normal file
BIN
assets/static/images/gallente-180.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 205 KiB |
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user