mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2025-01-25 17:23:40 +03:00
94 lines
4.8 KiB
TypeScript
94 lines
4.8 KiB
TypeScript
import type Bottle from 'bottlejs';
|
|
import { prop } from 'ramda';
|
|
import type { ConnectDecorator } from '../../container';
|
|
import { CreateShortUrl } from '../CreateShortUrl';
|
|
import { EditShortUrl } from '../EditShortUrl';
|
|
import { CreateShortUrlResult } from '../helpers/CreateShortUrlResult';
|
|
import { DeleteShortUrlModal } from '../helpers/DeleteShortUrlModal';
|
|
import { ExportShortUrlsBtn } from '../helpers/ExportShortUrlsBtn';
|
|
import { QrCodeModal } from '../helpers/QrCodeModal';
|
|
import { ShortUrlsRow } from '../helpers/ShortUrlsRow';
|
|
import { ShortUrlsRowMenu } from '../helpers/ShortUrlsRowMenu';
|
|
import { createShortUrl, shortUrlCreationReducerCreator } from '../reducers/shortUrlCreation';
|
|
import { deleteShortUrl, shortUrlDeleted, shortUrlDeletionReducerCreator } from '../reducers/shortUrlDeletion';
|
|
import { shortUrlDetailReducerCreator } from '../reducers/shortUrlDetail';
|
|
import { editShortUrl, shortUrlEditionReducerCreator } from '../reducers/shortUrlEdition';
|
|
import { listShortUrls, shortUrlsListReducerCreator } from '../reducers/shortUrlsList';
|
|
import { ShortUrlForm } from '../ShortUrlForm';
|
|
import { ShortUrlsFilteringBar } from '../ShortUrlsFilteringBar';
|
|
import { ShortUrlsList } from '../ShortUrlsList';
|
|
import { ShortUrlsTable } from '../ShortUrlsTable';
|
|
|
|
export const provideServices = (bottle: Bottle, connect: ConnectDecorator) => {
|
|
// Components
|
|
bottle.serviceFactory('ShortUrlsList', ShortUrlsList, 'ShortUrlsTable', 'ShortUrlsFilteringBar');
|
|
bottle.decorator('ShortUrlsList', connect(
|
|
['mercureInfo', 'shortUrlsList'],
|
|
['listShortUrls', 'createNewVisits', 'loadMercureInfo'],
|
|
));
|
|
|
|
bottle.serviceFactory('ShortUrlsTable', ShortUrlsTable, 'ShortUrlsRow');
|
|
bottle.serviceFactory('ShortUrlsRow', ShortUrlsRow, 'ShortUrlsRowMenu', 'ColorGenerator', 'useTimeoutToggle');
|
|
bottle.serviceFactory('ShortUrlsRowMenu', ShortUrlsRowMenu, 'DeleteShortUrlModal', 'QrCodeModal');
|
|
bottle.serviceFactory('CreateShortUrlResult', CreateShortUrlResult, 'useTimeoutToggle');
|
|
bottle.serviceFactory('ShortUrlForm', ShortUrlForm, 'TagsSelector', 'DomainSelector');
|
|
|
|
bottle.serviceFactory('CreateShortUrl', CreateShortUrl, 'ShortUrlForm', 'CreateShortUrlResult');
|
|
bottle.decorator(
|
|
'CreateShortUrl',
|
|
connect(['shortUrlCreation'], ['createShortUrl', 'resetCreateShortUrl']),
|
|
);
|
|
|
|
bottle.serviceFactory('EditShortUrl', EditShortUrl, 'ShortUrlForm');
|
|
bottle.decorator('EditShortUrl', connect(
|
|
['shortUrlDetail', 'shortUrlEdition'],
|
|
['getShortUrlDetail', 'editShortUrl'],
|
|
));
|
|
|
|
bottle.serviceFactory('DeleteShortUrlModal', () => DeleteShortUrlModal);
|
|
bottle.decorator('DeleteShortUrlModal', connect(
|
|
['shortUrlDeletion'],
|
|
['deleteShortUrl', 'shortUrlDeleted', 'resetDeleteShortUrl'],
|
|
));
|
|
|
|
bottle.serviceFactory('QrCodeModal', QrCodeModal, 'ImageDownloader');
|
|
bottle.serviceFactory('ShortUrlsFilteringBar', ShortUrlsFilteringBar, 'ExportShortUrlsBtn', 'TagsSelector');
|
|
|
|
bottle.serviceFactory('ExportShortUrlsBtn', ExportShortUrlsBtn, 'apiClientFactory', 'ReportExporter');
|
|
|
|
// Reducers
|
|
bottle.serviceFactory(
|
|
'shortUrlsListReducerCreator',
|
|
shortUrlsListReducerCreator,
|
|
'listShortUrls',
|
|
'editShortUrl',
|
|
'createShortUrl',
|
|
);
|
|
bottle.serviceFactory('shortUrlsListReducer', prop('reducer'), 'shortUrlsListReducerCreator');
|
|
|
|
bottle.serviceFactory('shortUrlCreationReducerCreator', shortUrlCreationReducerCreator, 'createShortUrl');
|
|
bottle.serviceFactory('shortUrlCreationReducer', prop('reducer'), 'shortUrlCreationReducerCreator');
|
|
|
|
bottle.serviceFactory('shortUrlEditionReducerCreator', shortUrlEditionReducerCreator, 'editShortUrl');
|
|
bottle.serviceFactory('shortUrlEditionReducer', prop('reducer'), 'shortUrlEditionReducerCreator');
|
|
|
|
bottle.serviceFactory('shortUrlDeletionReducerCreator', shortUrlDeletionReducerCreator, 'deleteShortUrl');
|
|
bottle.serviceFactory('shortUrlDeletionReducer', prop('reducer'), 'shortUrlDeletionReducerCreator');
|
|
|
|
bottle.serviceFactory('shortUrlDetailReducerCreator', shortUrlDetailReducerCreator, 'apiClientFactory');
|
|
bottle.serviceFactory('shortUrlDetailReducer', prop('reducer'), 'shortUrlDetailReducerCreator');
|
|
|
|
// Actions
|
|
bottle.serviceFactory('listShortUrls', listShortUrls, 'apiClientFactory');
|
|
|
|
bottle.serviceFactory('createShortUrl', createShortUrl, 'apiClientFactory');
|
|
bottle.serviceFactory('resetCreateShortUrl', prop('resetCreateShortUrl'), 'shortUrlCreationReducerCreator');
|
|
|
|
bottle.serviceFactory('deleteShortUrl', deleteShortUrl, 'apiClientFactory');
|
|
bottle.serviceFactory('resetDeleteShortUrl', prop('resetDeleteShortUrl'), 'shortUrlDeletionReducerCreator');
|
|
bottle.serviceFactory('shortUrlDeleted', () => shortUrlDeleted);
|
|
|
|
bottle.serviceFactory('getShortUrlDetail', prop('getShortUrlDetail'), 'shortUrlDetailReducerCreator');
|
|
|
|
bottle.serviceFactory('editShortUrl', editShortUrl, 'apiClientFactory');
|
|
};
|