Feature/73 add flights page #77
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "api",
|
"name": "api",
|
||||||
"version": "1.2.0",
|
"version": "1.3.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"author": "",
|
"author": "",
|
||||||
"private": true,
|
"private": true,
|
||||||
|
|||||||
1
app/.gitignore
vendored
1
app/.gitignore
vendored
@@ -1,5 +1,4 @@
|
|||||||
# Logs
|
# Logs
|
||||||
logs
|
|
||||||
*.log
|
*.log
|
||||||
npm-debug.log*
|
npm-debug.log*
|
||||||
yarn-debug.log*
|
yarn-debug.log*
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "app",
|
"name": "app",
|
||||||
"private": true,
|
"private": true,
|
||||||
"version": "1.2.0",
|
"version": "1.3.0",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "vite",
|
"dev": "vite",
|
||||||
@@ -16,9 +16,7 @@
|
|||||||
"@noahspan/noahspan-components": "1.6.0",
|
"@noahspan/noahspan-components": "1.6.0",
|
||||||
"axios": "^1.7.2",
|
"axios": "^1.7.2",
|
||||||
"dotenv": "^16.4.7",
|
"dotenv": "^16.4.7",
|
||||||
"install": "^0.13.0",
|
|
||||||
"leaflet": "^1.9.4",
|
"leaflet": "^1.9.4",
|
||||||
"pure-react-carousel": "^1.32.0",
|
|
||||||
"react": "19.0.0-rc.1",
|
"react": "19.0.0-rc.1",
|
||||||
"react-dom": "19.0.0-rc.1",
|
"react-dom": "19.0.0-rc.1",
|
||||||
"react-hook-form": "^7.51.4",
|
"react-hook-form": "^7.51.4",
|
||||||
|
|||||||
BIN
app/public/layers-2x.png
Normal file
BIN
app/public/layers-2x.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.2 KiB |
BIN
app/public/layers.png
Normal file
BIN
app/public/layers.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 696 B |
BIN
app/public/marker-icon-2x.png
Normal file
BIN
app/public/marker-icon-2x.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 2.4 KiB |
BIN
app/public/marker-icon.png
Normal file
BIN
app/public/marker-icon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.4 KiB |
BIN
app/public/marker-shadow.png
Normal file
BIN
app/public/marker-shadow.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 618 B |
@@ -1,6 +1,7 @@
|
|||||||
import { Navigate, Route, Routes } from 'react-router-dom';
|
import { Navigate, Route, Routes } from 'react-router-dom';
|
||||||
import Pilots from './components/pilots/Pilots';
|
import Flights from './components/flights/Flights';
|
||||||
import Logbook from './components/logbook/Logbook';
|
import Logbook from './components/logbook/Logbook';
|
||||||
|
import Pilots from './components/pilots/Pilots';
|
||||||
import SiteNav from './components/siteNav/SiteNav';
|
import SiteNav from './components/siteNav/SiteNav';
|
||||||
import { useIsAuthenticated } from '@azure/msal-react';
|
import { useIsAuthenticated } from '@azure/msal-react';
|
||||||
|
|
||||||
@@ -19,8 +20,10 @@ const App = () => {
|
|||||||
<>
|
<>
|
||||||
<SiteNav />
|
<SiteNav />
|
||||||
<Routes>
|
<Routes>
|
||||||
|
<Route path='/' element={<Flights />} />
|
||||||
|
<Route path="/logbook" element={<Logbook />} />
|
||||||
<Route path="/pilots" element={<Pilots />} />
|
<Route path="/pilots" element={<Pilots />} />
|
||||||
<Route path="/" element={<Logbook />} />
|
|
||||||
</Routes>
|
</Routes>
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
|
|||||||
32
app/src/components/flights/Flights.tsx
Normal file
32
app/src/components/flights/Flights.tsx
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
import { Box, Container } from "@noahspan/noahspan-components";
|
||||||
|
import LogbookCard from "../logbookCard/LogbookCard";
|
||||||
|
import { useEffect, useState } from "react";
|
||||||
|
import { useLogs } from "../../hooks/logs/UseLogs";
|
||||||
|
import { ILogbookEntry } from "../logbook/ILogbookEntry";
|
||||||
|
|
||||||
|
const Flights = () => {
|
||||||
|
const [flights, setFlights] = useState<ILogbookEntry[]>([])
|
||||||
|
const { logs } = useLogs();
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
const flights: ILogbookEntry[] | undefined = logs?.filter((log: ILogbookEntry) => {
|
||||||
|
if (log.tracks && JSON.parse(log.tracks).length > 0) {
|
||||||
|
return log;
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
if (flights && flights.length > 0) {
|
||||||
|
setFlights(flights)
|
||||||
|
}
|
||||||
|
}, [logs])
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Container>
|
||||||
|
<Box sx={{ margin: '20px' }}>
|
||||||
|
<LogbookCard logs={flights} mode='flights' />
|
||||||
|
</Box>
|
||||||
|
</Container>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
export default Flights;
|
||||||
@@ -35,9 +35,6 @@ const LogTrackMaps = ({ rowKey, trackUrls }: LogTrackMapsProps) => {
|
|||||||
config
|
config
|
||||||
);
|
);
|
||||||
const kml = new DOMParser().parseFromString(response.data, 'text/xml')
|
const kml = new DOMParser().parseFromString(response.data, 'text/xml')
|
||||||
// const converted = toGeoJSON.kml(dom);
|
|
||||||
|
|
||||||
// rewind(converted, false);
|
|
||||||
|
|
||||||
convertedTracks.push(kml);
|
convertedTracks.push(kml);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
import { useEffect, useReducer } from "react";
|
import { useEffect, useReducer } from "react";
|
||||||
import { Button, Drawer, Grid, Icon, IconButton, IconName, TextField, theme, Typography, useMediaQuery } from "@noahspan/noahspan-components";
|
import { Button, Drawer, Grid, Icon, IconButton, IconName, Spinner, TextField, theme, Typography, useMediaQuery } from "@noahspan/noahspan-components";
|
||||||
import { useHttpClient } from "../../hooks/httpClient/UseHttpClient";
|
import { useHttpClient } from "../../hooks/httpClient/UseHttpClient";
|
||||||
import { AxiosInstance, AxiosResponse } from "axios";
|
import { AxiosInstance, AxiosResponse } from "axios";
|
||||||
import { useAccessToken } from "../../hooks/accessToken/UseAcessToken";
|
import { useAccessToken } from "../../hooks/accessToken/UseAcessToken";
|
||||||
@@ -132,13 +132,23 @@ const LogTracks = ({ isDrawerOpen, mode, onOpenClose, selectedRowKey }: LogTrack
|
|||||||
<Typography variant="h4">{`${mode.toString().toLowerCase().charAt(0).toUpperCase() + mode.toString().slice(1).toLowerCase()} Tracks`}</Typography>
|
<Typography variant="h4">{`${mode.toString().toLowerCase().charAt(0).toUpperCase() + mode.toString().slice(1).toLowerCase()} Tracks`}</Typography>
|
||||||
</Grid>
|
</Grid>
|
||||||
<Grid display="flex" justifyContent="right" size={1}>
|
<Grid display="flex" justifyContent="right" size={1}>
|
||||||
<IconButton onClick={onCancel}>
|
<IconButton disabled={state.isLoading ? true : false} onClick={onCancel}>
|
||||||
<Icon iconName={IconName.XMARK} />
|
<Icon iconName={IconName.XMARK} />
|
||||||
</IconButton>
|
</IconButton>
|
||||||
</Grid>
|
</Grid>
|
||||||
{mode === FormMode.EDIT &&
|
{mode === FormMode.EDIT &&
|
||||||
<>
|
<>
|
||||||
{state.tracks.length > 0 && state.tracks.map((track, index) => {
|
{state.isLoading &&
|
||||||
|
<>
|
||||||
|
<Grid display="flex" justifyContent="center" size={12}>
|
||||||
|
<Spinner />
|
||||||
|
</Grid>
|
||||||
|
<Grid display="flex" justifyContent="center" size={12}>
|
||||||
|
Loading...
|
||||||
|
</Grid>
|
||||||
|
</>
|
||||||
|
}
|
||||||
|
{!state.isLoading && state.tracks.length > 0 && state.tracks.map((track, index) => {
|
||||||
const trackSplit = track.split('/')
|
const trackSplit = track.split('/')
|
||||||
const filename = trackSplit[trackSplit.length - 1];
|
const filename = trackSplit[trackSplit.length - 1];
|
||||||
|
|
||||||
@@ -155,6 +165,7 @@ const LogTracks = ({ isDrawerOpen, mode, onOpenClose, selectedRowKey }: LogTrack
|
|||||||
})}
|
})}
|
||||||
<Grid display='flex' gap={2} justifyContent='right' size={12}>
|
<Grid display='flex' gap={2} justifyContent='right' size={12}>
|
||||||
<Button
|
<Button
|
||||||
|
disabled={state.isLoading ? true : false}
|
||||||
startIcon={<Icon iconName={IconName.XMARK} />}
|
startIcon={<Icon iconName={IconName.XMARK} />}
|
||||||
variant="outlined"
|
variant="outlined"
|
||||||
onClick={onCancel}
|
onClick={onCancel}
|
||||||
@@ -165,7 +176,7 @@ const LogTracks = ({ isDrawerOpen, mode, onOpenClose, selectedRowKey }: LogTrack
|
|||||||
{mode.toString() !== FormMode.VIEW && (
|
{mode.toString() !== FormMode.VIEW && (
|
||||||
<Button
|
<Button
|
||||||
component='label'
|
component='label'
|
||||||
loading={state.isLoading}
|
disabled={state.isLoading ? true : false}
|
||||||
startIcon={<Icon iconName={IconName.UPLOAD} />}
|
startIcon={<Icon iconName={IconName.UPLOAD} />}
|
||||||
variant='contained'
|
variant='contained'
|
||||||
>
|
>
|
||||||
|
|||||||
@@ -53,7 +53,7 @@ const Logbook: React.FC<unknown> = () => {
|
|||||||
accessorKey: 'tracks',
|
accessorKey: 'tracks',
|
||||||
header: 'Tracks',
|
header: 'Tracks',
|
||||||
cell: (info: any) => {
|
cell: (info: any) => {
|
||||||
if (info.row.original.tracks && info.row.original.tracks.length > 0) {
|
if (info.row.original.tracks && JSON.parse(info.row.original.tracks).length > 0) {
|
||||||
return (
|
return (
|
||||||
<IconButton onClick={() => onOpenCloseTracks(FormMode.VIEW, info.row.original.rowKey)}><Icon iconName={IconName.MAP_LOCATION_DOT} /></IconButton>
|
<IconButton onClick={() => onOpenCloseTracks(FormMode.VIEW, info.row.original.rowKey)}><Icon iconName={IconName.MAP_LOCATION_DOT} /></IconButton>
|
||||||
)
|
)
|
||||||
@@ -261,7 +261,7 @@ const Logbook: React.FC<unknown> = () => {
|
|||||||
<Table columns={state.columns} data={state.entries} />
|
<Table columns={state.columns} data={state.entries} />
|
||||||
)}
|
)}
|
||||||
{!isMedium && state.entries.length > 0 &&
|
{!isMedium && state.entries.length > 0 &&
|
||||||
<LogbookCard logs={state.entries} onDelete={onDeleteEntry} onOpenCloseForm={onOpenCloseEntryForm} />
|
<LogbookCard logs={state.entries} onDelete={onDeleteEntry} mode='logbook' onOpenCloseForm={onOpenCloseEntryForm} />
|
||||||
}
|
}
|
||||||
</Grid>
|
</Grid>
|
||||||
)}
|
)}
|
||||||
|
|||||||
@@ -1,10 +1,10 @@
|
|||||||
import { Card, CardContent, CardHeader, Grid, Typography } from "@noahspan/noahspan-components";
|
import { Card, CardContent, CardHeader, Grid, Typography } from "@noahspan/noahspan-components";
|
||||||
import { LogbookCardProps } from "./LogbookCardProps.interface";
|
import { LogbookCardProps } from "./LogbookCardProps.interface";
|
||||||
import { useEffect } from "react";
|
|
||||||
import ActionMenu from "../actionMenu/ActionMenu";
|
import ActionMenu from "../actionMenu/ActionMenu";
|
||||||
|
import LogTrackMaps from "../logTrackMaps/LogTrackMaps";
|
||||||
|
|
||||||
|
|
||||||
const LogbookCard = ({ logs, onDelete, onOpenCloseForm }: LogbookCardProps) => {
|
const LogbookCard = ({ logs, mode, onDelete, onOpenCloseForm }: LogbookCardProps) => {
|
||||||
return (
|
return (
|
||||||
<Grid container spacing={2}>
|
<Grid container spacing={2}>
|
||||||
{logs.map((log) => {
|
{logs.map((log) => {
|
||||||
@@ -12,7 +12,7 @@ const LogbookCard = ({ logs, onDelete, onOpenCloseForm }: LogbookCardProps) => {
|
|||||||
<Grid size={12}>
|
<Grid size={12}>
|
||||||
<Card key={log.rowKey}>
|
<Card key={log.rowKey}>
|
||||||
<CardHeader
|
<CardHeader
|
||||||
action={<ActionMenu id={log.rowKey} onDelete={onDelete} onOpenCloseForm={onOpenCloseForm} />}
|
action={mode === 'logbook' ? <ActionMenu id={log.rowKey} onDelete={onDelete!} onOpenCloseForm={onOpenCloseForm!} /> : null}
|
||||||
subheader={log.pilotName}
|
subheader={log.pilotName}
|
||||||
title={log.date}
|
title={log.date}
|
||||||
slotProps={{
|
slotProps={{
|
||||||
@@ -26,6 +26,14 @@ const LogbookCard = ({ logs, onDelete, onOpenCloseForm }: LogbookCardProps) => {
|
|||||||
/>
|
/>
|
||||||
<CardContent>
|
<CardContent>
|
||||||
<Grid container spacing={1}>
|
<Grid container spacing={1}>
|
||||||
|
{mode === 'flights' && log.tracks && JSON.parse(log.tracks).length > 0 &&
|
||||||
|
<Grid size={12}>
|
||||||
|
<LogTrackMaps
|
||||||
|
rowKey={log.rowKey}
|
||||||
|
trackUrls={JSON.parse(log.tracks)}
|
||||||
|
/>
|
||||||
|
</Grid>
|
||||||
|
}
|
||||||
<Grid size={12}>
|
<Grid size={12}>
|
||||||
<Typography variant="subtitle2">Aircraft Make and Model</Typography>
|
<Typography variant="subtitle2">Aircraft Make and Model</Typography>
|
||||||
</Grid>
|
</Grid>
|
||||||
@@ -50,6 +58,24 @@ const LogbookCard = ({ logs, onDelete, onOpenCloseForm }: LogbookCardProps) => {
|
|||||||
<Grid size={12}>
|
<Grid size={12}>
|
||||||
<Typography variant="body1">{log.durationOfFlight}</Typography>
|
<Typography variant="body1">{log.durationOfFlight}</Typography>
|
||||||
</Grid>
|
</Grid>
|
||||||
|
{mode === 'logbook' && log.tracks && JSON.parse(log.tracks).length > 0 &&
|
||||||
|
<>
|
||||||
|
<Grid size={12}>
|
||||||
|
<Typography variant="subtitle2">Tracks</Typography>
|
||||||
|
</Grid>
|
||||||
|
{JSON.parse(log.tracks).map((track: string) => {
|
||||||
|
const trackSplit = track.split('/')
|
||||||
|
const filename = trackSplit[trackSplit.length - 1];
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Grid size={12}>
|
||||||
|
<Typography variant="body1">{filename}</Typography>
|
||||||
|
</Grid>
|
||||||
|
)
|
||||||
|
|
||||||
|
})}
|
||||||
|
</>
|
||||||
|
}
|
||||||
{log.notes &&
|
{log.notes &&
|
||||||
<>
|
<>
|
||||||
<Grid size={12}>
|
<Grid size={12}>
|
||||||
|
|||||||
@@ -3,6 +3,7 @@ import { ILogbookEntry } from "../logbook/ILogbookEntry";
|
|||||||
|
|
||||||
export interface LogbookCardProps {
|
export interface LogbookCardProps {
|
||||||
logs: ILogbookEntry[];
|
logs: ILogbookEntry[];
|
||||||
onDelete: (entryId: string) => void;
|
mode: 'flights' | 'logbook';
|
||||||
onOpenCloseForm: (formMode: FormMode, id: string) => void;
|
onDelete?: (entryId: string) => void;
|
||||||
|
onOpenCloseForm?: (formMode: FormMode, id: string) => void;
|
||||||
}
|
}
|
||||||
@@ -32,9 +32,13 @@ const SiteNav = () => {
|
|||||||
const getPages = () => {
|
const getPages = () => {
|
||||||
const pages = [
|
const pages = [
|
||||||
{
|
{
|
||||||
name: 'Logbook',
|
name: 'Flights',
|
||||||
url: '/'
|
url: '/'
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
name: 'Logbook',
|
||||||
|
url: '/logbook'
|
||||||
|
},
|
||||||
{
|
{
|
||||||
name: 'Pilots',
|
name: 'Pilots',
|
||||||
url: '/pilots'
|
url: '/pilots'
|
||||||
@@ -79,7 +83,6 @@ const SiteNav = () => {
|
|||||||
|
|
||||||
return imageUrl;
|
return imageUrl;
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
console.log(error);
|
|
||||||
throw new Error();
|
throw new Error();
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|||||||
40
app/src/hooks/logs/UseLogs.tsx
Normal file
40
app/src/hooks/logs/UseLogs.tsx
Normal file
@@ -0,0 +1,40 @@
|
|||||||
|
import { useEffect, useState } from "react";
|
||||||
|
import { useHttpClient } from "../httpClient/UseHttpClient";
|
||||||
|
import { useAccessToken } from "../accessToken/UseAcessToken";
|
||||||
|
import { useIsAuthenticated } from "@azure/msal-react";
|
||||||
|
import { AxiosInstance, AxiosResponse } from "axios";
|
||||||
|
import { ILogbookEntry } from "../../components/logbook/ILogbookEntry";
|
||||||
|
|
||||||
|
export const useLogs = () => {
|
||||||
|
const [logs, setLogs] = useState<ILogbookEntry[]>();
|
||||||
|
const httpClient: AxiosInstance = useHttpClient();
|
||||||
|
const { getAccessToken } = useAccessToken();
|
||||||
|
const isAuthenticated = useIsAuthenticated();
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
const getLogs = async () => {
|
||||||
|
try {
|
||||||
|
const config = isAuthenticated
|
||||||
|
? { headers: { Authorization: await getAccessToken() } }
|
||||||
|
: {};
|
||||||
|
const response: AxiosResponse = await httpClient.get(
|
||||||
|
`api/logs`,
|
||||||
|
config
|
||||||
|
);
|
||||||
|
const logs: ILogbookEntry[] = response.data;
|
||||||
|
|
||||||
|
logs.sort((a, b) => new Date(b.date).getTime() - new Date(a.date).getTime())
|
||||||
|
|
||||||
|
setLogs(logs)
|
||||||
|
} catch (error) {
|
||||||
|
return error;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
getLogs();
|
||||||
|
}, [])
|
||||||
|
|
||||||
|
return {
|
||||||
|
logs
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,3 +1,4 @@
|
|||||||
body {
|
body {
|
||||||
background-color: #f2f2f2;
|
background-color: #f2f2f2;
|
||||||
|
margin: 8px;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@noahspan/flying",
|
"name": "@noahspan/flying",
|
||||||
"version": "1.2.0",
|
"version": "1.3.0",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"start": "concurrently 'npm run start:azure -w api' 'wait-on tcp:0.0.0.0:7071 && npm run dev -w app'",
|
"start": "concurrently 'npm run start:azure -w api' 'wait-on tcp:0.0.0.0:7071 && npm run dev -w app'",
|
||||||
"format": "prettier --write \"**/src/**/*.ts\" \"**/test/**/*.ts\"",
|
"format": "prettier --write \"**/src/**/*.ts\" \"**/test/**/*.ts\"",
|
||||||
|
|||||||
51
pnpm-lock.yaml
generated
51
pnpm-lock.yaml
generated
@@ -166,15 +166,9 @@ importers:
|
|||||||
dotenv:
|
dotenv:
|
||||||
specifier: ^16.4.7
|
specifier: ^16.4.7
|
||||||
version: 16.4.7
|
version: 16.4.7
|
||||||
install:
|
|
||||||
specifier: ^0.13.0
|
|
||||||
version: 0.13.0
|
|
||||||
leaflet:
|
leaflet:
|
||||||
specifier: ^1.9.4
|
specifier: ^1.9.4
|
||||||
version: 1.9.4
|
version: 1.9.4
|
||||||
pure-react-carousel:
|
|
||||||
specifier: ^1.32.0
|
|
||||||
version: 1.32.0(react-dom@19.0.0-rc.1(react@19.0.0-rc.1))(react@19.0.0-rc.1)
|
|
||||||
react:
|
react:
|
||||||
specifier: 19.0.0-rc.1
|
specifier: 19.0.0-rc.1
|
||||||
version: 19.0.0-rc.1
|
version: 19.0.0-rc.1
|
||||||
@@ -3037,16 +3031,9 @@ packages:
|
|||||||
babel-plugin-macros:
|
babel-plugin-macros:
|
||||||
optional: true
|
optional: true
|
||||||
|
|
||||||
deep-freeze@0.0.1:
|
|
||||||
resolution: {integrity: sha512-Z+z8HiAvsGwmjqlphnHW5oz6yWlOwu6EQfFTjmeTWlDeda3FS2yv3jhq35TX/ewmsnqB+RX2IdsIOyjJCQN5tg==}
|
|
||||||
|
|
||||||
deep-is@0.1.4:
|
deep-is@0.1.4:
|
||||||
resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
|
resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
|
||||||
|
|
||||||
deepmerge@2.2.1:
|
|
||||||
resolution: {integrity: sha512-R9hc1Xa/NOBi9WRVUWg19rl1UB7Tt4kuPd+thNJgFZoxXsTz7ncaPaeIm+40oSGuP33DfMb4sZt1QIGiJzC4EA==}
|
|
||||||
engines: {node: '>=0.10.0'}
|
|
||||||
|
|
||||||
deepmerge@4.2.2:
|
deepmerge@4.2.2:
|
||||||
resolution: {integrity: sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==}
|
resolution: {integrity: sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==}
|
||||||
engines: {node: '>=0.10.0'}
|
engines: {node: '>=0.10.0'}
|
||||||
@@ -3185,9 +3172,6 @@ packages:
|
|||||||
resolution: {integrity: sha512-xUtoPkMggbz0MPyPiIWr1Kp4aeWJjDZ6SMvURhimjdZgsRuDplF5/s9hcgGhyXMhs+6vpnuoiZ2kFiu3FMnS8Q==}
|
resolution: {integrity: sha512-xUtoPkMggbz0MPyPiIWr1Kp4aeWJjDZ6SMvURhimjdZgsRuDplF5/s9hcgGhyXMhs+6vpnuoiZ2kFiu3FMnS8Q==}
|
||||||
engines: {node: '>=18'}
|
engines: {node: '>=18'}
|
||||||
|
|
||||||
equals@1.0.5:
|
|
||||||
resolution: {integrity: sha512-wI15a6ZoaaXPv+55+Vh2Kqn3+efKRv8QPtcGTjW5xmanMnQzESdAt566jevtMZyt3W/jwLDTzXpMph5ECDJ2zg==}
|
|
||||||
|
|
||||||
errno@0.1.8:
|
errno@0.1.8:
|
||||||
resolution: {integrity: sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==}
|
resolution: {integrity: sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==}
|
||||||
hasBin: true
|
hasBin: true
|
||||||
@@ -3741,10 +3725,6 @@ packages:
|
|||||||
resolution: {integrity: sha512-vI2w4zl/mDluHt9YEQ/543VTCwPKWiHzKtm9dM2V0NdFcqEexDAjUHzO1oA60HRNaVifGXXM1tRRNluLVHa0Kg==}
|
resolution: {integrity: sha512-vI2w4zl/mDluHt9YEQ/543VTCwPKWiHzKtm9dM2V0NdFcqEexDAjUHzO1oA60HRNaVifGXXM1tRRNluLVHa0Kg==}
|
||||||
engines: {node: '>=18'}
|
engines: {node: '>=18'}
|
||||||
|
|
||||||
install@0.13.0:
|
|
||||||
resolution: {integrity: sha512-zDml/jzr2PKU9I8J/xyZBQn8rPCAY//UOYNmR01XwNwyfhEWObo2SWfSl1+0tm1u6PhxLwDnfsT/6jB7OUxqFA==}
|
|
||||||
engines: {node: '>= 0.10'}
|
|
||||||
|
|
||||||
ipaddr.js@1.9.1:
|
ipaddr.js@1.9.1:
|
||||||
resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==}
|
resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==}
|
||||||
engines: {node: '>= 0.10'}
|
engines: {node: '>= 0.10'}
|
||||||
@@ -4026,9 +4006,6 @@ packages:
|
|||||||
resolution: {integrity: sha512-/imKNG4EbWNrVjoNC/1H5/9GFy+tqjGBHCaSsN+P2RnPqjsLmv6UD3Ej+Kj8nBWaRAwyk7kK5ZUc+OEatnTR3A==}
|
resolution: {integrity: sha512-/imKNG4EbWNrVjoNC/1H5/9GFy+tqjGBHCaSsN+P2RnPqjsLmv6UD3Ej+Kj8nBWaRAwyk7kK5ZUc+OEatnTR3A==}
|
||||||
hasBin: true
|
hasBin: true
|
||||||
|
|
||||||
jkroso-type@1.1.1:
|
|
||||||
resolution: {integrity: sha512-zZgay+fPG6PgMUrpyFADmQmvLo39+AZa7Gc5pZhev2RhDxwANEq2etwD8d0e6rTg5NkwOIlQmaEmns3draC6Ng==}
|
|
||||||
|
|
||||||
joi@17.13.3:
|
joi@17.13.3:
|
||||||
resolution: {integrity: sha512-otDA4ldcIx+ZXsKHWmp0YizCweVRZG96J10b0FevjfuncLO1oX59THoAmHkNubYJ+9gWsYsp5k8v4ib6oDv1fA==}
|
resolution: {integrity: sha512-otDA4ldcIx+ZXsKHWmp0YizCweVRZG96J10b0FevjfuncLO1oX59THoAmHkNubYJ+9gWsYsp5k8v4ib6oDv1fA==}
|
||||||
|
|
||||||
@@ -4791,12 +4768,6 @@ packages:
|
|||||||
pure-rand@6.1.0:
|
pure-rand@6.1.0:
|
||||||
resolution: {integrity: sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA==}
|
resolution: {integrity: sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA==}
|
||||||
|
|
||||||
pure-react-carousel@1.32.0:
|
|
||||||
resolution: {integrity: sha512-RW0zKjjId1Xmspcqdu3v0pmlce3BVDACJ0fzt1+ZPJ4GxqJbIqt2kPAh1e5M19S5BDewihnq6kz4kIaGXleO3w==}
|
|
||||||
peerDependencies:
|
|
||||||
react: 15.x || 16.x || 17.x || 18.x
|
|
||||||
react-dom: 15.x || 16.x || 17.x || 18.x
|
|
||||||
|
|
||||||
qs@6.13.0:
|
qs@6.13.0:
|
||||||
resolution: {integrity: sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==}
|
resolution: {integrity: sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==}
|
||||||
engines: {node: '>=0.6'}
|
engines: {node: '>=0.6'}
|
||||||
@@ -9067,12 +9038,8 @@ snapshots:
|
|||||||
optionalDependencies:
|
optionalDependencies:
|
||||||
babel-plugin-macros: 3.1.0
|
babel-plugin-macros: 3.1.0
|
||||||
|
|
||||||
deep-freeze@0.0.1: {}
|
|
||||||
|
|
||||||
deep-is@0.1.4: {}
|
deep-is@0.1.4: {}
|
||||||
|
|
||||||
deepmerge@2.2.1: {}
|
|
||||||
|
|
||||||
deepmerge@4.2.2: {}
|
deepmerge@4.2.2: {}
|
||||||
|
|
||||||
deepmerge@4.3.1: {}
|
deepmerge@4.3.1: {}
|
||||||
@@ -9177,10 +9144,6 @@ snapshots:
|
|||||||
|
|
||||||
environment@1.1.0: {}
|
environment@1.1.0: {}
|
||||||
|
|
||||||
equals@1.0.5:
|
|
||||||
dependencies:
|
|
||||||
jkroso-type: 1.1.1
|
|
||||||
|
|
||||||
errno@0.1.8:
|
errno@0.1.8:
|
||||||
dependencies:
|
dependencies:
|
||||||
prr: 1.0.1
|
prr: 1.0.1
|
||||||
@@ -9957,8 +9920,6 @@ snapshots:
|
|||||||
strip-ansi: 6.0.1
|
strip-ansi: 6.0.1
|
||||||
wrap-ansi: 6.2.0
|
wrap-ansi: 6.2.0
|
||||||
|
|
||||||
install@0.13.0: {}
|
|
||||||
|
|
||||||
ipaddr.js@1.9.1: {}
|
ipaddr.js@1.9.1: {}
|
||||||
|
|
||||||
is-arguments@1.2.0:
|
is-arguments@1.2.0:
|
||||||
@@ -10415,8 +10376,6 @@ snapshots:
|
|||||||
|
|
||||||
jiti@1.21.7: {}
|
jiti@1.21.7: {}
|
||||||
|
|
||||||
jkroso-type@1.1.1: {}
|
|
||||||
|
|
||||||
joi@17.13.3:
|
joi@17.13.3:
|
||||||
dependencies:
|
dependencies:
|
||||||
'@hapi/hoek': 9.3.0
|
'@hapi/hoek': 9.3.0
|
||||||
@@ -11166,16 +11125,6 @@ snapshots:
|
|||||||
|
|
||||||
pure-rand@6.1.0: {}
|
pure-rand@6.1.0: {}
|
||||||
|
|
||||||
pure-react-carousel@1.32.0(react-dom@19.0.0-rc.1(react@19.0.0-rc.1))(react@19.0.0-rc.1):
|
|
||||||
dependencies:
|
|
||||||
'@babel/runtime': 7.26.10
|
|
||||||
deep-freeze: 0.0.1
|
|
||||||
deepmerge: 2.2.1
|
|
||||||
equals: 1.0.5
|
|
||||||
prop-types: 15.8.1
|
|
||||||
react: 19.0.0-rc.1
|
|
||||||
react-dom: 19.0.0-rc.1(react@19.0.0-rc.1)
|
|
||||||
|
|
||||||
qs@6.13.0:
|
qs@6.13.0:
|
||||||
dependencies:
|
dependencies:
|
||||||
side-channel: 1.1.0
|
side-channel: 1.1.0
|
||||||
|
|||||||
Reference in New Issue
Block a user