Skip to content

Commit 823efe0

Browse files
committed
docs: started updating ios-core docs for v2
1 parent 3e34d62 commit 823efe0

File tree

6 files changed

+39
-24
lines changed

6 files changed

+39
-24
lines changed

docs/ios-core/local-user/events.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Triggered when the user starts / stops the video using `enableVideo` or
2323

2424
```swift
2525
extension MeetingViewModel: DyteSelfEventsListener {
26-
func onVideoUpdate(videoEnabled: Bool) {
26+
func onVideoUpdate(isEnabled: Bool) {
2727
if (videoEnabled) {
2828
// video is enabled, and other participants in room can see local user
2929
} else {
@@ -41,7 +41,7 @@ Triggered when the user starts / stops the audio using `enableAudio` or
4141
```swift
4242

4343
extension MeetingViewModel: DyteSelfEventsListener {
44-
func onAudioUpdate(audioEnabled: Bool) {
44+
func onAudioUpdate(isEnabled: Bool) {
4545
if (audioEnabled) {
4646
// audio is enabled, and other participants in room can hear local user
4747
} else {

docs/ios-core/local-user/introduction.mdx

+13-2
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,19 @@ initialization process. You can setup the audio and video tracks by simply
6363
calling `enableAudio()` and `enableVideo()` like below:
6464

6565
```swift
66-
meeting.localUser.enableAudio()
67-
meeting.localUser.enableVideo()
66+
meeting.localUser.enableAudio{ err in
67+
if let error = err {
68+
print("Error enabling audio: \(error)")
69+
}
70+
}
71+
```
72+
73+
```swift
74+
meeting.localUser.enableVideo{ err in
75+
if let error = err {
76+
print("Error enabling video: \(error)")
77+
}
78+
}
6879
```
6980

7081
## Change the name of the local user

docs/ios-core/participants/events.mdx

+13-13
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ tags:
1313
# All Participant Events
1414

1515
You can subscribe to events for all participants by implementing
16-
`DyteParticipantEventsListener` protocol and then passing that object to
17-
`meeting.addParticipantEventsListener(dyteParticipantEventsListener)` method.
16+
`DyteParticipantsEventListener` protocol and then passing that object to
17+
`meeting.addParticipantsEventListener(dyteParticipantEventsListener)` method.
1818

1919
Here are the supported methods:
2020

@@ -23,7 +23,7 @@ Here are the supported methods:
2323
Triggers an event when any participant joins the meeting.
2424

2525
```swift
26-
extension MeetingViewModel: DyteParticipantEventsListener {
26+
extension MeetingViewModel: DyteParticipantsEventListener {
2727
func onParticipantJoin(participant: DyteMeetingParticipant) {
2828
// your code here to handle new participant
2929
}
@@ -35,7 +35,7 @@ Triggers an event when any participant joins the meeting.
3535
Triggers an event when any participant leaves the meeting.
3636

3737
```swift
38-
extension MeetingViewModel: DyteParticipantEventsListener {
38+
extension MeetingViewModel: DyteParticipantsEventListener {
3939
func onParticipantLeave(participant: DyteMeetingParticipant) {
4040
// your code here to handle participant left from meeting
4141
}
@@ -47,7 +47,7 @@ Triggers an event when any participant leaves the meeting.
4747
Triggers an event whenever there is any change in participant.
4848

4949
```swift
50-
extension MeetingViewModel: DyteParticipantEventsListener {
50+
extension MeetingViewModel: DyteParticipantsEventListener {
5151
func onUpdate(participants: DyteParticipants) {
5252
// your code here to handle participant update
5353
}
@@ -59,8 +59,8 @@ Triggers an event whenever there is any change in participant.
5959
Trigger an event when any participant starts / stops video.
6060

6161
```swift
62-
extension MeetingViewModel: DyteParticipantEventsListener {
63-
func onVideoUpdate(videoEnabled: Bool, participant: DyteMeetingParticipant) {
62+
extension MeetingViewModel: DyteParticipantsEventListener {
63+
func onVideoUpdate(isEnabled: Bool, participant: DyteMeetingParticipant) {
6464
// your code here to handle participant video toggle update
6565
}
6666
}
@@ -71,8 +71,8 @@ Trigger an event when any participant starts / stops video.
7171
Trigger an event when any participant starts / stops audio.
7272

7373
```swift
74-
extension MeetingViewModel: DyteParticipantEventsListener {
75-
func onAudioUpdate(audioEnabled: Bool, participant: DyteMeetingParticipant) {
74+
extension MeetingViewModel: DyteParticipantsEventListener {
75+
func onAudioUpdate(isEnabled: Bool, participant: DyteMeetingParticipant) {
7676
// your code here to handle participant audio toggle update
7777
}
7878
}
@@ -83,7 +83,7 @@ Trigger an event when any participant starts / stops audio.
8383
Triggers an event when there is any change in screenshares in a meeting.
8484

8585
```swift
86-
extension MeetingViewModel: DyteParticipantEventsListener {
86+
extension MeetingViewModel: DyteParticipantsEventListener {
8787
func onScreenSharesUpdated() {
8888
// your code here to handle screenshares from meeting
8989
// you can use `meeting.participants.screenshares` to get latest screenshare participants
@@ -104,7 +104,7 @@ Triggers an event when there is any change in screenshares in a meeting.
104104
Triggers an event when any is change in active speaker in the meeting.
105105

106106
```swift
107-
extension MeetingViewModel: DyteParticipantEventsListener {
107+
extension MeetingViewModel: DyteParticipantsEventListener {
108108
func onActiveSpeakerChanged(participant: DyteMeetingParticipant) {
109109
// your code here to handle active speaker
110110
}
@@ -120,7 +120,7 @@ Triggers an event when any is change in active speaker in the meeting.
120120
Triggers an event when there is any change in pinned participant in the meeting.
121121

122122
```swift
123-
extension MeetingViewModel: DyteParticipantEventsListener {
123+
extension MeetingViewModel: DyteParticipantsEventListener {
124124
func onParticipantPinned(participant: DyteMeetingParticipant) {
125125
// your code here to show pinned participant
126126
}
@@ -136,7 +136,7 @@ Triggers an event when there is any change in pinned participant in the meeting.
136136
Triggers an event when any is change in active participants list in the meeting.
137137

138138
```swift
139-
extension MeetingViewModel: DyteParticipantEventsListener {
139+
extension MeetingViewModel: DyteParticipantsEventListener {
140140
func onActiveParticipantsChanged(active: [DyteMeetingParticipant]) {
141141
// your code here to refresh active participants
142142
}

docs/ios-core/pre-call/1-media-preview.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ from `DyteSelfEventsListener`. Here's how you can register the listener:
4343

4444
```swift
4545
extension MeetingViewModel: DyteSelfEventsListener {
46-
func onAudioUpdate(audioEnabled: Boolean) {
46+
func onAudioUpdate(isEnabled: Boolean) {
4747
// Show a visual preview of the audio to the user if enabled
4848
}
4949
}
@@ -75,7 +75,7 @@ from `DyteSelfEventsListener`. Here's how you can register the listener:
7575

7676
```swift
7777
extension MeetingViewModel: DyteSelfEventsListener {
78-
func onVideoUpdate(videoEnabled: Boolean) {
78+
func onVideoUpdate(isEnabled: Boolean) {
7979
// Show local user's VideoView if video is enabled
8080
}
8181
}

docs/ios-core/pre-call/4-waiting-room.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ You can listen for this callback as follows:
2222

2323
```swift
2424
extension MeetingViewModel: DyteMeetingRoomEventsListener {
25-
func onMeetingRoomJoinCompleted() {
25+
func onMeetingRoomJoinCompleted(meeting: DyteMobileClient) {
2626
// Local user is in the meeting
2727
}
2828
}

docs/ios-core/quickstart.mdx

+8-4
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ let meeting = DyteiOSClientBuilder().build()
110110

111111
```swift
112112
meeting.addMeetingRoomEventsListener(meetingRoomEventsListener: self)
113-
meeting.addParticipantEventsListener(participantEventsListener: self)
113+
meeting.addParticipantsEventListener(participantEventsListener: self)
114114
meeting.addSelfEventsListener(selfEventsListener: self)
115115
meeting.addChatEventsListener(chatEventsListener: self)
116116
meeting.addPollEventsListener(pollEventsListener: self)
@@ -128,13 +128,13 @@ Add `authToken` that you got from the REST API to constructor of DyteMeetingInfo
128128
| `authToken` | After you've created the meeting, add each participant to the meeting using the [Add Participant API](/api?v=v2#/operations/add_participant) The API response contains the `authToken`. |
129129
| `enableAudio` | Set whether to join the meeting with your Mic ON or OFF by passing `true` or `false`. |
130130
| `enableVideo` | Set whether to join the meeting with your Camera ON or OFF by passing `true` or `false`. |
131-
| `baseUrl` | Base URL of the dyte's enviorment you have created the meeting on. |
131+
| `baseDomain` | Base URL of the dyte's enviorment you have created the meeting on. |
132132

133133
```swift
134134
let meetingInfo = DyteMeetingInfoV2(authToken: authToken,
135135
enableAudio: true,
136136
enableVideo: true,
137-
baseUrl: "dyte.io")
137+
baseDomain: "dyte.io")
138138
```
139139

140140
## Step 4: Initialize the Dyte meeting
@@ -185,7 +185,11 @@ To join the meeting room, do the following only after you received the doInit co
185185

186186
```swift
187187
func onMeetingInitCompleted() {
188-
meeting.joinRoom()
188+
meeting.joinRoom {
189+
190+
} onRoomJoinFailed: {
191+
192+
}
189193
}
190194
```
191195

0 commit comments

Comments
 (0)