2020-08-05 18:38:55 +02:00
|
|
|
/*
|
|
|
|
Copyright 2020 Bruno Windels <bruno@windels.cloud>
|
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
2019-06-02 00:49:47 +02:00
|
|
|
export function createEventEntry(key, roomId, event) {
|
2019-05-12 20:24:06 +02:00
|
|
|
return {
|
|
|
|
fragmentId: key.fragmentId,
|
|
|
|
eventIndex: key.eventIndex,
|
2019-06-02 00:49:47 +02:00
|
|
|
roomId,
|
2019-05-12 20:24:06 +02:00
|
|
|
event: event,
|
|
|
|
};
|
2019-05-19 20:49:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
export function directionalAppend(array, value, direction) {
|
|
|
|
if (direction.isForward) {
|
|
|
|
array.push(value);
|
|
|
|
} else {
|
|
|
|
array.unshift(value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export function directionalConcat(array, otherArray, direction) {
|
|
|
|
if (direction.isForward) {
|
|
|
|
return array.concat(otherArray);
|
|
|
|
} else {
|
|
|
|
return otherArray.concat(array);
|
|
|
|
}
|
|
|
|
}
|