Displayed amount of max visits on those URLs which have it

This commit is contained in:
Alejandro Celaya 2020-01-11 19:40:16 +01:00
parent e96c119432
commit 5c4fec5a2f
4 changed files with 72 additions and 8 deletions

View file

@ -18,6 +18,7 @@ export const SORTABLE_FIELDS = {
visits: 'Visits', visits: 'Visits',
}; };
// FIXME Replace with typescript: (ShortUrlsRow component)
const ShortUrlsList = (ShortUrlsRow) => class ShortUrlsList extends React.Component { const ShortUrlsList = (ShortUrlsRow) => class ShortUrlsList extends React.Component {
static propTypes = { static propTypes = {
listShortUrls: PropTypes.func, listShortUrls: PropTypes.func,

View file

@ -2,6 +2,9 @@ import { isEmpty } from 'ramda';
import React from 'react'; import React from 'react';
import Moment from 'react-moment'; import Moment from 'react-moment';
import PropTypes from 'prop-types'; import PropTypes from 'prop-types';
import { UncontrolledTooltip } from 'reactstrap';
import { faInfoCircle as infoIcon } from '@fortawesome/free-solid-svg-icons';
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
import { shortUrlsListParamsType } from '../reducers/shortUrlsListParams'; import { shortUrlsListParamsType } from '../reducers/shortUrlsListParams';
import { serverType } from '../../servers/prop-types'; import { serverType } from '../../servers/prop-types';
import ExternalLink from '../../utils/ExternalLink'; import ExternalLink from '../../utils/ExternalLink';
@ -9,6 +12,32 @@ import { shortUrlType } from '../reducers/shortUrlsList';
import Tag from '../../tags/helpers/Tag'; import Tag from '../../tags/helpers/Tag';
import './ShortUrlsRow.scss'; import './ShortUrlsRow.scss';
const renderVisitsCount = (shortUrl) => {
const { visitsCount, meta } = shortUrl;
const maxVisits = meta && meta.maxVisits;
if (!maxVisits) {
return <span>{visitsCount}</span>;
}
return (
<React.Fragment>
<span>
{visitsCount}
<small id="maxVisitsControl" className="short-urls-row__max-visits-control">
{' '}/ {maxVisits}{' '}
<sup>
<FontAwesomeIcon icon={infoIcon} />
</sup>
</small>
</span>
<UncontrolledTooltip target="maxVisitsControl" placement="bottom">
This short URL will not accept more than <b>{maxVisits}</b> visits.
</UncontrolledTooltip>
</React.Fragment>
);
};
const ShortUrlsRow = ( const ShortUrlsRow = (
ShortUrlsRowMenu, ShortUrlsRowMenu,
colorGenerator, colorGenerator,
@ -56,7 +85,9 @@ const ShortUrlsRow = (
<ExternalLink href={shortUrl.longUrl} /> <ExternalLink href={shortUrl.longUrl} />
</td> </td>
<td className="short-urls-row__cell" data-th="Tags: ">{this.renderTags(shortUrl.tags)}</td> <td className="short-urls-row__cell" data-th="Tags: ">{this.renderTags(shortUrl.tags)}</td>
<td className="short-urls-row__cell text-md-right" data-th="Visits: ">{shortUrl.visitsCount}</td> <td className="short-urls-row__cell text-md-right" data-th="Visits: ">
{renderVisitsCount(shortUrl)}
</td>
<td className="short-urls-row__cell short-urls-row__cell--relative"> <td className="short-urls-row__cell short-urls-row__cell--relative">
<small <small
className="badge badge-warning short-urls-row__copy-hint" className="badge badge-warning short-urls-row__copy-hint"

View file

@ -51,3 +51,7 @@
right: calc(100% + 10px); right: calc(100% + 10px);
} }
} }
.short-urls-row__max-visits-control {
cursor: help;
}

View file

@ -3,6 +3,7 @@ import { shallow } from 'enzyme';
import moment from 'moment'; import moment from 'moment';
import Moment from 'react-moment'; import Moment from 'react-moment';
import { assoc, toString } from 'ramda'; import { assoc, toString } from 'ramda';
import { UncontrolledTooltip } from 'reactstrap';
import createShortUrlsRow from '../../../src/short-urls/helpers/ShortUrlsRow'; import createShortUrlsRow from '../../../src/short-urls/helpers/ShortUrlsRow';
import ExternalLink from '../../../src/utils/ExternalLink'; import ExternalLink from '../../../src/utils/ExternalLink';
import Tag from '../../../src/tags/helpers/Tag'; import Tag from '../../../src/tags/helpers/Tag';
@ -27,17 +28,24 @@ describe('<ShortUrlsRow />', () => {
tags: [ 'nodejs', 'reactjs' ], tags: [ 'nodejs', 'reactjs' ],
visitsCount: 45, visitsCount: 45,
}; };
const ShortUrlsRow = createShortUrlsRow(ShortUrlsRowMenu, colorGenerator, stateFlagTimeout);
beforeEach(() => { const createWrapper = (meta) => {
const ShortUrlsRow = createShortUrlsRow(ShortUrlsRowMenu, colorGenerator, stateFlagTimeout);
wrapper = shallow( wrapper = shallow(
<ShortUrlsRow shortUrlsListParams={{}} refreshList={mockFunction} selecrtedServer={server} shortUrl={shortUrl} /> <ShortUrlsRow
shortUrlsListParams={{}}
refreshList={mockFunction}
selecrtedServer={server}
shortUrl={{ ...shortUrl, meta }}
/>
); );
});
afterEach(() => wrapper.unmount()); return wrapper;
};
afterEach(() => wrapper && wrapper.unmount());
it('renders date in first column', () => { it('renders date in first column', () => {
const wrapper = createWrapper();
const col = wrapper.find('td').first(); const col = wrapper.find('td').first();
const moment = col.find(Moment); const moment = col.find(Moment);
@ -45,6 +53,7 @@ describe('<ShortUrlsRow />', () => {
}); });
it('renders short URL in second row', () => { it('renders short URL in second row', () => {
const wrapper = createWrapper();
const col = wrapper.find('td').at(1); const col = wrapper.find('td').at(1);
const link = col.find(ExternalLink); const link = col.find(ExternalLink);
@ -52,6 +61,7 @@ describe('<ShortUrlsRow />', () => {
}); });
it('renders long URL in third row', () => { it('renders long URL in third row', () => {
const wrapper = createWrapper();
const col = wrapper.find('td').at(2); const col = wrapper.find('td').at(2);
const link = col.find(ExternalLink); const link = col.find(ExternalLink);
@ -60,6 +70,7 @@ describe('<ShortUrlsRow />', () => {
describe('renders list of tags in fourth row', () => { describe('renders list of tags in fourth row', () => {
it('with tags', () => { it('with tags', () => {
const wrapper = createWrapper();
const col = wrapper.find('td').at(3); const col = wrapper.find('td').at(3);
const tags = col.find(Tag); const tags = col.find(Tag);
@ -72,6 +83,8 @@ describe('<ShortUrlsRow />', () => {
}); });
it('without tags', () => { it('without tags', () => {
const wrapper = createWrapper();
wrapper.setProps({ shortUrl: assoc('tags', [], shortUrl) }); wrapper.setProps({ shortUrl: assoc('tags', [], shortUrl) });
const col = wrapper.find('td').at(3); const col = wrapper.find('td').at(3);
@ -81,12 +94,26 @@ describe('<ShortUrlsRow />', () => {
}); });
it('renders visits count in fifth row', () => { it('renders visits count in fifth row', () => {
const wrapper = createWrapper();
const col = wrapper.find('td').at(4); const col = wrapper.find('td').at(4);
const maxVisitsHelper = wrapper.find('.short-urls-row__max-visits-control');
expect(col.text()).toEqual(toString(shortUrl.visitsCount)); expect(col.text()).toEqual(toString(shortUrl.visitsCount));
expect(maxVisitsHelper).toHaveLength(0);
});
it('renders visits count with helper control displaying the maximum amount of visits', () => {
const maxVisits = 40;
const wrapper = createWrapper({ maxVisits });
const maxVisitsHelper = wrapper.find('.short-urls-row__max-visits-control');
const maxVisitsTooltip = wrapper.find(UncontrolledTooltip);
expect(maxVisitsHelper).toHaveLength(1);
expect(maxVisitsTooltip).toHaveLength(1);
}); });
it('updates state when copied to clipboard', () => { it('updates state when copied to clipboard', () => {
const wrapper = createWrapper();
const col = wrapper.find('td').at(5); const col = wrapper.find('td').at(5);
const menu = col.find(ShortUrlsRowMenu); const menu = col.find(ShortUrlsRowMenu);
@ -97,6 +124,7 @@ describe('<ShortUrlsRow />', () => {
}); });
it('shows copy hint when state prop is true', () => { it('shows copy hint when state prop is true', () => {
const wrapper = createWrapper();
const isHidden = () => wrapper.find('td').at(5).find('.short-urls-row__copy-hint').prop('hidden'); const isHidden = () => wrapper.find('td').at(5).find('.short-urls-row__copy-hint').prop('hidden');
expect(isHidden()).toEqual(true); expect(isHidden()).toEqual(true);