mirror of https://github.com/sualko/cloud_bbb
fix: cloned rooms only showed up after page refresh
parent
69b8d73687
commit
f2a19fb8e6
|
@ -105,6 +105,10 @@ const App: React.FC<Props> = () => {
|
|||
|
||||
function updateRoom(room: Room) {
|
||||
return api.updateRoom(room).then(updatedRoom => {
|
||||
|
||||
if (!rooms.find(room => room.id == updatedRoom.id)) {
|
||||
setRooms(rooms.concat([updatedRoom]));
|
||||
} else {
|
||||
setRooms(rooms.map(room => {
|
||||
if (room.id === updatedRoom.id) {
|
||||
return updatedRoom;
|
||||
|
@ -112,6 +116,7 @@ const App: React.FC<Props> = () => {
|
|||
|
||||
return room;
|
||||
}));
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
|
@ -122,20 +127,9 @@ const App: React.FC<Props> = () => {
|
|||
}
|
||||
|
||||
function cloneRoom(room: Room) {
|
||||
|
||||
let access = Access.Public;
|
||||
|
||||
const disabledRoomTypes = restriction?.roomTypes || [];
|
||||
if (disabledRoomTypes.length > 0 && disabledRoomTypes.indexOf(access) > -1) {
|
||||
access = Object.values(Access).filter(a => disabledRoomTypes.indexOf(a) < 0)[0] as Access;
|
||||
}
|
||||
|
||||
const maxParticipants = restriction?.maxParticipants || 0;
|
||||
|
||||
return api.createRoom(room.name, access, maxParticipants).then(newRoom => {
|
||||
return api.createRoom(room.name, room.access, room.maxParticipants).then(newRoom => {
|
||||
room.uid = newRoom.uid;
|
||||
room.id = newRoom.id;
|
||||
setRooms(rooms.concat([room]));
|
||||
updateRoom(room);
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue