Skip to main content

Design

Components

Round is an iOS/Android application that utilizes Google Firebase for the backend, and Flutter for the frontend.

Algorithms

Round implements a sorting algorithm to display a non-invasive view of all times a group's members are busy. This will allow them to have a visual representation of general available days/times, without any extra details such as what the event times actually contain (Round only stores the start and end times of each event). Additionally, Round has the capacity to determine the next available time for a potential meeting by using these stored event times as references.

Class Diagrams Diagram 1 - Classes Related to Calendar Creation, Display, and Integration

«StatefulWidget»
CalendarPage
+group: Map?
+title: String
_CalendarPageState
-allEvents: List
-_googleSignIn: GoogleSignIn
-_currentUser: GoogleSignInAccount?
-getData() : Future>
-chosenDateAddedToCalendar(begTime: DateTime, finTime: DateTime, meetingName: String)
-_handleSignIn()
-getPrimaryCalendar()
Appointment
-startTime: DateTime
-endTime: DateTime
CalendarSelection
- bool fromSettings
- DatabaseReference ref
- GoogleSignInAccount? _currentUser
- GoogleSignIn _googleSignIn
+CalendarSelection(super.key, required this.fromSettings)
+buttonPress(BuildContext context)
+pressedGoogle(BuildContext context) : Future
+pressedApple(BuildContext context)
+build(BuildContext context) : Widget
Calendar
- GoogleSignInAccount _currentUser
- DatabaseReference ref
- GoogleSignIn _googleSignIn
+Calendar(Key? key)
+getGoogleCalendar() : : Future
+_handleSignIn() : : Future
+initState() : : void
+build(BuildContext) : : Widget
_CalendarState
- final GoogleSignIn _googleSignIn
- late DatabaseReference ref
- GoogleSignInAccount? _currentUser
+initState() : : void
-Future _handleSignIn() : : Future
+getGoogleCalendar() : : Future

Diagram 1 shows all the UML for the classes related to creation, maintenance, and display of the calendars within Round. As can be seen, there are not many external dependencies save from a utility class called Appointments that is seen throughout, and library imports which are not included for cleanliness, but can be seen in diagram 7. Also note there are constant relationships between classes that look somewhat like the following: ClassState inherits from Class. This relationship is further described for the stateful widgets in diagram 8. CalendarSelection is a Stateless Widget, and as a result does not have that relationship. Diagram 2 - Classes Related to Code Generation, Usage, and Display (both QR and String)

CodeReception
- TextEditingController groupId
- int one
+openDialog()
+updateDatabase()
+camScanner()
+build()
_CodeReceptionState
+title
CodeSharing
- String title
-Future _grabGroupId()
+void getCode()
+Widget build(BuildContext context)
_CodeSharingState
+void getCode()
+Widget build(BuildContext context)
DisplayCode
-List groupName
-List nameId
+DisplayCode(groupName, nameId, key)
+buildList(groupName, nameId)
+build(BuildContext) : Widget
NewQR
- scanning: bool
+scanQR(context: BuildContext) : void
+build(context: BuildContext) : Widget
-updateDatabase(groupID) : void
Display
-final groupName: String
-final nameId: String
+Display(groupName: String, nameId: String)
+build(context: BuildContext) : Widget

Diagram 2 shows all the UML for the classes related to creation, maintenance, and display of both String and QR codes within Round. Library imports which are not included for cleanliness, but can be seen in diagram 7. Also note there are constant relationships between classes that look somewhat like the following: ClassState inherits from Class. This relationship is further described for the stateful widgets in diagram 8. DisplayCode, NewQR, and Display are Stateless Widgets, and as a result does not have that relationship.

Diagram 3 - Classes Related to Group Creation, Display, and Usage

