Security News
Bun 1.2 Released with 90% Node.js Compatibility and Built-in S3 Object Support
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
@alfalab/client-event-bus
Advanced tools
Библиотека позволяет обмениваться данными в приложениях с модульной архитектурой (module federation), используя событийную модель браузера.
Это особенно актуально для приложений на базе Webpack Module Federation
, обеспечивая взаимодействие без создания жестких зависимостей.
По сути представляет собой EventEmitter
с добавлением методов для
получения последнего отправленного события уже после того, как это событие произошло.
Для того чтобы добавить типизацию событий на проекте, не трогая основной пакет, можно сделать следующее:
constants/event-bus.ts
- заводим ключ, по которому создается шина данных
// constants/event-bus.ts
export const BUS_KEY = 'my-first-bus';
types/event-bus.ts
- определяем типы событий
// types/event-bus.ts
type EventType = 'busValueFirst' | 'busValueSecond'
type EventPayload = string | null
export type EventTypes = Record<EventType, EventPayload>;
types/event-types.d.ts
- добавляем файл для типизации функций getEventBus
и createBus
// types/event-types.d.ts
import type { AbstractAppEventBus } from '@alfalab/client-event-bus';
import { BUS_KEY } from '~/constants/event-bus';
import type { EventTypes } from '~types/event-bus'
export declare type EventBus = AbstractAppEventBus<EventTypes>;
declare module '@alfalab/client-event-bus' {
export declare function getEventBus(busKey: typeof BUS_KEY): EventBus;
}
declare module '@alfalab/client-event-bus' {
export declare function createBus(
key: typeof BUS_KEY,
params?: EventBusParams,
): EventBus;
}
Для именования событий предлагается следующие договоренности:
corp-
, ufr-
и так далее) и суффикс -ui
. То есть если ваш проект называется ufr-cards-ui
событие должно начинаться с cards_
, corp-sales-ui
это соответственно sales_
.camelCase
.Возвращает EventBus
, со следующими методами:
addEventListener(eventName: string, eventHandler: (event: CustomEvent) => void, options?: AddEventListenerOptions)
- стандартная функция добавления подписки на событиеremoveEventListener(eventName: string, eventHandler: (event: CustomEvent) => void, options?: EventListenerOptions)
- стандартная функция удаления подписки на событиеgetLastEventDetail(eventName: string)
- Функция, которая возвращает последнее событие заданного типа. Если событие еще не происходило - возвращает undefined
addEventListenerAndGetLast(eventName: string, eventHandler: (event: CustomEvent) => void, options?: AddEventListenerOptions)
- объединяет в себе addEventListener
и getLastEvent
. Подписывает на событие и возвращает последнее событие этого типаЕсли вам нужно использовать значение из event-bus в react коде - вы можете использовать хук useEventBusValue
:
import { useEventBusValue } from '@alfalab/client-event-bus';
const MyComponent = () => {
const currentOrganizationId = useEventBusValue('shared_currentOrganizationId');
return (
<div>
ID текущей организации: {currentOrganizationId}
</div>
)
}
Хук всегда будет возвращать последнее значение из eventBus. При изменениях значения будет происходить ререндер.
FAQs
@alfalab/client-event-bus ===
The npm package @alfalab/client-event-bus receives a total of 8 weekly downloads. As such, @alfalab/client-event-bus popularity was classified as not popular.
We found that @alfalab/client-event-bus demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
Security News
Biden's executive order pushes for AI-driven cybersecurity, software supply chain transparency, and stronger protections for federal and open source systems.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.