mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2024-12-23 09:30:31 +03:00
Allowed to select 'all' as the default interval for visits
This commit is contained in:
parent
d00b6165b3
commit
c71e0919e9
8 changed files with 67 additions and 51 deletions
|
@ -14,6 +14,7 @@ export const Visits: FC<VisitsProps> = ({ settings, setVisitsSettings }) => (
|
||||||
<FormGroup className="mb-0">
|
<FormGroup className="mb-0">
|
||||||
<label>Default interval to load on visits sections:</label>
|
<label>Default interval to load on visits sections:</label>
|
||||||
<DateIntervalSelector
|
<DateIntervalSelector
|
||||||
|
allText="All visits"
|
||||||
active={settings.visits?.defaultInterval ?? 'last30Days'}
|
active={settings.visits?.defaultInterval ?? 'last30Days'}
|
||||||
onChange={(defaultInterval) => setVisitsSettings({ defaultInterval })}
|
onChange={(defaultInterval) => setVisitsSettings({ defaultInterval })}
|
||||||
/>
|
/>
|
||||||
|
|
|
@ -4,11 +4,16 @@ import { DATE_INTERVALS, DateInterval, rangeOrIntervalToString } from './types';
|
||||||
|
|
||||||
export interface DateIntervalDropdownProps {
|
export interface DateIntervalDropdownProps {
|
||||||
active?: DateInterval;
|
active?: DateInterval;
|
||||||
|
allText: string;
|
||||||
onChange: (interval: DateInterval) => void;
|
onChange: (interval: DateInterval) => void;
|
||||||
}
|
}
|
||||||
|
|
||||||
export const DateIntervalDropdownItems: FC<DateIntervalDropdownProps> = ({ active, onChange }) => (
|
export const DateIntervalDropdownItems: FC<DateIntervalDropdownProps> = ({ active, allText, onChange }) => (
|
||||||
<>
|
<>
|
||||||
|
<DropdownItem active={active === 'all'} onClick={() => onChange('all')}>
|
||||||
|
{allText}
|
||||||
|
</DropdownItem>
|
||||||
|
<DropdownItem divider />
|
||||||
{DATE_INTERVALS.map(
|
{DATE_INTERVALS.map(
|
||||||
(interval) => (
|
(interval) => (
|
||||||
<DropdownItem key={interval} active={active === interval} onClick={() => onChange(interval)}>
|
<DropdownItem key={interval} active={active === interval} onClick={() => onChange(interval)}>
|
||||||
|
|
|
@ -3,8 +3,8 @@ import { DropdownBtn } from '../DropdownBtn';
|
||||||
import { rangeOrIntervalToString } from './types';
|
import { rangeOrIntervalToString } from './types';
|
||||||
import { DateIntervalDropdownItems, DateIntervalDropdownProps } from './DateIntervalDropdownItems';
|
import { DateIntervalDropdownItems, DateIntervalDropdownProps } from './DateIntervalDropdownItems';
|
||||||
|
|
||||||
export const DateIntervalSelector: FC<DateIntervalDropdownProps> = ({ onChange, active }) => (
|
export const DateIntervalSelector: FC<DateIntervalDropdownProps> = ({ onChange, active, allText }) => (
|
||||||
<DropdownBtn text={rangeOrIntervalToString(active) ?? ''}>
|
<DropdownBtn text={rangeOrIntervalToString(active) ?? allText}>
|
||||||
<DateIntervalDropdownItems active={active} onChange={onChange} />
|
<DateIntervalDropdownItems allText={allText} active={active} onChange={onChange} />
|
||||||
</DropdownBtn>
|
</DropdownBtn>
|
||||||
);
|
);
|
||||||
|
|
|
@ -4,10 +4,10 @@ import { DropdownBtn } from '../DropdownBtn';
|
||||||
import {
|
import {
|
||||||
DateInterval,
|
DateInterval,
|
||||||
DateRange,
|
DateRange,
|
||||||
dateRangeIsEmpty,
|
|
||||||
rangeOrIntervalToString,
|
rangeOrIntervalToString,
|
||||||
intervalToDateRange,
|
intervalToDateRange,
|
||||||
rangeIsInterval,
|
rangeIsInterval,
|
||||||
|
dateRangeIsEmpty,
|
||||||
} from './types';
|
} from './types';
|
||||||
import DateRangeRow from './DateRangeRow';
|
import DateRangeRow from './DateRangeRow';
|
||||||
import { DateIntervalDropdownItems } from './DateIntervalDropdownItems';
|
import { DateIntervalDropdownItems } from './DateIntervalDropdownItems';
|
||||||
|
@ -33,7 +33,7 @@ export const DateRangeSelector = (
|
||||||
setActiveDateRange(dateRange);
|
setActiveDateRange(dateRange);
|
||||||
onDatesChange(dateRange);
|
onDatesChange(dateRange);
|
||||||
};
|
};
|
||||||
const updateInterval = (dateInterval?: DateInterval) => () => {
|
const updateInterval = (dateInterval: DateInterval) => () => {
|
||||||
setActiveInterval(dateInterval);
|
setActiveInterval(dateInterval);
|
||||||
setActiveDateRange(undefined);
|
setActiveDateRange(undefined);
|
||||||
onDatesChange(intervalToDateRange(dateInterval));
|
onDatesChange(intervalToDateRange(dateInterval));
|
||||||
|
@ -41,14 +41,11 @@ export const DateRangeSelector = (
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<DropdownBtn disabled={disabled} text={rangeOrIntervalToString(activeInterval ?? activeDateRange) ?? defaultText}>
|
<DropdownBtn disabled={disabled} text={rangeOrIntervalToString(activeInterval ?? activeDateRange) ?? defaultText}>
|
||||||
<DropdownItem
|
<DateIntervalDropdownItems
|
||||||
active={activeInterval === undefined && dateRangeIsEmpty(activeDateRange)}
|
allText={defaultText}
|
||||||
onClick={updateInterval(undefined)}
|
active={!dateRangeIsEmpty(activeDateRange) ? undefined : activeInterval}
|
||||||
>
|
onChange={(interval) => updateInterval(interval)()}
|
||||||
{defaultText}
|
/>
|
||||||
</DropdownItem>
|
|
||||||
<DropdownItem divider />
|
|
||||||
<DateIntervalDropdownItems active={activeInterval} onChange={(interval) => updateInterval(interval)()} />
|
|
||||||
<DropdownItem divider />
|
<DropdownItem divider />
|
||||||
<DropdownItem header>Custom:</DropdownItem>
|
<DropdownItem header>Custom:</DropdownItem>
|
||||||
<DropdownItem text>
|
<DropdownItem text>
|
||||||
|
|
|
@ -7,14 +7,15 @@ export interface DateRange {
|
||||||
endDate?: Date | null;
|
endDate?: Date | null;
|
||||||
}
|
}
|
||||||
|
|
||||||
export type DateInterval = 'today' | 'yesterday' | 'last7Days' | 'last30Days' | 'last90Days' | 'last180days' | 'last365Days';
|
export type DateInterval = 'all' | 'today' | 'yesterday' | 'last7Days' | 'last30Days' | 'last90Days' | 'last180days' | 'last365Days';
|
||||||
|
|
||||||
export const dateRangeIsEmpty = (dateRange?: DateRange): boolean => dateRange === undefined
|
export const dateRangeIsEmpty = (dateRange?: DateRange): boolean => dateRange === undefined
|
||||||
|| isEmpty(filter(Boolean, dateRange as any));
|
|| isEmpty(filter(Boolean, dateRange as any));
|
||||||
|
|
||||||
export const rangeIsInterval = (range?: DateRange | DateInterval): range is DateInterval => typeof range === 'string';
|
export const rangeIsInterval = (range?: DateRange | DateInterval): range is DateInterval =>
|
||||||
|
typeof range === 'string';
|
||||||
|
|
||||||
const INTERVAL_TO_STRING_MAP: Record<DateInterval, string> = {
|
const INTERVAL_TO_STRING_MAP: Record<DateInterval, string | undefined> = {
|
||||||
today: 'Today',
|
today: 'Today',
|
||||||
yesterday: 'Yesterday',
|
yesterday: 'Yesterday',
|
||||||
last7Days: 'Last 7 days',
|
last7Days: 'Last 7 days',
|
||||||
|
@ -22,9 +23,10 @@ const INTERVAL_TO_STRING_MAP: Record<DateInterval, string> = {
|
||||||
last90Days: 'Last 90 days',
|
last90Days: 'Last 90 days',
|
||||||
last180days: 'Last 180 days',
|
last180days: 'Last 180 days',
|
||||||
last365Days: 'Last 365 days',
|
last365Days: 'Last 365 days',
|
||||||
|
all: undefined,
|
||||||
};
|
};
|
||||||
|
|
||||||
export const DATE_INTERVALS: DateInterval[] = Object.keys(INTERVAL_TO_STRING_MAP) as DateInterval[];
|
export const DATE_INTERVALS = Object.keys(INTERVAL_TO_STRING_MAP).filter((value) => value !== 'all') as DateInterval[];
|
||||||
|
|
||||||
const dateRangeToString = (range?: DateRange): string | undefined => {
|
const dateRangeToString = (range?: DateRange): string | undefined => {
|
||||||
if (!range || dateRangeIsEmpty(range)) {
|
if (!range || dateRangeIsEmpty(range)) {
|
||||||
|
@ -43,7 +45,7 @@ const dateRangeToString = (range?: DateRange): string | undefined => {
|
||||||
};
|
};
|
||||||
|
|
||||||
export const rangeOrIntervalToString = (range?: DateRange | DateInterval): string | undefined => {
|
export const rangeOrIntervalToString = (range?: DateRange | DateInterval): string | undefined => {
|
||||||
if (!range) {
|
if (!range || range === 'all') {
|
||||||
return undefined;
|
return undefined;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -58,7 +60,7 @@ const startOfDaysAgo = (daysAgo: number) => startOfDay(subDays(new Date(), daysA
|
||||||
const endingToday = (startDate: Date): DateRange => ({ startDate, endDate: endOfDay(new Date()) });
|
const endingToday = (startDate: Date): DateRange => ({ startDate, endDate: endOfDay(new Date()) });
|
||||||
|
|
||||||
export const intervalToDateRange = (dateInterval?: DateInterval): DateRange => {
|
export const intervalToDateRange = (dateInterval?: DateInterval): DateRange => {
|
||||||
if (!dateInterval) {
|
if (!dateInterval || dateInterval === 'all') {
|
||||||
return {};
|
return {};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,7 @@ describe('<DateIntervalDropdownItems />', () => {
|
||||||
const onChange = jest.fn();
|
const onChange = jest.fn();
|
||||||
|
|
||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
wrapper = shallow(<DateIntervalDropdownItems active="last180days" onChange={onChange} />);
|
wrapper = shallow(<DateIntervalDropdownItems allText="All" active="last180days" onChange={onChange} />);
|
||||||
});
|
});
|
||||||
|
|
||||||
afterEach(jest.clearAllMocks);
|
afterEach(jest.clearAllMocks);
|
||||||
|
@ -16,24 +16,26 @@ describe('<DateIntervalDropdownItems />', () => {
|
||||||
|
|
||||||
it('renders expected amount of items', () => {
|
it('renders expected amount of items', () => {
|
||||||
const items = wrapper.find(DropdownItem);
|
const items = wrapper.find(DropdownItem);
|
||||||
|
const dividerItems = items.findWhere((item) => !!item.prop('divider'));
|
||||||
|
|
||||||
expect(items).toHaveLength(DATE_INTERVALS.length);
|
expect(items).toHaveLength(DATE_INTERVALS.length + 2);
|
||||||
|
expect(dividerItems).toHaveLength(1);
|
||||||
});
|
});
|
||||||
|
|
||||||
it('sets expected item as active', () => {
|
it('sets expected item as active', () => {
|
||||||
const items = wrapper.find(DropdownItem);
|
const items = wrapper.find(DropdownItem).findWhere((item) => item.prop('active') !== undefined);
|
||||||
const EXPECTED_ACTIVE_INDEX = 5;
|
const EXPECTED_ACTIVE_INDEX = 6;
|
||||||
|
|
||||||
expect.assertions(DATE_INTERVALS.length);
|
expect.assertions(DATE_INTERVALS.length + 1);
|
||||||
items.forEach((item, index) => expect(item.prop('active')).toEqual(index === EXPECTED_ACTIVE_INDEX));
|
items.forEach((item, index) => expect(item.prop('active')).toEqual(index === EXPECTED_ACTIVE_INDEX));
|
||||||
});
|
});
|
||||||
|
|
||||||
it('triggers onChange callback when selecting an element', () => {
|
it('triggers onChange callback when selecting an element', () => {
|
||||||
const items = wrapper.find(DropdownItem);
|
const items = wrapper.find(DropdownItem);
|
||||||
|
|
||||||
items.at(2).simulate('click');
|
|
||||||
items.at(4).simulate('click');
|
items.at(4).simulate('click');
|
||||||
items.at(1).simulate('click');
|
items.at(6).simulate('click');
|
||||||
|
items.at(3).simulate('click');
|
||||||
expect(onChange).toHaveBeenCalledTimes(3);
|
expect(onChange).toHaveBeenCalledTimes(3);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
|
@ -10,7 +10,7 @@ describe('<DateIntervalSelector />', () => {
|
||||||
const onChange = jest.fn();
|
const onChange = jest.fn();
|
||||||
|
|
||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
wrapper = shallow(<DateIntervalSelector active={activeInterval} onChange={onChange} />);
|
wrapper = shallow(<DateIntervalSelector allText="All text" active={activeInterval} onChange={onChange} />);
|
||||||
});
|
});
|
||||||
afterEach(() => wrapper?.unmount());
|
afterEach(() => wrapper?.unmount());
|
||||||
|
|
||||||
|
@ -22,5 +22,6 @@ describe('<DateIntervalSelector />', () => {
|
||||||
expect(items).toHaveLength(1);
|
expect(items).toHaveLength(1);
|
||||||
expect(items.prop('onChange')).toEqual(onChange);
|
expect(items.prop('onChange')).toEqual(onChange);
|
||||||
expect(items.prop('active')).toEqual(activeInterval);
|
expect(items.prop('active')).toEqual(activeInterval);
|
||||||
|
expect(items.prop('allText')).toEqual('All text');
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
|
@ -4,12 +4,19 @@ import { Mock } from 'ts-mockery';
|
||||||
import { DateRangeSelector, DateRangeSelectorProps } from '../../../src/utils/dates/DateRangeSelector';
|
import { DateRangeSelector, DateRangeSelectorProps } from '../../../src/utils/dates/DateRangeSelector';
|
||||||
import { DateInterval } from '../../../src/utils/dates/types';
|
import { DateInterval } from '../../../src/utils/dates/types';
|
||||||
import { DateIntervalDropdownItems } from '../../../src/utils/dates/DateIntervalDropdownItems';
|
import { DateIntervalDropdownItems } from '../../../src/utils/dates/DateIntervalDropdownItems';
|
||||||
|
import DateRangeRow from '../../../src/utils/dates/DateRangeRow';
|
||||||
|
|
||||||
describe('<DateRangeSelector />', () => {
|
describe('<DateRangeSelector />', () => {
|
||||||
let wrapper: ShallowWrapper;
|
let wrapper: ShallowWrapper;
|
||||||
const onDatesChange = jest.fn();
|
const onDatesChange = jest.fn();
|
||||||
const createWrapper = (props: Partial<DateRangeSelectorProps> = {}) => {
|
const createWrapper = (props: Partial<DateRangeSelectorProps> = {}) => {
|
||||||
wrapper = shallow(<DateRangeSelector {...Mock.of<DateRangeSelectorProps>(props)} onDatesChange={onDatesChange} />);
|
wrapper = shallow(
|
||||||
|
<DateRangeSelector
|
||||||
|
{...Mock.of<DateRangeSelectorProps>(props)}
|
||||||
|
defaultText="Default text"
|
||||||
|
onDatesChange={onDatesChange}
|
||||||
|
/>,
|
||||||
|
);
|
||||||
|
|
||||||
return wrapper;
|
return wrapper;
|
||||||
};
|
};
|
||||||
|
@ -22,47 +29,48 @@ describe('<DateRangeSelector />', () => {
|
||||||
const items = wrapper.find(DropdownItem);
|
const items = wrapper.find(DropdownItem);
|
||||||
const dateIntervalItems = wrapper.find(DateIntervalDropdownItems);
|
const dateIntervalItems = wrapper.find(DateIntervalDropdownItems);
|
||||||
|
|
||||||
expect(items).toHaveLength(5);
|
expect(items).toHaveLength(3);
|
||||||
expect(dateIntervalItems).toHaveLength(1);
|
expect(dateIntervalItems).toHaveLength(1);
|
||||||
expect(items.filter('[divider]')).toHaveLength(2);
|
expect(items.filter('[divider]')).toHaveLength(1);
|
||||||
expect(items.filter('[header]')).toHaveLength(1);
|
expect(items.filter('[header]')).toHaveLength(1);
|
||||||
expect(items.filter('[text]')).toHaveLength(1);
|
expect(items.filter('[text]')).toHaveLength(1);
|
||||||
expect(items.filter('[active]')).toHaveLength(1);
|
|
||||||
});
|
});
|
||||||
|
|
||||||
it.each([
|
it.each([
|
||||||
[ undefined, 1, 0 ],
|
[ undefined, 0 ],
|
||||||
[ 'today' as DateInterval, 0, 1 ],
|
[ 'all' as DateInterval, 1 ],
|
||||||
[ 'yesterday' as DateInterval, 0, 1 ],
|
[ 'today' as DateInterval, 1 ],
|
||||||
[ 'last7Days' as DateInterval, 0, 1 ],
|
[ 'yesterday' as DateInterval, 1 ],
|
||||||
[ 'last30Days' as DateInterval, 0, 1 ],
|
[ 'last7Days' as DateInterval, 1 ],
|
||||||
[ 'last90Days' as DateInterval, 0, 1 ],
|
[ 'last30Days' as DateInterval, 1 ],
|
||||||
[ 'last180days' as DateInterval, 0, 1 ],
|
[ 'last90Days' as DateInterval, 1 ],
|
||||||
[ 'last365Days' as DateInterval, 0, 1 ],
|
[ 'last180days' as DateInterval, 1 ],
|
||||||
[{ startDate: new Date() }, 0, 0 ],
|
[ 'last365Days' as DateInterval, 1 ],
|
||||||
])('sets proper element as active based on provided date range', (
|
[{ startDate: new Date() }, 0 ],
|
||||||
initialDateRange,
|
])('sets proper element as active based on provided date range', (initialDateRange, expectedActiveIntervalItems) => {
|
||||||
expectedActiveItems,
|
|
||||||
expectedActiveIntervalItems,
|
|
||||||
) => {
|
|
||||||
const wrapper = createWrapper({ initialDateRange });
|
const wrapper = createWrapper({ initialDateRange });
|
||||||
const items = wrapper.find(DropdownItem).filterWhere((item) => item.prop('active') === true);
|
|
||||||
const dateIntervalItems = wrapper.find(DateIntervalDropdownItems).filterWhere(
|
const dateIntervalItems = wrapper.find(DateIntervalDropdownItems).filterWhere(
|
||||||
(item) => item.prop('active') !== undefined,
|
(item) => item.prop('active') !== undefined,
|
||||||
);
|
);
|
||||||
|
|
||||||
expect(items).toHaveLength(expectedActiveItems);
|
|
||||||
expect(dateIntervalItems).toHaveLength(expectedActiveIntervalItems);
|
expect(dateIntervalItems).toHaveLength(expectedActiveIntervalItems);
|
||||||
});
|
});
|
||||||
|
|
||||||
it('triggers onDatesChange callback when selecting an element', () => {
|
it('triggers onDatesChange callback when selecting an element', () => {
|
||||||
const wrapper = createWrapper();
|
const wrapper = createWrapper();
|
||||||
const item = wrapper.find(DropdownItem).at(0);
|
const dates = wrapper.find(DateRangeRow);
|
||||||
const dateIntervalItems = wrapper.find(DateIntervalDropdownItems);
|
const dateIntervalItems = wrapper.find(DateIntervalDropdownItems);
|
||||||
|
|
||||||
item.simulate('click');
|
dates.simulate('startDateChange', null);
|
||||||
item.simulate('click');
|
dates.simulate('endDateChange', null);
|
||||||
dateIntervalItems.simulate('change');
|
dateIntervalItems.simulate('change');
|
||||||
expect(onDatesChange).toHaveBeenCalledTimes(3);
|
expect(onDatesChange).toHaveBeenCalledTimes(3);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
it('propagates default text to DateIntervalDropdownItems', () => {
|
||||||
|
const wrapper = createWrapper();
|
||||||
|
const dateIntervalItems = wrapper.find(DateIntervalDropdownItems);
|
||||||
|
|
||||||
|
expect(dateIntervalItems.prop('allText')).toEqual('Default text');
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue