2017-03-10 16:04:31 +01:00
|
|
|
//@flow
|
2017-06-23 19:30:16 +02:00
|
|
|
/*
|
|
|
|
Copyright 2017 Aviral Dasgupta
|
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
2017-03-10 16:04:31 +01:00
|
|
|
|
2018-04-23 02:13:18 +02:00
|
|
|
import { Value } from 'slate';
|
|
|
|
import Html from 'slate-html-serializer';
|
2018-05-17 03:13:17 +02:00
|
|
|
import Md from 'slate-md-serializer';
|
2018-04-23 02:13:18 +02:00
|
|
|
import Plain from 'slate-plain-serializer';
|
2017-03-10 16:04:31 +01:00
|
|
|
import * as RichText from './RichText';
|
|
|
|
import Markdown from './Markdown';
|
2018-04-23 02:13:18 +02:00
|
|
|
|
2017-03-10 16:04:31 +01:00
|
|
|
import _clamp from 'lodash/clamp';
|
|
|
|
|
2018-04-23 02:13:18 +02:00
|
|
|
type MessageFormat = 'rich' | 'markdown';
|
2017-03-10 16:04:31 +01:00
|
|
|
|
|
|
|
class HistoryItem {
|
2017-07-20 19:01:39 +02:00
|
|
|
|
|
|
|
// Keeping message for backwards-compatibility
|
|
|
|
message: string;
|
2018-04-23 02:13:18 +02:00
|
|
|
value: Value;
|
|
|
|
format: MessageFormat = 'rich';
|
2017-03-10 16:04:31 +01:00
|
|
|
|
2018-04-23 02:13:18 +02:00
|
|
|
constructor(value: ?Value, format: ?MessageFormat) {
|
2018-05-06 23:08:36 +02:00
|
|
|
this.value = value;
|
2017-03-10 16:04:31 +01:00
|
|
|
this.format = format;
|
|
|
|
}
|
|
|
|
|
2018-05-08 02:54:06 +02:00
|
|
|
static fromJSON(obj): HistoryItem {
|
|
|
|
return new HistoryItem(
|
|
|
|
Value.fromJSON(obj.value),
|
|
|
|
obj.format
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
toJSON(): Object {
|
|
|
|
return {
|
|
|
|
value: this.value.toJSON(),
|
|
|
|
format: this.format
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
// FIXME: rather than supporting storing history in either format, why don't we pick
|
|
|
|
// one canonical form?
|
2018-04-23 02:13:18 +02:00
|
|
|
toValue(outputFormat: MessageFormat): Value {
|
2017-07-20 19:01:39 +02:00
|
|
|
if (outputFormat === 'markdown') {
|
2018-04-23 02:13:18 +02:00
|
|
|
if (this.format === 'rich') {
|
|
|
|
// convert a rich formatted history entry to its MD equivalent
|
2018-05-08 02:54:06 +02:00
|
|
|
return Plain.deserialize(Md.serialize(this.value));
|
2018-04-23 02:13:18 +02:00
|
|
|
// return ContentState.createFromText(RichText.stateToMarkdown(contentState));
|
2017-03-10 16:04:31 +01:00
|
|
|
}
|
2018-04-23 02:13:18 +02:00
|
|
|
else if (this.format === 'markdown') {
|
2018-05-08 02:54:06 +02:00
|
|
|
return this.value;
|
2018-04-23 02:13:18 +02:00
|
|
|
}
|
|
|
|
} else if (outputFormat === 'rich') {
|
2017-03-10 16:04:31 +01:00
|
|
|
if (this.format === 'markdown') {
|
2018-04-23 02:13:18 +02:00
|
|
|
// convert MD formatted string to its rich equivalent.
|
2018-05-08 02:54:06 +02:00
|
|
|
return Md.deserialize(Plain.serialize(this.value));
|
2018-04-23 02:13:18 +02:00
|
|
|
// return RichText.htmlToContentState(new Markdown(contentState.getPlainText()).toHTML());
|
|
|
|
}
|
|
|
|
else if (this.format === 'rich') {
|
2018-05-08 02:54:06 +02:00
|
|
|
return this.value;
|
2017-03-10 16:04:31 +01:00
|
|
|
}
|
|
|
|
}
|
2018-05-09 02:03:40 +02:00
|
|
|
console.error("unknown format -> outputFormat conversion");
|
2018-05-08 02:54:06 +02:00
|
|
|
return this.value;
|
2017-03-10 16:04:31 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default class ComposerHistoryManager {
|
|
|
|
history: Array<HistoryItem> = [];
|
|
|
|
prefix: string;
|
|
|
|
lastIndex: number = 0;
|
2017-06-29 18:02:19 +02:00
|
|
|
currentIndex: number = 0;
|
2017-03-10 16:04:31 +01:00
|
|
|
|
|
|
|
constructor(roomId: string, prefix: string = 'mx_composer_history_') {
|
|
|
|
this.prefix = prefix + roomId;
|
|
|
|
|
|
|
|
// TODO: Performance issues?
|
2017-06-29 18:02:19 +02:00
|
|
|
let item;
|
2017-11-16 14:19:36 +01:00
|
|
|
for (; item = sessionStorage.getItem(`${this.prefix}[${this.currentIndex}]`); this.currentIndex++) {
|
2018-05-09 02:03:40 +02:00
|
|
|
try {
|
|
|
|
this.history.push(
|
|
|
|
HistoryItem.fromJSON(JSON.parse(item))
|
|
|
|
);
|
|
|
|
}
|
|
|
|
catch (e) {
|
|
|
|
console.warn("Throwing away unserialisable history", e);
|
|
|
|
}
|
2017-03-10 16:04:31 +01:00
|
|
|
}
|
2017-06-29 18:02:19 +02:00
|
|
|
this.lastIndex = this.currentIndex;
|
2017-03-10 16:04:31 +01:00
|
|
|
}
|
|
|
|
|
2018-04-23 02:13:18 +02:00
|
|
|
save(value: Value, format: MessageFormat) {
|
|
|
|
const item = new HistoryItem(value, format);
|
2017-03-10 16:04:31 +01:00
|
|
|
this.history.push(item);
|
2017-03-10 16:40:27 +01:00
|
|
|
this.currentIndex = this.lastIndex + 1;
|
2018-05-08 02:54:06 +02:00
|
|
|
sessionStorage.setItem(`${this.prefix}[${this.lastIndex++}]`, JSON.stringify(item.toJSON()));
|
2017-03-10 16:04:31 +01:00
|
|
|
}
|
|
|
|
|
2018-04-23 02:13:18 +02:00
|
|
|
getItem(offset: number, format: MessageFormat): ?Value {
|
2017-03-10 16:04:31 +01:00
|
|
|
this.currentIndex = _clamp(this.currentIndex + offset, 0, this.lastIndex - 1);
|
|
|
|
const item = this.history[this.currentIndex];
|
2018-04-23 02:13:18 +02:00
|
|
|
return item ? item.toValue(format) : null;
|
2017-03-10 16:04:31 +01:00
|
|
|
}
|
|
|
|
}
|