1 Commits

Author SHA1 Message Date
Irtiza-h30
c26e6f6dac changed prop name spelling 2020-07-30 14:16:43 -04:00
46 changed files with 9501 additions and 7539 deletions

View File

@@ -5,7 +5,6 @@ on:
# Publish `master` as Docker `latest` image. # Publish `master` as Docker `latest` image.
branches: branches:
- master - master
- 'release/**'
# Publish `v1.2.3` tags as releases. # Publish `v1.2.3` tags as releases.
tags: tags:
@@ -14,10 +13,6 @@ on:
# Run tests for any PRs. # Run tests for any PRs.
pull_request: pull_request:
schedule:
# runs nightly build at 5AM
- cron: '00 09 * * *'
env: env:
IMAGE_NAME: wlan-cloud-ui IMAGE_NAME: wlan-cloud-ui
DOCKER_REPO: tip-tip-wlan-cloud-docker-repo.jfrog.io DOCKER_REPO: tip-tip-wlan-cloud-docker-repo.jfrog.io
@@ -44,31 +39,11 @@ jobs:
needs: test needs: test
runs-on: ubuntu-latest runs-on: ubuntu-latest
if: github.event_name == 'push' || github.event_name == 'schedule' if: github.event_name == 'push'
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: Adding property file with component version and commit hash
run: |
# Strip git ref prefix from version
VERSION=$(echo "${{ github.ref }}" | sed -e 's,.*/\(.*\),\1,')
# Strip "v" prefix from tag name
[[ "${{ github.ref }}" == "refs/tags/"* ]] && VERSION=$(echo $VERSION | sed -e 's/^v//')
# Create a release snapshot if we are on release branch
[[ "${{ github.ref }}" == "refs/heads/release/"* ]] && VERSION=$(echo "${{ github.ref }}" | sed -e 's/refs\/heads\/release\/[v]//' | awk '{print $1"-SNAPSHOT"}')
# Use Docker `latest` tag convention
[ "$VERSION" == "master" ] && VERSION=1.2.0-SNAPSHOT
TIMESTAMP=$(date +'%Y-%m-%d')
echo date=$TIMESTAMP > app/commit.properties
echo commitId=$GITHUB_SHA >> app/commit.properties
echo projectVersion=$VERSION>> app/commit.properties
- name: Build image - name: Build image
run: docker build . -f Dockerfile -t image --build-arg NPM_TOKEN=${{secrets.NPM_REPO_AUTH_TOKEN}} run: docker build . -f Dockerfile -t image --build-arg NPM_TOKEN=${{secrets.NPM_REPO_AUTH_TOKEN}}
@@ -81,7 +56,6 @@ jobs:
- name: Push image - name: Push image
run: | run: |
IMAGE_ID=$DOCKER_REPO/$IMAGE_NAME IMAGE_ID=$DOCKER_REPO/$IMAGE_NAME
TIMESTAMP=$(date +'%Y-%m-%d')
# Change all uppercase to lowercase # Change all uppercase to lowercase
IMAGE_ID=$(echo $IMAGE_ID | tr '[A-Z]' '[a-z]') IMAGE_ID=$(echo $IMAGE_ID | tr '[A-Z]' '[a-z]')
@@ -92,18 +66,11 @@ jobs:
# Strip "v" prefix from tag name # Strip "v" prefix from tag name
[[ "${{ github.ref }}" == "refs/tags/"* ]] && VERSION=$(echo $VERSION | sed -e 's/^v//') [[ "${{ github.ref }}" == "refs/tags/"* ]] && VERSION=$(echo $VERSION | sed -e 's/^v//')
# Create a release snapshot if we are on release branch
[[ "${{ github.ref }}" == "refs/heads/release/"* ]] && VERSION=$(echo "${{ github.ref }}" | sed -e 's/refs\/heads\/release\/[v]//' | awk '{print $1"-SNAPSHOT"}')
# Use Docker `latest` tag convention # Use Docker `latest` tag convention
[ "$VERSION" == "master" ] && VERSION=1.2.0-SNAPSHOT [ "$VERSION" == "master" ] && VERSION=latest
echo IMAGE_ID=$IMAGE_ID echo IMAGE_ID=$IMAGE_ID
echo VERSION=$VERSION echo VERSION=$VERSION
echo TIMESTAMP=$TIMESTAMP
docker tag image $IMAGE_ID:$VERSION docker tag image $IMAGE_ID:$VERSION
docker push $IMAGE_ID:$VERSION docker push $IMAGE_ID:$VERSION
docker tag image $IMAGE_ID:$VERSION-$TIMESTAMP
docker push $IMAGE_ID:$VERSION-$TIMESTAMP

1
.gitignore vendored
View File

@@ -4,7 +4,6 @@
/node_modules /node_modules
/.pnp /.pnp
.pnp.js .pnp.js
package-lock.json
# testing # testing
/coverage /coverage

View File

@@ -13,7 +13,6 @@ ENV PATH /app/node_modules/.bin:$PATH
# where available (npm@5+) # where available (npm@5+)
COPY package*.json ./ COPY package*.json ./
#RUN npm install #RUN npm install
# If you are building your code for production # If you are building your code for production
RUN (echo "@tip-wlan:registry=https://tip.jfrog.io/artifactory/api/npm/tip-wlan-cloud-npm-repo/" && echo "//tip.jfrog.io/artifactory/api/npm/tip-wlan-cloud-npm-repo/:_authToken=$NPM_TOKEN") > .npmrc RUN (echo "@tip-wlan:registry=https://tip.jfrog.io/artifactory/api/npm/tip-wlan-cloud-npm-repo/" && echo "//tip.jfrog.io/artifactory/api/npm/tip-wlan-cloud-npm-repo/:_authToken=$NPM_TOKEN") > .npmrc
@@ -25,12 +24,7 @@ RUN npm run build
# production environment # production environment
FROM nginx:stable-alpine FROM nginx:stable-alpine
RUN apk add --no-cache jq
COPY --from=build /app/dist /usr/share/nginx/html COPY --from=build /app/dist /usr/share/nginx/html
COPY nginx/nginx.conf /etc/nginx/conf.d/default.conf COPY nginx/nginx.conf /etc/nginx/conf.d/default.conf
COPY docker_entrypoint.sh generate_config_js.sh /
COPY app/commit.properties /
RUN chmod +x docker_entrypoint.sh generate_config_js.sh
EXPOSE 80 EXPOSE 80
ENTRYPOINT ["/docker_entrypoint.sh"] CMD ["nginx", "-g", "daemon off;"]

View File

