Skip to content

Commit

Permalink
Merge pull request #819 from acelaya-forks/feature/tags-non-bot-visits
Browse files Browse the repository at this point in the history
Feature/tags non bot visits
  • Loading branch information
acelaya committed Mar 19, 2023
2 parents 8fa61a6 + cf27de9 commit f6334c3
Show file tree
Hide file tree
Showing 13 changed files with 177 additions and 35 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@ 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).

## [Unreleased]
## [3.10.0] - 2023-03-19
### Added
* [#807](https://github.com/shlinkio/shlink-web-client/issues/807) Add support for device-specific long-URLs when creating or editing short URLs.
* [#808](https://github.com/shlinkio/shlink-web-client/issues/808) Respect settings on excluding bots in the overview section, for visits cards.
* [#809](https://github.com/shlinkio/shlink-web-client/issues/809) Respect settings on excluding bots in the tags list.

### Changed
* [#798](https://github.com/shlinkio/shlink-web-client/issues/798) Remove stryker and mutation testing.
Expand Down
4 changes: 2 additions & 2 deletions jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ module.exports = {
coverageThreshold: {
global: {
statements: 90,
branches: 80,
functions: 85,
branches: 85,
functions: 90,
lines: 90,
},
},
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,10 @@
"lint:fix": "npm run lint:css:fix && npm run lint:js:fix",
"lint:css:fix": "npm run lint:css -- --fix",
"lint:js:fix": "npm run lint:js -- --fix",
"types": "tsc",
"start": "vite serve --host=0.0.0.0",
"preview": "vite preview --host=0.0.0.0",
"build": "tsc --noEmit && vite build && node scripts/replace-version.mjs",
"build": "npm run types && vite build && node scripts/replace-version.mjs",
"build:dist": "npm run build && node scripts/create-dist-file.mjs",
"test": "jest --env=jsdom --colors",
"test:coverage": "npm run test -- --coverage --coverageReporters=text --coverageReporters=text-summary",
Expand Down
5 changes: 4 additions & 1 deletion src/api/types/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,12 @@ export interface ShlinkHealth {
version: string;
}

interface ShlinkTagsStats {
export interface ShlinkTagsStats {
tag: string;
shortUrlsCount: number;
visitsSummary?: ShlinkVisitsSummary; // Optional only before Shlink 3.5.0

/** @deprecated */
visitsCount: number;
}

Expand Down
21 changes: 14 additions & 7 deletions src/tags/TagsList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import { Message } from '../utils/Message';
import { OrderingDropdown } from '../utils/OrderingDropdown';
import { Result } from '../utils/Result';
import { SearchField } from '../utils/SearchField';
import type { NormalizedTag } from './data';
import type { SimplifiedTag } from './data';
import type { TagsOrder, TagsOrderableFields } from './data/TagsListChildrenProps';
import { TAGS_ORDERABLE_FIELDS } from './data/TagsListChildrenProps';
import type { TagsList as TagsListState } from './reducers/tagsList';
Expand All @@ -31,12 +31,19 @@ export const TagsList = (TagsTable: FC<TagsTableProps>) => boundToMercureHub((
) => {
const [order, setOrder] = useState<TagsOrder>(settings.tags?.defaultOrdering ?? {});
const resolveSortedTags = pipe(
() => tagsList.filteredTags.map((tag): NormalizedTag => ({
tag,
shortUrls: tagsList.stats[tag]?.shortUrlsCount ?? 0,
visits: tagsList.stats[tag]?.visitsCount ?? 0,
})),
(normalizedTags) => sortList<NormalizedTag>(normalizedTags, order),
() => tagsList.filteredTags.map((tag): SimplifiedTag => {
const theTag = tagsList.stats[tag];
const visits = (
settings.visits?.excludeBots ? theTag?.visitsSummary?.nonBots : theTag?.visitsSummary?.total
) ?? theTag?.visitsCount ?? 0;

return {
tag,
visits,
shortUrls: theTag?.shortUrlsCount ?? 0,
};
}),
(simplifiedTags) => sortList<SimplifiedTag>(simplifiedTags, order),
);

useEffect(() => {
Expand Down
4 changes: 2 additions & 2 deletions src/tags/TagsTableRow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ import { DropdownBtnMenu } from '../utils/DropdownBtnMenu';
import { useToggle } from '../utils/helpers/hooks';
import { prettify } from '../utils/helpers/numbers';
import type { ColorGenerator } from '../utils/services/ColorGenerator';
import type { NormalizedTag, TagModalProps } from './data';
import type { SimplifiedTag, TagModalProps } from './data';
import { TagBullet } from './helpers/TagBullet';

export interface TagsTableRowProps {
tag: NormalizedTag;
tag: SimplifiedTag;
selectedServer: SelectedServer;
}

Expand Down
4 changes: 2 additions & 2 deletions src/tags/data/TagsListChildrenProps.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { SelectedServer } from '../../servers/data';
import type { Order } from '../../utils/helpers/ordering';
import type { NormalizedTag } from './index';
import type { SimplifiedTag } from './index';

export const TAGS_ORDERABLE_FIELDS = {
tag: 'Tag',
Expand All @@ -13,6 +13,6 @@ export type TagsOrderableFields = keyof typeof TAGS_ORDERABLE_FIELDS;
export type TagsOrder = Order<TagsOrderableFields>;

export interface TagsListChildrenProps {
sortedTags: NormalizedTag[];
sortedTags: SimplifiedTag[];
selectedServer: SelectedServer;
}
9 changes: 4 additions & 5 deletions src/tags/data/index.ts
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
export interface TagStats {
shortUrlsCount: number;
visitsCount: number;
}
import type { ShlinkTagsStats } from '../../api/types';

export type TagStats = Omit<ShlinkTagsStats, 'tag'>;

export interface TagModalProps {
tag: string;
isOpen: boolean;
toggle: () => void;
}

export interface NormalizedTag {
export interface SimplifiedTag {
tag: string;
shortUrls: number;
visits: number;
Expand Down
32 changes: 23 additions & 9 deletions src/tags/reducers/tagsList.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import type { createShortUrl } from '../../short-urls/reducers/shortUrlCreation'
import { supportedFeatures } from '../../utils/helpers/features';
import { createAsyncThunk } from '../../utils/helpers/redux';
import { createNewVisits } from '../../visits/reducers/visitCreation';
import type { CreateVisit, Stats } from '../../visits/types';
import type { CreateVisit } from '../../visits/types';
import type { TagStats } from '../data';
import { tagDeleted } from './tagDelete';
import { tagEdited } from './tagEdit';
Expand Down Expand Up @@ -39,7 +39,8 @@ const initialState: TagsList = {
error: false,
};

type TagIncrease = [string, number];
type TagIncreaseRecord = Record<string, { bots: number; nonBots: number }>;
type TagIncrease = [string, { bots: number; nonBots: number }];

const renameTag = (oldName: string, newName: string) => (tag: string) => (tag === oldName ? newName : tag);
const rejectTag = (tags: string[], tagToReject: string) => reject((tag) => tag === tagToReject, tags);
Expand All @@ -48,20 +49,34 @@ const increaseVisitsForTags = (tags: TagIncrease[], stats: TagsStatsMap) => tags
return theStats;
}

const { bots, nonBots } = increase;
const tagStats = theStats[tag];

return {
...theStats,
[tag]: {
...tagStats,
visitsCount: tagStats.visitsCount + increase,
visitsSummary: tagStats.visitsSummary && {
total: tagStats.visitsSummary.total + bots + nonBots,
bots: tagStats.visitsSummary.bots + bots,
nonBots: tagStats.visitsSummary.nonBots + nonBots,
},
visitsCount: tagStats.visitsCount + bots + nonBots,
},
};
}, { ...stats });
const calculateVisitsPerTag = (createdVisits: CreateVisit[]): TagIncrease[] => Object.entries(
createdVisits.reduce<Stats>((acc, { shortUrl }) => {
createdVisits.reduce<TagIncreaseRecord>((acc, { shortUrl, visit }) => {
shortUrl?.tags.forEach((tag) => {
acc[tag] = (acc[tag] || 0) + 1;
if (!acc[tag]) {
acc[tag] = { bots: 0, nonBots: 0 };
}

if (visit.potentialBot) {
acc[tag].bots += 1;
} else {
acc[tag].nonBots += 1;
}
});

return acc;
Expand All @@ -78,12 +93,11 @@ export const listTags = (buildShlinkApiClient: ShlinkApiClientBuilder, force = t
}

const { listTags: shlinkListTags, tagsStats } = buildShlinkApiClient(getState);
const { tags, stats = [] }: ShlinkTags = await (
const { tags, stats }: ShlinkTags = await (
supportedFeatures.tagsStats(selectedServer) ? tagsStats() : shlinkListTags()
);
const processedStats = stats.reduce<TagsStatsMap>((acc, { tag, shortUrlsCount, visitsCount }) => {
acc[tag] = { shortUrlsCount, visitsCount };

const processedStats = stats.reduce<TagsStatsMap>((acc, { tag, ...rest }) => {
acc[tag] = rest;
return acc;
}, {});

Expand Down
1 change: 1 addition & 0 deletions src/tags/services/provideServices.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ export const provideServices = (bottle: Bottle, connect: ConnectDecorator) => {
bottle.decorator('EditTagModal', connect(['tagEdit'], ['editTag', 'tagEdited']));

bottle.serviceFactory('TagsTableRow', TagsTableRow, 'DeleteTagConfirmModal', 'EditTagModal', 'ColorGenerator');
bottle.decorator('TagsTableRow', connect(['settings']));

bottle.serviceFactory('TagsTable', TagsTable, 'TagsTableRow');

Expand Down
51 changes: 48 additions & 3 deletions test/tags/TagsList.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ import { renderWithEvents } from '../__helpers__/setUpTest';

describe('<TagsList />', () => {
const filterTags = jest.fn();
const TagsListComp = createTagsList(() => <>TagsTable</>);
const setUp = (tagsList: Partial<TagsList>) => renderWithEvents(
const TagsListComp = createTagsList(({ sortedTags }) => <>TagsTable ({sortedTags.map((t) => t.visits).join(',')})</>);
const setUp = (tagsList: Partial<TagsList>, excludeBots = false) => renderWithEvents(
<TagsListComp
{...Mock.all<TagsListProps>()}
{...Mock.of<MercureBoundProps>({ mercureInfo: {} })}
forceListTags={identity}
filterTags={filterTags}
tagsList={Mock.of<TagsList>(tagsList)}
settings={Mock.all<Settings>()}
settings={Mock.of<Settings>({ visits: { excludeBots } })}
/>,
);

Expand Down Expand Up @@ -53,4 +53,49 @@ describe('<TagsList />', () => {
await user.type(screen.getByPlaceholderText('Search...'), 'Hello');
await waitFor(() => expect(filterTags).toHaveBeenCalledTimes(1));
});

it.each([
[false, undefined, '25,25,25'],
[true, undefined, '25,25,25'],
[
false,
{
total: 20,
nonBots: 15,
bots: 5,
},
'20,20,20',
],
[
true,
{
total: 20,
nonBots: 15,
bots: 5,
},
'15,15,15',
],
])('displays proper amount of visits', (excludeBots, visitsSummary, expectedAmounts) => {
setUp({
filteredTags: ['foo', 'bar', 'baz'],
stats: {
foo: {
visitsSummary,
visitsCount: 25,
shortUrlsCount: 1,
},
bar: {
visitsSummary,
visitsCount: 25,
shortUrlsCount: 1,
},
baz: {
visitsSummary,
visitsCount: 25,
shortUrlsCount: 1,
},
},
}, excludeBots);
expect(screen.getByText(`TagsTable (${expectedAmounts})`)).toBeInTheDocument();
});
});
4 changes: 2 additions & 2 deletions test/tags/TagsTable.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { screen } from '@testing-library/react';
import { useLocation } from 'react-router-dom';
import { Mock } from 'ts-mockery';
import type { SelectedServer } from '../../src/servers/data';
import type { NormalizedTag } from '../../src/tags/data';
import type { SimplifiedTag } from '../../src/tags/data';
import { TagsTable as createTagsTable } from '../../src/tags/TagsTable';
import { rangeOf } from '../../src/utils/utils';
import { renderWithEvents } from '../__helpers__/setUpTest';
Expand All @@ -17,7 +17,7 @@ describe('<TagsTable />', () => {
(useLocation as any).mockReturnValue({ search });
return renderWithEvents(
<TagsTable
sortedTags={sortedTags.map((tag) => Mock.of<NormalizedTag>({ tag }))}
sortedTags={sortedTags.map((tag) => Mock.of<SimplifiedTag>({ tag }))}
selectedServer={Mock.all<SelectedServer>()}
currentOrder={{}}
orderByColumn={() => orderByColumn}
Expand Down
71 changes: 71 additions & 0 deletions test/tags/reducers/tagsList.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ import {
listTags as listTagsCreator,
tagsListReducerCreator,
} from '../../../src/tags/reducers/tagsList';
import { createNewVisits } from '../../../src/visits/reducers/visitCreation';
import type { CreateVisit, Visit } from '../../../src/visits/types';

describe('tagsListReducer', () => {
const state = (props: Partial<TagsList>) => Mock.of<TagsList>(props);
Expand Down Expand Up @@ -118,6 +120,75 @@ describe('tagsListReducer', () => {
tags: expectedTags,
});
});

it('increases amounts when visits are created', () => {
const createdVisits = [
Mock.of<CreateVisit>({
shortUrl: Mock.of<ShortUrl>({ tags: ['foo', 'bar'] }),
visit: Mock.of<Visit>({ potentialBot: true }),
}),
Mock.of<CreateVisit>({
shortUrl: Mock.of<ShortUrl>({ tags: ['foo', 'bar'] }),
visit: Mock.all<Visit>(),
}),
Mock.of<CreateVisit>({
shortUrl: Mock.of<ShortUrl>({ tags: ['bar'] }),
visit: Mock.all<Visit>(),
}),
Mock.of<CreateVisit>({
shortUrl: Mock.of<ShortUrl>({ tags: ['baz'] }),
visit: Mock.of<Visit>({ potentialBot: true }),
}),
];
const tagStats = (total: number) => ({
shortUrlsCount: 1,
visitsCount: total,
visitsSummary: {
total,
nonBots: total - 10,
bots: 10,
},
});
const stateBefore = state({
stats: {
foo: tagStats(100),
bar: tagStats(200),
baz: tagStats(150),
},
});

expect(reducer(stateBefore, createNewVisits(createdVisits))).toEqual(expect.objectContaining({
stats: {
foo: {
shortUrlsCount: 1,
visitsCount: 100 + 2,
visitsSummary: {
total: 100 + 2,
nonBots: 90 + 1,
bots: 10 + 1,
},
},
bar: {
shortUrlsCount: 1,
visitsCount: 200 + 3,
visitsSummary: {
total: 200 + 3,
nonBots: 190 + 2,
bots: 10 + 1,
},
},
baz: {
shortUrlsCount: 1,
visitsCount: 150 + 1,
visitsSummary: {
total: 150 + 1,
nonBots: 140,
bots: 10 + 1,
},
},
},
}));
});
});

describe('filterTags', () => {
Expand Down

0 comments on commit f6334c3

Please sign in to comment.