-
Notifications
You must be signed in to change notification settings - Fork 292
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Motivation
EventComponent
renders two types of messages:
- message of type
system
- message carrying attribute
event
There may be 3 reasons why we want to separate those two into separate components:
- There is no reason why component containing word
Event
should render system messages if it expects that messages of typesystem
do not carry attributeevent
- System message is official type of message received from the back-end, meanwhile non-system message with attribute
event
is a custom message payload. And so, there is no reason, why integrators should know about this custom non-documented attribute. - The fact that message is of type
system
should not exclude the possibility that it carries customevent
attribute
Proposed solution
- separate code for rendering a message carrying attribute
event
into a separate componentEventComponent
and code for rendering system messages intoSystemMessage
component (theif (type === 'system'
part) - the default component for system messages should be a new
SystemMessage
component - the
EventComponent
will not keep theif (type === 'system')
branch
This will be a breaking change for those who are using EventComponent
to display system messages in their custom code.
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request