forked from matrix-org/matrix-events-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for different renderings to topic events
This extends the `m.room.topic` event with a new `m.topic` event that uses the same structure as the `m.message` event on room messages, thereby allowing for different renderings of room topics. Relates to: element-hq/element-web#5180 Signed-off-by: Johannes Marbach <johannesm@element.io>
- Loading branch information
Showing
4 changed files
with
241 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,104 @@ | ||
/* | ||
Copyright 2022 The Matrix.org Foundation C.I.C. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
import { ExtensibleEvent } from "./ExtensibleEvent"; | ||
import { IPartialEvent } from "../IPartialEvent"; | ||
import { isProvided, Optional } from "../types"; | ||
import { InvalidEventError } from "../InvalidEventError"; | ||
import { IMessageRendering } from "./message_types"; | ||
import { EventType, isEventTypeSame } from "../utility/events"; | ||
import { M_TOPIC, M_TOPIC_EVENT_CONTENT } from "./topic_types"; | ||
|
||
/** | ||
* Represents a topic event. | ||
*/ | ||
export class TopicEvent extends ExtensibleEvent<M_TOPIC_EVENT_CONTENT> { | ||
/** | ||
* The default text for the event. | ||
*/ | ||
public readonly text: string; | ||
|
||
/** | ||
* The default HTML for the event, if provided. | ||
*/ | ||
public readonly html: Optional<string>; | ||
|
||
/** | ||
* All the different renderings of the topic. Note that this is the same | ||
* format as an m.topic body but may contain elements not found directly | ||
* in the event content: this is because this is interpreted based off the | ||
* other information available in the event. | ||
*/ | ||
public readonly renderings: IMessageRendering[]; | ||
|
||
/** | ||
* Creates a new TopicEvent from a pure format. Note that the event is *not* | ||
* parsed here: it will be treated as a literal m.topic primary typed event. | ||
* @param {IPartialEvent<M_TOPIC_EVENT_CONTENT>} wireFormat The event. | ||
*/ | ||
public constructor(wireFormat: IPartialEvent<M_TOPIC_EVENT_CONTENT>) { | ||
super(wireFormat); | ||
|
||
const mtopic = M_TOPIC.findIn(this.wireContent); | ||
if (isProvided(mtopic)) { | ||
if (!Array.isArray(mtopic)) { | ||
throw new InvalidEventError("m.topic contents must be an array"); | ||
} | ||
const text = mtopic.find(r => !isProvided(r.mimetype) || r.mimetype === "text/plain"); | ||
const html = mtopic.find(r => r.mimetype === "text/html"); | ||
|
||
if (!text) throw new InvalidEventError("m.topic is missing a plain text representation"); | ||
|
||
this.text = text.body; | ||
this.html = html?.body; | ||
this.renderings = mtopic; | ||
} else { | ||
throw new InvalidEventError("Missing textual representation for event"); | ||
} | ||
} | ||
|
||
public isEquivalentTo(primaryEventType: EventType): boolean { | ||
return isEventTypeSame(primaryEventType, M_TOPIC); | ||
} | ||
|
||
public serialize(): IPartialEvent<object> { | ||
return { | ||
type: "m.room.topic", | ||
content: { | ||
topic: this.text, | ||
[M_TOPIC.name]: this.renderings, | ||
}, | ||
}; | ||
} | ||
|
||
/** | ||
* Creates a new TopicEvent from text and HTML. | ||
* @param {string} text The text. | ||
* @param {string} html Optional HTML. | ||
* @returns {TopicEvent} The representative topic event. | ||
*/ | ||
public static from(text: string, html?: string): TopicEvent { | ||
return new TopicEvent({ | ||
type: M_TOPIC.name, | ||
content: { | ||
[M_TOPIC.name]: [ | ||
{body: text, mimetype: "text/plain"}, | ||
{body: html, mimetype: "text/html"}, | ||
] | ||
}, | ||
}); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
/* | ||
Copyright 2022 The Matrix.org Foundation C.I.C. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
import { UnstableValue } from "../NamespacedValue"; | ||
import { EitherAnd } from "../types"; | ||
import { IMessageRendering } from "./message_types"; | ||
|
||
/** | ||
* The namespaced value for m.topic | ||
*/ | ||
export const M_TOPIC = new UnstableValue("m.topic", "org.matrix.msc3381.topic"); | ||
|
||
/** | ||
* The event definition for an m.topic event (in content) | ||
*/ | ||
export type M_TOPIC_EVENT = EitherAnd<{ [M_TOPIC.name]: IMessageRendering[] }, { [M_TOPIC.altName]: IMessageRendering[] }>; | ||
|
||
/** | ||
* The content for an m.topic event | ||
*/ | ||
export type M_TOPIC_EVENT_CONTENT = M_TOPIC_EVENT; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
/* | ||
Copyright 2022 The Matrix.org Foundation C.I.C. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
import { | ||
InvalidEventError, | ||
IPartialEvent, | ||
M_TOPIC, | ||
M_TOPIC_EVENT_CONTENT, | ||
TopicEvent | ||
} from "../../src"; | ||
|
||
describe('TopicEvent', () => { | ||
it('should parse m.topic', () => { | ||
const input: IPartialEvent<M_TOPIC_EVENT_CONTENT> = { | ||
type: "org.example.topic-like", | ||
content: { | ||
[M_TOPIC.name]: [ | ||
{body: "Text here", mimetype: "text/plain"}, | ||
{body: "HTML here", mimetype: "text/html"}, | ||
{body: "MD here", mimetype: "text/markdown"}, | ||
], | ||
}, | ||
}; | ||
const topic = new TopicEvent(input); | ||
expect(topic.text).toBe("Text here"); | ||
expect(topic.html).toBe("HTML here"); | ||
expect(topic.renderings.length).toBe(3); | ||
expect(topic.renderings.some(r => r.mimetype === "text/plain" && r.body === "Text here")).toBe(true); | ||
expect(topic.renderings.some(r => r.mimetype === "text/html" && r.body === "HTML here")).toBe(true); | ||
expect(topic.renderings.some(r => r.mimetype === "text/markdown" && r.body === "MD here")).toBe(true); | ||
}); | ||
|
||
it('should fail to parse missing text', () => { | ||
const input: IPartialEvent<M_TOPIC_EVENT_CONTENT> = { | ||
type: "org.example.topic-like", | ||
content: { | ||
hello: "world", | ||
} as any, // force invalid type | ||
}; | ||
expect(() => new TopicEvent(input)) | ||
.toThrow(new InvalidEventError("Missing textual representation for event")); | ||
}); | ||
|
||
it('should fail to parse missing plain text in m.topic', () => { | ||
const input: IPartialEvent<M_TOPIC_EVENT_CONTENT> = { | ||
type: "org.example.topic-like", | ||
content: { | ||
[M_TOPIC.name]: [ | ||
{body: "HTML here", mimetype: "text/html"}, | ||
], | ||
}, | ||
}; | ||
expect(() => new TopicEvent(input)) | ||
.toThrow(new InvalidEventError("m.topic is missing a plain text representation")); | ||
}); | ||
|
||
it('should fail to parse non-array m.topic', () => { | ||
const input: IPartialEvent<M_TOPIC_EVENT_CONTENT> = { | ||
type: "org.example.topic-like", | ||
content: { | ||
[M_TOPIC.name]: "invalid", | ||
} as any, // force invalid type | ||
}; | ||
expect(() => new TopicEvent(input)) | ||
.toThrow(new InvalidEventError("m.topic contents must be an array")); | ||
}); | ||
|
||
describe('from & serialize', () => { | ||
it('should serialize to a legacy fallback', () => { | ||
const topic = TopicEvent.from("Text here", "HTML here"); | ||
expect(topic.text).toBe("Text here"); | ||
expect(topic.html).toBe("HTML here"); | ||
expect(topic.renderings.length).toBe(2); | ||
expect(topic.renderings.some(r => r.mimetype === "text/plain" && r.body === "Text here")).toBe(true); | ||
expect(topic.renderings.some(r => r.mimetype === "text/html" && r.body === "HTML here")).toBe(true); | ||
|
||
const serialized = topic.serialize(); | ||
expect(serialized.type).toBe("m.room.topic"); | ||
expect(serialized.content).toMatchObject({ | ||
[M_TOPIC.name]: [ | ||
{body: "Text here", mimetype: "text/plain"}, | ||
{body: "HTML here", mimetype: "text/html"}, | ||
], | ||
topic: "Text here", | ||
}); | ||
}); | ||
}); | ||
}); |