AllGroups
- final String title
- final DatabaseReference ref
- late DatabaseReference ref
- final String? uid
- firebaseDatabase : FirebaseDatabase
+grabGroups() : : Future>
+build(context: BuildContext) : : Widget
_AllGroupsState
- late DatabaseReference ref = widget.ref
- firebaseDatabase : FirebaseDatabase
+grabGroups() : : Future>
+build(context: BuildContext) : : Widget
GroupCreation
- final String? userID
- final FirebaseDatabase firebaseDatabase
- MaterialColor? selectedColor
- MaterialColor? tempColor
- String name
- String emoji
- DatabaseReference ref
- String? uid
+GroupCreation(super.key, required this.userID, required this.firebaseDatabase)
+changedName(string: String) : void
+changedEmoji(string: String) : void
+buttonPress(context: BuildContext) : Future
+_openDialog(title: String, content: Widget) : void
+colorTapped() : void
-createMaterialColor(color: Color) : MaterialColor
-_GroupCreationState()
+createState() : _GroupCreationState
_GroupCreationState
+_GroupCreationState()
+createMaterialColor(color: Color) : MaterialColor
NewGroupView
-RoundGroup group
_NewGroupView
-List parsedMembers
-List rsvped
-int smsCount
-int snapCount
-int discordCount
-int instaCount
-int fbCount
-int calCount
-bool isObserving
-bool isAdmin
-DateTime? appointment
- int appointmentIndex = 0
+handleCalendarRequest() : : void
+removeCurrentDate() : : Future
+getEventList() : : Future>
+findNextBestDate() : : Future>
+calendar() : : void
+NewGroupView(group, super.key)
+_NewGroupView(group)
+Future observeGroup()
+Future getFirstDate()
+void triggerDelete()
+State createState()
GroupMember
-String uid
-String name
-String email
-String? snapchat
-String? sms
-String? discord
-String? instagram
-String? facebook
-bool? hasCalendar
+GroupMember(uid, name, email, snapchat, sms, discord, instagram, facebook, hasCalendar)
Appointment
- DateTime startTime
- DateTime endTime

Diagram 3 shows all the UML for the classes related to creation, maintenance, and display of the groups within Round. As can be seen, there are not many external dependencies shown within the diagram except a utility class called Appointments that is also seen in Diagram 1. Library imports, which are not included for cleanliness, can be seen in diagram 7. Also note there are constant relationships between classes that look somewhat like the following: ClassState inherits from Class. This is further explained in Diagram 8.

Diagram 4 - Classes Related to the Onboarding Process

Explainer
-pageNo: int
-headers: String[]
-texts: String[]
-images: String[]
+buttonPress(context: BuildContext) : void
+build(context: BuildContext) : Widget
SignIn
- final FirebaseDatabase firebaseDatabase
- final FirebaseAuth firebaseAuth
- String email
- String password
+SignIn(super.key, required this.firebaseDatabase, required this.firebaseAuth)
+Future buttonPress(BuildContext context)
-void signIn(BuildContext context)
-void changedEmail(String string)
-void changedPassword(String string)
+Widget build(BuildContext context)
SignUp
-FirebaseDatabase firebaseDatabase
-FirebaseAuth firebaseAuth
#String name
#String email
#String password
#DatabaseReference ref
#String? uid
+void changedName(String string)
+void changedEmail(String string)
+void changedPassword(String string)
+Future buttonPress(BuildContext context)
+void signIn(BuildContext context)
+Widget build(BuildContext context)
SocialOnboarding
-FirebaseDatabase firebaseDatabase
-FirebaseAuth firebaseAuth
-String insta = ""
-String fb = ""
-String discord = ""
-String snap = ""
-String sms = ""
-DatabaseReference databaseReference
+void facebookChanged(String string)
+void instagramChanged(String string)
+void discordChanged(String string)
+void snapChanged(String string)
+void smsChanged(String string)
+void buttonPress(BuildContext context)
+Widget build(BuildContext context)

Diagram 4 shows all the UML for the classes related to creation, maintenance, and display of the onboarding process within Round. Library imports, which are not included for cleanliness, can be seen in diagram 7. Also note the typical ClassState inherits from Class relationship is not here, and instead these classes comprise entirely of Stateless Widgets.

Diagram 5 - Classes Related to User Settings

About
- Key? key
- final String title
+State createState()
AboutState
- DatabaseReference ref
- final GoogleSignIn _googleSignIn
- GoogleSignInAccount? _currentUser
+void initState()
+Future getPrimaryCalendar()
+Widget build(BuildContext context)
AddEvent
- late DateTime start
- late DateTime end
- late DatabaseReference ref
+ final String title
+AddEvent(Key? key, required this.title, required this.ref)
+@override State createState()
_AddEventState
- late DateTime start
- late DateTime end
- late DatabaseReference ref
+@override void initState()
+@override Widget build(BuildContext context)
EditAccountInfo
+String title
+DatabaseReference ref
_EditAccountInfoState
-String fName
-String lName
-String email
-DatabaseReference ref
-TextEditingController _firstNameController
-TextEditingController _lastNameController
-TextEditingController _emailController
+void initState()
+void getData()
+void saveChanges()
+Widget build(BuildContext context)
_Settings
- String name = ""
- String email = ""
- String? snap
- String? messages
- String? discord
- String? insta
- String? fb
- bool? cal
- String newName = ""
- String newEmail = ""
- bool observing = false
+void changedName(newName:String)
+void changedEmail(newEmail:String)
+void legacySettings()
+void saveInfo()
+void observeData()
+void socialChanged(text:String)
+Future getPrimaryCalendar()
Settings
-FirebaseDatabase firebaseDatabase
-FirebaseAuth firebaseAuth
+Settings(super.key, firebaseDatabase:FirebaseDatabase, firebaseAuth:FirebaseAuth)
+State createState()

