frontend: allowed share room link to moderators in the prejoin page
This commit is contained in:
parent
1915feeee6
commit
80e5334f42
@ -201,6 +201,25 @@
|
|||||||
}
|
}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<!-- Room URL Badge -->
|
||||||
|
@if (features().canModerateRoom) {
|
||||||
|
<div class="room-url-badge fade-in-delayed-more">
|
||||||
|
<div class="room-url-badge-title">Invite others with this meeting link</div>
|
||||||
|
|
||||||
|
<div class="room-url-badge-container">
|
||||||
|
<span class="room-url-text">{{ hostname }}/{{ roomId }}</span>
|
||||||
|
<button
|
||||||
|
mat-icon-button
|
||||||
|
(click)="copyPublisherLink()"
|
||||||
|
class="copy-url-btn"
|
||||||
|
matTooltip="Copy room link"
|
||||||
|
>
|
||||||
|
<mat-icon>content_copy</mat-icon>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
}
|
||||||
|
|
||||||
<!-- Quick Actions -->
|
<!-- Quick Actions -->
|
||||||
@if (showBackButton) {
|
@if (showBackButton) {
|
||||||
<div class="quick-actions fade-in-delayed-more">
|
<div class="quick-actions fade-in-delayed-more">
|
||||||
|
|||||||
@ -195,6 +195,57 @@
|
|||||||
margin-top: auto;
|
margin-top: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Room URL Badge
|
||||||
|
.room-url-badge {
|
||||||
|
margin: var(--ov-meet-spacing-sm) auto;
|
||||||
|
.room-url-badge-title {
|
||||||
|
text-align: center;
|
||||||
|
font-size: var(--ov-meet-font-size-sm);
|
||||||
|
font-weight: var(--ov-meet-font-weight-light);
|
||||||
|
color: var(--ov-meet-text-primary);
|
||||||
|
margin-bottom: var(--ov-meet-spacing-sm);
|
||||||
|
}
|
||||||
|
.room-url-badge-container {
|
||||||
|
@include ov-flex-center;
|
||||||
|
gap: var(--ov-meet-spacing-sm);
|
||||||
|
padding: var(--ov-meet-spacing-sm) var(--ov-meet-spacing-md);
|
||||||
|
background-color: var(--ov-meet-surface-color);
|
||||||
|
border: 1px solid var(--ov-meet-border-color-light);
|
||||||
|
border-radius: var(--ov-meet-radius-lg);
|
||||||
|
max-width: fit-content;
|
||||||
|
@include ov-theme-transition;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
background-color: var(--ov-meet-surface-hover);
|
||||||
|
border-color: var(--ov-meet-border-color);
|
||||||
|
}
|
||||||
|
|
||||||
|
.room-url-text {
|
||||||
|
font-family: var(--ov-meet-font-family-mono, 'Roboto Mono', monospace);
|
||||||
|
font-size: var(--ov-meet-font-size-sm);
|
||||||
|
color: var(--ov-meet-text-secondary);
|
||||||
|
font-weight: var(--ov-meet-font-weight-medium);
|
||||||
|
letter-spacing: 0.025em;
|
||||||
|
user-select: all;
|
||||||
|
cursor: text;
|
||||||
|
}
|
||||||
|
|
||||||
|
.copy-url-btn {
|
||||||
|
@include ov-button-base;
|
||||||
|
width: 32px;
|
||||||
|
height: 32px;
|
||||||
|
min-width: 32px;
|
||||||
|
padding: 0;
|
||||||
|
color: var(--ov-meet-text-hint);
|
||||||
|
@include ov-theme-transition;
|
||||||
|
|
||||||
|
.mat-icon {
|
||||||
|
@include ov-icon(sm);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Quick Actions - Footer actions
|
// Quick Actions - Footer actions
|
||||||
.quick-actions {
|
.quick-actions {
|
||||||
@include ov-flex-center;
|
@include ov-flex-center;
|
||||||
@ -246,6 +297,21 @@
|
|||||||
padding: var(--ov-meet-spacing-md);
|
padding: var(--ov-meet-spacing-md);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.room-url-badge-container {
|
||||||
|
margin: var(--ov-meet-spacing-md) auto;
|
||||||
|
padding: var(--ov-meet-spacing-xs) var(--ov-meet-spacing-sm);
|
||||||
|
|
||||||
|
.room-url-text {
|
||||||
|
font-size: var(--ov-meet-font-size-xs);
|
||||||
|
}
|
||||||
|
|
||||||
|
.copy-url-btn {
|
||||||
|
width: 28px;
|
||||||
|
height: 28px;
|
||||||
|
min-width: 28px;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Custom leave button styling (existing functionality)
|
// Custom leave button styling (existing functionality)
|
||||||
|
|||||||
@ -122,6 +122,10 @@ export class MeetingComponent implements OnInit {
|
|||||||
await this.initializeParticipantName();
|
await this.initializeParticipantName();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
get hostname(): string {
|
||||||
|
return window.location.origin.replace('http://', '').replace('https://', '');
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the back button text based on the application mode and user role
|
* Sets the back button text based on the application mode and user role
|
||||||
*/
|
*/
|
||||||
|
|||||||
@ -98,6 +98,7 @@ export class ParticipantTokenService {
|
|||||||
|
|
||||||
setParticipantRole(participantRole: ParticipantRole): void {
|
setParticipantRole(participantRole: ParticipantRole): void {
|
||||||
this.participantRole = participantRole;
|
this.participantRole = participantRole;
|
||||||
|
this.featureConfService.setParticipantRole(this.participantRole);
|
||||||
}
|
}
|
||||||
|
|
||||||
getParticipantRole(): ParticipantRole {
|
getParticipantRole(): ParticipantRole {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user