mirror of https://github.com/sualko/cloud_bbb
fix: cloned rooms only showed up after page refresh
parent
69b8d73687
commit
f2a19fb8e6
|
@ -105,13 +105,18 @@ const App: React.FC<Props> = () => {
|
||||||
|
|
||||||
function updateRoom(room: Room) {
|
function updateRoom(room: Room) {
|
||||||
return api.updateRoom(room).then(updatedRoom => {
|
return api.updateRoom(room).then(updatedRoom => {
|
||||||
setRooms(rooms.map(room => {
|
|
||||||
if (room.id === updatedRoom.id) {
|
|
||||||
return updatedRoom;
|
|
||||||
}
|
|
||||||
|
|
||||||
return room;
|
if (!rooms.find(room => room.id == updatedRoom.id)) {
|
||||||
}));
|
setRooms(rooms.concat([updatedRoom]));
|
||||||
|
} else {
|
||||||
|
setRooms(rooms.map(room => {
|
||||||
|
if (room.id === updatedRoom.id) {
|
||||||
|
return updatedRoom;
|
||||||
|
}
|
||||||
|
|
||||||
|
return room;
|
||||||
|
}));
|
||||||
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -122,20 +127,9 @@ const App: React.FC<Props> = () => {
|
||||||
}
|
}
|
||||||
|
|
||||||
function cloneRoom(room: Room) {
|
function cloneRoom(room: Room) {
|
||||||
|
return api.createRoom(room.name, room.access, room.maxParticipants).then(newRoom => {
|
||||||
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 => {
|
|
||||||
room.uid = newRoom.uid;
|
room.uid = newRoom.uid;
|
||||||
room.id = newRoom.id;
|
room.id = newRoom.id;
|
||||||
setRooms(rooms.concat([room]));
|
|
||||||
updateRoom(room);
|
updateRoom(room);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue