2020-06-16 16:54:50 +02:00
import React , { useState , useEffect } from 'react' ;
import { Access , Room , Permission , RoomShare , api } from './Api' ;
2020-06-04 14:01:31 +02:00
import Dialog from './Dialog' ;
2020-06-15 17:23:53 +02:00
import ShareWith from './ShareWith' ;
2020-06-04 14:01:31 +02:00
import { SubmitInput } from './SubmitInput' ;
const descriptions : { [ key : string ] : string } = {
name : t ( 'bbb' , 'Descriptive name of this room.' ) ,
welcome : t ( 'bbb' , 'This message is shown to all users in the chat area after they joined.' ) ,
maxParticipants : t ( 'bbb' , 'Sets a limit on the number of participants for this room. Zero means there is no limit.' ) ,
recording : t ( 'bbb' , 'If enabled, the moderator is able to start the recording.' ) ,
2020-06-04 18:56:55 +02:00
access : t ( 'bbb' , 'Public: Everyone knowing the link is able to join. Password: Guests have to provide a password. Waiting room: A moderator has to accept every guest before they can join. Internal: Only Nextcloud users can join.' ) ,
2020-06-17 08:19:54 +02:00
moderator : t ( 'bbb' , 'A moderator is able to manage all participants in a meeting including kicking, muting or selecting a presenter. Users with the role moderator are also able to close a meeting or change the default settings.' ) ,
2020-06-04 14:01:31 +02:00
} ;
type Props = {
2020-06-16 16:54:50 +02:00
room : Room ;
updateProperty : ( key : string , value : string | boolean | number ) = > Promise < void > ;
open : boolean ;
setOpen : ( open : boolean ) = > void ;
2020-06-04 14:01:31 +02:00
}
2020-06-16 16:54:50 +02:00
const EditRoomDialog : React.FC < Props > = ( { room , updateProperty , open , setOpen } ) = > {
const [ shares , setShares ] = useState < RoomShare [ ] > ( ) ;
useEffect ( ( ) = > {
if ( ! open ) {
return ;
}
api . getRoomShares ( room . id ) . then ( roomShares = > {
console . log ( room . name , roomShares ) ;
setShares ( roomShares ) ;
} ) . catch ( err = > {
console . warn ( 'Could not load room shares.' , err ) ;
setShares ( [ ] ) ;
} ) ;
} , [ room . id , open ] ) ;
2020-06-04 14:01:31 +02:00
2020-06-04 18:56:55 +02:00
function inputElement ( label : string , field : string , type : 'text' | 'number' = 'text' ) {
2020-06-04 14:01:31 +02:00
return (
< div className = "bbb-form-element" >
< label htmlFor = { ` bbb- ${ field } ` } >
2020-06-04 18:56:55 +02:00
< h3 > { label } < / h3 >
2020-06-04 14:01:31 +02:00
< / label >
< SubmitInput initialValue = { room [ field ] } type = { type } name = { field } onSubmitValue = { value = > updateProperty ( field , value ) } / >
{ descriptions [ field ] && < em > { descriptions [ field ] } < / em > }
< / div >
) ;
}
2020-06-16 16:54:50 +02:00
function selectElement ( label : string , field : string , value : string , options : { [ key : string ] : string } , onChange : ( value : string ) = > void ) {
2020-06-04 18:56:55 +02:00
return (
< div className = "bbb-form-element" >
< label htmlFor = { ` bbb- ${ field } ` } >
< h3 > { label } < / h3 >
< / label >
< select name = { field } value = { value } onChange = { ( event ) = > onChange ( event . target . value ) } >
{ Object . keys ( options ) . map ( key = > {
const label = options [ key ] ;
return < option key = { key } value = { key } > { label } < / option > ;
} ) }
< / select >
{ ( value === Access . Password && room . password ) && < input type = "text" readOnly = { true } value = { room . password } / > }
{ descriptions [ field ] && < em > { descriptions [ field ] } < / em > }
< / div >
) ;
}
2020-06-04 14:01:31 +02:00
return (
2020-06-16 16:54:50 +02:00
< Dialog open = { open } onClose = { ( ) = > setOpen ( false ) } title = { t ( 'bbb' , 'Edit "{room}"' , { room : room.name } ) } >
{ inputElement ( t ( 'bbb' , 'Name' ) , 'name' ) }
{ inputElement ( t ( 'bbb' , 'Welcome' ) , 'welcome' ) }
{ inputElement ( t ( 'bbb' , 'Participant limit' ) , 'maxParticipants' , 'number' ) }
{ selectElement ( t ( 'bbb' , 'Access' ) , 'access' , room . access , {
[ Access . Public ] : t ( 'bbb' , 'Public' ) ,
[ Access . Password ] : t ( 'bbb' , 'Internal + Password protection for guests' ) ,
[ Access . WaitingRoom ] : t ( 'bbb' , 'Internal + Waiting room for guests' ) ,
[ Access . Internal ] : t ( 'bbb' , 'Internal' ) ,
[ Access . InternalRestricted ] : t ( 'bbb' , 'Internal restricted' ) ,
} , ( value ) = > {
console . log ( 'access' , value ) ;
updateProperty ( 'access' , value ) ;
} ) }
{ room . access === Access . InternalRestricted && < div className = "bbb-form-element bbb-form-shareWith" >
< ShareWith permission = { Permission . User } room = { room } shares = { shares } setShares = { setShares } / >
< / div > }
2020-06-15 17:23:53 +02:00
2020-06-16 16:54:50 +02:00
< div className = "bbb-form-element" >
< label htmlFor = { 'bbb-moderator' } >
< h3 > Moderator < / h3 >
< / label >
2020-06-17 08:19:54 +02:00
{ ! room . everyoneIsModerator && < ShareWith permission = { Permission . Moderator } room = { room } shares = { shares } setShares = { setShares } / > }
< div className = "bbb-mt-1" >
< input id = { ` bbb-everyoneIsModerator- ${ room . id } ` }
type = "checkbox"
className = "checkbox"
checked = { room . everyoneIsModerator }
onChange = { ( event ) = > updateProperty ( 'everyoneIsModerator' , event . target . checked ) } / >
< label htmlFor = { ` bbb-everyoneIsModerator- ${ room . id } ` } > { t ( 'bbb' , 'Every participant is moderator' ) } < / label >
< / div >
< em > { descriptions . moderator } < / em >
2020-06-16 16:54:50 +02:00
< / div >
< h3 > { t ( 'bbb' , 'Miscellaneous' ) } < / h3 >
< div >
2020-06-04 14:01:31 +02:00
< div >
2020-06-16 16:54:50 +02:00
< input id = { ` bbb-record- ${ room . id } ` }
type = "checkbox"
className = "checkbox"
checked = { room . record }
onChange = { ( event ) = > updateProperty ( 'record' , event . target . checked ) } / >
< label htmlFor = { ` bbb-record- ${ room . id } ` } > { t ( 'bbb' , 'Recording' ) } < / label >
2020-06-04 14:01:31 +02:00
< / div >
2020-06-16 16:54:50 +02:00
< em > { descriptions . recording } < / em >
< / div >
< / Dialog >
2020-06-04 14:01:31 +02:00
) ;
} ;
export default EditRoomDialog ;