-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathUiDomIds.cs
More file actions
79 lines (69 loc) · 3.31 KB
/
UiDomIds.cs
File metadata and controls
79 lines (69 loc) · 3.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
namespace PrompterOne.Shared.Contracts;
public static class UiDomIds
{
public static class Diagnostics
{
public const string ConnectivityDismiss = "app-connectivity-dismiss";
public const string ConnectivityMessage = "app-connectivity-message";
public const string ConnectivityRetry = "app-connectivity-retry";
public const string ConnectivityTitle = "app-connectivity-title";
public const string ConnectivityUi = "app-connectivity-ui";
}
public static class Design
{
public const string LearnScreen = "screen-rsvp";
public const string TeleprompterScreen = "screen-teleprompter";
}
public static class Settings
{
public const string CameraPreviewVideo = "settings-camera-preview-video";
public const string MicrophoneLevelMonitor = "settings-microphone-level-monitor";
public static string MicrophoneLevelMonitorForDevice(string deviceId) =>
$"{MicrophoneLevelMonitor}-{deviceId}";
}
public static class GoLive
{
public const string ProgramStage = "go-live-program-stage";
public const string ProgramVideo = "go-live-program-video";
public const string PreviewCard = "go-live-preview-card";
public const string PreviewStage = "go-live-preview-stage";
public const string PreviewEmpty = "go-live-preview-empty";
public const string PreviewVideo = "go-live-preview-video";
}
public static class Learn
{
public const string HeaderWpmBadge = "rsvp-wpm-badge";
public const string ContextLeft = "rsvp-ctx-l";
public const string ContextRight = "rsvp-ctx-r";
public const string NextPhrase = "rsvp-next-phrase";
public const string PauseFill = "rsvp-pause-fill";
public const string ProgressLabel = "rsvp-progress-label";
public const string ProgressFill = "rsvp-progress-fill";
public const string Speed = "rsvp-speed";
public const string Word = "rsvp-word";
public const string WordShell = "rsvp-word-shell";
}
public static class Teleprompter
{
public const string BlockIndicator = "rd-block-indicator";
public const string Camera = "rd-camera";
public const string CameraButton = "rd-cam-btn";
public const string CameraTint = "rd-camera-tint";
public const string ClusterWrap = "rd-cluster-wrap";
public const string Countdown = "rd-countdown";
public const string FontLabel = "rd-font-label";
public const string FocalGuide = "rd-guide-h";
public const string HeaderSegment = "rd-header-segment";
public const string PauseFill = "rd-pause-fill";
public const string ProgressFill = "rd-progress-fill";
public const string Stage = "rd-stage";
public const string Time = "rd-time";
public const string WidthGuideLeft = "rd-guide-v-l";
public const string WidthGuideRight = "rd-guide-v-r";
public const string WidthValue = "rd-width-val";
public static string CardText(int index) => $"rd-card-text-{index}";
public static string CardWord(int cardIndex, int groupIndex, int wordIndex) =>
$"rd-card-word-{cardIndex}-{groupIndex}-{wordIndex}";
public static string CameraOverlay(int order) => $"rd-camera-overlay-{order}";
}
}