mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2024-12-23 17:40:23 +03:00
Merge pull request #112 from acelaya/feature/many-visits
Improved performance while calculating status
This commit is contained in:
commit
28c9f9ac96
11 changed files with 204 additions and 135 deletions
23
CHANGELOG.md
23
CHANGELOG.md
|
@ -4,6 +4,29 @@ All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org).
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org).
|
||||||
|
|
||||||
|
## [Unreleased]
|
||||||
|
|
||||||
|
#### Added
|
||||||
|
|
||||||
|
* *Nothing*
|
||||||
|
|
||||||
|
#### Changed
|
||||||
|
|
||||||
|
* *Nothing*
|
||||||
|
|
||||||
|
#### Deprecated
|
||||||
|
|
||||||
|
* *Nothing*
|
||||||
|
|
||||||
|
#### Removed
|
||||||
|
|
||||||
|
* *Nothing*
|
||||||
|
|
||||||
|
#### Fixed
|
||||||
|
|
||||||
|
* [#103](https://github.com/shlinkio/shlink-web-client/issues/103) Fixed visits page getting freezed when loading large amounts of visits.
|
||||||
|
|
||||||
|
|
||||||
## 2.0.1 - 2019-03-03
|
## 2.0.1 - 2019-03-03
|
||||||
|
|
||||||
#### Added
|
#### Added
|
||||||
|
|
|
@ -37,7 +37,7 @@
|
||||||
"promise": "^8.0.1",
|
"promise": "^8.0.1",
|
||||||
"prop-types": "^15.6.2",
|
"prop-types": "^15.6.2",
|
||||||
"qs": "^6.5.2",
|
"qs": "^6.5.2",
|
||||||
"ramda": "^0.25.0",
|
"ramda": "^0.26.1",
|
||||||
"react": "^16.7.0",
|
"react": "^16.7.0",
|
||||||
"react-autosuggest": "^9.4.0",
|
"react-autosuggest": "^9.4.0",
|
||||||
"react-chartjs-2": "^2.7.4",
|
"react-chartjs-2": "^2.7.4",
|
||||||
|
|
|
@ -8,20 +8,13 @@ import DateInput from '../utils/DateInput';
|
||||||
import MutedMessage from '../utils/MuttedMessage';
|
import MutedMessage from '../utils/MuttedMessage';
|
||||||
import SortableBarGraph from './SortableBarGraph';
|
import SortableBarGraph from './SortableBarGraph';
|
||||||
import { shortUrlVisitsType } from './reducers/shortUrlVisits';
|
import { shortUrlVisitsType } from './reducers/shortUrlVisits';
|
||||||
import { VisitsHeader } from './VisitsHeader';
|
import VisitsHeader from './VisitsHeader';
|
||||||
import GraphCard from './GraphCard';
|
import GraphCard from './GraphCard';
|
||||||
import { shortUrlDetailType } from './reducers/shortUrlDetail';
|
import { shortUrlDetailType } from './reducers/shortUrlDetail';
|
||||||
import './ShortUrlVisits.scss';
|
import './ShortUrlVisits.scss';
|
||||||
import OpenMapModalBtn from './helpers/OpenMapModalBtn';
|
import OpenMapModalBtn from './helpers/OpenMapModalBtn';
|
||||||
|
|
||||||
const ShortUrlVisits = ({
|
const ShortUrlVisits = ({ processStatsFromVisits }) => class ShortUrlVisits extends React.PureComponent {
|
||||||
processOsStats,
|
|
||||||
processBrowserStats,
|
|
||||||
processCountriesStats,
|
|
||||||
processCitiesStats,
|
|
||||||
processReferrersStats,
|
|
||||||
processCitiesStatsForMap,
|
|
||||||
}) => class ShortUrlVisits extends React.Component {
|
|
||||||
static propTypes = {
|
static propTypes = {
|
||||||
match: PropTypes.shape({
|
match: PropTypes.shape({
|
||||||
params: PropTypes.object,
|
params: PropTypes.object,
|
||||||
|
@ -35,28 +28,37 @@ const ShortUrlVisits = ({
|
||||||
state = { startDate: undefined, endDate: undefined };
|
state = { startDate: undefined, endDate: undefined };
|
||||||
loadVisits = () => {
|
loadVisits = () => {
|
||||||
const { match: { params }, getShortUrlVisits } = this.props;
|
const { match: { params }, getShortUrlVisits } = this.props;
|
||||||
|
const { shortCode } = params;
|
||||||
getShortUrlVisits(params.shortCode, mapObjIndexed(
|
const dates = mapObjIndexed(
|
||||||
(value) => value && value.format ? value.format('YYYY-MM-DD') : value,
|
(value) => value && value.format ? value.format('YYYY-MM-DD') : value,
|
||||||
this.state
|
this.state
|
||||||
));
|
);
|
||||||
|
const { startDate, endDate } = dates;
|
||||||
|
|
||||||
|
// While the "page" is loaded, use the timestamp + filtering dates as memoization IDs for stats calcs
|
||||||
|
this.memoizationId = `${this.timeWhenMounted}_${shortCode}_${startDate}_${endDate}`;
|
||||||
|
getShortUrlVisits(shortCode, dates);
|
||||||
};
|
};
|
||||||
|
|
||||||
componentDidMount() {
|
componentDidMount() {
|
||||||
const { match: { params }, getShortUrlDetail } = this.props;
|
const { match: { params }, getShortUrlDetail } = this.props;
|
||||||
|
const { shortCode } = params;
|
||||||
|
|
||||||
|
this.timeWhenMounted = new Date().getTime();
|
||||||
this.loadVisits();
|
this.loadVisits();
|
||||||
getShortUrlDetail(params.shortCode);
|
getShortUrlDetail(shortCode);
|
||||||
}
|
}
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
const { shortUrlVisits, shortUrlDetail } = this.props;
|
const { shortUrlVisits, shortUrlDetail } = this.props;
|
||||||
|
|
||||||
const renderVisitsContent = () => {
|
const renderVisitsContent = () => {
|
||||||
const { visits, loading, error } = shortUrlVisits;
|
const { visits, loading, loadingLarge, error } = shortUrlVisits;
|
||||||
|
|
||||||
if (loading) {
|
if (loading) {
|
||||||
return <MutedMessage><FontAwesomeIcon icon={preloader} spin /> Loading...</MutedMessage>;
|
const message = loadingLarge ? 'This is going to take a while... :S' : 'Loading...';
|
||||||
|
|
||||||
|
return <MutedMessage><FontAwesomeIcon icon={preloader} spin /> {message}</MutedMessage>;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (error) {
|
if (error) {
|
||||||
|
@ -71,17 +73,21 @@ const ShortUrlVisits = ({
|
||||||
return <MutedMessage>There are no visits matching current filter :(</MutedMessage>;
|
return <MutedMessage>There are no visits matching current filter :(</MutedMessage>;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const { os, browsers, referrers, countries, cities, citiesForMap } = processStatsFromVisits(
|
||||||
|
{ id: this.memoizationId, visits }
|
||||||
|
);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="row">
|
<div className="row">
|
||||||
<div className="col-xl-4 col-lg-6">
|
<div className="col-xl-4 col-lg-6">
|
||||||
<GraphCard title="Operating systems" stats={processOsStats(visits)} />
|
<GraphCard title="Operating systems" stats={os} />
|
||||||
</div>
|
</div>
|
||||||
<div className="col-xl-4 col-lg-6">
|
<div className="col-xl-4 col-lg-6">
|
||||||
<GraphCard title="Browsers" stats={processBrowserStats(visits)} />
|
<GraphCard title="Browsers" stats={browsers} />
|
||||||
</div>
|
</div>
|
||||||
<div className="col-xl-4">
|
<div className="col-xl-4">
|
||||||
<SortableBarGraph
|
<SortableBarGraph
|
||||||
stats={processReferrersStats(visits)}
|
stats={referrers}
|
||||||
title="Referrers"
|
title="Referrers"
|
||||||
sortingItems={{
|
sortingItems={{
|
||||||
name: 'Referrer name',
|
name: 'Referrer name',
|
||||||
|
@ -91,7 +97,7 @@ const ShortUrlVisits = ({
|
||||||
</div>
|
</div>
|
||||||
<div className="col-lg-6">
|
<div className="col-lg-6">
|
||||||
<SortableBarGraph
|
<SortableBarGraph
|
||||||
stats={processCountriesStats(visits)}
|
stats={countries}
|
||||||
title="Countries"
|
title="Countries"
|
||||||
sortingItems={{
|
sortingItems={{
|
||||||
name: 'Country name',
|
name: 'Country name',
|
||||||
|
@ -101,13 +107,13 @@ const ShortUrlVisits = ({
|
||||||
</div>
|
</div>
|
||||||
<div className="col-lg-6">
|
<div className="col-lg-6">
|
||||||
<SortableBarGraph
|
<SortableBarGraph
|
||||||
stats={processCitiesStats(visits)}
|
stats={cities}
|
||||||
title="Cities"
|
title="Cities"
|
||||||
extraHeaderContent={[
|
extraHeaderContent={[
|
||||||
() => (
|
() => (
|
||||||
<OpenMapModalBtn
|
<OpenMapModalBtn
|
||||||
modalTitle="Cities"
|
modalTitle="Cities"
|
||||||
locations={values(processCitiesStatsForMap(visits))}
|
locations={values(citiesForMap)}
|
||||||
/>
|
/>
|
||||||
),
|
),
|
||||||
]}
|
]}
|
||||||
|
@ -133,7 +139,7 @@ const ShortUrlVisits = ({
|
||||||
placeholderText="Since"
|
placeholderText="Since"
|
||||||
isClearable
|
isClearable
|
||||||
maxDate={this.state.endDate}
|
maxDate={this.state.endDate}
|
||||||
onChange={(date) => this.setState({ startDate: date }, () => this.loadVisits())}
|
onChange={(date) => this.setState({ startDate: date }, this.loadVisits)}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div className="col-xl-3 col-lg-4 col-md-6">
|
<div className="col-xl-3 col-lg-4 col-md-6">
|
||||||
|
@ -143,7 +149,7 @@ const ShortUrlVisits = ({
|
||||||
placeholderText="Until"
|
placeholderText="Until"
|
||||||
isClearable
|
isClearable
|
||||||
minDate={this.state.startDate}
|
minDate={this.state.startDate}
|
||||||
onChange={(date) => this.setState({ endDate: date }, () => this.loadVisits())}
|
onChange={(date) => this.setState({ endDate: date }, this.loadVisits)}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -11,7 +11,7 @@ const propTypes = {
|
||||||
shortUrlVisits: shortUrlVisitsType.isRequired,
|
shortUrlVisits: shortUrlVisitsType.isRequired,
|
||||||
};
|
};
|
||||||
|
|
||||||
export function VisitsHeader({ shortUrlDetail, shortUrlVisits }) {
|
export default function VisitsHeader({ shortUrlDetail, shortUrlVisits }) {
|
||||||
const { shortUrl, loading } = shortUrlDetail;
|
const { shortUrl, loading } = shortUrlDetail;
|
||||||
const { visits } = shortUrlVisits;
|
const { visits } = shortUrlVisits;
|
||||||
const shortLink = shortUrl && shortUrl.shortUrl ? shortUrl.shortUrl : '';
|
const shortLink = shortUrl && shortUrl.shortUrl ? shortUrl.shortUrl : '';
|
||||||
|
|
|
@ -1,9 +1,11 @@
|
||||||
import PropTypes from 'prop-types';
|
import PropTypes from 'prop-types';
|
||||||
|
import { flatten, range, splitEvery } from 'ramda';
|
||||||
|
|
||||||
/* eslint-disable padding-line-between-statements, newline-after-var */
|
/* eslint-disable padding-line-between-statements, newline-after-var */
|
||||||
export const GET_SHORT_URL_VISITS_START = 'shlink/shortUrlVisits/GET_SHORT_URL_VISITS_START';
|
export const GET_SHORT_URL_VISITS_START = 'shlink/shortUrlVisits/GET_SHORT_URL_VISITS_START';
|
||||||
export const GET_SHORT_URL_VISITS_ERROR = 'shlink/shortUrlVisits/GET_SHORT_URL_VISITS_ERROR';
|
export const GET_SHORT_URL_VISITS_ERROR = 'shlink/shortUrlVisits/GET_SHORT_URL_VISITS_ERROR';
|
||||||
export const GET_SHORT_URL_VISITS = 'shlink/shortUrlVisits/GET_SHORT_URL_VISITS';
|
export const GET_SHORT_URL_VISITS = 'shlink/shortUrlVisits/GET_SHORT_URL_VISITS';
|
||||||
|
export const GET_SHORT_URL_VISITS_LARGE = 'shlink/shortUrlVisits/GET_SHORT_URL_VISITS_LARGE';
|
||||||
/* eslint-enable padding-line-between-statements, newline-after-var */
|
/* eslint-enable padding-line-between-statements, newline-after-var */
|
||||||
|
|
||||||
export const shortUrlVisitsType = PropTypes.shape({
|
export const shortUrlVisitsType = PropTypes.shape({
|
||||||
|
@ -15,6 +17,7 @@ export const shortUrlVisitsType = PropTypes.shape({
|
||||||
const initialState = {
|
const initialState = {
|
||||||
visits: [],
|
visits: [],
|
||||||
loading: false,
|
loading: false,
|
||||||
|
loadingLarge: false,
|
||||||
error: false,
|
error: false,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -24,19 +27,27 @@ export default function reducer(state = initialState, action) {
|
||||||
return {
|
return {
|
||||||
...state,
|
...state,
|
||||||
loading: true,
|
loading: true,
|
||||||
|
loadingLarge: false,
|
||||||
};
|
};
|
||||||
case GET_SHORT_URL_VISITS_ERROR:
|
case GET_SHORT_URL_VISITS_ERROR:
|
||||||
return {
|
return {
|
||||||
...state,
|
...state,
|
||||||
loading: false,
|
loading: false,
|
||||||
|
loadingLarge: false,
|
||||||
error: true,
|
error: true,
|
||||||
};
|
};
|
||||||
case GET_SHORT_URL_VISITS:
|
case GET_SHORT_URL_VISITS:
|
||||||
return {
|
return {
|
||||||
visits: action.visits,
|
visits: action.visits,
|
||||||
loading: false,
|
loading: false,
|
||||||
|
loadingLarge: false,
|
||||||
error: false,
|
error: false,
|
||||||
};
|
};
|
||||||
|
case GET_SHORT_URL_VISITS_LARGE:
|
||||||
|
return {
|
||||||
|
...state,
|
||||||
|
loadingLarge: true,
|
||||||
|
};
|
||||||
default:
|
default:
|
||||||
return state;
|
return state;
|
||||||
}
|
}
|
||||||
|
@ -58,9 +69,36 @@ export const getShortUrlVisits = (buildShlinkApiClient) => (shortCode, dates) =>
|
||||||
return data;
|
return data;
|
||||||
}
|
}
|
||||||
|
|
||||||
return data.concat(await loadVisits(page + 1));
|
// If there are more pages, make requests in blocks of 4
|
||||||
|
const parallelRequestsCount = 4;
|
||||||
|
const parallelStartingPage = 2;
|
||||||
|
const pagesRange = range(parallelStartingPage, pagination.pagesCount + 1);
|
||||||
|
const pagesBlocks = splitEvery(parallelRequestsCount, pagesRange);
|
||||||
|
|
||||||
|
if (pagination.pagesCount - 1 > parallelRequestsCount) {
|
||||||
|
dispatch({ type: GET_SHORT_URL_VISITS_LARGE });
|
||||||
|
}
|
||||||
|
|
||||||
|
return data.concat(await loadPagesBlocks(pagesBlocks));
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const loadPagesBlocks = async (pagesBlocks, index = 0) => {
|
||||||
|
const data = await loadVisitsInParallel(pagesBlocks[index]);
|
||||||
|
|
||||||
|
if (index < pagesBlocks.length - 1) {
|
||||||
|
return data.concat(await loadPagesBlocks(pagesBlocks, index + 1));
|
||||||
|
}
|
||||||
|
|
||||||
|
return data;
|
||||||
|
};
|
||||||
|
|
||||||
|
const loadVisitsInParallel = (pages) =>
|
||||||
|
Promise.all(pages.map(async (page) => {
|
||||||
|
const { data } = await getShortUrlVisits(shortCode, { ...dates, page, itemsPerPage });
|
||||||
|
|
||||||
|
return data;
|
||||||
|
})).then(flatten);
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const visits = await loadVisits();
|
const visits = await loadVisits();
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import { assoc, isNil, isEmpty, reduce } from 'ramda';
|
import { isNil, isEmpty, memoizeWith, prop } from 'ramda';
|
||||||
|
|
||||||
const osFromUserAgent = (userAgent) => {
|
const osFromUserAgent = (userAgent) => {
|
||||||
const lowerUserAgent = userAgent.toLowerCase();
|
const lowerUserAgent = userAgent.toLowerCase();
|
||||||
|
@ -42,70 +42,47 @@ const extractDomain = (url) => {
|
||||||
return domain.split(':')[0];
|
return domain.split(':')[0];
|
||||||
};
|
};
|
||||||
|
|
||||||
export const processOsStats = (visits) =>
|
|
||||||
reduce(
|
|
||||||
(stats, { userAgent }) => {
|
|
||||||
const os = isNil(userAgent) ? 'Others' : osFromUserAgent(userAgent);
|
|
||||||
|
|
||||||
return assoc(os, (stats[os] || 0) + 1, stats);
|
|
||||||
},
|
|
||||||
{},
|
|
||||||
visits,
|
|
||||||
);
|
|
||||||
|
|
||||||
export const processBrowserStats = (visits) =>
|
|
||||||
reduce(
|
|
||||||
(stats, { userAgent }) => {
|
|
||||||
const browser = isNil(userAgent) ? 'Others' : browserFromUserAgent(userAgent);
|
|
||||||
|
|
||||||
return assoc(browser, (stats[browser] || 0) + 1, stats);
|
|
||||||
},
|
|
||||||
{},
|
|
||||||
visits,
|
|
||||||
);
|
|
||||||
|
|
||||||
export const processReferrersStats = (visits) =>
|
|
||||||
reduce(
|
|
||||||
(stats, visit) => {
|
|
||||||
const notHasDomain = isNil(visit.referer) || isEmpty(visit.referer);
|
|
||||||
const domain = notHasDomain ? 'Unknown' : extractDomain(visit.referer);
|
|
||||||
|
|
||||||
return assoc(domain, (stats[domain] || 0) + 1, stats);
|
|
||||||
},
|
|
||||||
{},
|
|
||||||
visits,
|
|
||||||
);
|
|
||||||
|
|
||||||
const visitLocationHasProperty = (visitLocation, propertyName) =>
|
const visitLocationHasProperty = (visitLocation, propertyName) =>
|
||||||
!isNil(visitLocation)
|
!isNil(visitLocation)
|
||||||
&& !isNil(visitLocation[propertyName])
|
&& !isNil(visitLocation[propertyName])
|
||||||
&& !isEmpty(visitLocation[propertyName]);
|
&& !isEmpty(visitLocation[propertyName]);
|
||||||
|
|
||||||
const buildLocationStatsProcessorByProperty = (propertyName) => (visits) =>
|
const updateOsStatsForVisit = (osStats, { userAgent }) => {
|
||||||
reduce(
|
const os = isNil(userAgent) ? 'Others' : osFromUserAgent(userAgent);
|
||||||
(stats, { visitLocation }) => {
|
|
||||||
|
osStats[os] = (osStats[os] || 0) + 1;
|
||||||
|
};
|
||||||
|
|
||||||
|
const updateBrowsersStatsForVisit = (browsersStats, { userAgent }) => {
|
||||||
|
const browser = isNil(userAgent) ? 'Others' : browserFromUserAgent(userAgent);
|
||||||
|
|
||||||
|
browsersStats[browser] = (browsersStats[browser] || 0) + 1;
|
||||||
|
};
|
||||||
|
|
||||||
|
const updateReferrersStatsForVisit = (referrersStats, { referer }) => {
|
||||||
|
const notHasDomain = isNil(referer) || isEmpty(referer);
|
||||||
|
const domain = notHasDomain ? 'Unknown' : extractDomain(referer);
|
||||||
|
|
||||||
|
referrersStats[domain] = (referrersStats[domain] || 0) + 1;
|
||||||
|
};
|
||||||
|
|
||||||
|
const updateLocationsStatsForVisit = (propertyName) => (stats, { visitLocation }) => {
|
||||||
const hasLocationProperty = visitLocationHasProperty(visitLocation, propertyName);
|
const hasLocationProperty = visitLocationHasProperty(visitLocation, propertyName);
|
||||||
const value = hasLocationProperty ? visitLocation[propertyName] : 'Unknown';
|
const value = hasLocationProperty ? visitLocation[propertyName] : 'Unknown';
|
||||||
|
|
||||||
return assoc(value, (stats[value] || 0) + 1, stats);
|
stats[value] = (stats[value] || 0) + 1;
|
||||||
},
|
};
|
||||||
{},
|
|
||||||
visits,
|
|
||||||
);
|
|
||||||
|
|
||||||
export const processCountriesStats = buildLocationStatsProcessorByProperty('countryName');
|
const updateCountriesStatsForVisit = updateLocationsStatsForVisit('countryName');
|
||||||
|
const updateCitiesStatsForVisit = updateLocationsStatsForVisit('cityName');
|
||||||
|
|
||||||
export const processCitiesStats = buildLocationStatsProcessorByProperty('cityName');
|
const updateCitiesForMapForVisit = (citiesForMapStats, { visitLocation }) => {
|
||||||
|
|
||||||
export const processCitiesStatsForMap = (visits) =>
|
|
||||||
reduce(
|
|
||||||
(stats, { visitLocation }) => {
|
|
||||||
if (!visitLocationHasProperty(visitLocation, 'cityName')) {
|
if (!visitLocationHasProperty(visitLocation, 'cityName')) {
|
||||||
return stats;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
const { cityName, latitude, longitude } = visitLocation;
|
const { cityName, latitude, longitude } = visitLocation;
|
||||||
const currentCity = stats[cityName] || {
|
const currentCity = citiesForMapStats[cityName] || {
|
||||||
cityName,
|
cityName,
|
||||||
count: 0,
|
count: 0,
|
||||||
latLong: [ parseFloat(latitude), parseFloat(longitude) ],
|
latLong: [ parseFloat(latitude), parseFloat(longitude) ],
|
||||||
|
@ -113,8 +90,21 @@ export const processCitiesStatsForMap = (visits) =>
|
||||||
|
|
||||||
currentCity.count++;
|
currentCity.count++;
|
||||||
|
|
||||||
return assoc(cityName, currentCity, stats);
|
citiesForMapStats[cityName] = currentCity;
|
||||||
|
};
|
||||||
|
|
||||||
|
export const processStatsFromVisits = memoizeWith(prop('id'), ({ visits }) =>
|
||||||
|
visits.reduce(
|
||||||
|
(stats, visit) => {
|
||||||
|
// We mutate the original object because it has a big side effect when large data sets are processed
|
||||||
|
updateOsStatsForVisit(stats.os, visit);
|
||||||
|
updateBrowsersStatsForVisit(stats.browsers, visit);
|
||||||
|
updateReferrersStatsForVisit(stats.referrers, visit);
|
||||||
|
updateCountriesStatsForVisit(stats.countries, visit);
|
||||||
|
updateCitiesStatsForVisit(stats.cities, visit);
|
||||||
|
updateCitiesForMapForVisit(stats.citiesForMap, visit);
|
||||||
|
|
||||||
|
return stats;
|
||||||
},
|
},
|
||||||
{},
|
{ os: {}, browsers: {}, referrers: {}, countries: {}, cities: {}, citiesForMap: {} }
|
||||||
visits,
|
));
|
||||||
);
|
|
||||||
|
|
|
@ -11,21 +11,16 @@ import SortableBarGraph from '../../src/visits/SortableBarGraph';
|
||||||
|
|
||||||
describe('<ShortUrlVisits />', () => {
|
describe('<ShortUrlVisits />', () => {
|
||||||
let wrapper;
|
let wrapper;
|
||||||
const statsProcessor = () => ({});
|
const processStatsFromVisits = () => (
|
||||||
|
{ os: {}, browsers: {}, referrers: {}, countries: {}, cities: {}, citiesForMap: {} }
|
||||||
|
);
|
||||||
const getShortUrlVisitsMock = sinon.spy();
|
const getShortUrlVisitsMock = sinon.spy();
|
||||||
const match = {
|
const match = {
|
||||||
params: { shortCode: 'abc123' },
|
params: { shortCode: 'abc123' },
|
||||||
};
|
};
|
||||||
|
|
||||||
const createComponent = (shortUrlVisits) => {
|
const createComponent = (shortUrlVisits) => {
|
||||||
const ShortUrlVisits = createShortUrlVisits({
|
const ShortUrlVisits = createShortUrlVisits({ processStatsFromVisits });
|
||||||
processBrowserStats: statsProcessor,
|
|
||||||
processCountriesStats: statsProcessor,
|
|
||||||
processOsStats: statsProcessor,
|
|
||||||
processReferrersStats: statsProcessor,
|
|
||||||
processCitiesStats: statsProcessor,
|
|
||||||
processCitiesStatsForMap: statsProcessor,
|
|
||||||
});
|
|
||||||
|
|
||||||
wrapper = shallow(
|
wrapper = shallow(
|
||||||
<ShortUrlVisits
|
<ShortUrlVisits
|
||||||
|
@ -48,7 +43,7 @@ describe('<ShortUrlVisits />', () => {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
it('Renders a preloader when visits are loading', () => {
|
it('renders a preloader when visits are loading', () => {
|
||||||
const wrapper = createComponent({ loading: true });
|
const wrapper = createComponent({ loading: true });
|
||||||
const loadingMessage = wrapper.find(MutedMessage);
|
const loadingMessage = wrapper.find(MutedMessage);
|
||||||
|
|
||||||
|
@ -56,6 +51,14 @@ describe('<ShortUrlVisits />', () => {
|
||||||
expect(loadingMessage.html()).toContain('Loading...');
|
expect(loadingMessage.html()).toContain('Loading...');
|
||||||
});
|
});
|
||||||
|
|
||||||
|
it('renders a warning when loading large amounts of visits', () => {
|
||||||
|
const wrapper = createComponent({ loading: true, loadingLarge: true });
|
||||||
|
const loadingMessage = wrapper.find(MutedMessage);
|
||||||
|
|
||||||
|
expect(loadingMessage).toHaveLength(1);
|
||||||
|
expect(loadingMessage.html()).toContain('This is going to take a while... :S');
|
||||||
|
});
|
||||||
|
|
||||||
it('renders an error message when visits could not be loaded', () => {
|
it('renders an error message when visits could not be loaded', () => {
|
||||||
const wrapper = createComponent({ loading: false, error: true });
|
const wrapper = createComponent({ loading: false, error: true });
|
||||||
const errorMessage = wrapper.find(Card);
|
const errorMessage = wrapper.find(Card);
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import { shallow } from 'enzyme';
|
import { shallow } from 'enzyme';
|
||||||
import Moment from 'react-moment';
|
import Moment from 'react-moment';
|
||||||
import { VisitsHeader } from '../../src/visits/VisitsHeader';
|
import VisitsHeader from '../../src/visits/VisitsHeader';
|
||||||
import ExternalLink from '../../src/utils/ExternalLink';
|
import ExternalLink from '../../src/utils/ExternalLink';
|
||||||
|
|
||||||
describe('<VisitsHeader />', () => {
|
describe('<VisitsHeader />', () => {
|
||||||
|
|
|
@ -4,6 +4,7 @@ import reducer, {
|
||||||
GET_SHORT_URL_VISITS_START,
|
GET_SHORT_URL_VISITS_START,
|
||||||
GET_SHORT_URL_VISITS_ERROR,
|
GET_SHORT_URL_VISITS_ERROR,
|
||||||
GET_SHORT_URL_VISITS,
|
GET_SHORT_URL_VISITS,
|
||||||
|
GET_SHORT_URL_VISITS_LARGE,
|
||||||
} from '../../../src/visits/reducers/shortUrlVisits';
|
} from '../../../src/visits/reducers/shortUrlVisits';
|
||||||
|
|
||||||
describe('shortUrlVisitsReducer', () => {
|
describe('shortUrlVisitsReducer', () => {
|
||||||
|
@ -15,6 +16,13 @@ describe('shortUrlVisitsReducer', () => {
|
||||||
expect(loading).toEqual(true);
|
expect(loading).toEqual(true);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
it('returns loadingLarge on GET_SHORT_URL_VISITS_LARGE', () => {
|
||||||
|
const state = reducer({ loadingLarge: false }, { type: GET_SHORT_URL_VISITS_LARGE });
|
||||||
|
const { loadingLarge } = state;
|
||||||
|
|
||||||
|
expect(loadingLarge).toEqual(true);
|
||||||
|
});
|
||||||
|
|
||||||
it('stops loading and returns error on GET_SHORT_URL_VISITS_ERROR', () => {
|
it('stops loading and returns error on GET_SHORT_URL_VISITS_ERROR', () => {
|
||||||
const state = reducer({ loading: true, error: false }, { type: GET_SHORT_URL_VISITS_ERROR });
|
const state = reducer({ loading: true, error: false }, { type: GET_SHORT_URL_VISITS_ERROR });
|
||||||
const { loading, error } = state;
|
const { loading, error } = state;
|
||||||
|
|
|
@ -1,11 +1,4 @@
|
||||||
import {
|
import { processStatsFromVisits } from '../../../src/visits/services/VisitsParser';
|
||||||
processOsStats,
|
|
||||||
processBrowserStats,
|
|
||||||
processReferrersStats,
|
|
||||||
processCountriesStats,
|
|
||||||
processCitiesStats,
|
|
||||||
processCitiesStatsForMap,
|
|
||||||
} from '../../../src/visits/services/VisitsParser';
|
|
||||||
|
|
||||||
describe('VisitsParser', () => {
|
describe('VisitsParser', () => {
|
||||||
const visits = [
|
const visits = [
|
||||||
|
@ -50,64 +43,71 @@ describe('VisitsParser', () => {
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
describe('processOsStats', () => {
|
describe('processStatsFromVisits', () => {
|
||||||
|
let stats;
|
||||||
|
|
||||||
|
beforeAll(() => {
|
||||||
|
stats = processStatsFromVisits({ id: 'id', visits });
|
||||||
|
});
|
||||||
|
|
||||||
it('properly parses OS stats', () => {
|
it('properly parses OS stats', () => {
|
||||||
expect(processOsStats(visits)).toEqual({
|
const { os } = stats;
|
||||||
|
|
||||||
|
expect(os).toEqual({
|
||||||
Linux: 3,
|
Linux: 3,
|
||||||
Windows: 1,
|
Windows: 1,
|
||||||
MacOS: 1,
|
MacOS: 1,
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
});
|
|
||||||
|
|
||||||
describe('processBrowserStats', () => {
|
|
||||||
it('properly parses browser stats', () => {
|
it('properly parses browser stats', () => {
|
||||||
expect(processBrowserStats(visits)).toEqual({
|
const { browsers } = stats;
|
||||||
|
|
||||||
|
expect(browsers).toEqual({
|
||||||
Firefox: 2,
|
Firefox: 2,
|
||||||
Chrome: 2,
|
Chrome: 2,
|
||||||
Opera: 1,
|
Opera: 1,
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
});
|
|
||||||
|
|
||||||
describe('processReferrersStats', () => {
|
|
||||||
it('properly parses referrer stats', () => {
|
it('properly parses referrer stats', () => {
|
||||||
expect(processReferrersStats(visits)).toEqual({
|
const { referrers } = stats;
|
||||||
|
|
||||||
|
expect(referrers).toEqual({
|
||||||
'Unknown': 2,
|
'Unknown': 2,
|
||||||
'google.com': 2,
|
'google.com': 2,
|
||||||
'm.facebook.com': 1,
|
'm.facebook.com': 1,
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
});
|
|
||||||
|
|
||||||
describe('processCountriesStats', () => {
|
|
||||||
it('properly parses countries stats', () => {
|
it('properly parses countries stats', () => {
|
||||||
expect(processCountriesStats(visits)).toEqual({
|
const { countries } = stats;
|
||||||
|
|
||||||
|
expect(countries).toEqual({
|
||||||
'Spain': 3,
|
'Spain': 3,
|
||||||
'United States': 1,
|
'United States': 1,
|
||||||
'Unknown': 1,
|
'Unknown': 1,
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
});
|
|
||||||
|
|
||||||
describe('processCitiesStats', () => {
|
|
||||||
it('properly parses cities stats', () => {
|
it('properly parses cities stats', () => {
|
||||||
expect(processCitiesStats(visits)).toEqual({
|
const { cities } = stats;
|
||||||
|
|
||||||
|
expect(cities).toEqual({
|
||||||
'Zaragoza': 2,
|
'Zaragoza': 2,
|
||||||
'New York': 1,
|
'New York': 1,
|
||||||
'Unknown': 2,
|
'Unknown': 2,
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
});
|
|
||||||
|
|
||||||
describe('processCitiesStatsForMap', () => {
|
|
||||||
it('properly parses cities stats with lat and long', () => {
|
it('properly parses cities stats with lat and long', () => {
|
||||||
|
const { citiesForMap } = stats;
|
||||||
const zaragozaLat = 123.45;
|
const zaragozaLat = 123.45;
|
||||||
const zaragozaLong = -543.21;
|
const zaragozaLong = -543.21;
|
||||||
const newYorkLat = 1029;
|
const newYorkLat = 1029;
|
||||||
const newYorkLong = 6758;
|
const newYorkLong = 6758;
|
||||||
|
|
||||||
expect(processCitiesStatsForMap(visits)).toEqual({
|
expect(citiesForMap).toEqual({
|
||||||
'Zaragoza': {
|
'Zaragoza': {
|
||||||
cityName: 'Zaragoza',
|
cityName: 'Zaragoza',
|
||||||
count: 2,
|
count: 2,
|
||||||
|
|
|
@ -7910,9 +7910,10 @@ railroad-diagrams@^1.0.0:
|
||||||
version "1.0.0"
|
version "1.0.0"
|
||||||
resolved "https://registry.yarnpkg.com/railroad-diagrams/-/railroad-diagrams-1.0.0.tgz#eb7e6267548ddedfb899c1b90e57374559cddb7e"
|
resolved "https://registry.yarnpkg.com/railroad-diagrams/-/railroad-diagrams-1.0.0.tgz#eb7e6267548ddedfb899c1b90e57374559cddb7e"
|
||||||
|
|
||||||
ramda@^0.25.0:
|
ramda@^0.26.1:
|
||||||
version "0.25.0"
|
version "0.26.1"
|
||||||
resolved "https://registry.yarnpkg.com/ramda/-/ramda-0.25.0.tgz#8fdf68231cffa90bc2f9460390a0cb74a29b29a9"
|
resolved "https://registry.yarnpkg.com/ramda/-/ramda-0.26.1.tgz#8d41351eb8111c55353617fc3bbffad8e4d35d06"
|
||||||
|
integrity sha512-hLWjpy7EnsDBb0p+Z3B7rPi3GDeRG5ZtiI33kJhTt+ORCd38AbAIjB/9zRIUoeTbE/AVX5ZkU7m6bznsvrf8eQ==
|
||||||
|
|
||||||
randexp@0.4.6:
|
randexp@0.4.6:
|
||||||
version "0.4.6"
|
version "0.4.6"
|
||||||
|
|
Loading…
Reference in a new issue