Diagram 5 shows all the UML for the classes related to creation, maintenance, and display of the user settings within Round, as well as the generation of custom events not associated with any calendar. As can be seen, there are not many external dependencies, and library imports which are not included for cleanliness, but can be seen in diagram 7. Also note there are constant relationships between classes that look somewhat like the following: ClassState inherits from Class. This relationship is further described for the stateful widgets in diagram 8.

Diagram 6 - Classes Related to the User's Individual Homepage and Usage

RoundGroup
-String id
-Color color
-String emoji
-String name
-String admin
-List memberIDs
+RoundGroup(id:String, color:Color, emoji:String, name:String, admin:String, memberIDs:List)
HomeScreen
-FirebaseDatabase firebaseDatabase
-FirebaseAuth firebaseAuth
+HomeScreen(key:super.key, firebaseDatabase:FirebaseDatabase, firebaseAuth:FirebaseAuth)
+State createState()
_HomeScreen
-List displayedGroups
-bool observing
-String code
+updateDatabase(groupID:String)
+showQR(context:context)
+showAdd(context:context)
RoundApp
- Key? key
+RoundApp()
+build(BuildContext context) : Widget

Diagram 6 shows all the UML for the classes related to creation, maintenance, and display of Round itself, and the user's individual home page. As can be seen, there are not many external dependencies, and library imports are not included for cleanliness. These can be seen in diagram 7. Also note there are constant relationships between classes that look somewhat like the following: ClassState inherits from Class. This relationship is further described for the stateful widgets in diagram 8. RoundApp is a Stateless Widget, and as a result does not have that relationship.

Diagram 7 - Dependencies Between all Classes seen in Diagrams 1-6

RoundApp
FirebaseAuthentication
FirebaseDatabase
Cupertino
Material
PlatformWidget
Explainer
Theme
HomeScreen
GroupCreation
NewGroupView
NewQR
Settings
intl
QrFlutter
SyncFusionFlutterCalendar
CalendarPage
GoogleAPI
AddEvent
CalendarSelection
SocialOnboarding
Calendar
CodeReception
BarcodeScanner
CodeSharing
FlutterToast
DisplayCode
Services
AllGroups
GroupHomePage
Display
Signup
Signin
About
External Library
External Library
External Library
External Library
External Library
Design Used Throughout

Diagram 7 shows the dependendencies of all classes seen in Diagrams 1-6, and how they are all connected within each other, and the libraries used. As can be seen in the diagram, there are many libraries that are consistently used, and these are due to them being core components throughout the application. Other dependencies, while not seemingly as critical, are still very important due to having unique but critical functionality within Round. Note that all libraries labelled "External Library" are used persistently throughout the entire application. Other external libraries, such as BarcodeScanner, are not labeled as such, but are included in every instance of their usage. This was done to clean up the diagram and make it easier to read.

Diagram 8 - General Relationship Between State, StatefulWidget, and the way classes utilize them.

State
StatefulWidget
GenericPage
_GenericPageState
Library in Flutter
Library in Flutter

Diagram 8 shows the relationship between ClassState and Class that has been mentioned in Diagrams 1-6. Both of these rely on libraries within the Flutter framework to work, however the relationship is consistently the same for all Stateful Widgets, which is why it was deemed better to save this relationship for it's own diagram rather than overcomplicate the previous diagrams.

Sequence Diagrams Use Case 1: Registration

UserRoundFirebaseAuthenticationRealtimeDatabaseOpen applicationRegisters using form fieldcreateUserWithEmailAndPassword()Creates a new entryCreation SuccessfulAccount CreatedAccount CreatedUserRoundFirebaseAuthenticationRealtimeDatabase

Use case 1 shows the registration process. This process allows the user to create an account with Round, which is then used throughout the rest of the application. The process will be user friendly, and accessible throughout onboarding.

Use Case 2: First-Time Login

UserRoundFirebaseAuthenticationRealtimeDatabaseOpen applicationLoginsignInWithEmailAndPassword()Queries DatabaseQuery SuccessfulAccount foundQueries for any linked social mediaNo results foundPrompts user to link social mediaValidates social media accountsadds accounts to entryentry updatedThanks user for informationUserRoundFirebaseAuthenticationRealtimeDatabase

