Skip to content

Commit

Permalink
Merge pull request #40 from dragoni7/share-loadout
Browse files Browse the repository at this point in the history
encrypt and parse loadout from store
  • Loading branch information
Rorschach7552 authored Aug 30, 2024
2 parents ce185b6 + b964030 commit 6beea9c
Show file tree
Hide file tree
Showing 7 changed files with 471 additions and 3 deletions.
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<link rel="icon" type="image/png" href="https://i.imgur.com/fqmSRNz.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + React</title>
<title>D2Loadouts</title>
</head>
<body>
<div id="root"></div>
Expand Down
128 changes: 128 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,17 @@
"@mui/system": "^5.15.20",
"@reduxjs/toolkit": "^2.2.6",
"@tanstack/react-table": "^8.17.3",
"@types/react-beautiful-dnd": "^13.1.8",
"@types/react-slick": "^0.23.13",
"axios": "^1.7.2",
"dexie": "^4.0.8",
"dexie-react-hooks": "^1.1.7",
"dotenv": "^16.4.5",
"framer-motion": "^11.3.29",
"heap-js": "^2.5.0",
"lz-string": "^1.5.0",
"react": "^18.2.0",
"react-beautiful-dnd": "^13.1.1",
"react-dom": "^18.2.0",
"react-redux": "^9.1.2",
"react-router-dom": "^6.23.1",
Expand Down
3 changes: 2 additions & 1 deletion src/components/LoadoutCustomization.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import ModCustomization from '../features/armor/components/ModCustomization';
import EquipLoadout from '../features/loadouts/components/EquipLoadout';
import AbilitiesModification from '../features/subclass/AbilitiesModification';
import { ManifestSubclass } from '../types/manifest-types';
import ShareLoadout from '../features/loadouts/components/ShareLoadout';

interface LoadoutCustomizationProps {
onBackClick: () => void;
Expand Down Expand Up @@ -71,7 +72,7 @@ const LoadoutCustomization: React.FC<LoadoutCustomizationProps> = ({
</Grid>
<Grid item md={1} sx={{ textAlign: 'center' }}>
<EquipLoadout />
SHARE LOADOUT BUTTON ?
<ShareLoadout />
</Grid>
</Grid>
</Box>
Expand Down
Loading

0 comments on commit 6beea9c

Please sign in to comment.