@@ -2,30 +2,12 @@
## Set up environment: ## Set up environment:
Install Dependencies: Delete from package.json (undo this delete after all steps)
`"@tip-wlan/wlan-cloud-ui-library": X.X.X,`
Install Dependencies
`npm install` `npm install`
You will get an error installing the package [wlan-cloud-ui-library](https://github.com/Telecominfraproject/wlan-cloud-ui-library) because it is in a private npm registry.
You can either install the package with the commands below or clone the repo [wlan-cloud-ui-library](https://github.com/Telecominfraproject/wlan-cloud-ui-library) and skip to the section Set up Full Development.
Run
```
npm login --registry=https://tip.jfrog.io/artifactory/api/npm/tip-wlan-cloud-npm-repo/
```
And enter the supplied credentials. Ask @sean-macfarlane for credentials if you don't have.
Install package:
```
npm i --registry=https://tip.jfrog.io/artifactory/api/npm/tip-wlan-cloud-npm-repo/ @tip-wlan/wlan-cloud-ui-library
```
### Set up Full Development
_Skip this section if you are not using a local [wlan-cloud-ui-library](https://github.com/Telecominfraproject/wlan-cloud-ui-library)_
Clone [wlan-cloud-ui-library](https://github.com/Telecominfraproject/wlan-cloud-ui-library) in parent folder Clone [wlan-cloud-ui-library](https://github.com/Telecominfraproject/wlan-cloud-ui-library) in parent folder
``` ```
@@ -46,25 +28,15 @@ If `npm link` fails due to Permissions run with `sudo`
sudo npm link ../wlan-cloud-ui-library sudo npm link ../wlan-cloud-ui-library
``` ```
To run Full Development you must clone [wlan-cloud-graphql-gw](https://github.com/Telecominfraproject/wlan-cloud-graphql-gw), follow it's README, and run it. Or you use the live production build by setting the environment variable `API` to the GraphQL domain.
## Run: ## Run:
### Bare Development ### Development
This is if you only want to run this repo locally, and want to use the live production builds of [wlan-cloud-ui-library](https://github.com/Telecominfraproject/wlan-cloud-ui-library) and [wlan-cloud-graphql-gw](https://github.com/Telecominfraproject/wlan-cloud-graphql-gw)
`npm run start:bare`
### Full Development
If you have cloned [wlan-cloud-ui-library](https://github.com/Telecominfraproject/wlan-cloud-ui-library) and [wlan-cloud-graphql-gw](https://github.com/Telecominfraproject/wlan-cloud-graphql-gw)
`npm start` `npm start`
### Tests ### Tests
`npm test` `npm run test`
### Production ### Production

View File

@@ -1,4 +0,0 @@
#This file will be used when running the docker locally
date=${date}
commitId=${commit.id}
projectVersion=${project.version}

File diff suppressed because it is too large Load Diff

View File

@@ -1,5 +1,6 @@
import React, { useContext } from 'react'; import React, { useContext } from 'react';
import { useQuery, useMutation, gql } from '@apollo/client'; import gql from 'graphql-tag';
import { useQuery, useMutation } from '@apollo/react-hooks';
import { Alert, notification } from 'antd'; import { Alert, notification } from 'antd';
import { Accounts as AccountsPage, Loading } from '@tip-wlan/wlan-cloud-ui-library'; import { Accounts as AccountsPage, Loading } from '@tip-wlan/wlan-cloud-ui-library';
@@ -7,25 +8,28 @@ import { Accounts as AccountsPage, Loading } from '@tip-wlan/wlan-cloud-ui-libra
import UserContext from 'contexts/UserContext'; import UserContext from 'contexts/UserContext';
const GET_ALL_USERS = gql` const GET_ALL_USERS = gql`
query GetAllUsers($customerId: ID!, $context: JSONObject) { query GetAllUsers($customerId: ID!, $cursor: String) {
getAllUsers(customerId: $customerId, context: $context) { getAllUsers(customerId: $customerId, cursor: $cursor) {
items { items {
id id
email: username email: username
roles role
lastModifiedTimestamp lastModifiedTimestamp
customerId customerId
} }
context context {
cursor
lastPage
}
} }
} }
`; `;
const CREATE_USER = gql` const CREATE_USER = gql`
mutation CreateUser($username: String!, $password: String!, $roles: [String], $customerId: ID!) { mutation CreateUser($username: String!, $password: String!, $role: String!, $customerId: ID!) {
createUser(username: $username, password: $password, roles: $roles, customerId: $customerId) { createUser(username: $username, password: $password, role: $role, customerId: $customerId) {
username username
roles role
customerId customerId
} }
} }
@@ -36,7 +40,7 @@ const UPDATE_USER = gql`
$id: ID! $id: ID!
$username: String! $username: String!
$password: String! $password: String!
$roles: [String] $role: String!
$customerId: ID! $customerId: ID!
$lastModifiedTimestamp: String $lastModifiedTimestamp: String
) { ) {
@@ -44,13 +48,13 @@ const UPDATE_USER = gql`
id: $id id: $id
username: $username username: $username
password: $password password: $password
roles: $roles role: $role
customerId: $customerId customerId: $customerId
lastModifiedTimestamp: $lastModifiedTimestamp lastModifiedTimestamp: $lastModifiedTimestamp
) { ) {
id id
username username
roles role
customerId customerId
lastModifiedTimestamp lastModifiedTimestamp
} }
@@ -66,7 +70,7 @@ const DELETE_USER = gql`
`; `;
const Accounts = () => { const Accounts = () => {
const { customerId, id: currentUserId } = useContext(UserContext); const { customerId } = useContext(UserContext);
const { data, loading, error, refetch, fetchMore } = useQuery(GET_ALL_USERS, { const { data, loading, error, refetch, fetchMore } = useQuery(GET_ALL_USERS, {
variables: { customerId }, variables: { customerId },
@@ -78,7 +82,7 @@ const Accounts = () => {
const handleLoadMore = () => { const handleLoadMore = () => {
if (!data.getAllUsers.context.lastPage) { if (!data.getAllUsers.context.lastPage) {
fetchMore({ fetchMore({
variables: { context: data.getAllUsers.context }, variables: { cursor: data.getAllUsers.context.cursor },
updateQuery: (previousResult, { fetchMoreResult }) => { updateQuery: (previousResult, { fetchMoreResult }) => {
const previousEntry = previousResult.getAllUsers; const previousEntry = previousResult.getAllUsers;
const newItems = fetchMoreResult.getAllUsers.items; const newItems = fetchMoreResult.getAllUsers.items;
@@ -95,12 +99,12 @@ const Accounts = () => {
} }
}; };
const handleCreateUser = ({ email, password, roles }) => { const handleCreateUser = (email, password, role) => {
createUser({ createUser({
variables: { variables: {
username: email, username: email,
password, password,
roles: [roles], role,
customerId, customerId,
}, },
}) })
@@ -119,13 +123,13 @@ const Accounts = () => {
); );
}; };
const handleEditUser = ({ id, email, password, roles, lastModifiedTimestamp }) => { const handleEditUser = (id, email, password, role, lastModifiedTimestamp) => {
updateUser({ updateUser({
variables: { variables: {
id, id,
username: email, username: email,
password, password,
roles: [roles], role,
customerId, customerId,
lastModifiedTimestamp, lastModifiedTimestamp,
}, },
@@ -173,7 +177,6 @@ const Accounts = () => {
return ( return (
<AccountsPage <AccountsPage
data={data.getAllUsers.items} data={data.getAllUsers.items}
currentUserId={currentUserId}
onLoadMore={handleLoadMore} onLoadMore={handleLoadMore}
onCreateUser={handleCreateUser} onCreateUser={handleCreateUser}
onEditUser={handleEditUser} onEditUser={handleEditUser}

View File

@@ -1,14 +1,11 @@
import React, { useContext } from 'react'; import React, { useContext } from 'react';
import { AddProfile as AddProfilePage } from '@tip-wlan/wlan-cloud-ui-library'; import { AddProfile as AddProfilePage } from '@tip-wlan/wlan-cloud-ui-library';
import { useMutation, useQuery, gql } from '@apollo/client'; import gql from 'graphql-tag';
import { useMutation, useQuery } from '@apollo/react-hooks';
import { notification } from 'antd'; import { notification } from 'antd';
import { useHistory } from 'react-router-dom';
import { ROUTES, AUTH_TOKEN } from 'constants/index';
import UserContext from 'contexts/UserContext'; import UserContext from 'contexts/UserContext';
import { GET_ALL_PROFILES, GET_API_URL } from 'graphql/queries'; import { GET_ALL_PROFILES } from 'graphql/queries';
import { fetchMoreProfiles } from 'graphql/functions';
import { getItem } from 'utils/localStorage';
const CREATE_PROFILE = gql` const CREATE_PROFILE = gql`
mutation CreateProfile( mutation CreateProfile(
@@ -36,51 +33,10 @@ const CREATE_PROFILE = gql`
const AddProfile = () => { const AddProfile = () => {
const { customerId } = useContext(UserContext); const { customerId } = useContext(UserContext);
const { data: ssidProfiles } = useQuery(GET_ALL_PROFILES, {
const { data: apiUrl } = useQuery(GET_API_URL);
const { data: ssidProfiles, fetchMore } = useQuery(GET_ALL_PROFILES(), {
variables: { customerId, type: 'ssid' }, variables: { customerId, type: 'ssid' },
fetchPolicy: 'network-only',
});
const { data: radiusProfiles, fetchMore: fetchMoreRadiusProfiles } = useQuery(
GET_ALL_PROFILES(),
{
variables: { customerId, type: 'radius' },
fetchPolicy: 'network-only',
}
);
const { data: captiveProfiles, fetchMore: fetchMoreCaptiveProfiles } = useQuery(
GET_ALL_PROFILES(),
{
variables: { customerId, type: 'captive_portal' },
fetchPolicy: 'network-only',
}
);
const { data: venueProfiles, fetchMore: fetchMoreVenueProfiles } = useQuery(GET_ALL_PROFILES(), {
variables: { customerId, type: 'passpoint_venue' },
fetchPolicy: 'network-only',
});
const { data: operatorProfiles, fetchMore: fetchMoreOperatorProfiles } = useQuery(
GET_ALL_PROFILES(),
{
variables: { customerId, type: 'passpoint_operator' },
fetchPolicy: 'network-only',
}
);
const { data: idProviderProfiles, fetchMore: fetchMoreIdProviderProfiles } = useQuery(
GET_ALL_PROFILES(),
{
variables: { customerId, type: 'passpoint_osu_id_provider' },
fetchPolicy: 'network-only',
}
);
const { data: rfProfiles, fetchMore: fetchMoreRfProfiles } = useQuery(GET_ALL_PROFILES(), {
variables: { customerId, type: 'rf' },
fetchPolicy: 'network-only',
}); });
const [createProfile] = useMutation(CREATE_PROFILE); const [createProfile] = useMutation(CREATE_PROFILE);
const history = useHistory();
const handleAddProfile = (profileType, name, details, childProfileIds = []) => { const handleAddProfile = (profileType, name, details, childProfileIds = []) => {
createProfile({ createProfile({
@@ -97,7 +53,6 @@ const AddProfile = () => {
message: 'Success', message: 'Success',
description: 'Profile successfully created.', description: 'Profile successfully created.',
}); });
history.push(ROUTES.profiles, { refetch: true });
}) })
.catch(() => .catch(() =>
notification.error({ notification.error({
@@ -107,71 +62,12 @@ const AddProfile = () => {
); );
}; };
const handleFetchMoreProfiles = (e, key) => {
if (key === 'radius') fetchMoreProfiles(e, radiusProfiles, fetchMoreRadiusProfiles);
else if (key === 'captive_portal')
fetchMoreProfiles(e, captiveProfiles, fetchMoreCaptiveProfiles);
else if (key === 'rf') fetchMoreProfiles(e, rfProfiles, fetchMoreRfProfiles);
else if (key === 'passpoint_venue') fetchMoreProfiles(e, venueProfiles, fetchMoreVenueProfiles);
else if (key === 'passpoint_operator')
fetchMoreProfiles(e, operatorProfiles, fetchMoreOperatorProfiles);
else if (key === 'passpoint_osu_id_provider')
fetchMoreProfiles(e, idProviderProfiles, fetchMoreIdProviderProfiles);
else fetchMoreProfiles(e, ssidProfiles, fetchMore);
};
const handleFileUpload = async (fileName, file) => {
const token = getItem(AUTH_TOKEN);
if (apiUrl?.getApiUrl) {
fetch(`${apiUrl?.getApiUrl}filestore/${fileName}`, {
method: 'POST',
headers: {
Authorization: token ? `Bearer ${token.access_token}` : '',
'Content-Type': 'application/octet-stream',
},
body: file,
})
.then(response => response.json())
.then(resp => {
if (resp?.success) {
notification.success({
message: 'Success',
description: 'File successfully uploaded.',
});
} else {
notification.error({
message: 'Error',
description: 'File could not be uploaded.',
});
}
})
.catch(() => {
notification.error({
message: 'Error',
description: 'File could not be uploaded.',
});
});
} else {
notification.error({
message: 'Error',
description: 'File could not be uploaded.',
});
}
};
return ( return (
<AddProfilePage <AddProfilePage
onCreateProfile={handleAddProfile} onCreateProfile={handleAddProfile}
ssidProfiles={ssidProfiles?.getAllProfiles?.items} ssidProfiles={
radiusProfiles={radiusProfiles?.getAllProfiles?.items} (ssidProfiles && ssidProfiles.getAllProfiles && ssidProfiles.getAllProfiles.items) || []
captiveProfiles={captiveProfiles?.getAllProfiles?.items} }
venueProfiles={venueProfiles?.getAllProfiles?.items}
operatorProfiles={operatorProfiles?.getAllProfiles?.items}
idProviderProfiles={idProviderProfiles?.getAllProfiles?.items}
rfProfiles={rfProfiles?.getAllProfiles?.items}
onFetchMoreProfiles={handleFetchMoreProfiles}
fileUpload={handleFileUpload}
/> />
); );
}; };

View File

@@ -1,13 +1,14 @@
import React, { useContext } from 'react'; import React, { useContext } from 'react';
import { useQuery, gql } from '@apollo/client'; import gql from 'graphql-tag';
import { useQuery } from '@apollo/react-hooks';
import { Alert, notification } from 'antd'; import { Alert, notification } from 'antd';
import { Alarms as AlarmsPage, Loading } from '@tip-wlan/wlan-cloud-ui-library'; import { Alarms as AlarmsPage, Loading } from '@tip-wlan/wlan-cloud-ui-library';
import UserContext from 'contexts/UserContext'; import UserContext from 'contexts/UserContext';
const GET_ALL_ALARMS = gql` const GET_ALL_ALARMS = gql`
query GetAllAlarms($customerId: ID!, $context: JSONObject) { query GetAllAlarms($customerId: ID!, $cursor: String) {
getAllAlarms(customerId: $customerId, context: $context) { getAllAlarms(customerId: $customerId, cursor: $cursor) {
items { items {
severity severity
alarmCode alarmCode
@@ -18,7 +19,10 @@ const GET_ALL_ALARMS = gql`
name name
} }
} }
context context {
cursor
lastPage
}
} }
} }
`; `;
@@ -27,7 +31,6 @@ const Alarms = () => {
const { customerId } = useContext(UserContext); const { customerId } = useContext(UserContext);
const { loading, error, data, refetch, fetchMore } = useQuery(GET_ALL_ALARMS, { const { loading, error, data, refetch, fetchMore } = useQuery(GET_ALL_ALARMS, {
variables: { customerId }, variables: { customerId },
errorPolicy: 'all',
}); });
const handleOnReload = () => { const handleOnReload = () => {
@@ -49,7 +52,7 @@ const Alarms = () => {
const handleLoadMore = () => { const handleLoadMore = () => {
if (!data.getAllAlarms.context.lastPage) { if (!data.getAllAlarms.context.lastPage) {
fetchMore({ fetchMore({
variables: { context: data.getAllAlarms.context }, variables: { cursor: data.getAllAlarms.context.cursor },
updateQuery: (previousResult, { fetchMoreResult }) => { updateQuery: (previousResult, { fetchMoreResult }) => {
const previousEntry = previousResult.getAllAlarms; const previousEntry = previousResult.getAllAlarms;
const newItems = fetchMoreResult.getAllAlarms.items; const newItems = fetchMoreResult.getAllAlarms.items;
@@ -70,10 +73,9 @@ const Alarms = () => {
return <Loading />; return <Loading />;
} }
if (error && !data?.getAllAlarms?.items) { if (error) {
return <Alert message="Error" description="Failed to load alarms." type="error" showIcon />; return <Alert message="Error" description="Failed to load alarms." type="error" showIcon />;
} }
return ( return (
<AlarmsPage <AlarmsPage
data={data.getAllAlarms.items} data={data.getAllAlarms.items}

View File

@@ -2,12 +2,12 @@ import React, { useState } from 'react';
import { Helmet } from 'react-helmet'; import { Helmet } from 'react-helmet';
import { Switch, Redirect } from 'react-router-dom'; import { Switch, Redirect } from 'react-router-dom';
import { ThemeProvider, GenericNotFound } from '@tip-wlan/wlan-cloud-ui-library'; import { ThemeProvider } from '@tip-wlan/wlan-cloud-ui-library';
import logo from 'images/tip-logo.png'; import logo from 'images/tip-logo.png';
import logoMobile from 'images/tip-logo-mobile.png'; import logoMobile from 'images/tip-logo-mobile.png';
import { AUTH_TOKEN, COMPANY, ROUTES, USER_FRIENDLY_RADIOS } from 'constants/index'; import { AUTH_TOKEN, COMPANY } from 'constants/index';
import Login from 'containers/Login'; import Login from 'containers/Login';
import Network from 'containers/Network'; import Network from 'containers/Network';
@@ -32,7 +32,7 @@ import ProtectedRouteWithLayout from './components/ProtectedRouteWithLayout';
const RedirectToDashboard = () => ( const RedirectToDashboard = () => (
<Redirect <Redirect
to={{ to={{
pathname: ROUTES.dashboard, pathname: '/dashboard',
}} }}
/> />
); );
@@ -42,7 +42,7 @@ const App = () => {
let initialUser = {}; let initialUser = {};
if (token) { if (token) {
const { userId, userName, userRole, customerId } = parseJwt(token.access_token); const { userId, userName, userRole, customerId } = parseJwt(token.access_token);
initialUser = { id: userId, email: userName, roles: userRole, customerId }; initialUser = { id: userId, email: userName, role: userRole, customerId };
} }
const [user, setUser] = useState(initialUser); const [user, setUser] = useState(initialUser);
@@ -50,7 +50,7 @@ const App = () => {
setItem(AUTH_TOKEN, newToken); setItem(AUTH_TOKEN, newToken);
if (newToken) { if (newToken) {
const { userId, userName, userRole, customerId } = parseJwt(newToken.access_token); const { userId, userName, userRole, customerId } = parseJwt(newToken.access_token);
setUser({ id: userId, email: userName, roles: userRole, customerId }); setUser({ id: userId, email: userName, role: userRole, customerId });
} }
}; };
@@ -60,44 +60,32 @@ const App = () => {
<UserProvider <UserProvider
id={user.id} id={user.id}
email={user.email} email={user.email}
roles={user.roles} role={user.role}
customerId={user.customerId} customerId={user.customerId}
updateUser={updateUser} updateUser={updateUser}
updateToken={updateToken} updateToken={updateToken}
> >
<ThemeProvider <ThemeProvider company={COMPANY} logo={logo} logoMobile={logoMobile}>
company={COMPANY}
logo={logo}
logoMobile={logoMobile}
routes={ROUTES}
radioTypes={USER_FRIENDLY_RADIOS}
>
<Helmet titleTemplate={`%s - ${COMPANY}`} defaultTitle={COMPANY}> <Helmet titleTemplate={`%s - ${COMPANY}`} defaultTitle={COMPANY}>
<meta name="description" content={COMPANY} /> <meta name="description" content={COMPANY} />
</Helmet> </Helmet>
<Switch> <Switch>
<UnauthenticatedRoute exact path={ROUTES.login} component={Login} /> <UnauthenticatedRoute exact path="/login" component={Login} />
<ProtectedRouteWithLayout exact path={ROUTES.root} component={RedirectToDashboard} /> <ProtectedRouteWithLayout exact path="/" component={RedirectToDashboard} />
<ProtectedRouteWithLayout exact path={ROUTES.dashboard} component={Dashboard} /> <ProtectedRouteWithLayout exact path="/dashboard" component={Dashboard} />
<ProtectedRouteWithLayout path={ROUTES.network} component={Network} /> <ProtectedRouteWithLayout path="/network" component={Network} />
<ProtectedRouteWithLayout path={ROUTES.system} component={System} /> <ProtectedRouteWithLayout path="/system" component={System} />
<ProtectedRouteWithLayout exact path={ROUTES.profiles} component={Profiles} /> <ProtectedRouteWithLayout exact path="/profiles" component={Profiles} />
<ProtectedRouteWithLayout <ProtectedRouteWithLayout exact path="/profiles/:id" component={ProfileDetails} />
exact <ProtectedRouteWithLayout exact path="/addprofile" component={AddProfile} />
path={`${ROUTES.profiles}/:id`}
component={ProfileDetails}
/>
<ProtectedRouteWithLayout exact path={ROUTES.addprofile} component={AddProfile} />
<ProtectedRouteWithLayout exact path={ROUTES.alarms} component={Alarms} /> <ProtectedRouteWithLayout exact path="/alarms" component={Alarms} />
{user?.id !== 0 && ( <ProtectedRouteWithLayout exact path="/account/edit" component={EditAccount} />
<ProtectedRouteWithLayout exact path={ROUTES.account} component={EditAccount} /> {user.role === 'SuperUser' && (
<ProtectedRouteWithLayout exact path="/accounts" component={Accounts} />
)} )}
{user?.roles?.[0] === 'SuperUser' && (
<ProtectedRouteWithLayout exact path={ROUTES.users} component={Accounts} />
)}
<ProtectedRouteWithLayout component={GenericNotFound} />
</Switch> </Switch>
</ThemeProvider> </ThemeProvider>
</UserProvider> </UserProvider>

View File

@@ -1,11 +1,10 @@
import React, { useContext, useEffect, useMemo, useState, useRef } from 'react'; import React, { useContext, useMemo, useState } from 'react';
import { Alert } from 'antd'; import { Alert } from 'antd';
import moment from 'moment'; import moment from 'moment';
import { useQuery } from '@apollo/client'; import { useQuery } from '@apollo/react-hooks';
import { Dashboard as DashboardPage, Loading } from '@tip-wlan/wlan-cloud-ui-library'; import { Dashboard as DashboardPage, Loading } from '@tip-wlan/wlan-cloud-ui-library';
import UserContext from 'contexts/UserContext'; import UserContext from 'contexts/UserContext';
import { FILTER_SYSTEM_EVENTS, GET_ALL_STATUS } from 'graphql/queries'; import { FILTER_SYSTEM_EVENTS, GET_ALL_STATUS } from 'graphql/queries';
import { USER_FRIENDLY_RADIOS } from 'constants/index';
function formatBytes(bytes, decimals = 2) { function formatBytes(bytes, decimals = 2) {
if (bytes === 0) return '0 Bytes'; if (bytes === 0) return '0 Bytes';
@@ -14,17 +13,14 @@ function formatBytes(bytes, decimals = 2) {
const dm = decimals < 0 ? 0 : decimals; const dm = decimals < 0 ? 0 : decimals;
const sizes = ['Bytes', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB']; const sizes = ['Bytes', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB'];
const i = Math.floor(Math.log(Math.abs(bytes)) / Math.log(k)); const i = Math.floor(Math.log(bytes) / Math.log(k));
// eslint-disable-next-line no-restricted-properties // eslint-disable-next-line no-restricted-properties
return `${parseFloat((bytes / Math.pow(k, i)).toFixed(dm))} ${sizes[i] || ''}`; return `${parseFloat((bytes / Math.pow(k, i)).toFixed(dm))} ${sizes[i] || ''}`;
} }
function trafficLabelFormatter(bytes) { function trafficLabelFormatter() {
if (this?.value) {
return formatBytes(this.value); return formatBytes(this.value);
}
return formatBytes(bytes);
} }
function trafficTooltipFormatter() { function trafficTooltipFormatter() {
@@ -33,74 +29,64 @@ function trafficTooltipFormatter() {
)}</b><br/>`; )}</b><br/>`;
} }
const lineChartConfig = [ const USER_FRIENDLY_RADIOS = {
{ is2dot4GHz: '2.4GHz',
key: 'service', is5GHzL: '5GHz (L)',
title: 'Inservice APs (24 hours)', is5GHzU: '5GHz (U)',
lines: [{ key: 'inServiceAps', name: 'Inservice APs' }], is5GHz: '5GHz',
}, };
{
key: 'clientDevices',
title: 'Client Devices (24 hours)',
lines: [
{ key: 'clientDevices2dot4GHz', name: '2.4GHz' },
{ key: 'clientDevices5GHz', name: '5GHz' },
],
},
{
key: 'traffic',
title: 'Traffic - 5 min intervals (24 hours)',
lines: [
{ key: 'trafficBytesDownstreamData', name: 'Downstream' },
{ key: 'trafficBytesUpstreamData', name: 'Upstream' },
],
options: { formatter: trafficLabelFormatter, trafficTooltipFormatter },
},
];
const Dashboard = () => { const Dashboard = () => {
const initialGraphTime = useRef({
toTime: moment()
.valueOf()
.toString(),
fromTime: moment()
.subtract(24, 'hours')
.valueOf()
.toString(),
});
const { customerId } = useContext(UserContext); const { customerId } = useContext(UserContext);
const { loading, error, data } = useQuery(GET_ALL_STATUS, { const { loading, error, data } = useQuery(GET_ALL_STATUS, {
variables: { customerId, statusDataTypes: ['CUSTOMER_DASHBOARD'] }, variables: { customerId, statusDataTypes: ['CUSTOMER_DASHBOARD'] },
}); });
const [toTime] = useState(
const [lineChartData, setLineChartData] = useState([]); moment()
const [trafficBytesData, setTrafficBytesData] = useState(); .valueOf()
.toString()
const { loading: metricsLoading, error: metricsError, data: metricsData, fetchMore } = useQuery( );
FILTER_SYSTEM_EVENTS, const [fromTime] = useState(
{ moment()
variables: { .subtract(24, 'hours')
customerId, .valueOf()
fromTime: initialGraphTime.current.fromTime, .toString()
toTime: initialGraphTime.current.toTime,
equipmentIds: [0],
dataTypes: ['StatusChangedEvent'],
limit: 3000, // TODO: make get all in GraphQL
},
}
); );
const formatLineChartData = (list = []) => { const {
if (list.length) { loading: metricsLoading,
const chartData = []; error: metricsError,
data: metricsData,
// refetch: metricsRefetch,
} = useQuery(FILTER_SYSTEM_EVENTS, {
variables: {
customerId,
fromTime,
toTime,
equipmentIds: [0],
dataTypes: ['StatusChangedEvent'],
limit: 1000,
},
});
let inServiceAps = 0; const formatLineChartData = (list = []) => {
let clientDevices2dot4GHz = 0; const lineChartData = {
let clientDevices5GHz = 0; inservicesAPs: {
let trafficBytesDownstreamData = 0; title: 'Inservice APs (24 hours)',
let trafficBytesUpstreamData = 0; data: { key: 'Inservice APs', value: [] },
let totalDown = 0; },
let totalUp = 0; clientDevices: { title: 'Client Devices (24 hours)' },
traffic: {
title: 'Traffic (24 hours)',
formatter: trafficLabelFormatter,
tooltipFormatter: trafficTooltipFormatter,
data: {
trafficBytesDownstream: { key: 'Down Stream', value: [] },
trafficBytesUpstream: { key: 'Up Stream', value: [] },
},
},
};
const clientDevicesData = {};
list.forEach( list.forEach(
({ ({
@@ -116,72 +102,40 @@ const Dashboard = () => {
}, },
}, },
}) => { }) => {
const timestamp = parseInt(eventTimestamp, 10); lineChartData.inservicesAPs.data.value.push([eventTimestamp, equipmentInServiceCount]);
inServiceAps = equipmentInServiceCount; Object.keys(radios).forEach(key => {
if (!clientDevicesData[key]) {
let total5GHz = 0; clientDevicesData[key] = {
total5GHz += (radios?.is5GHz || 0) + (radios?.is5GHzL || 0) + (radios?.is5GHzU || 0); // combine all 5GHz radios key: USER_FRIENDLY_RADIOS[key] || key,
value: [],
clientDevices2dot4GHz = radios.is2dot4GHz || 0; };
clientDevices5GHz = total5GHz || 0; }
clientDevicesData[key].value.push([eventTimestamp, radios[key]]);
trafficBytesDownstreamData = (trafficBytesDownstream > 0 && trafficBytesDownstream) || 0;
trafficBytesUpstreamData = (trafficBytesUpstream > 0 && trafficBytesUpstream) || 0;
totalDown += (trafficBytesDownstream > 0 && trafficBytesDownstream) || 0;
totalUp += (trafficBytesUpstream > 0 && trafficBytesUpstream) || 0;
chartData.push({
timestamp,
inServiceAps,
clientDevices2dot4GHz,
clientDevices5GHz,
trafficBytesDownstreamData,
trafficBytesUpstreamData,
}); });
lineChartData.traffic.data.trafficBytesDownstream.value.push([
eventTimestamp,
trafficBytesDownstream,
]);
lineChartData.traffic.data.trafficBytesUpstream.value.push([
eventTimestamp,
trafficBytesUpstream,
]);
} }
); );
setTrafficBytesData(prev => {
return { return {
totalUpstreamTraffic: (prev?.totalUpstreamTraffic || 0) + totalUp, ...lineChartData,
totalDownstreamTraffic: (prev?.totalDownstreamTraffic || 0) + totalDown, clientDevices: { ...lineChartData.clientDevices, data: { ...clientDevicesData } },
}; };
});
setLineChartData(prev => {
return [...prev, ...chartData];
});
}
}; };
useEffect(() => { const lineChartsData = useMemo(
const interval = setInterval(() => { () => formatLineChartData(metricsData?.filterSystemEvents?.items),
const toTime = moment() [metricsData]
.valueOf() );
.toString();
const fromTime = moment()
.subtract(5, 'minutes')
.valueOf()
.toString();
fetchMore({
variables: {
fromTime,
toTime,
},
updateQuery: (_, { fetchMoreResult }) => {
formatLineChartData(fetchMoreResult?.filterSystemEvents?.items);
},
});
}, 300000);
return () => clearInterval(interval); const statsArr = useMemo(() => {
}, []);
useEffect(() => {
formatLineChartData(metricsData?.filterSystemEvents?.items);
}, [metricsData]);
const statsData = useMemo(() => {
const status = data?.getAllStatus?.items[0]?.detailsJSON || {}; const status = data?.getAllStatus?.items[0]?.detailsJSON || {};
const { const {
@@ -189,6 +143,8 @@ const Dashboard = () => {
totalProvisionedEquipment, totalProvisionedEquipment,
equipmentInServiceCount, equipmentInServiceCount,
equipmentWithClientsCount, equipmentWithClientsCount,
trafficBytesDownstream,
trafficBytesUpstream,
} = status; } = status;
const clientRadios = {}; const clientRadios = {};
@@ -208,13 +164,24 @@ const Dashboard = () => {
}); });
} }
return { return [
totalProvisionedEquipment, {
equipmentInServiceCount, title: 'Access Point',
equipmentWithClientsCount, 'Total Provisioned': totalProvisionedEquipment,
totalAssociated, 'In Service': equipmentInServiceCount,
clientRadios, 'With Clients': equipmentWithClientsCount,
}; },
{
title: 'Client Devices',
'Total Associated': totalAssociated,
...clientRadios,
},
{
title: 'Usage Information',
'Total Traffic (US)': formatBytes(trafficBytesUpstream),
'Total Traffic (DS)': formatBytes(trafficBytesDownstream),
},
];
}, [data]); }, [data]);
const pieChartsData = useMemo(() => { const pieChartsData = useMemo(() => {
@@ -236,27 +203,9 @@ const Dashboard = () => {
return ( return (
<DashboardPage <DashboardPage
statsCardDetails={[ statsCardDetails={statsArr}
{
title: 'Access Point',
'Total Provisioned': statsData?.totalProvisionedEquipment,
'In Service': statsData?.equipmentInServiceCount,
'With Clients': statsData?.equipmentWithClientsCount,
},
{
title: 'Client Devices',
'Total Associated': statsData?.totalAssociated,
...statsData?.clientRadios,
},
{
title: 'Usage Information (24 hours)',
'Total Traffic (Downstream)': formatBytes(trafficBytesData?.totalDownstreamTraffic),
'Total Traffic (Upstream)': formatBytes(trafficBytesData?.totalUpstreamTraffic),
},
]}
pieChartDetails={pieChartsData} pieChartDetails={pieChartsData}
lineChartData={lineChartData} lineChartDetails={lineChartsData}
lineChartConfig={lineChartConfig}
lineChartLoading={metricsLoading} lineChartLoading={metricsLoading}
lineChartError={metricsError} lineChartError={metricsError}
/> />

View File

@@ -1,5 +1,6 @@
import React, { useContext } from 'react'; import React, { useContext } from 'react';
import { useMutation, useQuery, gql } from '@apollo/client'; import gql from 'graphql-tag';
import { useMutation, useQuery } from '@apollo/react-hooks';
import { notification, Alert } from 'antd'; import { notification, Alert } from 'antd';
import { EditAccount as EditAccountPage, Loading } from '@tip-wlan/wlan-cloud-ui-library'; import { EditAccount as EditAccountPage, Loading } from '@tip-wlan/wlan-cloud-ui-library';
@@ -10,7 +11,7 @@ const GET_USER = gql`
getUser(id: $id) { getUser(id: $id) {
id id
username username
roles role
customerId customerId
lastModifiedTimestamp lastModifiedTimestamp
} }
@@ -22,7 +23,7 @@ const UPDATE_USER = gql`
$id: ID! $id: ID!
$username: String! $username: String!
$password: String! $password: String!
$roles: [String] $role: String!
$customerId: ID! $customerId: ID!
$lastModifiedTimestamp: String $lastModifiedTimestamp: String
) { ) {
@@ -30,13 +31,13 @@ const UPDATE_USER = gql`
id: $id id: $id
username: $username username: $username
password: $password password: $password
roles: $roles role: $role
customerId: $customerId customerId: $customerId
lastModifiedTimestamp: $lastModifiedTimestamp lastModifiedTimestamp: $lastModifiedTimestamp
) { ) {
id id
username username
roles role
customerId customerId
lastModifiedTimestamp lastModifiedTimestamp
} }
@@ -49,14 +50,14 @@ const EditAccount = () => {
const [updateUser] = useMutation(UPDATE_USER); const [updateUser] = useMutation(UPDATE_USER);
const handleSubmit = newPassword => { const handleSubmit = newPassword => {
const { roles, customerId, lastModifiedTimestamp } = data.getUser; const { role, customerId, lastModifiedTimestamp } = data.getUser;
updateUser({ updateUser({
variables: { variables: {
id, id,
username: email, username: email,
password: newPassword, password: newPassword,
roles, role,
customerId, customerId,
lastModifiedTimestamp, lastModifiedTimestamp,
}, },

View File

@@ -1,5 +1,6 @@
import React, { useContext } from 'react'; import React, { useContext } from 'react';
import { useMutation, useApolloClient, gql } from '@apollo/client'; import gql from 'graphql-tag';
import { useMutation, useApolloClient } from '@apollo/react-hooks';
import { useHistory } from 'react-router-dom'; import { useHistory } from 'react-router-dom';
import { notification } from 'antd'; import { notification } from 'antd';
@@ -26,10 +27,9 @@ const Login = () => {
const handleLogin = (email, password) => { const handleLogin = (email, password) => {
authenticateUser({ variables: { email, password } }) authenticateUser({ variables: { email, password } })
.then(({ data }) => { .then(({ data }) => {
client.resetStore().then(() => { client.resetStore();
updateToken(data.authenticateUser); updateToken(data.authenticateUser);
history.push('/'); history.push('/');
});
}) })
.catch(() => .catch(() =>
notification.error({ notification.error({

View File

@@ -1,19 +1,19 @@
import React, { useContext } from 'react'; import React, { useContext } from 'react';
import PropTypes from 'prop-types'; import PropTypes from 'prop-types';
import { useLocation } from 'react-router-dom'; import { useLocation } from 'react-router-dom';
import { useApolloClient, useQuery } from '@apollo/client'; import { useApolloClient, useQuery } from '@apollo/react-hooks';
import { AppLayout as Layout } from '@tip-wlan/wlan-cloud-ui-library'; import { AppLayout as Layout } from '@tip-wlan/wlan-cloud-ui-library';
import { GET_ALARM_COUNT } from 'graphql/queries'; import { GET_ALARM_COUNT } from 'graphql/queries';
import { AUTH_TOKEN, ROUTES } from 'constants/index'; import { AUTH_TOKEN } from 'constants/index';
import { removeItem } from 'utils/localStorage'; import { removeItem } from 'utils/localStorage';
import UserContext from 'contexts/UserContext'; import UserContext from 'contexts/UserContext';
const MasterLayout = ({ children }) => { const MasterLayout = ({ children }) => {
const { roles, customerId, id: currentUserId } = useContext(UserContext); const { role, customerId } = useContext(UserContext);
const client = useApolloClient(); const client = useApolloClient();
const location = useLocation(); const location = useLocation();
@@ -30,60 +30,75 @@ const MasterLayout = ({ children }) => {
const menuItems = [ const menuItems = [
{ {
key: 'dashboard', key: 'dashboard',
path: ROUTES.dashboard, path: '/dashboard',
text: 'Dashboard', text: 'Dashboard',
}, },
{ {
key: 'network', key: 'network',
path: ROUTES.network, path: '/network',
text: 'Network', text: 'Network',
}, },
{ {
key: 'profiles', key: 'profiles',
path: ROUTES.profiles, path: '/profiles',
text: 'Profiles', text: 'Profiles',
}, },
{ {
key: 'system', key: 'system',
path: ROUTES.system, path: '/system',
text: 'System', text: 'System',
}, },
]; ];
const mobileMenuItems = [ const mobileMenuItems = [
...menuItems, {
key: 'dashboard',
path: '/dashboard',
text: 'Dashboard',
},
{
key: 'network',
path: '/network',
text: 'Network',
},
{
key: 'profiles',
path: '/profiles',
text: 'Profiles',
},
{
key: 'system',
path: '/system',
text: 'System',
},
{ {
key: 'settings', key: 'settings',
text: 'Settings', text: 'Settings',
children: [ children: [
...(currentUserId !== 0
? [
{ {
key: 'editAccount', key: 'editAccount',
path: ROUTES.account, path: '/account/edit',
text: 'Edit Account', text: 'Edit Account',
}, },
]
: []),
{ {
key: 'logout', key: 'logout',
path: ROUTES.root, path: '/',
text: 'Log Out', text: 'Log Out',
}, },
], ],
}, },
]; ];
if (roles?.[0] === 'SuperUser') { if (role === 'SuperUser') {
menuItems.push({ menuItems.push({
key: 'users', key: 'accounts',
path: ROUTES.users, path: '/accounts',
text: 'Users', text: 'Accounts',
}); });
mobileMenuItems.push({ mobileMenuItems.push({
key: 'users', key: 'accounts',
path: ROUTES.users, path: '/accounts',
text: 'Users', text: 'Accounts',
}); });
} }
@@ -94,7 +109,6 @@ const MasterLayout = ({ children }) => {
menuItems={menuItems} menuItems={menuItems}
mobileMenuItems={mobileMenuItems} mobileMenuItems={mobileMenuItems}
totalAlarms={data && data.getAlarmCount} totalAlarms={data && data.getAlarmCount}
currentUserId={currentUserId}
> >
{children} {children}
</Layout> </Layout>

View File

@@ -1,77 +1,177 @@
import React, { useContext } from 'react'; import React, { useContext } from 'react';
import PropTypes from 'prop-types'; import PropTypes from 'prop-types';
import { useParams, useHistory } from 'react-router-dom'; import { useParams } from 'react-router-dom';
import { useQuery, useMutation } from '@apollo/client'; import gql from 'graphql-tag';
import { Alert, notification } from 'antd'; import { useQuery, useMutation } from '@apollo/react-hooks';
import { Alert, Spin, notification } from 'antd';
import moment from 'moment'; import moment from 'moment';
import { import { AccessPointDetails as AccessPointDetailsPage } from '@tip-wlan/wlan-cloud-ui-library';
AccessPointDetails as AccessPointDetailsPage,
Loading,
} from '@tip-wlan/wlan-cloud-ui-library';
import { import { FILTER_SERVICE_METRICS } from 'graphql/queries';
GET_EQUIPMENT, import { UPDATE_EQUIPMENT_FIRMWARE } from 'graphql/mutations';
FILTER_SERVICE_METRICS,
GET_ALL_FIRMWARE,
GET_ALL_PROFILES,
} from 'graphql/queries';
import {
UPDATE_EQUIPMENT,
DELETE_EQUIPMENT,
UPDATE_EQUIPMENT_FIRMWARE,
REQUEST_EQUIPMENT_SWITCH_BANK,
REQUEST_EQUIPMENT_REBOOT,
} from 'graphql/mutations';
import { fetchMoreProfiles } from 'graphql/functions';
import UserContext from 'contexts/UserContext'; import UserContext from 'contexts/UserContext';
const GET_EQUIPMENT = gql`
query GetEquipment($id: ID!) {
getEquipment(id: $id) {
id
equipmentType
inventoryId
customerId
profileId
locationId
name
latitude
longitude
serial
lastModifiedTimestamp
details
profile {
name
childProfiles {
id
name
details
}
}
status {
firmware {
detailsJSON
}
protocol {
detailsJSON
details {
reportedMacAddr
manufacturer
}
}
radioUtilization {
detailsJSON
}
clientDetails {
detailsJSON
details {
numClientsPerRadio
}
}
osPerformance {
detailsJSON
}
}
model
alarmsCount
alarms {
severity
alarmCode
details
createdTimestamp
}
}
}
`;
export const GET_ALL_FIRMWARE = gql`
query GetAllFirmware {
getAllFirmware {
id
modelId
versionName
description
filename
commit
releaseDate
}
}
`;
const UPDATE_EQUIPMENT = gql`
mutation UpdateEquipment(
$id: ID!
$equipmentType: String!
$inventoryId: String!
$customerId: ID!
$profileId: ID!
$locationId: ID!
$name: String!
$latitude: String
$longitude: String
$serial: String
$lastModifiedTimestamp: String
$details: JSONObject
) {
updateEquipment(
id: $id
equipmentType: $equipmentType
inventoryId: $inventoryId
customerId: $customerId
profileId: $profileId
locationId: $locationId
name: $name
latitude: $latitude
longitude: $longitude
serial: $serial
lastModifiedTimestamp: $lastModifiedTimestamp
details: $details
) {
id
equipmentType
inventoryId
customerId
profileId
locationId
name
latitude
longitude
serial
lastModifiedTimestamp
details
}
}
`;
export const GET_ALL_PROFILES = gql`
query GetAllProfiles($customerId: ID!, $cursor: String, $type: String) {
getAllProfiles(customerId: $customerId, cursor: $cursor, type: $type) {
items {
id
name
profileType
details
childProfiles {
id
name
details
}
}
context {
cursor
lastPage
}
}
}
`;
const toTime = moment(); const toTime = moment();
const fromTime = moment().subtract(1, 'hour'); const fromTime = moment().subtract(1, 'hour');
const AccessPointDetails = ({ locations }) => { const AccessPointDetails = ({ locations }) => {
const { id } = useParams(); const { id } = useParams();
const { customerId } = useContext(UserContext); const { customerId } = useContext(UserContext);
const history = useHistory();
const { loading, error, data, refetch } = useQuery(GET_EQUIPMENT, { const { loading, error, data, refetch } = useQuery(GET_EQUIPMENT, {
variables: { variables: { id },
id,
},
fetchPolicy: 'network-only',
errorPolicy: 'all',
}); });
const { data: dataProfiles, error: errorProfiles, loading: landingProfiles } = useQuery(
const { data: dataFirmware, error: errorFirmware, loading: loadingFirmware } = useQuery( GET_ALL_PROFILES,
GET_ALL_FIRMWARE,
{
skip: !data?.getEquipment?.model,
variables: { modelId: data?.getEquipment?.model },
errorPolicy: 'all',
}
);
const {
data: dataProfiles,
error: errorProfiles,
loading: loadingProfiles,
fetchMore,
} = useQuery(
GET_ALL_PROFILES(`
childProfiles {
id
name
details
}`),
{ {
variables: { customerId, type: 'equipment_ap' }, variables: { customerId, type: 'equipment_ap' },
fetchPolicy: 'network-only',
} }
); );
const { const {
loading: metricsLoading, loading: metricsLoading,
error: metricsError, error: metricsError,
data: metricsData, data: metricsData,
fetchMore: fetchMoreServiceMetrics, refetch: metricsRefetch,
} = useQuery(FILTER_SERVICE_METRICS, { } = useQuery(FILTER_SERVICE_METRICS, {
variables: { variables: {
customerId, customerId,
@@ -85,52 +185,30 @@ const AccessPointDetails = ({ locations }) => {
const [updateEquipment] = useMutation(UPDATE_EQUIPMENT); const [updateEquipment] = useMutation(UPDATE_EQUIPMENT);
const [updateEquipmentFirmware] = useMutation(UPDATE_EQUIPMENT_FIRMWARE); const [updateEquipmentFirmware] = useMutation(UPDATE_EQUIPMENT_FIRMWARE);
const [requestEquipmentSwitchBank] = useMutation(REQUEST_EQUIPMENT_SWITCH_BANK);
const [requestEquipmentReboot] = useMutation(REQUEST_EQUIPMENT_REBOOT); const { data: dataFirmware, error: errorFirmware, loading: landingFirmware } = useQuery(
const [deleteEquipment] = useMutation(DELETE_EQUIPMENT); GET_ALL_FIRMWARE
);
const refetchData = () => { const refetchData = () => {
refetch(); refetch();
fetchMoreServiceMetrics({ metricsRefetch();
variables: {
fromTime: moment()
.subtract(2, 'minutes')
.valueOf()
.toString(),
toTime: moment()
.valueOf()
.toString(),
},
updateQuery: (previousResult, { fetchMoreResult }) => {
const previousEntry = previousResult.filterServiceMetrics;
const newItems = fetchMoreResult.filterServiceMetrics.items;
return {
filterServiceMetrics: {
context: fetchMoreResult.filterServiceMetrics.context,
items: [...previousEntry.items, ...newItems],
__typename: previousEntry.__typename,
},
};
},
});
}; };
const handleUpdateEquipment = ({ const handleUpdateEquipment = (
id: equipmentId, equipmentId,
equipmentType, equipmentType,
inventoryId, inventoryId,
customerId: custId, custId,
profileId, profileId,
locationId, locationId,
name, name,
baseMacAddress,
latitude, latitude,
longitude, longitude,
serial, serial,
lastModifiedTimestamp, lastModifiedTimestamp,
formattedData, details
}) => { ) => {
updateEquipment({ updateEquipment({
variables: { variables: {
id: equipmentId, id: equipmentId,
@@ -140,12 +218,11 @@ const AccessPointDetails = ({ locations }) => {
profileId, profileId,
locationId, locationId,
name, name,
baseMacAddress,
latitude, latitude,
longitude, longitude,
serial, serial,
lastModifiedTimestamp, lastModifiedTimestamp,
details: formattedData, details,
}, },
}) })
.then(() => { .then(() => {
@@ -163,38 +240,19 @@ const AccessPointDetails = ({ locations }) => {
); );
}; };
const handleDeleteEquipment = () => {
deleteEquipment({
variables: { id },
})
.then(() => {
history.push('/network/access-points');
notification.success({
message: 'Success',
description: 'Equipment successfully deleted',
});
})
.catch(() =>
notification.error({
message: 'Error',
description: 'Equipment could not be deleted.',
})
);
};
const handleUpdateEquipmentFirmware = (equipmentId, firmwareVersionId) => const handleUpdateEquipmentFirmware = (equipmentId, firmwareVersionId) =>
updateEquipmentFirmware({ variables: { equipmentId, firmwareVersionId } }) updateEquipmentFirmware({ variables: { equipmentId, firmwareVersionId } })
.then(firmwareResp => { .then(firmwareResp => {
if (firmwareResp?.data?.updateEquipmentFirmware?.success === true) { if (firmwareResp && firmwareResp.updateEquipmentFirmware.success === false) {
notification.error({
message: 'Error',
description: 'Equipment Firmware Upgrade could not be updated.',
});
} else {
notification.success({ notification.success({
message: 'Success', message: 'Success',
description: 'Equipment Firmware Upgrade in progress', description: 'Equipment Firmware Upgrade in progress',
}); });
} else {
notification.error({
message: 'Error',
description: 'Equipment Firmware Upgrade could not be updated.',
});
} }
}) })
.catch(() => .catch(() =>
@@ -204,59 +262,11 @@ const AccessPointDetails = ({ locations }) => {
}) })
); );
const handleRequestEquipmentSwitchBank = equipmentId => if (loading || landingProfiles || landingFirmware) {
requestEquipmentSwitchBank({ variables: { equipmentId } }) return <Spin size="large" />;
.then(firmwareResp => {
if (firmwareResp?.data?.requestEquipmentSwitchBank?.success === true) {
notification.success({
message: 'Success',
description: 'Equipment Firmware in progress',
});
} else {
notification.error({
message: 'Error',
description: 'Equipment Firmware could not be updated.',
});
}
})
.catch(() =>
notification.error({
message: 'Error',
description: 'Equipment Firmware could not be updated.',
})
);
const handleRequestEquipmentReboot = equipmentId =>
requestEquipmentReboot({ variables: { equipmentId } })
.then(firmwareResp => {
if (firmwareResp?.data?.requestEquipmentReboot?.success === true) {
notification.success({
message: 'Success',
description: 'Equipment Firmware in progress',
});
} else {
notification.error({
message: 'Error',
description: 'Equipment Firmware could not be updated.',
});
}
})
.catch(() =>
notification.error({
message: 'Error',
description: 'Equipment Firmware could not be updated.',
})
);
const handleFetchProfiles = e => {
fetchMoreProfiles(e, dataProfiles, fetchMore);
};
if (loading) {
return <Loading />;
} }
if (error && !data?.getEquipment) { if (error) {
return ( return (
<Alert <Alert
message="Error" message="Error"
@@ -267,29 +277,42 @@ const AccessPointDetails = ({ locations }) => {
); );
} }
if (errorProfiles) {
return (
<Alert
message="Error"
description="Failed to load Access Point profiles."
type="error"
showIcon
/>
);
}
if (errorFirmware) {
return (
<Alert
message="Error"
description="Failed to load Access Point firmware."
type="error"
showIcon
/>
);
}
return ( return (
<AccessPointDetailsPage <AccessPointDetailsPage
handleRefresh={refetchData} handleRefresh={refetchData}
onUpdateEquipment={handleUpdateEquipment} onUpdateEquipment={handleUpdateEquipment}
onDeleteEquipment={handleDeleteEquipment} data={data.getEquipment}
data={data?.getEquipment} profiles={dataProfiles.getAllProfiles.items}
profiles={dataProfiles?.getAllProfiles?.items}
osData={{ osData={{
loading: metricsLoading, loading: metricsLoading,
error: metricsError, error: metricsError,
data: metricsData && metricsData.filterServiceMetrics.items, data: metricsData && metricsData.filterServiceMetrics.items,
}} }}
firmware={dataFirmware?.getAllFirmware} firmware={dataFirmware.getAllFirmware}
locations={locations} locations={locations}
onUpdateEquipmentFirmware={handleUpdateEquipmentFirmware} onUpdateEquipmentFirmware={handleUpdateEquipmentFirmware}
onRequestEquipmentSwitchBank={handleRequestEquipmentSwitchBank}
onRequestEquipmentReboot={handleRequestEquipmentReboot}
loadingProfiles={loadingProfiles}
errorProfiles={errorProfiles}
loadingFirmware={loadingFirmware}
errorFirmware={errorFirmware}
onFetchMoreProfiles={handleFetchProfiles}
isLastProfilesPage={dataProfiles?.getAllProfiles?.context?.lastPage}
/> />
); );
}; };

View File

@@ -1,41 +1,27 @@
import React, { useEffect, useContext } from 'react'; import React, { useEffect, useContext } from 'react';
import PropTypes from 'prop-types'; import PropTypes from 'prop-types';
import moment from 'moment'; import { useLazyQuery } from '@apollo/react-hooks';
import { useLazyQuery } from '@apollo/client'; import { Alert } from 'antd';
import { notification } from 'antd'; import { NetworkTable, Loading } from '@tip-wlan/wlan-cloud-ui-library';
import { floor, padStart } from 'lodash';
import { NetworkTableContainer } from '@tip-wlan/wlan-cloud-ui-library';
import { ROUTES } from 'constants/index';
import UserContext from 'contexts/UserContext'; import UserContext from 'contexts/UserContext';
import { FILTER_EQUIPMENT } from 'graphql/queries'; import { FILTER_EQUIPMENT } from 'graphql/queries';
import styles from './index.module.scss'; import styles from './index.module.scss';
const renderTableCell = (text, _record, _index, defaultValue = 'N/A') => { const renderTableCell = tabCell => {
if (Array.isArray(text)) { if (Array.isArray(tabCell)) {
if (text.length < 1) {
return defaultValue;
}
return ( return (
<div className={styles.tabColumn}> <div className={styles.tabColumn}>
{text.map((i, key) => ( {tabCell.map((i, key) => (
// eslint-disable-next-line react/no-array-index-key // eslint-disable-next-line react/no-array-index-key
<span key={key}>{i}</span> <span key={key}>{i}</span>
))} ))}
</div> </div>
); );
} }
return text !== null ? text : defaultValue; return tabCell;
}; };
const durationToString = duration =>
`${floor(duration.asDays())}d ${floor(duration.hours())}h ${padStart(
duration.minutes(),
2,
0
)}m ${padStart(duration.seconds(), 2, 0)}s`;
const accessPointsTableColumns = [ const accessPointsTableColumns = [
{ {
title: 'NAME', title: 'NAME',
@@ -59,17 +45,12 @@ const accessPointsTableColumns = [
}, },
{ {
title: 'MAC', title: 'MAC',
dataIndex: 'baseMacAddress', dataIndex: ['status', 'protocol', 'details', 'reportedMacAddr'],
render: renderTableCell, render: renderTableCell,
}, },
{ {
title: 'MANUFACTURER', title: 'MANUFACTURER',
dataIndex: 'manufacturer', dataIndex: ['status', 'protocol', 'details', 'manufacturer'],
render: renderTableCell,
},
{
title: 'FIRMWARE',
dataIndex: ['status', 'firmware', 'detailsJSON', 'activeSwVersion'],
render: renderTableCell, render: renderTableCell,
}, },
{ {
@@ -80,7 +61,7 @@ const accessPointsTableColumns = [
{ {
title: 'UP TIME', title: 'UP TIME',
dataIndex: ['status', 'osPerformance', 'details', 'uptimeInSeconds'], dataIndex: ['status', 'osPerformance', 'details', 'uptimeInSeconds'],
render: upTimeInSeconds => durationToString(moment.duration(upTimeInSeconds, 'seconds')), render: renderTableCell,
}, },
{ {
title: 'PROFILE', title: 'PROFILE',
@@ -89,11 +70,11 @@ const accessPointsTableColumns = [
}, },
{ {
title: 'CHANNEL', title: 'CHANNEL',
dataIndex: ['status', 'channel', 'detailsJSON', 'channelNumberStatusDataMap'], dataIndex: 'channel',
render: text => renderTableCell(Object.values(text ?? [])), render: renderTableCell,
}, },
{ {
title: 'OCCUPANCY', title: 'CAPACITY',
dataIndex: ['status', 'radioUtilization', 'details', 'capacityDetails'], dataIndex: ['status', 'radioUtilization', 'details', 'capacityDetails'],
render: renderTableCell, render: renderTableCell,
}, },
@@ -105,39 +86,23 @@ const accessPointsTableColumns = [
{ {
title: 'DEVICES', title: 'DEVICES',
dataIndex: ['status', 'clientDetails', 'details', 'numClientsPerRadio'], dataIndex: ['status', 'clientDetails', 'details', 'numClientsPerRadio'],
render: (text, record, index) => renderTableCell(text, record, index, 0), render: renderTableCell,
}, },
]; ];
const AccessPoints = ({ checkedLocations }) => { const AccessPoints = ({ checkedLocations }) => {
const { customerId } = useContext(UserContext); const { customerId } = useContext(UserContext);
const [filterEquipment, { loading, error, data: equipData, refetch, fetchMore }] = useLazyQuery( const [filterEquipment, { loading, error, data: equipData, fetchMore }] = useLazyQuery(
FILTER_EQUIPMENT, FILTER_EQUIPMENT,
{ {
errorPolicy: 'all', errorPolicy: 'all',
} }
); );
const handleOnRefresh = () => {
refetch()
.then(() => {
notification.success({
message: 'Success',
description: 'Access points reloaded.',
});
})
.catch(() =>
notification.error({
message: 'Error',
description: 'Access points could not be reloaded.',
})
);
};
const handleLoadMore = () => { const handleLoadMore = () => {
if (!equipData.filterEquipment.context.lastPage) { if (!equipData.filterEquipment.context.lastPage) {
fetchMore({ fetchMore({
variables: { context: equipData.filterEquipment.context }, variables: { cursor: equipData.filterEquipment.context.cursor },
updateQuery: (previousResult, { fetchMoreResult }) => { updateQuery: (previousResult, { fetchMoreResult }) => {
const previousEntry = previousResult.filterEquipment; const previousEntry = previousResult.filterEquipment;
const newItems = fetchMoreResult.filterEquipment.items; const newItems = fetchMoreResult.filterEquipment.items;
@@ -164,18 +129,22 @@ const AccessPoints = ({ checkedLocations }) => {
fetchFilterEquipment(); fetchFilterEquipment();
}, [checkedLocations]); }, [checkedLocations]);
if (loading) {
return <Loading />;
}
if (error && !equipData?.filterEquipment?.items) {
return <Alert message="Error" description="Failed to load equipment." type="error" showIcon />;
}
return ( return (
<NetworkTableContainer <NetworkTable
activeTab={ROUTES.accessPoints}
onRefresh={handleOnRefresh}
tableColumns={accessPointsTableColumns} tableColumns={accessPointsTableColumns}
tableData={equipData && equipData.filterEquipment && equipData.filterEquipment.items} tableData={equipData && equipData.filterEquipment && equipData.filterEquipment.items}
onLoadMore={handleLoadMore} onLoadMore={handleLoadMore}
isLastPage={ isLastPage={
equipData && equipData.filterEquipment && equipData.filterEquipment.context.lastPage equipData && equipData.filterEquipment && equipData.filterEquipment.context.lastPage
} }
loading={loading}
error={error && !equipData?.filterEquipment?.items && 'Failed to load equipment.'}
/> />
); );
}; };

View File

@@ -1,4 +1,5 @@
.tabColumn { .tabColumn {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
padding: 0 30px;
} }

View File

@@ -1,12 +1,9 @@
import React, { useContext, useMemo, useEffect } from 'react'; import React, { useContext, useMemo } from 'react';
import PropTypes from 'prop-types'; import PropTypes from 'prop-types';
import { Alert, notification } from 'antd'; import { Alert, notification } from 'antd';
import { useParams } from 'react-router-dom'; import { useParams } from 'react-router-dom';
import { useLazyQuery, useMutation } from '@apollo/client'; import { useQuery, useMutation } from '@apollo/react-hooks';
import { BulkEditAccessPoints, sortRadioTypes } from '@tip-wlan/wlan-cloud-ui-library'; import { BulkEditAccessPoints, Loading } from '@tip-wlan/wlan-cloud-ui-library';
import { USER_FRIENDLY_RADIOS } from 'constants/index';
import { getBreadcrumbPath, getLocationPath } from 'utils/locations';
import { FILTER_EQUIPMENT_BULK_EDIT_APS } from 'graphql/queries'; import { FILTER_EQUIPMENT_BULK_EDIT_APS } from 'graphql/queries';
import { UPDATE_EQUIPMENT_BULK } from 'graphql/mutations'; import { UPDATE_EQUIPMENT_BULK } from 'graphql/mutations';
@@ -28,200 +25,243 @@ const renderTableCell = tabCell => {
return <span>{tabCell}</span>; return <span>{tabCell}</span>;
}; };
const accessPointsChannelTableColumns = [ const accessPointsChannelTableColumns = [
{ title: 'Name', dataIndex: 'name', key: 'name', width: 250, render: renderTableCell }, { title: 'NAME', dataIndex: 'name', key: 'name', render: renderTableCell },
{ {
title: 'Radios', title: 'CHANNEL',
dataIndex: 'radioMap', dataIndex: 'channel',
width: 150, key: 'channel',
render: text => renderTableCell(text.map(i => USER_FRIENDLY_RADIOS[i])),
},
{
title: 'Manual Active Channel',
dataIndex: 'manualChannelNumber',
key: 'manualChannelNumber',
editable: true, editable: true,
width: 200,
render: renderTableCell,
},
{
title: 'Manual Backup Channel',
dataIndex: 'manualBackupChannelNumber',
key: 'manualBackupChannelNumber',
editable: true,
width: 210,
render: renderTableCell, render: renderTableCell,
}, },
{ {
title: 'Cell Size', title: 'CELL SIZE',
dataIndex: 'cellSize', dataIndex: 'cellSize',
key: 'cellSize', key: 'cellSize',
editable: true, editable: true,
width: 150,
render: renderTableCell, render: renderTableCell,
}, },
{ {
title: 'Probe Response Threshold', title: 'PROB RESPONSE THRESHOLD',
dataIndex: 'probeResponseThreshold', dataIndex: 'probeResponseThreshold',
key: 'probeResponseThreshold', key: 'probeResponseThreshold',
editable: true, editable: true,
width: 210,
render: renderTableCell, render: renderTableCell,
}, },
{ {
title: 'Client Disconnect Threshold', title: 'CLIENT DISCONNECT THRESHOLD',
dataIndex: 'clientDisconnectThreshold', dataIndex: 'clientDisconnectThreshold',
key: 'clientDisconnectThreshold', key: 'clientDisconnectThreshold',
editable: true, editable: true,
width: 210,
render: renderTableCell, render: renderTableCell,
}, },
{ {
title: 'SNR (% Drop)', title: 'SNR (% DROP)',
dataIndex: 'snrDrop', dataIndex: 'snrDrop',
key: 'snrDrop', key: 'snrDrop',
editable: true, editable: true,
width: 150,
render: renderTableCell, render: renderTableCell,
}, },
{ {
title: 'Min Load', title: 'MIN LOAD',
dataIndex: 'minLoad', dataIndex: 'minLoad',
key: 'minLoad', key: 'minLoad',
editable: true, editable: true,
width: 150,
render: renderTableCell, render: renderTableCell,
}, },
]; ];
const getRadioDetails = (radioDetails, type) => { const getBreadcrumbPath = (id, locations) => {
const sortedRadios = sortRadioTypes(Object.keys(radioDetails?.radioMap || {})); const locationsPath = [];
const treeRecurse = (parentNodeId, node) => {
if (node.id === parentNodeId) {
locationsPath.unshift(node);
return node;
}
if (node.children) {
let parent;
node.children.some(i => {
parent = treeRecurse(parentNodeId, i);
return parent;
});
if (parent) {
locationsPath.unshift(node);
}
return parent;
}
return null;
};
if (type === 'manualChannelNumber') { treeRecurse(id, {
return sortedRadios.map(i => radioDetails.radioMap[i]?.manualChannelNumber); id: 0,
} children: locations,
});
if (type === 'manualBackupChannelNumber') { return locationsPath;
return sortedRadios.map(i => radioDetails.radioMap[i]?.manualBackupChannelNumber);
}
if (type === 'snrDrop') {
return sortedRadios.map(
i => radioDetails.advancedRadioMap[i]?.bestApSettings?.value?.dropInSnrPercentage
);
}
if (type === 'allowedChannels') {
return sortedRadios.map(i => radioDetails.radioMap[i]?.allowedChannelsPowerLevels);
}
if (type === 'minLoad') {
return sortedRadios.map(
i => radioDetails.advancedRadioMap[i]?.bestApSettings?.value?.minLoadFactor
);
}
if (type === 'cellSize') {
return sortedRadios.map(i => radioDetails.radioMap[i]?.rxCellSizeDb?.value);
}
if (type === 'probeResponseThreshold') {
return sortedRadios.map(i => radioDetails.radioMap[i]?.probeResponseThresholdDb?.value);
}
if (type === 'clientDisconnectThreshold') {
return sortedRadios.map(i => radioDetails.radioMap[i]?.clientDisconnectThresholdDb?.value);
}
return sortedRadios;
}; };
const formatRadioFrequencies = ({ const getLocationPath = (selectedId, locations) => {
manualChannelNumber, const locationsPath = [];
manualBackupChannelNumber,
snrDrop, const treeRecurse = (parentNodeId, node) => {
minLoad, if (node.id === parentNodeId) {
cellSize, locationsPath.unshift(node.id);
probeResponseThreshold,
clientDisconnectThreshold, if (node.children) {
radioMap = [], const flatten = children => {
}) => { children.forEach(i => {
const frequencies = {}; locationsPath.unshift(i.id);
radioMap.forEach((i, index) => { if (i.children) {
frequencies[i] = { flatten(i.children);
channelNumber: manualChannelNumber[index], }
backupChannelNumber: manualBackupChannelNumber[index],
dropInSnrPercentage: snrDrop[index],
minLoadFactor: minLoad[index],
rxCellSizeDb: {
auto: true,
value: cellSize[index],
},
probeResponseThresholdDb: {
auto: true,
value: probeResponseThreshold[index],
},
clientDisconnectThresholdDb: {
auto: true,
value: clientDisconnectThreshold[index],
},
};
}); });
return frequencies; };
flatten(node.children);
}
return node;
}
if (node.children) {
let parent;
node.children.some(i => {
parent = treeRecurse(parentNodeId, i);
return parent;
});
return parent;
}
return null;
};
if (selectedId) {
treeRecurse(selectedId, { id: 0, children: locations });
}
return locationsPath;
}; };
const BulkEditAPs = ({ locations, checkedLocations }) => { const BulkEditAPs = ({ locations, checkedLocations }) => {
const { id } = useParams(); const { id } = useParams();
const { customerId } = useContext(UserContext); const { customerId } = useContext(UserContext);
const locationIds = useMemo(() => { const locationIds = useMemo(() => {
const locationPath = getLocationPath(id, locations); const locationPath = getLocationPath(id, locations);
return locationPath.filter(f => checkedLocations.includes(f)); return locationPath.filter(f => checkedLocations.includes(f));
}, [id, locations, checkedLocations]); }, [id, locations, checkedLocations]);
const [ const {
filterEquipment,
{
loading: filterEquipmentLoading, loading: filterEquipmentLoading,
error: filterEquipmentError, error: filterEquipmentError,
refetch, refetch,
data: equipData, data: equipData,
fetchMore, fetchMore,
}, } = useQuery(FILTER_EQUIPMENT_BULK_EDIT_APS, {
] = useLazyQuery(FILTER_EQUIPMENT_BULK_EDIT_APS, { variables: { customerId, locationIds, equipmentType: 'AP' },
errorPolicy: 'all',
fetchPolicy: 'cache-first',
}); });
const fetchFilterEquipment = async () => {
filterEquipment({
variables: {
customerId,
locationIds,
equipmentType: 'AP',
},
});
};
const [updateEquipmentBulk] = useMutation(UPDATE_EQUIPMENT_BULK); const [updateEquipmentBulk] = useMutation(UPDATE_EQUIPMENT_BULK);
const formattedTableData = useMemo( const getRadioDetails = (radioDetails, type) => {
() => if (type === 'cellSize') {
equipData?.filterEquipment?.items?.map(({ id: key, name, details = {} }) => ({ const cellSizeValues = [];
Object.keys(radioDetails.radioMap).map(i => {
return cellSizeValues.push(radioDetails.radioMap[i].rxCellSizeDb.value);
});
return cellSizeValues;
}
if (type === 'probeResponseThreshold') {
const probeResponseThresholdValues = [];
Object.keys(radioDetails.radioMap).map(i => {
return probeResponseThresholdValues.push(
radioDetails.radioMap[i].probeResponseThresholdDb.value
);
});
return probeResponseThresholdValues;
}
if (type === 'clientDisconnectThreshold') {
const clientDisconnectThresholdValues = [];
Object.keys(radioDetails.radioMap).map(i => {
return clientDisconnectThresholdValues.push(
radioDetails.radioMap[i].clientDisconnectThresholdDb.value
);
});
return clientDisconnectThresholdValues;
}
if (type === 'snrDrop') {
const snrDropValues = [];
Object.keys(radioDetails.advancedRadioMap).map(i => {
return snrDropValues.push(
radioDetails.advancedRadioMap[i].bestApSettings.dropInSnrPercentage
);
});
return snrDropValues;
}
const minLoadValue = [];
Object.keys(radioDetails.advancedRadioMap).map(i => {
return minLoadValue.push(radioDetails.advancedRadioMap[i].bestApSettings.minLoadFactor);
});
return minLoadValue;
};
const setAccessPointsBulkEditTableData = (dataSource = []) => {
const tableData = dataSource.items.map(({ id: key, name, channel, details }) => {
return {
key, key,
id: key, id: key,
name, name,
manualChannelNumber: getRadioDetails(details, 'manualChannelNumber'), channel,
manualBackupChannelNumber: getRadioDetails(details, 'manualBackupChannelNumber'),
cellSize: getRadioDetails(details, 'cellSize'), cellSize: getRadioDetails(details, 'cellSize'),
probeResponseThreshold: getRadioDetails(details, 'probeResponseThreshold'), probeResponseThreshold: getRadioDetails(details, 'probeResponseThreshold'),
clientDisconnectThreshold: getRadioDetails(details, 'clientDisconnectThreshold'), clientDisconnectThreshold: getRadioDetails(details, 'clientDisconnectThreshold'),
snrDrop: getRadioDetails(details, 'snrDrop'), snrDrop: getRadioDetails(details, 'snrDrop'),
minLoad: getRadioDetails(details, 'minLoad'), minLoad: getRadioDetails(details, 'minLoad'),
radioMap: getRadioDetails(details, 'radioMap'), };
allowedChannels: getRadioDetails(details, 'allowedChannels'), });
})), return tableData;
[equipData?.filterEquipment?.items] };
);
const setUpdatedBulkEditTableData = (
equipmentId,
channel,
cellSize,
probeResponseThreshold,
clientDisconnectThreshold,
snrDrop,
minLoad,
dataSource = []
) => {
const updatedItems = [];
let dropInSnrPercentage;
let minLoadFactor;
dataSource.items.forEach(({ id: itemId, details }) => {
if (equipmentId === itemId) {
Object.keys(details.radioMap).forEach((i, dataIndex) => {
const frequencies = {};
dropInSnrPercentage = snrDrop[dataIndex];
minLoadFactor = minLoad[dataIndex];
frequencies[`${i}`] = {
channelNumber: channel[dataIndex],
rxCellSizeDb: {
auto: true,
value: cellSize[dataIndex],
},
probeResponseThresholdDb: {
auto: true,
value: probeResponseThreshold[dataIndex],
},
clientDisconnectThresholdDb: {
auto: true,
value: clientDisconnectThreshold[dataIndex],
},
dropInSnrPercentage,
minLoadFactor,
};
updatedItems.push(frequencies);
});
}
});
return updatedItems;
};
const updateEquipments = editedRowsArr => { const updateEquipments = editedRowsArr => {
updateEquipmentBulk({ updateEquipmentBulk({
@@ -246,19 +286,48 @@ const BulkEditAPs = ({ locations, checkedLocations }) => {
const handleSaveChanges = updatedRows => { const handleSaveChanges = updatedRows => {
const editedRowsArr = []; const editedRowsArr = [];
Object.keys(updatedRows).forEach(key => { if (updatedRows.length > 0) {
return editedRowsArr.push({ updatedRows.map(
equipmentId: updatedRows[key].id, ({
perRadioDetails: formatRadioFrequencies(updatedRows[key]), id: equipmentId,
channel,
cellSize,
probeResponseThreshold,
clientDisconnectThreshold,
snrDrop,
minLoad,
}) => {
const updatedEuips = setUpdatedBulkEditTableData(
equipmentId,
channel,
cellSize,
probeResponseThreshold,
clientDisconnectThreshold,
snrDrop,
minLoad,
equipData && equipData.filterEquipment
);
const tempObj = {
equipmentId,
perRadioDetails: {},
};
updatedEuips.map(item => {
Object.keys(item).forEach(i => {
tempObj.perRadioDetails[i] = item[i];
}); });
return tempObj;
}); });
return editedRowsArr.push(tempObj);
}
);
updateEquipments(editedRowsArr); updateEquipments(editedRowsArr);
}
}; };
const handleLoadMore = () => { const handleLoadMore = () => {
if (!equipData.filterEquipment.context.lastPage) { if (!equipData.filterEquipment.context.lastPage) {
fetchMore({ fetchMore({
variables: { context: equipData.filterEquipment.context }, variables: { cursor: equipData.filterEquipment.context.cursor },
updateQuery: (previousResult, { fetchMoreResult }) => { updateQuery: (previousResult, { fetchMoreResult }) => {
const previousEntry = previousResult.filterEquipment; const previousEntry = previousResult.filterEquipment;
const newItems = fetchMoreResult.filterEquipment.items; const newItems = fetchMoreResult.filterEquipment.items;
@@ -274,30 +343,33 @@ const BulkEditAPs = ({ locations, checkedLocations }) => {
} }
}; };
useEffect(() => { if (filterEquipmentLoading) {
fetchFilterEquipment(); return <Loading />;
}, [locationIds]); }
if (filterEquipmentError) { if (filterEquipmentError) {
return ( return (
<Alert <Alert message="Error" description="Failed to load equipments data." type="error" showIcon />
message="Error"
description="Failed to load equipment(s) data."
type="error"
showIcon
/>
); );
} }
return ( return (
<BulkEditAccessPoints <BulkEditAccessPoints
tableColumns={accessPointsChannelTableColumns} tableColumns={accessPointsChannelTableColumns}
tableData={formattedTableData} tableData={
equipData &&
equipData.filterEquipment &&
setAccessPointsBulkEditTableData(equipData && equipData.filterEquipment)
}
onLoadMore={handleLoadMore} onLoadMore={handleLoadMore}
isLastPage={equipData?.filterEquipment?.context?.lastPage} isLastPage={
equipData &&
equipData.filterEquipment &&
equipData.filterEquipment.context &&
equipData.filterEquipment.context.lastPage
}
onSaveChanges={handleSaveChanges} onSaveChanges={handleSaveChanges}
breadcrumbPath={getBreadcrumbPath(id, locations)} breadcrumbPath={getBreadcrumbPath(id, locations)}
loading={filterEquipmentLoading}
/> />
); );
}; };

View File

@@ -1,4 +1,5 @@
.tabColumn { .tabColumn {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
padding: 0 30px;
} }

View File

@@ -1,6 +1,6 @@
import React, { useContext } from 'react'; import React, { useContext } from 'react';
import { useParams } from 'react-router-dom'; import { useParams } from 'react-router-dom';
import { useQuery } from '@apollo/client'; import { useQuery } from '@apollo/react-hooks';
import moment from 'moment'; import moment from 'moment';
import { Alert, notification } from 'antd'; import { Alert, notification } from 'antd';
import { import {
@@ -12,7 +12,7 @@ import UserContext from 'contexts/UserContext';
import { GET_CLIENT_SESSION, FILTER_SERVICE_METRICS } from 'graphql/queries'; import { GET_CLIENT_SESSION, FILTER_SERVICE_METRICS } from 'graphql/queries';
const toTime = moment(); const toTime = moment();
const fromTime = moment().subtract(4, 'hours'); const fromTime = moment().subtract(1, 'hour');
const ClientDeviceDetails = () => { const ClientDeviceDetails = () => {
const { id } = useParams(); const { id } = useParams();
@@ -33,7 +33,7 @@ const ClientDeviceDetails = () => {
toTime: toTime.valueOf().toString(), toTime: toTime.valueOf().toString(),
clientMacs: [id], clientMacs: [id],
dataTypes: ['Client'], dataTypes: ['Client'],
limit: 1000, limit: 100,
}, },
}); });
@@ -73,7 +73,7 @@ const ClientDeviceDetails = () => {
metricsData={ metricsData={
metricsData && metricsData.filterServiceMetrics && metricsData.filterServiceMetrics.items metricsData && metricsData.filterServiceMetrics && metricsData.filterServiceMetrics.items
} }
historyDate={{ toTime, fromTime }} historyDate={toTime}
/> />
); );
}; };

View File

@@ -1,11 +1,9 @@
import React, { useEffect, useContext } from 'react'; import React, { useEffect, useContext } from 'react';
import PropTypes from 'prop-types'; import PropTypes from 'prop-types';
import { useLazyQuery } from '@apollo/client'; import { useLazyQuery } from '@apollo/react-hooks';
import { notification } from 'antd'; import { Alert } from 'antd';
import { NetworkTable, Loading } from '@tip-wlan/wlan-cloud-ui-library';
import { NetworkTableContainer } from '@tip-wlan/wlan-cloud-ui-library';
import { ROUTES, USER_FRIENDLY_RADIOS } from 'constants/index';
import UserContext from 'contexts/UserContext'; import UserContext from 'contexts/UserContext';
import { FILTER_CLIENT_SESSIONS } from 'graphql/queries'; import { FILTER_CLIENT_SESSIONS } from 'graphql/queries';
@@ -23,30 +21,14 @@ const clientDevicesTableColumns = [
{ title: 'HOST NAME', dataIndex: 'hostname' }, { title: 'HOST NAME', dataIndex: 'hostname' },
{ title: 'ACCESS POINT', dataIndex: ['equipment', 'name'] }, { title: 'ACCESS POINT', dataIndex: ['equipment', 'name'] },
{ title: 'SSID', dataIndex: 'ssid' }, { title: 'SSID', dataIndex: 'ssid' },
{ { title: 'BAND', dataIndex: 'radioType' },
title: 'BAND',
dataIndex: 'radioType',
render: band => USER_FRIENDLY_RADIOS[band],
},
{ title: 'SIGNAL', dataIndex: 'signal' }, { title: 'SIGNAL', dataIndex: 'signal' },
{ { title: 'STATUS', dataIndex: 'status' },
title: 'STATUS',
dataIndex: ['details', 'associationState'],
render: text => {
if (text === 'Active_Data') {
return 'Connected';
}
if (text === 'Disconnected') {
return 'Disconnected';
}
return 'N/A';
},
},
]; ];
const ClientDevices = ({ checkedLocations }) => { const ClientDevices = ({ checkedLocations }) => {
const { customerId } = useContext(UserContext); const { customerId } = useContext(UserContext);
const [filterClientSessions, { loading, error, data, refetch, fetchMore }] = useLazyQuery( const [filterClientSessions, { loading, error, data, fetchMore }] = useLazyQuery(
FILTER_CLIENT_SESSIONS, FILTER_CLIENT_SESSIONS,
{ {
errorPolicy: 'all', errorPolicy: 'all',
@@ -56,7 +38,7 @@ const ClientDevices = ({ checkedLocations }) => {
const handleLoadMore = () => { const handleLoadMore = () => {
if (!data.filterClientSessions.context.lastPage) { if (!data.filterClientSessions.context.lastPage) {
fetchMore({ fetchMore({
variables: { context: data.filterClientSessions.context }, variables: { cursor: data.filterClientSessions.context.cursor },
updateQuery: (previousResult, { fetchMoreResult }) => { updateQuery: (previousResult, { fetchMoreResult }) => {
const previousEntry = previousResult.filterClientSessions; const previousEntry = previousResult.filterClientSessions;
const newItems = fetchMoreResult.filterClientSessions.items; const newItems = fetchMoreResult.filterClientSessions.items;
@@ -79,36 +61,26 @@ const ClientDevices = ({ checkedLocations }) => {
}); });
}; };
const handleOnRefresh = () => {
refetch()
.then(() => {
notification.success({
message: 'Success',
description: 'Client devices reloaded.',
});
})
.catch(() =>
notification.error({
message: 'Error',
description: 'Client devices could not be reloaded.',
})
);
};
useEffect(() => { useEffect(() => {
fetchFilterClientSessions(); fetchFilterClientSessions();
}, [checkedLocations]); }, [checkedLocations]);
if (loading) {
return <Loading />;
}
if (error && !data?.filterClientSessions?.items) {
return ( return (
<NetworkTableContainer <Alert message="Error" description="Failed to load client devices." type="error" showIcon />
activeTab={ROUTES.clientDevices} );
}
return (
<NetworkTable
tableColumns={clientDevicesTableColumns} tableColumns={clientDevicesTableColumns}
tableData={data?.filterClientSessions?.items} tableData={data && data.filterClientSessions && data.filterClientSessions.items}
onLoadMore={handleLoadMore} onLoadMore={handleLoadMore}
onRefresh={handleOnRefresh}
isLastPage={data && data.filterClientSessions && data.filterClientSessions.context.lastPage} isLastPage={data && data.filterClientSessions && data.filterClientSessions.context.lastPage}
loading={loading}
error={error && !data?.filterClientSessions?.items && 'Failed to load client devices.'}
/> />
); );
}; };

View File

@@ -1,6 +1,6 @@
import React, { useMemo, useContext, useState } from 'react'; import React, { useMemo, useContext, useState } from 'react';
import { Switch, Route, useRouteMatch, Redirect } from 'react-router-dom'; import { useLocation, Switch, Route, useRouteMatch, Redirect } from 'react-router-dom';
import { useQuery, useMutation, useLazyQuery } from '@apollo/client'; import { useQuery, useMutation, useLazyQuery } from '@apollo/react-hooks';
import { Alert, notification } from 'antd'; import { Alert, notification } from 'antd';
import _ from 'lodash'; import _ from 'lodash';
import { Network as NetworkPage, PopoverMenu, Loading } from '@tip-wlan/wlan-cloud-ui-library'; import { Network as NetworkPage, PopoverMenu, Loading } from '@tip-wlan/wlan-cloud-ui-library';
@@ -12,28 +12,23 @@ import ClientDeviceDetails from 'containers/Network/containers/ClientDeviceDetai
import BulkEditAccessPoints from 'containers/Network/containers/BulkEditAccessPoints'; import BulkEditAccessPoints from 'containers/Network/containers/BulkEditAccessPoints';
import UserContext from 'contexts/UserContext'; import UserContext from 'contexts/UserContext';
import { import { GET_ALL_LOCATIONS, GET_LOCATION, GET_ALL_PROFILES } from 'graphql/queries';
GET_ALL_LOCATIONS,
GET_LOCATION,
GET_ALL_PROFILES,
FILTER_EQUIPMENT,
} from 'graphql/queries';
import { import {
CREATE_LOCATION, CREATE_LOCATION,
UPDATE_LOCATION, UPDATE_LOCATION,
DELETE_LOCATION, DELETE_LOCATION,
CREATE_EQUIPMENT, CREATE_EQUIPMENT,
} from 'graphql/mutations'; } from 'graphql/mutations';
import { updateQueryGetAllProfiles } from 'graphql/functions';
const Network = () => { const Network = () => {
const { path } = useRouteMatch(); const { path } = useRouteMatch();
const { customerId } = useContext(UserContext); const { customerId } = useContext(UserContext);
const location = useLocation();
const { loading, error, refetch, data } = useQuery(GET_ALL_LOCATIONS, { const { loading, error, refetch, data } = useQuery(GET_ALL_LOCATIONS, {
variables: { customerId }, variables: { customerId },
}); });
const { loading: loadingProfile, error: errorProfile, data: apProfiles, fetchMore } = useQuery( const { loading: loadingProfile, error: errorProfile, data: apProfiles } = useQuery(
GET_ALL_PROFILES(), GET_ALL_PROFILES,
{ {
variables: { customerId, type: 'equipment_ap' }, variables: { customerId, type: 'equipment_ap' },
} }
@@ -43,21 +38,13 @@ const Network = () => {
const [createLocation] = useMutation(CREATE_LOCATION); const [createLocation] = useMutation(CREATE_LOCATION);
const [updateLocation] = useMutation(UPDATE_LOCATION); const [updateLocation] = useMutation(UPDATE_LOCATION);
const [deleteLocation] = useMutation(DELETE_LOCATION); const [deleteLocation] = useMutation(DELETE_LOCATION);
const [createEquipment] = useMutation(CREATE_EQUIPMENT);
const [checkedLocations, setCheckedLocations] = useState([]); const [checkedLocations, setCheckedLocations] = useState([]);
const [deleteModal, setDeleteModal] = useState(false); const [deleteModal, setDeleteModal] = useState(false);
const [editModal, setEditModal] = useState(false); const [editModal, setEditModal] = useState(false);
const [addModal, setAddModal] = useState(false); const [addModal, setAddModal] = useState(false);
const [apModal, setApModal] = useState(false); const [apModal, setApModal] = useState(false);
const [createEquipment] = useMutation(CREATE_EQUIPMENT, {
refetchQueries: [
{
query: FILTER_EQUIPMENT,
variables: { customerId, locationIds: checkedLocations, equipmentType: 'AP' },
},
],
});
const handleGetSingleLocation = id => { const handleGetSingleLocation = id => {
getLocation({ getLocation({
variables: { id }, variables: { id },
@@ -65,7 +52,7 @@ const Network = () => {
}; };
const formatLocationListForTree = (list = []) => { const formatLocationListForTree = (list = []) => {
const checkedTreeLocations = ['0']; const checkedTreeLocations = [];
list.forEach(ele => { list.forEach(ele => {
checkedTreeLocations.push(ele.id); checkedTreeLocations.push(ele.id);
}); });
@@ -105,38 +92,26 @@ const Network = () => {
return [ return [
{ {
title: ( title: (
<PopoverMenu locationId="0" locationType="NETWORK" setAddModal={setAddModal}> <PopoverMenu locationType="NETWORK" setAddModal={setAddModal}>
Network Network
</PopoverMenu> </PopoverMenu>
), ),
id: '0', id: '0',
key: '0',
value: '0', value: '0',
key: '0',
children: unflatten(list), children: unflatten(list),
}, },
]; ];
}; };
const handleAddLocation = ({ location }) => { const handleAddLocation = (name, parentId, locationType) => {
setAddModal(false); setAddModal(false);
let id;
let locationType;
// adding location from root makes selecetedLocation null so we check for that
if (selectedLocation && selectedLocation.getLocation) {
id = selectedLocation.getLocation.id;
locationType = 'SITE';
} else {
id = '0';
locationType = 'COUNTRY';
}
createLocation({ createLocation({
variables: { variables: {
locationType, locationType,
customerId, customerId,
parentId: id, parentId,
name: location, name,
}, },
}) })
.then(() => { .then(() => {
@@ -154,10 +129,8 @@ const Network = () => {
); );
}; };
const handleEditLocation = ({ name }) => { const handleEditLocation = (id, parentId, name, locationType, lastModifiedTimestamp) => {
setEditModal(false); setEditModal(false);
const { id, parentId, locationType, lastModifiedTimestamp } = selectedLocation.getLocation;
updateLocation({ updateLocation({
variables: { variables: {
customerId, customerId,
@@ -183,10 +156,8 @@ const Network = () => {
); );
}; };
const handleDeleteLocation = () => { const handleDeleteLocation = id => {
setDeleteModal(false); setDeleteModal(false);
const { id } = selectedLocation.getLocation;
deleteLocation({ variables: { id } }) deleteLocation({ variables: { id } })
.then(() => { .then(() => {
notification.success({ notification.success({
@@ -203,10 +174,8 @@ const Network = () => {
); );
}; };
const handleCreateEquipment = ({ inventoryId, name, profileId }) => { const handleCreateEquipment = (inventoryId, locationId, name, profileId) => {
setApModal(false); setApModal(false);
const { id: locationId } = selectedLocation.getLocation;
createEquipment({ variables: { customerId, inventoryId, locationId, name, profileId } }) createEquipment({ variables: { customerId, inventoryId, locationId, name, profileId } })
.then(() => { .then(() => {
notification.success({ notification.success({
@@ -232,27 +201,10 @@ const Network = () => {
setCheckedLocations(checkedKeys.checked); setCheckedLocations(checkedKeys.checked);
}; };
const handleFetchProfiles = e => { const locationsTree = useMemo(
if (apProfiles.getAllProfiles.context.lastPage) { () => formatLocationListForTree(data && data.getAllLocations)[0].children,
return false; [data]
} );
e.persist();
const { target } = e;
if (target.scrollTop + target.offsetHeight === target.scrollHeight) {
fetchMore({
variables: { context: { ...apProfiles.getAllProfiles.context } },
updateQuery: updateQueryGetAllProfiles,
});
}
return true;
};
const locationsTree = useMemo(() => formatLocationListForTree(data && data.getAllLocations), [
data,
]);
if (loading) { if (loading) {
return <Loading />; return <Loading />;
@@ -268,6 +220,7 @@ const Network = () => {
onCheck={onCheck} onCheck={onCheck}
checkedLocations={checkedLocations} checkedLocations={checkedLocations}
locations={locationsTree} locations={locationsTree}
activeTab={location.pathname}
selectedLocation={selectedLocation && selectedLocation.getLocation} selectedLocation={selectedLocation && selectedLocation.getLocation}
addModal={addModal} addModal={addModal}
editModal={editModal} editModal={editModal}
@@ -284,8 +237,6 @@ const Network = () => {
profiles={(apProfiles && apProfiles.getAllProfiles && apProfiles.getAllProfiles.items) || []} profiles={(apProfiles && apProfiles.getAllProfiles && apProfiles.getAllProfiles.items) || []}
loadingProfile={loadingProfile} loadingProfile={loadingProfile}
errorProfile={errorProfile} errorProfile={errorProfile}
onFetchMoreProfiles={handleFetchProfiles}
isLastProfilesPage={apProfiles?.getAllProfiles?.context?.lastPage}
> >
<Switch> <Switch>
<Route <Route
@@ -306,17 +257,15 @@ const Network = () => {
/> />
<Route <Route
exact exact
path={`${path}/access-points/:id/:tab`} path={`${path}/access-points/:id`}
render={props => <AccessPointDetails locations={locationsTree} {...props} />} render={props => <AccessPointDetails locations={locationsTree} {...props} />}
/> />
<Route <Route
exact exact
path={`${path}/client-devices`} path={`${path}/client-devices`}
render={props => <ClientDevices checkedLocations={checkedLocations} {...props} />} render={props => <ClientDevices checkedLocations={checkedLocations} {...props} />}
/> />
<Route exact path={`${path}/client-devices/:id`} component={ClientDeviceDetails} /> <Route exact path={`${path}/client-devices/:id`} component={ClientDeviceDetails} />
<Redirect from={`${path}/access-points/:id`} to={`${path}/access-points/:id/general`} />
<Redirect from={path} to={`${path}/access-points`} /> <Redirect from={path} to={`${path}/access-points`} />
</Switch> </Switch>
</NetworkPage> </NetworkPage>

View File

@@ -1,14 +1,13 @@
import React, { useState, useContext } from 'react'; import React, { useState, useContext } from 'react';
import { useParams, Redirect } from 'react-router-dom'; import { useParams, Redirect } from 'react-router-dom';
import { useQuery, useMutation, gql } from '@apollo/client'; import gql from 'graphql-tag';
import { Alert, notification } from 'antd'; import { useQuery, useMutation } from '@apollo/react-hooks';
import { ProfileDetails as ProfileDetailsPage, Loading } from '@tip-wlan/wlan-cloud-ui-library'; import { Alert, Spin, notification } from 'antd';
import { ProfileDetails as ProfileDetailsPage } from '@tip-wlan/wlan-cloud-ui-library';
import { ROUTES, AUTH_TOKEN } from 'constants/index';
import UserContext from 'contexts/UserContext'; import UserContext from 'contexts/UserContext';
import { GET_ALL_PROFILES, GET_API_URL } from 'graphql/queries'; import { GET_ALL_PROFILES } from 'graphql/queries';
import { fetchMoreProfiles } from 'graphql/functions'; import { FILE_UPLOAD } from 'graphql/mutations';
import { getItem } from 'utils/localStorage';
const GET_PROFILE = gql` const GET_PROFILE = gql`
query GetProfile($id: ID!) { query GetProfile($id: ID!) {
@@ -23,16 +22,6 @@ const GET_PROFILE = gql`
profileType profileType
details details
} }
associatedSsidProfiles {
id
name
profileType
details
}
osuSsidProfile {
id
name
}
childProfileIds childProfileIds
createdTimestamp createdTimestamp
lastModifiedTimestamp lastModifiedTimestamp
@@ -85,63 +74,17 @@ const ProfileDetails = () => {
const [redirect, setRedirect] = useState(false); const [redirect, setRedirect] = useState(false);
const { data: apiUrl } = useQuery(GET_API_URL);
const { loading, error, data } = useQuery(GET_PROFILE, { const { loading, error, data } = useQuery(GET_PROFILE, {
variables: { id }, variables: { id },
fetchPolicy: 'network-only',
}); });
const { data: ssidProfiles } = useQuery(GET_ALL_PROFILES, {
const { data: ssidProfiles, fetchMore } = useQuery(GET_ALL_PROFILES(), {
variables: { customerId, type: 'ssid' }, variables: { customerId, type: 'ssid' },
fetchPolicy: 'network-only',
}); });
const { data: radiusProfiles, fetchMore: fetchMoreRadiusProfiles } = useQuery(
GET_ALL_PROFILES(),
{
variables: { customerId, type: 'radius' },
fetchPolicy: 'network-only',
}
);
const { data: captiveProfiles, fetchMore: fetchMoreCaptiveProfiles } = useQuery(
GET_ALL_PROFILES(),
{
variables: { customerId, type: 'captive_portal' },
fetchPolicy: 'network-only',
}
);
const { data: venueProfiles, fetchMore: fetchMoreVenueProfiles } = useQuery(GET_ALL_PROFILES(), {
variables: { customerId, type: 'passpoint_venue' },
fetchPolicy: 'network-only',
});
const { data: operatorProfiles, fetchMore: fetchMoreOperatorProfiles } = useQuery(
GET_ALL_PROFILES(),
{
variables: { customerId, type: 'passpoint_operator' },
fetchPolicy: 'network-only',
}
);
const { data: idProviderProfiles, fetchMore: fetchMoreIdProviderProfiles } = useQuery(
GET_ALL_PROFILES(),
{
variables: { customerId, type: 'passpoint_osu_id_provider' },
fetchPolicy: 'network-only',
}
);
const { data: rfProfiles, fetchMore: fetchMoreRfProfiles } = useQuery(GET_ALL_PROFILES(), {
variables: { customerId, type: 'rf' },
fetchPolicy: 'network-only',
});
const [updateProfile] = useMutation(UPDATE_PROFILE); const [updateProfile] = useMutation(UPDATE_PROFILE);
const [deleteProfile] = useMutation(DELETE_PROFILE); const [deleteProfile] = useMutation(DELETE_PROFILE);
const [fileUpload] = useMutation(FILE_UPLOAD);
const handleDeleteProfile = () => { const handleDeleteProfile = () => {
deleteProfile({ variables: { id } }) deleteProfile({ variables: { id } })
.then(() => { .then(() => {
@@ -187,93 +130,23 @@ const ProfileDetails = () => {
); );
}; };
const handleFileUpload = async (fileName, file) => { const handleFileUpload = (fileName, file) =>
const token = getItem(AUTH_TOKEN); fileUpload({ variables: { fileName, file } })
.then(() => {
if (apiUrl?.getApiUrl) {
fetch(`${apiUrl?.getApiUrl}filestore/${fileName}`, {
method: 'POST',
headers: {
Authorization: token ? `Bearer ${token.access_token}` : '',
'Content-Type': 'application/octet-stream',
},
body: file,
})
.then(response => response.json())
.then(resp => {
if (resp?.success) {
notification.success({ notification.success({
message: 'Success', message: 'Success',
description: 'File successfully uploaded.', description: 'File successfully uploaded.',
}); });
} else { })
.catch(() =>
notification.error({ notification.error({
message: 'Error', message: 'Error',
description: 'File could not be uploaded.', description: 'File could not be uploaded.',
});
}
}) })
.catch(() => { );
notification.error({
message: 'Error',
description: 'File could not be uploaded.',
});
});
} else {
notification.error({
message: 'Error',
description: 'File could not be uploaded.',
});
}
};
const handleDownloadFile = async name => {
const token = getItem(AUTH_TOKEN);
if (apiUrl?.getApiUrl) {
return fetch(`${apiUrl?.getApiUrl}filestore/${encodeURIComponent(name)}`, {
method: 'GET',
headers: {
'Content-Type': 'application/octet-stream',
Authorization: token ? `Bearer ${token.access_token}` : '',
},
})
.then(response => response.blob())
.then(blob => {
return new Promise((resolve, reject) => {
const reader = new FileReader();
reader.onloadend = () => resolve(reader.result);
reader.onerror = reject;
reader.readAsDataURL(blob);
});
})
.catch(() => {
notification.error({
message: 'Error',
description: 'File could not be retrieved.',
});
});
}
return notification.error({
message: 'Error',
description: 'File could not be retrieved.',
});
};
const handleFetchMoreProfiles = (e, key) => {
if (key === 'radius') fetchMoreProfiles(e, radiusProfiles, fetchMoreRadiusProfiles);
else if (key === 'captive_portal')
fetchMoreProfiles(e, captiveProfiles, fetchMoreCaptiveProfiles);
else if (key === 'rf') fetchMoreProfiles(e, rfProfiles, fetchMoreRfProfiles);
else if (key === 'passpoint_venue') fetchMoreProfiles(e, venueProfiles, fetchMoreVenueProfiles);
else if (key === 'passpoint_operator')
fetchMoreProfiles(e, operatorProfiles, fetchMoreOperatorProfiles);
else if (key === 'passpoint_osu_id_provider')
fetchMoreProfiles(e, idProviderProfiles, fetchMoreIdProviderProfiles);
else fetchMoreProfiles(e, ssidProfiles, fetchMore);
};
if (loading) { if (loading) {
return <Loading />; return <Spin size="large" />;
} }
if (error) { if (error) {
@@ -283,7 +156,7 @@ const ProfileDetails = () => {
} }
if (redirect) { if (redirect) {
return <Redirect to={ROUTES.profiles} />; return <Redirect to="/profiles" />;
} }
return ( return (
@@ -291,22 +164,13 @@ const ProfileDetails = () => {
name={data.getProfile.name} name={data.getProfile.name}
profileType={data.getProfile.profileType} profileType={data.getProfile.profileType}
details={data.getProfile.details} details={data.getProfile.details}
childProfiles={data.getProfile.childProfiles}
childProfileIds={data.getProfile.childProfileIds} childProfileIds={data.getProfile.childProfileIds}
onDeleteProfile={handleDeleteProfile} onDeleteProfile={handleDeleteProfile}
onUpdateProfile={handleUpdateProfile} onUpdateProfile={handleUpdateProfile}
ssidProfiles={ssidProfiles?.getAllProfiles?.items} ssidProfiles={
rfProfiles={rfProfiles?.getAllProfiles?.items} (ssidProfiles && ssidProfiles.getAllProfiles && ssidProfiles.getAllProfiles.items) || []
radiusProfiles={radiusProfiles?.getAllProfiles?.items} }
captiveProfiles={captiveProfiles?.getAllProfiles?.items}
venueProfiles={venueProfiles?.getAllProfiles?.items}
operatorProfiles={operatorProfiles?.getAllProfiles?.items}
idProviderProfiles={idProviderProfiles?.getAllProfiles?.items}
associatedSsidProfiles={data.getProfile?.associatedSsidProfiles}
osuSsidProfile={data.getProfile?.osuSsidProfile}
fileUpload={handleFileUpload} fileUpload={handleFileUpload}
onFetchMoreProfiles={handleFetchMoreProfiles}
onDownloadFile={handleDownloadFile}
/> />
); );
}; };

View File

@@ -1,13 +1,29 @@
import React, { useContext, useEffect } from 'react'; import React, { useContext } from 'react';
import { useQuery, useMutation, gql } from '@apollo/client'; import gql from 'graphql-tag';
import { useLocation } from 'react-router-dom'; import { useQuery, useMutation } from '@apollo/react-hooks';
import { Alert, notification } from 'antd';
import { Profile as ProfilePage, Loading } from '@tip-wlan/wlan-cloud-ui-library';
import { GET_ALL_PROFILES } from 'graphql/queries'; import { Alert, Spin, notification } from 'antd';
import { updateQueryGetAllProfiles } from 'graphql/functions';
import { Profile as ProfilePage } from '@tip-wlan/wlan-cloud-ui-library';
import UserContext from 'contexts/UserContext'; import UserContext from 'contexts/UserContext';
const GET_ALL_PROFILES = gql`
query GetAllProfiles($customerId: ID!, $cursor: String) {
getAllProfiles(customerId: $customerId, cursor: $cursor) {
items {
id
name
profileType
details
}
context {
cursor
lastPage
}
}
}
`;
const DELETE_PROFILE = gql` const DELETE_PROFILE = gql`
mutation DeleteProfile($id: ID!) { mutation DeleteProfile($id: ID!) {
deleteProfile(id: $id) { deleteProfile(id: $id) {
@@ -18,28 +34,13 @@ const DELETE_PROFILE = gql`
const Profiles = () => { const Profiles = () => {
const { customerId } = useContext(UserContext); const { customerId } = useContext(UserContext);
const { loading, error, data, refetch, fetchMore } = useQuery( const { loading, error, data, refetch, fetchMore } = useQuery(GET_ALL_PROFILES, {
GET_ALL_PROFILES(`equipmentCount`),
{
variables: { customerId }, variables: { customerId },
fetchPolicy: 'network-only',
}
);
const [deleteProfile] = useMutation(DELETE_PROFILE);
const location = useLocation();
useEffect(() => {
if (location.state && location.state.refetch) {
refetch({
variables: { refresh: Date.now() },
}); });
} const [deleteProfile] = useMutation(DELETE_PROFILE);
}, []);
const reloadTable = () => { const reloadTable = () => {
refetch({ refetch()
variables: { refresh: Date.now() },
})
.then(() => { .then(() => {
notification.success({ notification.success({
message: 'Success', message: 'Success',
@@ -57,22 +58,25 @@ const Profiles = () => {
const handleLoadMore = () => { const handleLoadMore = () => {
if (!data.getAllProfiles.context.lastPage) { if (!data.getAllProfiles.context.lastPage) {
fetchMore({ fetchMore({
variables: { context: { ...data.getAllProfiles.context } }, variables: { cursor: data.getAllProfiles.context.cursor },
updateQuery: updateQueryGetAllProfiles, updateQuery: (previousResult, { fetchMoreResult }) => {
const previousEntry = previousResult.getAllProfiles;
const newItems = fetchMoreResult.getAllProfiles.items;
return {
getAllProfiles: {
context: fetchMoreResult.getAllProfiles.context,
items: [...previousEntry.items, ...newItems],
__typename: previousEntry.__typename,
},
};
},
}); });
} }
}; };
const handleDeleteProfile = id => { const handleDeleteProfile = id => {
deleteProfile({ deleteProfile({ variables: { id } })
variables: { id },
refetchQueries: [
{
query: GET_ALL_PROFILES(`equipmentCount`),
variables: { customerId },
},
],
})
.then(() => { .then(() => {
notification.success({ notification.success({
message: 'Success', message: 'Success',
@@ -88,7 +92,7 @@ const Profiles = () => {
}; };
if (loading) { if (loading) {
return <Loading />; return <Spin size="large" />;
} }
if (error) { if (error) {
@@ -99,7 +103,7 @@ const Profiles = () => {
<ProfilePage <ProfilePage
data={data.getAllProfiles.items} data={data.getAllProfiles.items}
onReload={reloadTable} onReload={reloadTable}
isLastPage={data?.getAllProfiles?.context?.lastPage} isLastPage={data.getAllProfiles.context.lastPage}
onDeleteProfile={handleDeleteProfile} onDeleteProfile={handleDeleteProfile}
onLoadMore={handleLoadMore} onLoadMore={handleLoadMore}
/> />

View File

@@ -1,13 +1,11 @@
import React, { useContext, useMemo } from 'react'; import React, { useContext } from 'react';
import { useQuery, useMutation } from '@apollo/client'; import { useQuery, useMutation } from '@apollo/react-hooks';
import { Alert, notification } from 'antd'; import { Alert, notification } from 'antd';
import { AutoProvision as AutoProvisionPage, Loading } from '@tip-wlan/wlan-cloud-ui-library'; import { AutoProvision as AutoProvisionPage, Loading } from '@tip-wlan/wlan-cloud-ui-library';
import UserContext from 'contexts/UserContext'; import UserContext from 'contexts/UserContext';
import { GET_CUSTOMER, GET_ALL_LOCATIONS, GET_ALL_PROFILES } from 'graphql/queries'; import { GET_CUSTOMER, GET_ALL_LOCATIONS, GET_ALL_PROFILES } from 'graphql/queries';
import { UPDATE_CUSTOMER } from 'graphql/mutations'; import { UPDATE_CUSTOMER } from 'graphql/mutations';
import { fetchMoreProfiles } from 'graphql/functions';
import { formatLocations } from 'utils/locations';
const AutoProvision = () => { const AutoProvision = () => {
const { customerId } = useContext(UserContext); const { customerId } = useContext(UserContext);
@@ -16,16 +14,16 @@ const AutoProvision = () => {
}); });
const [updateCustomer] = useMutation(UPDATE_CUSTOMER); const [updateCustomer] = useMutation(UPDATE_CUSTOMER);
const { data: dataLocation, loading: loadingLocation, error: errorLocation } = useQuery( const { data: dataLocation, loading: loadingLoaction, error: errorLocation } = useQuery(
GET_ALL_LOCATIONS, GET_ALL_LOCATIONS,
{ {
variables: { customerId }, variables: { customerId },
} }
); );
const { data: dataProfile, loading: loadingProfile, error: errorProfile, fetchMore } = useQuery( const { data: dataProfile, loading: loadingProfile, error: errorProfile } = useQuery(
GET_ALL_PROFILES(), GET_ALL_PROFILES,
{ {
variables: { customerId, type: 'equipment_ap', limit: 100 }, variables: { customerId, type: 'equipment_ap' },
} }
); );
@@ -62,14 +60,6 @@ const AutoProvision = () => {
); );
}; };
const handleFetchMoreProfiles = e => {
fetchMoreProfiles(e, dataProfile, fetchMore);
};
const locationsTree = useMemo(() => {
return formatLocations(dataLocation?.getAllLocations, true);
}, [dataLocation?.getAllLocations]);
if (loading) { if (loading) {
return <Loading />; return <Loading />;
} }
@@ -82,15 +72,14 @@ const AutoProvision = () => {
return ( return (
<AutoProvisionPage <AutoProvisionPage
data={data?.getCustomer} data={data && data.getCustomer}
locationsTree={locationsTree} dataLocation={dataLocation && dataLocation.getAllLocations}
dataProfile={dataProfile?.getAllProfiles?.items} dataProfile={dataProfile && dataProfile.getAllProfiles.items}
loadingLocation={loadingLocation} loadingLoaction={loadingLoaction}
loadingProfile={loadingProfile} loadingProfile={loadingProfile}
errorLocation={errorLocation} errorLocation={errorLocation}
errorProfile={errorProfile} errorProfile={errorProfile}
onUpdateCustomer={handleUpdateCustomer} onUpdateCustomer={handleUpdateCustomer}
onFetchMoreProfiles={handleFetchMoreProfiles}
/> />
); );
}; };

View File

@@ -1,5 +1,5 @@
import React, { useContext } from 'react'; import React, { useContext } from 'react';
import { useQuery, useMutation } from '@apollo/client'; import { useQuery, useMutation } from '@apollo/react-hooks';
import { Alert, notification } from 'antd'; import { Alert, notification } from 'antd';
import { BlockedList as BlockedListPage, Loading } from '@tip-wlan/wlan-cloud-ui-library'; import { BlockedList as BlockedListPage, Loading } from '@tip-wlan/wlan-cloud-ui-library';
import { GET_BLOCKED_CLIENTS } from 'graphql/queries'; import { GET_BLOCKED_CLIENTS } from 'graphql/queries';

View File

@@ -1,5 +1,5 @@
import React from 'react'; import React from 'react';
import { useQuery, useMutation, useLazyQuery } from '@apollo/client'; import { useQuery, useMutation, useLazyQuery } from '@apollo/react-hooks';
import { notification } from 'antd'; import { notification } from 'antd';
import { import {
GET_ALL_FIRMWARE, GET_ALL_FIRMWARE,
@@ -22,7 +22,7 @@ const Firmware = () => {
const [ const [
getAllFirmware, getAllFirmware,
{ data: firmwareVersionData, loading: firmwareVersionLoading }, { data: firmwareVersionData, loading: firmwareVersionLoading },
] = useLazyQuery(GET_ALL_FIRMWARE, { fetchPolicy: 'network-only' }); ] = useLazyQuery(GET_ALL_FIRMWARE);
const { const {
data: trackAssignmentData, data: trackAssignmentData,
@@ -83,18 +83,8 @@ const Firmware = () => {
firmwareVersionRecordId, firmwareVersionRecordId,
modelId, modelId,
createdTimestamp, createdTimestamp,
lastModifiedTimestamp, lastModifiedTimestamp
prevFirmwareVersionRecordId
) => { ) => {
if (prevFirmwareVersionRecordId !== firmwareVersionRecordId) {
deleteTrackAssignment({
variables: {
firmwareTrackId: firmwareTrackData.getFirmwareTrack.recordId,
firmwareVersionId: prevFirmwareVersionRecordId,
},
});
}
updateTrackAssignment({ updateTrackAssignment({
variables: { variables: {
trackRecordId: firmwareTrackData.getFirmwareTrack.recordId, trackRecordId: firmwareTrackData.getFirmwareTrack.recordId,
@@ -140,7 +130,6 @@ const Firmware = () => {
}) })
); );
}; };
const handleCreateFirmware = ( const handleCreateFirmware = (
modelId, modelId,
versionName, versionName,

View File

@@ -1,11 +1,9 @@
import React, { useState } from 'react'; import React from 'react';
import { useQuery, useMutation, useLazyQuery, gql } from '@apollo/client'; import gql from 'graphql-tag';
import { useMutation, useLazyQuery } from '@apollo/react-hooks';
import { notification } from 'antd'; import { notification } from 'antd';
import { Manufacturer as ManufacturerPage } from '@tip-wlan/wlan-cloud-ui-library'; import { Manufacturer as ManufacturerPage } from '@tip-wlan/wlan-cloud-ui-library';
import { OUI_UPLOAD } from 'graphql/mutations';
import { AUTH_TOKEN } from 'constants/index';
import { GET_API_URL } from 'graphql/queries';
import { getItem } from 'utils/localStorage';
const GET_OUI = gql` const GET_OUI = gql`
query GetOui($oui: String!) { query GetOui($oui: String!) {
@@ -30,12 +28,7 @@ const UPDATE_OUI = gql`
} }
} }
`; `;
const System = () => { const System = () => {
const token = getItem(AUTH_TOKEN);
const [loadingFileUpload, setLoadingFileUpload] = useState(false);
const { data: apiUrl } = useQuery(GET_API_URL);
const [updateOUI] = useMutation(UPDATE_OUI); const [updateOUI] = useMutation(UPDATE_OUI);
const [searchOUI, { data }] = useLazyQuery(GET_OUI, { const [searchOUI, { data }] = useLazyQuery(GET_OUI, {
onError: () => { onError: () => {
@@ -44,16 +37,8 @@ const System = () => {
description: 'No matching manufacturer found for OUI', description: 'No matching manufacturer found for OUI',
}); });
}, },
onCompleted: () => {
if (!data?.getOui?.oui) {
notification.error({
message: 'Error',
description: 'No matching manufacturer found for OUI',
});
}
},
fetchPolicy: 'no-cache',
}); });
const [fileUpload] = useMutation(OUI_UPLOAD);
const handleUpdateOUI = (oui, manufacturerAlias, manufacturerName) => { const handleUpdateOUI = (oui, manufacturerAlias, manufacturerName) => {
updateOUI({ updateOUI({
@@ -81,21 +66,10 @@ const System = () => {
searchOUI({ variables: { oui } }); searchOUI({ variables: { oui } });
}; };
const handleFileUpload = (fileName, file) => { const handleFileUpload = (fileName, file) =>
if (apiUrl?.getApiUrl) { fileUpload({ variables: { fileName, file } })
setLoadingFileUpload(true);
fetch(`${apiUrl?.getApiUrl}portal/manufacturer/oui/upload?fileName=${fileName}`, {
method: 'POST',
headers: {
Authorization: token ? `Bearer ${token.access_token}` : '',
'Content-Type': 'application/octet-stream',
},
body: file,
})
.then(response => response.json())
.then(resp => { .then(resp => {
if (resp?.success) { if (resp?.ouiUpload?.success) {
notification.success({ notification.success({
message: 'Success', message: 'Success',
description: 'File successfully uploaded.', description: 'File successfully uploaded.',
@@ -107,28 +81,18 @@ const System = () => {
}); });
} }
}) })
.catch(() => { .catch(() =>
notification.error({ notification.error({
message: 'Error', message: 'Error',
description: 'File could not be uploaded.', description: 'File could not be uploaded.',
});
}) })
.finally(() => setLoadingFileUpload(false)); );
} else {
notification.error({
message: 'Error',
description: 'File could not be uploaded.',
});
}
};
return ( return (
<ManufacturerPage <ManufacturerPage
onSearchOUI={handleSearchOUI} onSearchOUI={handleSearchOUI}
onUpdateOUI={handleUpdateOUI} onUpdateOUI={handleUpdateOUI}
returnedOUI={data && data.getOui} returnedOUI={data && data.getOui}
fileUpload={handleFileUpload} fileUpload={handleFileUpload}
loadingFileUpload={loadingFileUpload}
/> />
); );
}; };

View File

@@ -1,12 +1,11 @@
import React from 'react'; import React from 'react';
import PropTypes from 'prop-types'; import PropTypes from 'prop-types';
import { RolesProvider } from '@tip-wlan/wlan-cloud-ui-library';
import UserContext from 'contexts/UserContext'; import UserContext from 'contexts/UserContext';
const UserProvider = ({ children, id, email, roles, customerId, updateUser, updateToken }) => ( const UserProvider = ({ children, id, email, role, customerId, updateUser, updateToken }) => (
<UserContext.Provider value={{ id, email, roles, customerId, updateUser, updateToken }}> <UserContext.Provider value={{ id, email, role, customerId, updateUser, updateToken }}>
<RolesProvider role={roles}>{children}</RolesProvider> {children}
</UserContext.Provider> </UserContext.Provider>
); );
@@ -16,14 +15,14 @@ UserProvider.propTypes = {
updateToken: PropTypes.func.isRequired, updateToken: PropTypes.func.isRequired,
id: PropTypes.number, id: PropTypes.number,
email: PropTypes.string, email: PropTypes.string,
roles: PropTypes.instanceOf(Array), role: PropTypes.string,
customerId: PropTypes.number, customerId: PropTypes.number,
}; };
UserProvider.defaultProps = { UserProvider.defaultProps = {
id: null, id: null,
email: null, email: null,
roles: [], role: null,
customerId: null, customerId: null,
}; };

View File

@@ -1,30 +0,0 @@
export const updateQueryGetAllProfiles = (previousResult, { fetchMoreResult }) => {
const previousEntry = previousResult.getAllProfiles;
const newItems = fetchMoreResult.getAllProfiles.items;
return {
getAllProfiles: {
context: { ...fetchMoreResult.getAllProfiles.context },
items: [...previousEntry.items, ...newItems],
__typename: previousEntry.__typename,
},
};
};
export const fetchMoreProfiles = (e, profile, fetchMore) => {
if (profile.getAllProfiles.context.lastPage) {
return false;
}
e.persist();
const { target } = e;
if (target.scrollTop + target.offsetHeight + 10 >= target.scrollHeight) {
fetchMore({
variables: { context: { ...profile.getAllProfiles.context } },
updateQuery: updateQueryGetAllProfiles,
});
}
return true;
};

View File

@@ -1,4 +1,4 @@
import { gql } from '@apollo/client'; import gql from 'graphql-tag';
export const REFRESH_TOKEN = gql` export const REFRESH_TOKEN = gql`
mutation UpdateToken($refreshToken: String!) { mutation UpdateToken($refreshToken: String!) {
@@ -99,22 +99,6 @@ export const UPDATE_EQUIPMENT_FIRMWARE = gql`
} }
`; `;
export const REQUEST_EQUIPMENT_SWITCH_BANK = gql`
mutation RequestEquipmentSwitchBank($equipmentId: ID) {
requestEquipmentSwitchBank(equipmentId: $equipmentId) {
success
}
}
`;
export const REQUEST_EQUIPMENT_REBOOT = gql`
mutation RequestEquipmentReboot($equipmentId: ID) {
requestEquipmentReboot(equipmentId: $equipmentId) {
success
}
}
`;
export const UPDATE_TRACK_ASSIGNMENT = gql` export const UPDATE_TRACK_ASSIGNMENT = gql`
mutation UpdateFirmwareTrackAssignment( mutation UpdateFirmwareTrackAssignment(
$trackRecordId: ID! $trackRecordId: ID!
@@ -255,62 +239,6 @@ export const CREATE_EQUIPMENT = gql`
} }
`; `;
export const UPDATE_EQUIPMENT = gql`
mutation UpdateEquipment(
$id: ID!
$equipmentType: String!
$inventoryId: String!
$customerId: ID!
$profileId: ID!
$locationId: ID!
$name: String!
$baseMacAddress: String
$latitude: String
$longitude: String
$serial: String
$lastModifiedTimestamp: String
$details: JSONObject
) {
updateEquipment(
id: $id
equipmentType: $equipmentType
inventoryId: $inventoryId
customerId: $customerId
profileId: $profileId
locationId: $locationId
name: $name
baseMacAddress: $baseMacAddress
latitude: $latitude
longitude: $longitude
serial: $serial
lastModifiedTimestamp: $lastModifiedTimestamp
details: $details
) {
id
equipmentType
inventoryId
customerId
profileId
locationId
name
baseMacAddress
latitude
longitude
serial
lastModifiedTimestamp
details
}
}
`;
export const DELETE_EQUIPMENT = gql`
mutation DeleteEquipment($id: ID!) {
deleteEquipment(id: $id) {
id
}
}
`;
export const UPDATE_CUSTOMER = gql` export const UPDATE_CUSTOMER = gql`
mutation UpdateCustomer( mutation UpdateCustomer(
$id: ID! $id: ID!

View File

@@ -1,10 +1,4 @@
import { gql } from '@apollo/client'; import gql from 'graphql-tag';
export const GET_API_URL = gql`
query GetApiUrl {
getApiUrl
}
`;
export const GET_ALL_LOCATIONS = gql` export const GET_ALL_LOCATIONS = gql`
query GetAllLocations($customerId: ID!) { query GetAllLocations($customerId: ID!) {
@@ -22,13 +16,13 @@ export const FILTER_EQUIPMENT = gql`
$locationIds: [ID] $locationIds: [ID]
$customerId: ID! $customerId: ID!
$equipmentType: String $equipmentType: String
$context: JSONObject $cursor: String
) { ) {
filterEquipment( filterEquipment(
customerId: $customerId customerId: $customerId
locationIds: $locationIds locationIds: $locationIds
equipmentType: $equipmentType equipmentType: $equipmentType
context: $context cursor: $cursor
) { ) {
items { items {
name name
@@ -42,12 +36,12 @@ export const FILTER_EQUIPMENT = gql`
profile { profile {
name name
} }
baseMacAddress
manufacturer
status { status {
protocol { protocol {
details { details {
reportedIpV4Addr reportedIpV4Addr
reportedMacAddr
manufacturer
} }
} }
osPerformance { osPerformance {
@@ -67,75 +61,11 @@ export const FILTER_EQUIPMENT = gql`
numClientsPerRadio numClientsPerRadio
} }
} }
firmware {
detailsJSON
}
channel {
detailsJSON
} }
} }
} context {
context lastPage
} cursor
}
`;
export const GET_EQUIPMENT = gql`
query GetEquipment($id: ID!) {
getEquipment(id: $id) {
id
equipmentType
inventoryId
customerId
profileId
locationId
name
latitude
longitude
serial
lastModifiedTimestamp
details
profile {
id
name
childProfiles {
id
name
details
}
}
baseMacAddress
manufacturer
status {
firmware {
detailsJSON
}
protocol {
detailsJSON
}
radioUtilization {
detailsJSON
}
clientDetails {
detailsJSON
details {
numClientsPerRadio
}
}
osPerformance {
detailsJSON
}
channel {
detailsJSON
}
}
model
alarmsCount
alarms {
severity
alarmCode
details
createdTimestamp
} }
} }
} }
@@ -146,13 +76,13 @@ export const FILTER_EQUIPMENT_BULK_EDIT_APS = gql`
$locationIds: [ID] $locationIds: [ID]
$customerId: ID! $customerId: ID!
$equipmentType: String $equipmentType: String
$context: JSONObject $cursor: String
) { ) {
filterEquipment( filterEquipment(
customerId: $customerId customerId: $customerId
locationIds: $locationIds locationIds: $locationIds
equipmentType: $equipmentType equipmentType: $equipmentType
context: $context cursor: $cursor
) { ) {
items { items {
name name
@@ -161,7 +91,10 @@ export const FILTER_EQUIPMENT_BULK_EDIT_APS = gql`
channel channel
details details
} }
context context {
lastPage
cursor
}
} }
} }
`; `;
@@ -179,8 +112,8 @@ export const GET_LOCATION = gql`
`; `;
export const FILTER_CLIENT_SESSIONS = gql` export const FILTER_CLIENT_SESSIONS = gql`
query FilterClientSessions($customerId: ID!, $locationIds: [ID], $context: JSONObject) { query FilterClientSessions($customerId: ID!, $locationIds: [ID], $cursor: String) {
filterClientSessions(customerId: $customerId, locationIds: $locationIds, context: $context) { filterClientSessions(customerId: $customerId, locationIds: $locationIds, cursor: $cursor) {
items { items {
id id
macAddress macAddress
@@ -190,12 +123,14 @@ export const FILTER_CLIENT_SESSIONS = gql`
radioType radioType
signal signal
manufacturer manufacturer
details
equipment { equipment {
name name
} }
} }
context context {
lastPage
cursor
}
} }
} }
`; `;
@@ -222,7 +157,7 @@ export const GET_CLIENT_SESSION = gql`
export const FILTER_SERVICE_METRICS = gql` export const FILTER_SERVICE_METRICS = gql`
query FilterServiceMetrics( query FilterServiceMetrics(
$customerId: ID! $customerId: ID!
$context: JSONObject $cursor: String
$fromTime: String! $fromTime: String!
$toTime: String! $toTime: String!
$clientMacs: [String] $clientMacs: [String]
@@ -232,7 +167,7 @@ export const FILTER_SERVICE_METRICS = gql`
) { ) {
filterServiceMetrics( filterServiceMetrics(
customerId: $customerId customerId: $customerId
context: $context cursor: $cursor
fromTime: $fromTime fromTime: $fromTime
toTime: $toTime toTime: $toTime
clientMacs: $clientMacs clientMacs: $clientMacs
@@ -246,36 +181,28 @@ export const FILTER_SERVICE_METRICS = gql`
rssi rssi
rxBytes rxBytes
txBytes txBytes
detailsJSON
} }
context context {
lastPage
cursor
}
} }
} }
`; `;
export const GET_ALL_PROFILES = (fields = '') => gql` export const GET_ALL_PROFILES = gql`
query GetAllProfiles( query GetAllProfiles($customerId: ID!, $cursor: String, $type: String) {
$customerId: ID! getAllProfiles(customerId: $customerId, cursor: $cursor, type: $type) {
$cursor: String
$limit: Int
$type: String
$context: JSONObject
) {
getAllProfiles(
customerId: $customerId
cursor: $cursor
limit: $limit
type: $type
context: $context
) {
items { items {
id id
name name
profileType profileType
details details
${fields}
} }
context context {
cursor
lastPage
}
} }
} }
`; `;
@@ -291,7 +218,10 @@ export const GET_ALL_STATUS = gql`
clientCountPerOui clientCountPerOui
} }
} }
context context {
lastPage
cursor
}
} }
} }
`; `;
@@ -367,7 +297,7 @@ export const FILTER_SYSTEM_EVENTS = gql`
$toTime: String! $toTime: String!
$equipmentIds: [ID] $equipmentIds: [ID]
$dataTypes: [String] $dataTypes: [String]
$context: JSONObject $cursor: String
$limit: Int $limit: Int
) { ) {
filterSystemEvents( filterSystemEvents(
@@ -376,11 +306,14 @@ export const FILTER_SYSTEM_EVENTS = gql`
toTime: $toTime toTime: $toTime
dataTypes: $dataTypes dataTypes: $dataTypes
equipmentIds: $equipmentIds equipmentIds: $equipmentIds
context: $context cursor: $cursor
limit: $limit limit: $limit
) { ) {
items items
context context {
lastPage
cursor
}
} }
} }
`; `;

View File

@@ -9,7 +9,6 @@
<!-- Allow installing the app to the homescreen --> <!-- Allow installing the app to the homescreen -->
<meta name="mobile-web-app-capable" content="yes" /> <meta name="mobile-web-app-capable" content="yes" />
<script type="text/javascript" src="/config.js"></script>
</head> </head>
<body> <body>

View File

@@ -1,10 +1,12 @@
import React from 'react'; import React from 'react';
import ReactDOM from 'react-dom'; import ReactDOM from 'react-dom';
import { Router } from 'react-router-dom'; import { Router } from 'react-router-dom';
import { ApolloClient, ApolloProvider, ApolloLink, Observable } from '@apollo/client'; import { ApolloClient } from 'apollo-client';
import { InMemoryCache } from '@apollo/client/cache'; import { InMemoryCache } from 'apollo-cache-inmemory';
import { onError } from '@apollo/client/link/error'; import { onError } from 'apollo-link-error';
import { createUploadLink } from 'apollo-upload-client'; import { createUploadLink } from 'apollo-upload-client';
import { ApolloLink, Observable } from 'apollo-link';
import { ApolloProvider } from '@apollo/react-hooks';
import 'styles/antd.less'; import 'styles/antd.less';
import 'styles/index.scss'; import 'styles/index.scss';
@@ -14,15 +16,17 @@ import { AUTH_TOKEN } from 'constants/index';
import { REFRESH_TOKEN } from 'graphql/mutations'; import { REFRESH_TOKEN } from 'graphql/mutations';
import { getItem, setItem, removeItem } from 'utils/localStorage'; import { getItem, setItem, removeItem } from 'utils/localStorage';
import history from 'utils/history'; import history from 'utils/history';
import { ScrollToTop } from '@tip-wlan/wlan-cloud-ui-library';
const API_URI = process.env.NODE_ENV === 'production' ? window.REACT_APP_API : process.env.API; const API_URI =
process.env.NODE_ENV === 'development'
? 'http://localhost:4000/'
: 'https://wlan-graphql.zone3.lab.connectus.ai/';
const MOUNT_NODE = document.getElementById('root'); const MOUNT_NODE = document.getElementById('root');
const cache = new InMemoryCache(); const cache = new InMemoryCache();
const uploadLink = createUploadLink({ const uploadLink = createUploadLink({
uri: `${API_URI}/graphql`, uri: API_URI,
}); });
const request = async operation => { const request = async operation => {
@@ -103,7 +107,6 @@ const render = () => {
ReactDOM.render( ReactDOM.render(
<Router history={history}> <Router history={history}>
<ApolloProvider client={client}> <ApolloProvider client={client}>
<ScrollToTop />
<App /> <App />
</ApolloProvider> </ApolloProvider>
</Router>, </Router>,

View File

@@ -1,14 +1,3 @@
body { body {
font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif;
} }
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
input:-webkit-autofill::first-line {
-webkit-transition: color 9999s ease-out, background-color 9999s ease-out;
transition: color 9999s ease-out, background-color 9999s ease-out;
font-size: 14px !important;
font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
}

View File

@@ -1,110 +0,0 @@
import { filter, isEmpty, each } from 'lodash';
export const NETWORK_NODE = {
title: 'Network',
id: '0',
key: '0',
value: '0',
name: 'Network',
};
export const formatLocations = (list = [], disableRoot = false) => {
function unflatten(array, p) {
let tree = [];
const parent = typeof p !== 'undefined' ? p : { id: '0' };
let children = filter(array, child => child.parentId === parent.id);
children = children.map(c => ({
title: c.name,
value: `${c.id}`,
key: c.id,
isLeaf: false,
...c,
}));
if (!isEmpty(children)) {
if (parent.id === '0') {
tree = children;
} else {
parent.children = children;
}
each(children, child => unflatten(array, child));
}
return tree;
}
return [
{
...NETWORK_NODE,
...(disableRoot && { disabled: true }),
children: unflatten(list),
},
];
};
export const getBreadcrumbPath = (id, locations) => {
const locationsPath = [];
const treeRecurse = (parentNodeId, node) => {
if (node.id === parentNodeId) {
locationsPath.unshift(node);
return node;
}
if (node.children) {
let parent;
node.children.some(i => {
parent = treeRecurse(parentNodeId, i);
return parent;
});
if (parent) {
locationsPath.unshift(node);
}
return parent;
}
return null;
};
treeRecurse(id, {
id: 0,
children: locations,
});
return locationsPath;
};
export const getLocationPath = (selectedId, locations) => {
const locationsPath = [];
const treeRecurse = (parentNodeId, node) => {
if (node.id === parentNodeId) {
locationsPath.unshift(node.id);
if (node.children) {
const flatten = children => {
children.forEach(i => {
locationsPath.unshift(i.id);
if (i.children) {
flatten(i.children);
}
});
};
flatten(node.children);
}
return node;
}
if (node.children) {
let parent;
node.children.some(i => {
parent = treeRecurse(parentNodeId, i);
return parent;
});
return parent;
}
return null;
};
if (selectedId) {
treeRecurse(selectedId, { id: 0, children: locations });
}
return locationsPath;
};

View File

@@ -1,3 +0,0 @@
#!/bin/sh -eu
./generate_config_js.sh >/usr/share/nginx/html/config.js
nginx -g "daemon off;"

View File

@@ -1,10 +0,0 @@
#!/bin/sh -eu
if [ -z "${API:-}" ]; then
API_URL_JSON=undefined
else
API_URL_JSON=$(jq -n --arg api "$API" '$api')
fi
cat <<EOF
window.REACT_APP_API = $API_URL_JSON;
EOF

12834
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -1,6 +1,6 @@
{ {
"name": "wlan-cloud-ui", "name": "wlan-cloud-ui",
"version": "1.2.0", "version": "0.2.3",
"author": "ConnectUs", "author": "ConnectUs",
"description": "React Portal", "description": "React Portal",
"engines": { "engines": {
@@ -9,38 +9,50 @@
}, },
"scripts": { "scripts": {
"test": "jest --passWithNoTests --coverage", "test": "jest --passWithNoTests --coverage",
"start": "cross-env NODE_ENV=development webpack serve --mode development", "start": "cross-env NODE_ENV=development webpack-dev-server",
"start:bare": "cross-env API=https://wlan-ui.tip-sdk.lab.netexperience.com NODE_ENV=bare webpack serve --mode development",
"start:dev": "cross-env API=https://wlan-ui.tip-sdk.lab.netexperience.com NODE_ENV=development webpack serve --mode development",
"build": "webpack --mode=production", "build": "webpack --mode=production",
"format": "prettier --write 'app/**/*{.js,.scss}'", "format": "prettier --write \"app/**/*.js\"",
"eslint-fix": "eslint --fix 'app/**/*.js'", "eslint-fix": "eslint --fix \"app/**/*.js\"",
"eslint": "eslint 'app/**/*.js' --max-warnings=0" "eslint": "eslint \"app/**/*.js\" --max-warnings=0"
}, },
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@ant-design/icons": "^4.2.1", "@ant-design/icons": "^4.2.1",
"@apollo/client": "^3.1.3", "@apollo/react-hoc": "^3.1.4",
"@tip-wlan/wlan-cloud-ui-library": "^1.2.2", "@apollo/react-hooks": "^3.1.3",
"antd": "^4.5.2", "@tip-wlan/wlan-cloud-ui-library": "^0.2.3",
"antd": "^4.3.1",
"apollo-cache-inmemory": "^1.6.6",
"apollo-client": "^2.6.10",
"apollo-link": "^1.2.14",
"apollo-link-error": "^1.1.13",
"apollo-link-http": "^1.5.17",
"apollo-upload-client": "^13.0.0", "apollo-upload-client": "^13.0.0",
"graphql": "^15.5.0", "clean-webpack-plugin": "^3.0.0",
"graphql": "^14.6.0",
"graphql-tag": "^2.10.3",
"highcharts": "^8.1.1",
"highcharts-react-official": "^3.0.0",
"history": "^4.10.1", "history": "^4.10.1",
"html-webpack-plugin": "^3.2.0",
"lodash": "^4.17.15", "lodash": "^4.17.15",
"mini-css-extract-plugin": "^0.9.0",
"moment": "^2.26.0", "moment": "^2.26.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"prop-types": "^15.7.2", "prop-types": "^15.7.2",
"react": "^16.13.0", "react": "^16.13.0",
"react-dom": "^16.13.0", "react-dom": "^16.13.0",
"react-helmet": "^5.2.1", "react-helmet": "^5.2.1",
"react-jsx-highcharts": "^4.1.0",
"react-jsx-highstock": "^4.1.0",
"react-router-dom": "^5.1.2", "react-router-dom": "^5.1.2",
"recharts": "^2.0.9" "terser-webpack-plugin": "^2.3.5"
}, },
"devDependencies": { "devDependencies": {
"@babel/core": "^7.8.7", "@babel/core": "^7.8.7",
"@babel/plugin-proposal-class-properties": "^7.8.3", "@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.8.7", "@babel/preset-env": "^7.8.7",
"@babel/preset-react": "^7.8.3", "@babel/preset-react": "^7.8.3",
"@babel/runtime": "^7.13.10",
"@testing-library/react": "^10.0.3", "@testing-library/react": "^10.0.3",
"babel-core": "^6.26.3", "babel-core": "^6.26.3",
"babel-eslint": "^10.1.0", "babel-eslint": "^10.1.0",
@@ -48,10 +60,8 @@
"babel-loader": "^8.0.6", "babel-loader": "^8.0.6",
"babel-plugin-root-import": "^6.4.1", "babel-plugin-root-import": "^6.4.1",
"babel-polyfill": "^6.26.0", "babel-polyfill": "^6.26.0",
"clean-webpack-plugin": "^3.0.0",
"cross-env": "^7.0.2", "cross-env": "^7.0.2",
"css-loader": "^3.4.2", "css-loader": "^3.4.2",
"css-minimizer-webpack-plugin": "^1.3.0",
"eslint": "^6.8.0", "eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1", "eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.10.0", "eslint-config-prettier": "^6.10.0",
@@ -63,38 +73,38 @@
"eslint-plugin-react": "^7.19.0", "eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.0", "eslint-plugin-react-hooks": "^2.5.0",
"file-loader": "^5.1.0", "file-loader": "^5.1.0",
"html-webpack-plugin": "^5.3.1",
"husky": "^4.2.3", "husky": "^4.2.3",
"jest": "^25.4.0", "jest": "^25.4.0",
"less": "^3.11.1", "less": "^3.11.1",
"less-loader": "^6.2.0", "less-loader": "^5.0.0",
"lint-staged": "^10.0.8", "lint-staged": "^10.0.8",
"mini-css-extract-plugin": "^1.3.9",
"node-sass": "^4.13.1", "node-sass": "^4.13.1",
"prettier": "^1.19.1", "prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"react-test-renderer": "^16.13.1", "react-test-renderer": "^16.13.1",
"sass-loader": "^8.0.2", "sass-loader": "^8.0.2",
"style-loader": "^1.1.3", "style-loader": "^1.1.3",
"terser-webpack-plugin": "^5.1.1", "webpack": "^4.42.0",
"webpack": "^5.28.0", "webpack-cli": "^3.3.11",
"webpack-cli": "^4.5.0", "webpack-dev-server": "^3.11.0",
"webpack-dev-server": "^3.11.2", "webpack-merge": "^4.2.2"
"webpack-merge": "^5.7.3"
}, },
"precommit": "NODE_ENV=production lint-staged",
"browserslist": [ "browserslist": [
"last 2 versions", "last 2 versions",
"> 1%", "> 1%",
"IE 10" "IE 10"
], ],
"lint-staged": {
"*.{js,jsx}": [
"pretty-quick --staged",
"eslint . --fix \"app/**/*.js\" --max-warnings=0",
"git add"
]
},
"husky": { "husky": {
"hooks": { "hooks": {
"pre-commit": "lint-staged" "pre-commit": "lint-staged"
} }
},
"lint-staged": {
"*.{js,jsx}": [
"eslint --fix 'app/**/*.js' --max-warnings=0",
"prettier --write"
]
} }
} }

View File

@@ -1,13 +1,11 @@
/* eslint-disable import/no-extraneous-dependencies */ const webpackMerge = require('webpack-merge');
const { merge } = require('webpack-merge');
const common = require('./webpack/webpack.common'); const common = require('./webpack/webpack.common');
const envs = { const envs = {
development: 'dev', development: 'dev',
production: 'prod', production: 'prod',
bare: 'bare',
}; };
/* eslint-disable global-require,import/no-dynamic-require */ /* eslint-disable global-require,import/no-dynamic-require */
const env = envs[process.env.NODE_ENV || 'production']; const env = envs[process.env.NODE_ENV || 'production'];
const envConfig = require(`./webpack/webpack.${env}.js`); const envConfig = require(`./webpack/webpack.${env}.js`);
module.exports = merge(common, envConfig); module.exports = webpackMerge(common, envConfig);

View File

@@ -1,73 +0,0 @@
const path = require('path');
const commonPaths = require('./paths');
module.exports = {
mode: 'development',
output: {
path: commonPaths.outputPath,
publicPath: '/',
filename: '[name].js',
chunkFilename: '[name].js',
},
devtool: 'inline-source-map',
devServer: {
port: 3000,
historyApiFallback: true,
contentBase: commonPaths.outputPath,
},
module: {
rules: [
{
test: /\.(css|scss)$/,
use: [
{
loader: 'style-loader',
},
{
loader: 'css-loader',
options: {
modules: {
localIdentName: '[name]__[local]___[hash:base64:5]',
},
sourceMap: true,
},
},
{
loader: 'sass-loader',
options: {
sourceMap: true,
},
},
],
},
{
test: /\.less$/,
use: [
{
loader: 'style-loader',
},
{
loader: 'css-loader',
},
{
loader: 'less-loader', // compiles Less to CSS
options: {
lessOptions: {
javascriptEnabled: true,
},
},
},
],
},
],
},
resolve: {
modules: ['node_modules', 'app'],
alias: {
app: path.resolve(__dirname, '../', 'app'),
react: path.resolve(__dirname, '../', 'node_modules', 'react'),
'react-router-dom': path.resolve('./node_modules/react-router-dom'),
},
},
};

View File

@@ -1,3 +1,4 @@
const HtmlWebPackPlugin = require('html-webpack-plugin');
/* eslint-disable import/no-extraneous-dependencies */ /* eslint-disable import/no-extraneous-dependencies */
const webpack = require('webpack'); const webpack = require('webpack');
@@ -21,11 +22,32 @@ module.exports = {
exclude: /node_modules/, exclude: /node_modules/,
use: ['babel-loader', 'eslint-loader'], use: ['babel-loader', 'eslint-loader'],
}, },
{
test: /\.less$/,
use: [
{
loader: 'style-loader',
},
{
loader: 'css-loader',
},
{
loader: 'less-loader',
options: {
javascriptEnabled: true,
},
},
],
},
], ],
}, },
plugins: [ plugins: [
new HtmlWebPackPlugin({
template: commonPaths.templatePath,
favicon: './app/images/favicon.ico',
}),
new webpack.DefinePlugin({ new webpack.DefinePlugin({
'process.env.API': JSON.stringify(process.env.API || 'http://localhost:4000'), 'process.env.GRAPHQL_URL': JSON.stringify(process.env.GRAPHQL_URL),
}), }),
], ],
}; };

View File

@@ -1,6 +1,4 @@
/* eslint-disable import/no-extraneous-dependencies */
const path = require('path'); const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const commonPaths = require('./paths'); const commonPaths = require('./paths');
@@ -36,28 +34,6 @@ module.exports = {
}, },
{ {
loader: 'sass-loader', loader: 'sass-loader',
options: {
sourceMap: true,
},
},
],
},
{
test: /\.less$/,
use: [
{
loader: 'style-loader',
},
{
loader: 'css-loader',
},
{
loader: 'less-loader', // compiles Less to CSS
options: {
lessOptions: {
javascriptEnabled: true,
},
},
}, },
], ],
}, },
@@ -83,11 +59,4 @@ module.exports = {
), ),
}, },
}, },
plugins: [
new HtmlWebpackPlugin({
template: commonPaths.templatePath,
favicon: './app/images/favicon.ico',
}),
],
}; };

View File

@@ -1,8 +1,6 @@
/* eslint-disable import/no-extraneous-dependencies */
const HtmlWebpackPlugin = require('html-webpack-plugin');
const { CleanWebpackPlugin } = require('clean-webpack-plugin');
const MiniCssExtractPlugin = require('mini-css-extract-plugin'); const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const CssMinimizerPlugin = require('css-minimizer-webpack-plugin'); const { CleanWebpackPlugin } = require('clean-webpack-plugin');
const OptimizeCSSAssetsPlugin = require('optimize-css-assets-webpack-plugin');
const TerserPlugin = require('terser-webpack-plugin'); const TerserPlugin = require('terser-webpack-plugin');
const path = require('path'); const path = require('path');
@@ -10,50 +8,44 @@ const commonPaths = require('./paths');
module.exports = { module.exports = {
output: { output: {
filename: `${commonPaths.jsFolder}/[name].[hash].js`,
path: commonPaths.outputPath, path: commonPaths.outputPath,
publicPath: '/', publicPath: '/',
filename: `${commonPaths.jsFolder}/[name].[chunkhash].js`, chunkFilename: `${commonPaths.jsFolder}/[name].[chunkhash].js`,
chunkFilename: `${commonPaths.jsFolder}/[id].[chunkhash].js`,
}, },
optimization: { optimization: {
minimize: true,
minimizer: [ minimizer: [
new TerserPlugin({ new TerserPlugin({
terserOptions: { // Use multi-process parallel running to improve the build speed
warnings: false, // Default number of concurrent runs: os.cpus().length - 1
compress: {
comparisons: false,
},
parse: {},
mangle: true,
output: {
comments: false,
ascii_only: true,
},
},
parallel: true, parallel: true,
// Enable file caching
cache: true,
sourceMap: true,
}), }),
new CssMinimizerPlugin(), new OptimizeCSSAssetsPlugin(),
], ],
nodeEnv: 'production', // Automatically split vendor and commons
sideEffects: true, // https://twitter.com/wSokra/status/969633336732905474
concatenateModules: true, // https://medium.com/webpack/webpack-4-code-splitting-chunk-graph-and-the-splitchunks-optimization-be739a861366
runtimeChunk: 'single',
splitChunks: { splitChunks: {
chunks: 'all',
maxInitialRequests: 10,
minSize: 0,
cacheGroups: { cacheGroups: {
vendor: { vendors: {
test: /[\\/]node_modules[\\/]/, test: /[\\/]node_modules[\\/]/,
name(module) { name: 'vendors',
const packageName = module.context.match(/[\\/]node_modules[\\/](.*?)([\\/]|$)/)[1]; chunks: 'initial',
return `npm.${packageName.replace('@', '')}`; },
}, async: {
test: /[\\/]node_modules[\\/]/,
name: 'async',
chunks: 'async',
minChunks: 4,
}, },
}, },
}, },
// Keep the runtime chunk seperated to enable long term caching
// https://twitter.com/wSokra/status/969679223278505985
runtimeChunk: true,
}, },
module: { module: {
@@ -75,58 +67,20 @@ module.exports = {
'sass-loader', 'sass-loader',
], ],
}, },
{
test: /\.less$/,
use: [
MiniCssExtractPlugin.loader,
{
loader: 'css-loader',
},
{
loader: 'less-loader', // compiles Less to CSS
options: {
lessOptions: {
javascriptEnabled: true,
},
},
},
], ],
}, },
],
},
resolve: { resolve: {
modules: ['node_modules', 'app'], modules: ['node_modules', 'app'],
alias: { alias: {
app: path.resolve(__dirname, '../', 'app'), app: path.resolve(__dirname, '../', 'app'),
}, },
}, },
plugins: [ plugins: [
new CleanWebpackPlugin(), new CleanWebpackPlugin(),
// Minify and optimize the index.html
new HtmlWebpackPlugin({
template: commonPaths.templatePath,
favicon: './app/images/favicon.ico',
minify: {
removeComments: true,
collapseWhitespace: true,
removeRedundantAttributes: true,
useShortDoctype: true,
removeEmptyAttributes: true,
removeStyleLinkTypeAttributes: true,
keepClosingSlash: true,
minifyJS: true,
minifyCSS: true,
minifyURLs: true,
},
inject: true,
}),
new MiniCssExtractPlugin({ new MiniCssExtractPlugin({
filename: `${commonPaths.cssFolder}/[name].css`, filename: `${commonPaths.cssFolder}/[name].css`,
chunkFilename: `${commonPaths.cssFolder}/[id].css`, chunkFilename: `${commonPaths.cssFolder}/[name].css`,
}), }),
], ],
devtool: 'source-map',
}; };