Use case 2 shows the login process for when a user is already registered. If they are logging in for the first time, they will have to enter their email and password. However, if they are logging in after having previously done so, their state is saved so they do not have to consistently log in every time the application was opened. This decision was made due to the overall goal of Round to make group planning and creation as streamlined as possible, with the hopes of allowing all the maintenance of groups to be done within a minute of intiation.

Use Case 3: Group Creation

UserRound AppFirebase AuthenticationRealtime Databaselogin()signInWithEmailAndPassword()Presses button to create a new groupPrompts user for group informationEnters group informationUpdate information to group settingsUserRound AppFirebase AuthenticationRealtime Database

Use case 3 shows the sequence of events needed to create a group. Once the user is logged in, all they need to do is press the create group button, follow the prompts for information, and then the group is created. This group can then be sent to other members to allow them to also join the group, which is highlighted further in Use case 4.

Use Case 4: Invite Other Users

User1User2Round AppRealtime DatabasePresses button to create a new groupPrompts user for group informationEnters group informationUpdate information to group settingsQR code and generated code are createdScan the QR code or enter the generated codeJoin scheduling groupUser1User2Round AppRealtime Database

Use case 4, as briefly mentioned above, shows how other users can join a previously created group. Once said group is initialized, the original user has to present the QR code or generated code to any other users they want to join the group. Once these codes are input by the other users, they have joined the group, and Round is able to account for their information.

Use Case 5: Time Block Selection

usergroupchatuser3App/Play StoreRound AppDatabaseGoogle CalendarSends link for installationbrings to dowloadBrings to Round AppPrompts Users to Sign UpSigns upUpdates Database InfoPrompts User to Sync Google CalendarConfirm Syncing of CalendarRequest Calendar InfoSend's Calendar InfoRequest to Sync CalendarDenies RequestsSyncs Calendar InfoPlaces Participants in GroupPrompts User to Selected From Static CalendarUser Completes Calendar Filling RequestFinalizes CalendarPublishes Times of Best Fitted Availability in Internalize Groupusergroupchatuser3App/Play StoreRound AppDatabaseGoogle Calendar

Use case 5 is a relatively complicated scenario, but explains how time blocks are created. In summary, the founding user creates the group and invites all other users to the group. Once that is done, the users can choose to integrate their Google calendar so the event start and end times are saved for future reference (no other personal data is ever stored in regards to event information, solely the start and end times). Afterwards, any user may choose to ask for a meeting time to be generated, in which Round will then use all stored events to find the next best time for a meeting between all users.

Use Case 6: Last Second Changes

GroupUserXUserYRound AppAll users join the groupStatic Calendar is generated with everyone's schedulesUser requests a new meeting time.First available time is displayed to all members.User later realizes that they actually cannot make that time, and requests a new time.Cancels the current meeting timeSelects and displays the next best time on a different day.GroupUserXUserYRound App

Use case 6 shows what would happen if a time was chosen, and then another user realizes they cannot attend that meeting. Upon realization, the user just needs to notify Round through a button press. Round will then pick the next best day to have a meeting. Round will always pick another day entirely, under the assumption that if someone is unable to make a meeting time due to a last minute change, then the change likely has an unknown end time on that day, so a new day altogether is the best chance for a successful meeting.

Use Case 7: Push Notifications and Reminders

UserRound AppMessage ServerReceives a meeting reminder messageTaps on the messageFetches details about the meetingReturn details about the meetingShows a pop-up message with meeting detailsTaps on the active statusShows a description of the statusClicks on the "X" buttonCloses the pop-up menuReturns to the app's home pageBrings user back to homepageUserRound AppMessage Server

Use case 7 shows how push notification would affect users in Round. Due to the unexpected complexity of push notifications, this was not included in the current version of Round, but it is a very possible feature to be implemented in the future. What would happen is Round would load the upcoming meeting time, and send notifications to the users in a timely manner to allow them to know the state of the meeting, such as if it was cancelled or delayed. Additionally, there would be reminders sent out to the users to assist them with managing their schedule for all groups associated with Round.

**Entity-relation diagram

UsersstringuidstringnamestringemailObjectsocialMedia[]stringteamIds[]TeamsstringteamIdstringteamNamestringteamAdminstringuids[]have

Table design.

A check list for architecture design is attached here architecture_design_checklist.pdf  and should be used as a guidance.

Report Bug