1769 lines
54 KiB
TypeScript
1769 lines
54 KiB
TypeScript
import { DeesElement, property, html, customElement, type TemplateResult, state } from '@design.estate/dees-element';
|
|
import { WccDashboard } from './wcc-dashboard.js';
|
|
import type { TTemplateFactory } from './wcctools.helpers.js';
|
|
|
|
export type TPropertyType = 'String' | 'Number' | 'Boolean' | 'Object' | 'Enum' | 'Array';
|
|
|
|
export type TEnvironment = 'native' | 'desktop' | 'tablet' | 'phablet' | 'phone';
|
|
export type TTheme = 'bright' | 'dark';
|
|
|
|
let environment: TEnvironment = 'native';
|
|
|
|
export const setEnvironment = (envArg) => {
|
|
environment = envArg;
|
|
};
|
|
|
|
@customElement('wcc-properties')
|
|
export class WccProperties extends DeesElement {
|
|
@property({
|
|
type: WccDashboard
|
|
})
|
|
accessor dashboardRef: WccDashboard;
|
|
|
|
@property()
|
|
accessor selectedItem: TTemplateFactory | DeesElement;
|
|
|
|
@property()
|
|
accessor selectedViewport: TEnvironment = 'native';
|
|
|
|
@property()
|
|
accessor selectedTheme: TTheme = 'dark';
|
|
|
|
@property()
|
|
accessor warning: string = null;
|
|
|
|
@property()
|
|
accessor isFullscreen: boolean = false;
|
|
|
|
@state()
|
|
accessor propertyContent: TemplateResult[] = [];
|
|
|
|
@state()
|
|
accessor editingProperties: Array<{
|
|
id: string;
|
|
name: string;
|
|
value: any;
|
|
element: HTMLElement;
|
|
editorValue: string;
|
|
editorError: string;
|
|
}> = [];
|
|
|
|
// Recording state properties
|
|
@state()
|
|
accessor recordingState: 'idle' | 'options' | 'recording' | 'preview' = 'idle';
|
|
|
|
@state()
|
|
accessor recordingMode: 'viewport' | 'screen' = 'screen';
|
|
|
|
@state()
|
|
accessor audioEnabled: boolean = false;
|
|
|
|
@state()
|
|
accessor selectedMicrophoneId: string = '';
|
|
|
|
@state()
|
|
accessor availableMicrophones: MediaDeviceInfo[] = [];
|
|
|
|
@state()
|
|
accessor audioLevel: number = 0;
|
|
|
|
@state()
|
|
accessor recordingDuration: number = 0;
|
|
|
|
@state()
|
|
accessor recordedBlob: Blob | null = null;
|
|
|
|
@state()
|
|
accessor previewVideoUrl: string = '';
|
|
|
|
// Recording private members
|
|
private mediaRecorder: MediaRecorder | null = null;
|
|
private recordedChunks: Blob[] = [];
|
|
private durationInterval: number | null = null;
|
|
private audioContext: AudioContext | null = null;
|
|
private audioAnalyser: AnalyserNode | null = null;
|
|
private audioMonitoringInterval: number | null = null;
|
|
private currentStream: MediaStream | null = null;
|
|
|
|
public editorHeight: number = 300;
|
|
|
|
public render(): TemplateResult {
|
|
return html`
|
|
<style>
|
|
:host {
|
|
/* CSS Variables - Always dark theme */
|
|
--background: #0a0a0a;
|
|
--foreground: #e5e5e5;
|
|
--card: #0f0f0f;
|
|
--card-foreground: #f0f0f0;
|
|
--muted: #1a1a1a;
|
|
--muted-foreground: #666;
|
|
--accent: #222;
|
|
--accent-foreground: #fff;
|
|
--border: rgba(255, 255, 255, 0.06);
|
|
--input: #141414;
|
|
--primary: #3b82f6;
|
|
--primary-foreground: #fff;
|
|
--ring: #3b82f6;
|
|
--radius: 4px;
|
|
--radius-sm: 2px;
|
|
--radius-md: 4px;
|
|
--radius-lg: 6px;
|
|
|
|
/* Base styles */
|
|
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
|
|
box-sizing: border-box;
|
|
position: absolute;
|
|
left: 200px;
|
|
height: ${this.editingProperties.length > 0 ? 100 + this.editorHeight : 100}px;
|
|
bottom: 0px;
|
|
right: 0px;
|
|
overflow: hidden;
|
|
background: var(--background);
|
|
color: var(--foreground);
|
|
display: ${this.isFullscreen ? 'none' : 'block'};
|
|
}
|
|
.grid {
|
|
display: grid;
|
|
grid-template-columns: 1fr 150px 300px 70px 70px;
|
|
height: 100%;
|
|
}
|
|
.properties {
|
|
background: transparent;
|
|
overflow-y: auto;
|
|
display: grid;
|
|
grid-template-columns: repeat(3, 1fr);
|
|
border-right: 1px solid var(--border);
|
|
align-content: start;
|
|
}
|
|
|
|
.material-symbols-outlined {
|
|
font-family: 'Material Symbols Outlined';
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
font-size: 24px; /* Preferred icon size */
|
|
display: inline-block;
|
|
line-height: 1;
|
|
text-transform: none;
|
|
letter-spacing: normal;
|
|
word-wrap: normal;
|
|
white-space: nowrap;
|
|
direction: ltr;
|
|
font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 48;
|
|
}
|
|
|
|
.properties .property {
|
|
padding: 0.4rem;
|
|
background: transparent;
|
|
border-right: 1px solid var(--border);
|
|
border-bottom: 1px solid var(--border);
|
|
transition: all 0.15s ease;
|
|
}
|
|
|
|
.properties .property:hover {
|
|
background: rgba(255, 255, 255, 0.02);
|
|
}
|
|
|
|
.properties .property-label {
|
|
font-size: 0.65rem;
|
|
font-weight: 400;
|
|
color: #888;
|
|
margin-bottom: 0.2rem;
|
|
text-transform: capitalize;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.properties input[type="text"],
|
|
.properties input[type="number"],
|
|
.properties select {
|
|
display: block;
|
|
width: 100%;
|
|
padding: 0.25rem 0.4rem;
|
|
background: var(--input);
|
|
border: 1px solid transparent;
|
|
color: var(--foreground);
|
|
border-radius: var(--radius-sm);
|
|
font-size: 0.7rem;
|
|
transition: all 0.15s ease;
|
|
outline: none;
|
|
}
|
|
|
|
.properties input[type="text"]:focus,
|
|
.properties input[type="number"]:focus,
|
|
.properties select:focus {
|
|
border-color: var(--primary);
|
|
background: rgba(59, 130, 246, 0.1);
|
|
}
|
|
|
|
.properties input[type="checkbox"] {
|
|
width: 1rem;
|
|
height: 1rem;
|
|
cursor: pointer;
|
|
accent-color: var(--primary);
|
|
}
|
|
|
|
.properties .editor-button {
|
|
padding: 0.25rem 0.5rem;
|
|
background: var(--input);
|
|
border: 1px solid transparent;
|
|
border-radius: var(--radius-sm);
|
|
color: var(--foreground);
|
|
font-size: 0.7rem;
|
|
cursor: pointer;
|
|
transition: all 0.15s ease;
|
|
text-align: center;
|
|
}
|
|
|
|
.properties .editor-button:hover {
|
|
border-color: var(--primary);
|
|
background: rgba(59, 130, 246, 0.1);
|
|
}
|
|
|
|
.viewportSelector,
|
|
.themeSelector {
|
|
user-select: none;
|
|
background: transparent;
|
|
display: flex;
|
|
flex-direction: column;
|
|
border-right: 1px solid var(--border);
|
|
}
|
|
.selectorButtons2 {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
flex: 1;
|
|
}
|
|
.selectorButtons4 {
|
|
display: grid;
|
|
grid-template-columns: repeat(4, 1fr);
|
|
flex: 1;
|
|
}
|
|
.button {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 0.5rem 0.25rem;
|
|
text-align: center;
|
|
background: transparent;
|
|
border: 1px solid var(--border);
|
|
transition: all 0.15s ease;
|
|
cursor: pointer;
|
|
font-size: 0.65rem;
|
|
gap: 0.2rem;
|
|
color: #999;
|
|
}
|
|
|
|
.button:hover {
|
|
background: rgba(59, 130, 246, 0.05);
|
|
color: #bbb;
|
|
}
|
|
|
|
.button.selected {
|
|
background: rgba(59, 130, 246, 0.15);
|
|
color: var(--primary);
|
|
border-color: rgba(59, 130, 246, 0.3);
|
|
}
|
|
|
|
.button.selected:hover {
|
|
background: rgba(59, 130, 246, 0.2);
|
|
}
|
|
|
|
.button .material-symbols-outlined {
|
|
font-size: 18px;
|
|
font-variation-settings: 'FILL' 0, 'wght' 300;
|
|
}
|
|
|
|
.button.selected .material-symbols-outlined {
|
|
font-variation-settings: 'FILL' 1, 'wght' 400;
|
|
}
|
|
|
|
.panelheading {
|
|
padding: 0.3rem 0.5rem;
|
|
font-weight: 500;
|
|
font-size: 0.65rem;
|
|
background: rgba(59, 130, 246, 0.03);
|
|
border-bottom: 1px solid var(--border);
|
|
color: #888;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.08em;
|
|
}
|
|
.docs {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
text-transform: uppercase;
|
|
background: transparent;
|
|
cursor: pointer;
|
|
font-size: 0.65rem;
|
|
font-weight: 500;
|
|
letter-spacing: 0.08em;
|
|
transition: all 0.15s ease;
|
|
color: #666;
|
|
}
|
|
|
|
.docs:hover {
|
|
background: rgba(59, 130, 246, 0.05);
|
|
color: #999;
|
|
}
|
|
|
|
.warning {
|
|
position: absolute;
|
|
background: rgba(20, 20, 20, 0.8);
|
|
color: #888;
|
|
top: 0.5rem;
|
|
bottom: 0.5rem;
|
|
left: 0.5rem;
|
|
right: calc(520px + 0.5rem);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 1.5rem;
|
|
font-size: 0.85rem;
|
|
border-radius: var(--radius-md);
|
|
border: 1px solid var(--border);
|
|
backdrop-filter: blur(8px);
|
|
}
|
|
|
|
.advanced-editor-container {
|
|
position: absolute;
|
|
left: 0;
|
|
right: 0;
|
|
top: 0;
|
|
height: ${this.editorHeight}px;
|
|
background: #050505;
|
|
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
|
|
display: flex;
|
|
flex-direction: column;
|
|
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
|
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
|
|
}
|
|
|
|
.editor-header-bar {
|
|
padding: 0.5rem 0.75rem;
|
|
background: transparent;
|
|
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
height: 36px;
|
|
}
|
|
|
|
.editor-header-title {
|
|
font-size: 0.7rem;
|
|
font-weight: 500;
|
|
color: #666;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.08em;
|
|
}
|
|
|
|
.editor-close-all {
|
|
padding: 0.25rem 0.5rem;
|
|
background: transparent;
|
|
border: 1px solid rgba(255, 255, 255, 0.08);
|
|
border-radius: var(--radius-sm);
|
|
color: #999;
|
|
font-size: 0.65rem;
|
|
font-weight: 500;
|
|
cursor: pointer;
|
|
transition: all 0.15s ease;
|
|
}
|
|
|
|
.editor-close-all:hover {
|
|
background: rgba(255, 255, 255, 0.05);
|
|
border-color: rgba(255, 255, 255, 0.12);
|
|
color: #f87171;
|
|
}
|
|
|
|
.editors-container {
|
|
flex: 1;
|
|
display: flex;
|
|
overflow-x: auto;
|
|
overflow-y: hidden;
|
|
gap: 0;
|
|
background: rgba(255, 255, 255, 0.02);
|
|
padding: 0.75rem;
|
|
}
|
|
|
|
.editors-container::-webkit-scrollbar {
|
|
height: 8px;
|
|
}
|
|
|
|
.editors-container::-webkit-scrollbar-track {
|
|
background: rgba(255, 255, 255, 0.02);
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.editors-container::-webkit-scrollbar-thumb {
|
|
background: rgba(255, 255, 255, 0.08);
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.editors-container::-webkit-scrollbar-thumb:hover {
|
|
background: rgba(255, 255, 255, 0.12);
|
|
}
|
|
|
|
.editor-instance {
|
|
min-width: 320px;
|
|
flex: 1;
|
|
max-width: 480px;
|
|
background: rgba(10, 10, 10, 0.6);
|
|
display: flex;
|
|
flex-direction: column;
|
|
border-radius: var(--radius);
|
|
overflow: hidden;
|
|
margin-right: 0.75rem;
|
|
border: 1px solid rgba(255, 255, 255, 0.06);
|
|
transition: all 0.2s ease;
|
|
}
|
|
|
|
.editor-instance:hover {
|
|
border-color: rgba(255, 255, 255, 0.1);
|
|
}
|
|
|
|
.editor-instance:last-child {
|
|
margin-right: 0;
|
|
}
|
|
|
|
.editor-header {
|
|
padding: 0.5rem 0.75rem;
|
|
background: rgba(255, 255, 255, 0.02);
|
|
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
height: 36px;
|
|
}
|
|
|
|
.editor-title {
|
|
font-size: 0.75rem;
|
|
font-weight: 500;
|
|
color: #999;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
font-family: 'Consolas', 'Monaco', monospace;
|
|
}
|
|
|
|
.editor-actions {
|
|
display: flex;
|
|
gap: 0.25rem;
|
|
}
|
|
|
|
.editor-button {
|
|
width: 24px;
|
|
height: 24px;
|
|
padding: 0;
|
|
background: transparent;
|
|
border: none;
|
|
color: #666;
|
|
font-size: 1rem;
|
|
cursor: pointer;
|
|
transition: all 0.15s ease;
|
|
border-radius: var(--radius-sm);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.editor-button:hover {
|
|
background: rgba(255, 255, 255, 0.05);
|
|
color: #999;
|
|
}
|
|
|
|
.editor-button.primary {
|
|
color: #4ade80;
|
|
}
|
|
|
|
.editor-button.primary:hover {
|
|
background: rgba(74, 222, 128, 0.1);
|
|
}
|
|
|
|
.editor-content {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
overflow: hidden;
|
|
min-height: 0;
|
|
position: relative;
|
|
}
|
|
|
|
.editor-textarea {
|
|
width: 100%;
|
|
height: 100%;
|
|
background: transparent;
|
|
border: none;
|
|
color: #d0d0d0;
|
|
font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
|
|
font-size: 0.8125rem;
|
|
line-height: 1.6;
|
|
padding: 0.75rem;
|
|
resize: none;
|
|
outline: none;
|
|
transition: all 0.15s ease;
|
|
overflow: auto;
|
|
}
|
|
|
|
.editor-textarea:focus {
|
|
background: rgba(255, 255, 255, 0.01);
|
|
}
|
|
|
|
.editor-textarea::selection {
|
|
background: rgba(59, 130, 246, 0.3);
|
|
}
|
|
|
|
.editor-error {
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
padding: 0.5rem 0.75rem;
|
|
background: rgba(239, 68, 68, 0.9);
|
|
backdrop-filter: blur(4px);
|
|
color: #fff;
|
|
font-size: 0.7rem;
|
|
font-weight: 500;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.375rem;
|
|
border-top: 1px solid rgba(239, 68, 68, 0.5);
|
|
}
|
|
|
|
.editor-error::before {
|
|
content: '!';
|
|
display: inline-flex;
|
|
width: 16px;
|
|
height: 16px;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background: rgba(255, 255, 255, 0.2);
|
|
border-radius: 50%;
|
|
font-size: 0.65rem;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.main-content {
|
|
position: absolute;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
height: 100px;
|
|
}
|
|
|
|
/* Recording styles */
|
|
.recordingButton {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background: transparent;
|
|
cursor: pointer;
|
|
transition: all 0.15s ease;
|
|
color: #666;
|
|
border-left: 1px solid var(--border);
|
|
}
|
|
|
|
.recordingButton:hover {
|
|
background: rgba(239, 68, 68, 0.05);
|
|
color: #f87171;
|
|
}
|
|
|
|
.recordingButton.recording {
|
|
background: rgba(239, 68, 68, 0.15);
|
|
color: #f87171;
|
|
}
|
|
|
|
.recordingButton .rec-icon {
|
|
width: 12px;
|
|
height: 12px;
|
|
border-radius: 50%;
|
|
background: currentColor;
|
|
}
|
|
|
|
.recordingButton.recording .rec-icon {
|
|
animation: pulse-recording 1s ease-in-out infinite;
|
|
}
|
|
|
|
@keyframes pulse-recording {
|
|
0%, 100% { opacity: 1; transform: scale(1); }
|
|
50% { opacity: 0.5; transform: scale(0.9); }
|
|
}
|
|
|
|
.recording-timer {
|
|
font-family: 'Consolas', 'Monaco', monospace;
|
|
font-size: 0.7rem;
|
|
margin-left: 0.25rem;
|
|
}
|
|
|
|
/* Recording Options Panel */
|
|
.recording-options-panel {
|
|
position: fixed;
|
|
right: 16px;
|
|
bottom: 116px;
|
|
width: 360px;
|
|
background: #0c0c0c;
|
|
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
border-radius: var(--radius-md);
|
|
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
|
|
z-index: 1000;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.recording-options-header {
|
|
padding: 0.75rem 1rem;
|
|
background: rgba(255, 255, 255, 0.02);
|
|
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.recording-options-title {
|
|
font-size: 0.8rem;
|
|
font-weight: 500;
|
|
color: #ccc;
|
|
}
|
|
|
|
.recording-options-close {
|
|
width: 24px;
|
|
height: 24px;
|
|
background: transparent;
|
|
border: none;
|
|
color: #666;
|
|
cursor: pointer;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border-radius: var(--radius-sm);
|
|
transition: all 0.15s ease;
|
|
}
|
|
|
|
.recording-options-close:hover {
|
|
background: rgba(255, 255, 255, 0.05);
|
|
color: #999;
|
|
}
|
|
|
|
.recording-options-content {
|
|
padding: 1rem;
|
|
}
|
|
|
|
.recording-option-group {
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.recording-option-group:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.recording-option-label {
|
|
font-size: 0.7rem;
|
|
font-weight: 500;
|
|
color: #888;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.05em;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.recording-mode-buttons {
|
|
display: flex;
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
.recording-mode-btn {
|
|
flex: 1;
|
|
padding: 0.6rem 0.75rem;
|
|
background: var(--input);
|
|
border: 1px solid transparent;
|
|
border-radius: var(--radius-sm);
|
|
color: #999;
|
|
font-size: 0.75rem;
|
|
cursor: pointer;
|
|
transition: all 0.15s ease;
|
|
text-align: center;
|
|
}
|
|
|
|
.recording-mode-btn:hover {
|
|
border-color: var(--primary);
|
|
color: #ccc;
|
|
}
|
|
|
|
.recording-mode-btn.selected {
|
|
background: rgba(59, 130, 246, 0.15);
|
|
border-color: var(--primary);
|
|
color: var(--primary);
|
|
}
|
|
|
|
.audio-toggle {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
margin-bottom: 0.75rem;
|
|
}
|
|
|
|
.audio-toggle input[type="checkbox"] {
|
|
width: 1rem;
|
|
height: 1rem;
|
|
accent-color: var(--primary);
|
|
}
|
|
|
|
.audio-toggle label {
|
|
font-size: 0.75rem;
|
|
color: #999;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.microphone-select {
|
|
width: 100%;
|
|
padding: 0.5rem 0.75rem;
|
|
background: var(--input);
|
|
border: 1px solid transparent;
|
|
border-radius: var(--radius-sm);
|
|
color: var(--foreground);
|
|
font-size: 0.75rem;
|
|
outline: none;
|
|
cursor: pointer;
|
|
transition: all 0.15s ease;
|
|
}
|
|
|
|
.microphone-select:focus {
|
|
border-color: var(--primary);
|
|
}
|
|
|
|
.microphone-select:disabled {
|
|
opacity: 0.5;
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
.audio-level-container {
|
|
margin-top: 0.75rem;
|
|
padding: 0.5rem;
|
|
background: rgba(255, 255, 255, 0.02);
|
|
border-radius: var(--radius-sm);
|
|
}
|
|
|
|
.audio-level-label {
|
|
font-size: 0.65rem;
|
|
color: #666;
|
|
margin-bottom: 0.25rem;
|
|
}
|
|
|
|
.audio-level-bar {
|
|
height: 8px;
|
|
background: var(--input);
|
|
border-radius: 4px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.audio-level-fill {
|
|
height: 100%;
|
|
background: linear-gradient(90deg, #22c55e, #84cc16, #eab308);
|
|
border-radius: 4px;
|
|
transition: width 0.1s ease;
|
|
}
|
|
|
|
.start-recording-btn {
|
|
width: 100%;
|
|
padding: 0.75rem;
|
|
background: #dc2626;
|
|
border: none;
|
|
border-radius: var(--radius-sm);
|
|
color: white;
|
|
font-size: 0.8rem;
|
|
font-weight: 500;
|
|
cursor: pointer;
|
|
transition: all 0.15s ease;
|
|
margin-top: 1rem;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
.start-recording-btn:hover {
|
|
background: #b91c1c;
|
|
}
|
|
|
|
.start-recording-btn .rec-dot {
|
|
width: 10px;
|
|
height: 10px;
|
|
background: white;
|
|
border-radius: 50%;
|
|
}
|
|
|
|
/* Preview Modal */
|
|
.preview-modal-overlay {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background: rgba(0, 0, 0, 0.8);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
z-index: 1000;
|
|
backdrop-filter: blur(4px);
|
|
}
|
|
|
|
.preview-modal {
|
|
width: 90%;
|
|
max-width: 800px;
|
|
background: #0c0c0c;
|
|
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
border-radius: var(--radius-lg);
|
|
overflow: hidden;
|
|
box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
|
|
}
|
|
|
|
.preview-modal-header {
|
|
padding: 1rem 1.25rem;
|
|
background: rgba(255, 255, 255, 0.02);
|
|
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.preview-modal-title {
|
|
font-size: 0.9rem;
|
|
font-weight: 500;
|
|
color: #ccc;
|
|
}
|
|
|
|
.preview-modal-close {
|
|
width: 28px;
|
|
height: 28px;
|
|
background: transparent;
|
|
border: none;
|
|
color: #666;
|
|
cursor: pointer;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border-radius: var(--radius-sm);
|
|
font-size: 1.2rem;
|
|
transition: all 0.15s ease;
|
|
}
|
|
|
|
.preview-modal-close:hover {
|
|
background: rgba(255, 255, 255, 0.05);
|
|
color: #999;
|
|
}
|
|
|
|
.preview-modal-content {
|
|
padding: 1.25rem;
|
|
}
|
|
|
|
.preview-video-container {
|
|
background: #000;
|
|
border-radius: var(--radius-sm);
|
|
overflow: hidden;
|
|
aspect-ratio: 16 / 9;
|
|
}
|
|
|
|
.preview-video {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: contain;
|
|
}
|
|
|
|
.preview-modal-actions {
|
|
padding: 1rem 1.25rem;
|
|
border-top: 1px solid rgba(255, 255, 255, 0.05);
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
gap: 0.75rem;
|
|
}
|
|
|
|
.preview-btn {
|
|
padding: 0.6rem 1.25rem;
|
|
border-radius: var(--radius-sm);
|
|
font-size: 0.8rem;
|
|
font-weight: 500;
|
|
cursor: pointer;
|
|
transition: all 0.15s ease;
|
|
}
|
|
|
|
.preview-btn.secondary {
|
|
background: transparent;
|
|
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
color: #999;
|
|
}
|
|
|
|
.preview-btn.secondary:hover {
|
|
border-color: rgba(255, 255, 255, 0.2);
|
|
color: #ccc;
|
|
}
|
|
|
|
.preview-btn.primary {
|
|
background: var(--primary);
|
|
border: none;
|
|
color: white;
|
|
}
|
|
|
|
.preview-btn.primary:hover {
|
|
background: #2563eb;
|
|
}
|
|
</style>
|
|
${this.editingProperties.length > 0 ? html`
|
|
<div class="advanced-editor-container">
|
|
<div class="editor-header-bar">
|
|
<div class="editor-header-title">Property Editors</div>
|
|
<button class="editor-close-all" @click=${this.closeAllEditors}>
|
|
Close All
|
|
</button>
|
|
</div>
|
|
<div class="editors-container">
|
|
${this.editingProperties.length === 0 ? html`
|
|
<div style="
|
|
flex: 1;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: #666;
|
|
font-size: 0.875rem;
|
|
text-align: center;
|
|
padding: 2rem;
|
|
">
|
|
<div>
|
|
<div style="margin-bottom: 0.5rem; font-size: 1.5rem; opacity: 0.5;">{ }</div>
|
|
<div>No properties being edited</div>
|
|
<div style="font-size: 0.75rem; margin-top: 0.25rem; opacity: 0.7;">Click "Edit Object/Array" buttons to start editing</div>
|
|
</div>
|
|
</div>
|
|
` : null}
|
|
${this.editingProperties.map(prop => html`
|
|
<div class="editor-instance">
|
|
<div class="editor-header">
|
|
<div class="editor-title">${prop.name}</div>
|
|
<div class="editor-actions">
|
|
<button class="editor-button" @click=${() => this.handleEditorCancel(prop.id)}>✕</button>
|
|
<button class="editor-button primary" @click=${() => this.handleEditorSave(prop.id)}>✓</button>
|
|
</div>
|
|
</div>
|
|
<div class="editor-content">
|
|
<textarea
|
|
class="editor-textarea"
|
|
.value=${prop.editorValue}
|
|
@input=${(e: InputEvent) => {
|
|
const editor = this.editingProperties.find(p => p.id === prop.id);
|
|
if (editor) {
|
|
editor.editorValue = (e.target as HTMLTextAreaElement).value;
|
|
editor.editorError = '';
|
|
this.requestUpdate();
|
|
}
|
|
}}
|
|
@keydown=${(e: KeyboardEvent) => {
|
|
if (e.key === 'Tab') {
|
|
e.preventDefault();
|
|
const target = e.target as HTMLTextAreaElement;
|
|
const start = target.selectionStart;
|
|
const end = target.selectionEnd;
|
|
const value = target.value;
|
|
target.value = value.substring(0, start) + ' ' + value.substring(end);
|
|
target.selectionStart = target.selectionEnd = start + 2;
|
|
}
|
|
}}
|
|
></textarea>
|
|
${prop.editorError ? html`
|
|
<div class="editor-error">${prop.editorError}</div>
|
|
` : null}
|
|
</div>
|
|
</div>
|
|
`)}
|
|
</div>
|
|
</div>
|
|
` : null}
|
|
<div class="main-content">
|
|
<div class="grid">
|
|
<div class="properties">
|
|
${this.propertyContent}
|
|
</div>
|
|
<div class="themeSelector">
|
|
<div class="panelheading">Theme</div>
|
|
<div class="selectorButtons2">
|
|
<div
|
|
class="button ${this.selectedTheme === 'dark' ? 'selected' : null}"
|
|
@click=${() => {
|
|
this.selectTheme('dark');
|
|
}}
|
|
>
|
|
Dark<i class="material-symbols-outlined">brightness_3</i>
|
|
</div>
|
|
<div
|
|
class="button ${this.selectedTheme === 'bright' ? 'selected' : null}"
|
|
@click=${() => {
|
|
this.selectTheme('bright');
|
|
}}
|
|
>
|
|
Bright<i class="material-symbols-outlined">flare</i>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="viewportSelector">
|
|
<div class="panelheading">Viewport</div>
|
|
<div class="selectorButtons4">
|
|
<div
|
|
class="button ${this.selectedViewport === 'phone' ? 'selected' : null}"
|
|
@click=${() => {
|
|
this.selectViewport('phone');
|
|
}}
|
|
>
|
|
Phone<i class="material-symbols-outlined">smartphone</i>
|
|
</div>
|
|
<div
|
|
class="button ${this.selectedViewport === 'phablet' ? 'selected' : null}"
|
|
@click=${() => {
|
|
this.selectViewport('phablet');
|
|
}}
|
|
>
|
|
Phablet<i class="material-symbols-outlined">smartphone</i>
|
|
</div>
|
|
<div
|
|
class="button ${this.selectedViewport === 'tablet' ? 'selected' : null}"
|
|
@click=${() => {
|
|
this.selectViewport('tablet');
|
|
}}
|
|
>
|
|
Tablet<i class="material-symbols-outlined">tablet</i>
|
|
</div>
|
|
<div
|
|
class="button ${this.selectedViewport === 'desktop' ||
|
|
this.selectedViewport === 'native'
|
|
? 'selected'
|
|
: null}"
|
|
@click=${() => {
|
|
this.selectViewport('native');
|
|
}}
|
|
>
|
|
Desktop<i class="material-symbols-outlined">desktop_windows</i>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="docs" @click=${() => this.toggleFullscreen()}>
|
|
<i class="material-symbols-outlined" style="font-size: 20px;">
|
|
${this.isFullscreen ? 'fullscreen_exit' : 'fullscreen'}
|
|
</i>
|
|
</div>
|
|
<!-- Recording Button -->
|
|
<div
|
|
class="recordingButton ${this.recordingState === 'recording' ? 'recording' : ''}"
|
|
@click=${() => this.handleRecordingButtonClick()}
|
|
>
|
|
${this.recordingState === 'recording' ? html`
|
|
<div class="rec-icon"></div>
|
|
<span class="recording-timer">${this.formatDuration(this.recordingDuration)}</span>
|
|
` : html`
|
|
<div class="rec-icon"></div>
|
|
`}
|
|
</div>
|
|
</div>
|
|
${this.warning ? html`<div class="warning">${this.warning}</div>` : null}
|
|
</div>
|
|
|
|
<!-- Recording Options Panel -->
|
|
${this.recordingState === 'options' ? html`
|
|
<div class="recording-options-panel">
|
|
<div class="recording-options-header">
|
|
<span class="recording-options-title">Recording Settings</span>
|
|
<button class="recording-options-close" @click=${() => this.recordingState = 'idle'}>✕</button>
|
|
</div>
|
|
<div class="recording-options-content">
|
|
<div class="recording-option-group">
|
|
<div class="recording-option-label">Record Area</div>
|
|
<div class="recording-mode-buttons">
|
|
<button
|
|
class="recording-mode-btn ${this.recordingMode === 'viewport' ? 'selected' : ''}"
|
|
@click=${() => this.recordingMode = 'viewport'}
|
|
>
|
|
Viewport Only
|
|
</button>
|
|
<button
|
|
class="recording-mode-btn ${this.recordingMode === 'screen' ? 'selected' : ''}"
|
|
@click=${() => this.recordingMode = 'screen'}
|
|
>
|
|
Entire Screen
|
|
</button>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="recording-option-group">
|
|
<div class="recording-option-label">Audio</div>
|
|
<div class="audio-toggle">
|
|
<input
|
|
type="checkbox"
|
|
id="audioToggle"
|
|
?checked=${this.audioEnabled}
|
|
@change=${(e: Event) => this.handleAudioToggle((e.target as HTMLInputElement).checked)}
|
|
/>
|
|
<label for="audioToggle">Enable Microphone</label>
|
|
</div>
|
|
|
|
${this.audioEnabled ? html`
|
|
<select
|
|
class="microphone-select"
|
|
.value=${this.selectedMicrophoneId}
|
|
@change=${(e: Event) => this.handleMicrophoneChange((e.target as HTMLSelectElement).value)}
|
|
>
|
|
<option value="">Select Microphone...</option>
|
|
${this.availableMicrophones.map(mic => html`
|
|
<option value=${mic.deviceId}>${mic.label || `Microphone ${mic.deviceId.slice(0, 8)}`}</option>
|
|
`)}
|
|
</select>
|
|
|
|
${this.selectedMicrophoneId ? html`
|
|
<div class="audio-level-container">
|
|
<div class="audio-level-label">Input Level</div>
|
|
<div class="audio-level-bar">
|
|
<div class="audio-level-fill" style="width: ${this.audioLevel}%"></div>
|
|
</div>
|
|
</div>
|
|
` : null}
|
|
` : null}
|
|
</div>
|
|
|
|
<button class="start-recording-btn" @click=${() => this.startRecording()}>
|
|
<div class="rec-dot"></div>
|
|
Start Recording
|
|
</button>
|
|
</div>
|
|
</div>
|
|
` : null}
|
|
|
|
<!-- Preview Modal -->
|
|
${this.recordingState === 'preview' && this.previewVideoUrl ? html`
|
|
<div class="preview-modal-overlay" @click=${(e: Event) => {
|
|
if ((e.target as HTMLElement).classList.contains('preview-modal-overlay')) {
|
|
this.discardRecording();
|
|
}
|
|
}}>
|
|
<div class="preview-modal">
|
|
<div class="preview-modal-header">
|
|
<span class="preview-modal-title">Recording Preview</span>
|
|
<button class="preview-modal-close" @click=${() => this.discardRecording()}>✕</button>
|
|
</div>
|
|
<div class="preview-modal-content">
|
|
<div class="preview-video-container">
|
|
<video
|
|
class="preview-video"
|
|
src=${this.previewVideoUrl}
|
|
controls
|
|
autoplay
|
|
></video>
|
|
</div>
|
|
</div>
|
|
<div class="preview-modal-actions">
|
|
<button class="preview-btn secondary" @click=${() => this.discardRecording()}>Discard</button>
|
|
<button class="preview-btn primary" @click=${() => this.downloadRecording()}>Download</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
` : null}
|
|
`;
|
|
}
|
|
|
|
private async findElementRecursively(container: Element, elementClass: any, maxDepth: number = 5): Promise<HTMLElement | null> {
|
|
if (maxDepth <= 0) return null;
|
|
|
|
try {
|
|
// Check direct children
|
|
for (const child of Array.from(container.children)) {
|
|
if (child instanceof elementClass) {
|
|
return child as HTMLElement;
|
|
}
|
|
}
|
|
|
|
// Search in all children recursively
|
|
for (const child of Array.from(container.children)) {
|
|
// First, always check the light DOM children
|
|
const found = await this.findElementRecursively(child, elementClass, maxDepth - 1);
|
|
if (found) return found;
|
|
|
|
// Also check shadow root if it exists
|
|
if (child.shadowRoot) {
|
|
const shadowFound = await this.findElementRecursively(child.shadowRoot as any, elementClass, maxDepth - 1);
|
|
if (shadowFound) return shadowFound;
|
|
}
|
|
}
|
|
} catch (error) {
|
|
console.error('Error in findElementRecursively:', error);
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
public async createProperties() {
|
|
console.log('creating properties for:');
|
|
console.log(this.selectedItem);
|
|
|
|
// Clear any previous warnings
|
|
this.warning = null;
|
|
const isEnumeration = (propertyArg): boolean => {
|
|
const keys = Object.keys(propertyArg.type);
|
|
const values = [];
|
|
for (const key of keys) {
|
|
let value = propertyArg.type[key];
|
|
if (typeof value === 'number') {
|
|
value = value.toString();
|
|
}
|
|
values.push(value);
|
|
}
|
|
for (const key of keys) {
|
|
if (values.indexOf(key) < 0) {
|
|
return false;
|
|
}
|
|
}
|
|
return true;
|
|
};
|
|
const getEnumValues = (propertyArg): any[] => {
|
|
console.log(JSON.stringify(propertyArg));
|
|
const enumValues: any[] = [];
|
|
Object.keys(propertyArg.type).forEach((valueArg: string) => {
|
|
enumValues.push(valueArg);
|
|
});
|
|
return enumValues;
|
|
};
|
|
const determinePropertyType = async (propertyArg: any): Promise<TPropertyType> => {
|
|
const typeName: any | undefined = propertyArg.type.name;
|
|
if (typeName) {
|
|
return typeName;
|
|
} else {
|
|
return Array.isArray(propertyArg)
|
|
? 'Array'
|
|
: isEnumeration(propertyArg)
|
|
? 'Enum'
|
|
: 'Object';
|
|
}
|
|
};
|
|
if (this.selectedItem && (this.selectedItem as any).demo) {
|
|
console.log(`Got Dees-Element for property evaluation.`);
|
|
const anonItem: any = this.selectedItem;
|
|
if (!anonItem) {
|
|
this.warning = 'no element selected';
|
|
return;
|
|
}
|
|
console.log(anonItem.elementProperties);
|
|
const wccFrame = await this.dashboardRef.wccFrame;
|
|
|
|
// Wait for render to complete and any demo wrappers to run
|
|
await new Promise(resolve => setTimeout(resolve, 200));
|
|
|
|
// Try to find the element with recursive search
|
|
const viewport = await wccFrame.getViewportElement();
|
|
let firstFoundInstantiatedElement: HTMLElement = await this.findElementRecursively(
|
|
viewport,
|
|
this.selectedItem as any
|
|
);
|
|
|
|
// Retry logic if element not found
|
|
let retries = 0;
|
|
while (!firstFoundInstantiatedElement && retries < 5) {
|
|
await new Promise(resolve => setTimeout(resolve, 200));
|
|
try {
|
|
firstFoundInstantiatedElement = await this.findElementRecursively(
|
|
viewport,
|
|
this.selectedItem as any
|
|
);
|
|
} catch (error) {
|
|
console.error('Error during element search retry:', error);
|
|
}
|
|
retries++;
|
|
}
|
|
|
|
if (!firstFoundInstantiatedElement) {
|
|
this.warning = `no first instantiated element found for >>${anonItem.name}<< after ${retries} retries`;
|
|
this.propertyContent = [];
|
|
return;
|
|
}
|
|
const classProperties: Map<string, any> = anonItem.elementProperties;
|
|
if (!classProperties) {
|
|
this.warning = `selected element >>${anonItem.name}<< does not expose element properties`;
|
|
return;
|
|
}
|
|
this.warning = null;
|
|
const propertyArray: TemplateResult[] = [];
|
|
for (const key of classProperties.keys()) {
|
|
if (key === 'goBright' || key === 'domtools') {
|
|
continue;
|
|
}
|
|
try {
|
|
const property = classProperties.get(key);
|
|
const propertyTypeString = await determinePropertyType(property);
|
|
propertyArray.push(
|
|
html`
|
|
<div class="property">
|
|
<div class="property-label">${key} (${propertyTypeString})</div>
|
|
${(() => {
|
|
switch (propertyTypeString) {
|
|
case 'Boolean':
|
|
return html`<input
|
|
type="checkbox"
|
|
?checked=${firstFoundInstantiatedElement[key]}
|
|
@input="${(eventArg: any) => {
|
|
firstFoundInstantiatedElement[key] = eventArg.target.checked;
|
|
}}"
|
|
/>`;
|
|
case 'String':
|
|
return html`<input
|
|
type="text"
|
|
.value=${firstFoundInstantiatedElement[key] || ''}
|
|
@input="${(eventArg: any) => {
|
|
firstFoundInstantiatedElement[key] = eventArg.target.value;
|
|
}}"
|
|
/>`;
|
|
case 'Number':
|
|
return html`<input
|
|
type="number"
|
|
.value=${firstFoundInstantiatedElement[key] ?? ''}
|
|
@input="${(eventArg: any) => {
|
|
firstFoundInstantiatedElement[key] = parseFloat(eventArg.target.value) || 0;
|
|
}}"
|
|
/>`;
|
|
case 'Enum':
|
|
const enumValues: any[] = getEnumValues(property);
|
|
return html`<select
|
|
.value=${firstFoundInstantiatedElement[key] || ''}
|
|
@change="${(eventArg: any) => {
|
|
firstFoundInstantiatedElement[key] = eventArg.target.value;
|
|
}}"
|
|
>
|
|
${enumValues.map((valueArg) => {
|
|
return html`
|
|
<option
|
|
value="${valueArg}"
|
|
>
|
|
${valueArg}
|
|
</option>
|
|
`;
|
|
})}
|
|
</select>`;
|
|
case 'Object':
|
|
case 'Array':
|
|
return html`<button
|
|
class="editor-button"
|
|
style="width: 100%; margin-top: 0.25rem;"
|
|
@click="${() => this.openAdvancedEditor(key, firstFoundInstantiatedElement[key], firstFoundInstantiatedElement)}"
|
|
>
|
|
Edit ${propertyTypeString}
|
|
</button>`;
|
|
default:
|
|
return html`<div style="color: #666; font-size: 0.7rem;">Unsupported type</div>`;
|
|
}
|
|
})()}
|
|
</div>
|
|
`
|
|
);
|
|
} catch (error) {
|
|
console.error(`Error processing property ${key}:`, error);
|
|
// Continue with next property even if this one fails
|
|
}
|
|
}
|
|
this.propertyContent = propertyArray;
|
|
} else {
|
|
console.log(`Cannot extract properties of ${(this.selectedItem as any)?.name}`);
|
|
this.warning = `You selected a page.`;
|
|
return null;
|
|
}
|
|
}
|
|
|
|
public selectTheme(themeArg: TTheme) {
|
|
this.selectedTheme = themeArg;
|
|
this.dispatchEvent(
|
|
new CustomEvent('selectedTheme', {
|
|
detail: themeArg,
|
|
})
|
|
);
|
|
console.log(this.dashboardRef.selectedType);
|
|
this.dashboardRef.buildUrl();
|
|
}
|
|
|
|
public async scheduleUpdate() {
|
|
try {
|
|
await this.createProperties();
|
|
} catch (error) {
|
|
console.error('Error creating properties:', error);
|
|
// Clear property content on error to show clean state
|
|
this.propertyContent = [];
|
|
}
|
|
// Always call super.scheduleUpdate to ensure component updates
|
|
super.scheduleUpdate();
|
|
}
|
|
|
|
public selectViewport(viewport: TEnvironment) {
|
|
this.selectedViewport = viewport;
|
|
setEnvironment(viewport);
|
|
this.dispatchEvent(
|
|
new CustomEvent('selectedViewport', {
|
|
detail: viewport,
|
|
})
|
|
);
|
|
this.dashboardRef.buildUrl();
|
|
}
|
|
|
|
private openAdvancedEditor(propertyName: string, value: any, element: HTMLElement) {
|
|
// Check if this property is already being edited
|
|
const existingEditor = this.editingProperties.find(p => p.name === propertyName && p.element === element);
|
|
if (existingEditor) {
|
|
return; // Property is already open for editing
|
|
}
|
|
|
|
const newEditor = {
|
|
id: `${propertyName}-${Date.now()}`,
|
|
name: propertyName,
|
|
value: value,
|
|
element: element,
|
|
editorValue: JSON.stringify(value, null, 2),
|
|
editorError: ''
|
|
};
|
|
|
|
this.editingProperties = [...this.editingProperties, newEditor];
|
|
|
|
// Notify parent to resize frame if this is the first editor
|
|
if (this.editingProperties.length === 1) {
|
|
this.dispatchEvent(
|
|
new CustomEvent('editorStateChanged', {
|
|
detail: { isOpen: true },
|
|
bubbles: true
|
|
})
|
|
);
|
|
}
|
|
}
|
|
|
|
private handleEditorSave(editorId: string) {
|
|
const editor = this.editingProperties.find(p => p.id === editorId);
|
|
if (!editor) return;
|
|
|
|
try {
|
|
const parsedValue = JSON.parse(editor.editorValue);
|
|
editor.element[editor.name] = parsedValue;
|
|
|
|
// Remove this editor from the list
|
|
this.editingProperties = this.editingProperties.filter(p => p.id !== editorId);
|
|
|
|
// If no more editors, notify parent to resize frame
|
|
if (this.editingProperties.length === 0) {
|
|
this.dispatchEvent(
|
|
new CustomEvent('editorStateChanged', {
|
|
detail: { isOpen: false },
|
|
bubbles: true
|
|
})
|
|
);
|
|
}
|
|
|
|
// Refresh properties display
|
|
this.createProperties();
|
|
} catch (error) {
|
|
// Update error for this specific editor
|
|
const editorIndex = this.editingProperties.findIndex(p => p.id === editorId);
|
|
if (editorIndex !== -1) {
|
|
this.editingProperties[editorIndex].editorError = `Invalid JSON: ${error.message}`;
|
|
this.requestUpdate();
|
|
}
|
|
}
|
|
}
|
|
|
|
private handleEditorCancel(editorId: string) {
|
|
// Remove this editor from the list
|
|
this.editingProperties = this.editingProperties.filter(p => p.id !== editorId);
|
|
|
|
// If no more editors, notify parent to resize frame
|
|
if (this.editingProperties.length === 0) {
|
|
this.dispatchEvent(
|
|
new CustomEvent('editorStateChanged', {
|
|
detail: { isOpen: false },
|
|
bubbles: true
|
|
})
|
|
);
|
|
}
|
|
}
|
|
|
|
private closeAllEditors() {
|
|
this.editingProperties = [];
|
|
|
|
// Notify parent to resize frame back
|
|
this.dispatchEvent(
|
|
new CustomEvent('editorStateChanged', {
|
|
detail: { isOpen: false },
|
|
bubbles: true
|
|
})
|
|
);
|
|
}
|
|
|
|
private toggleFullscreen() {
|
|
this.dispatchEvent(
|
|
new CustomEvent('toggleFullscreen', {
|
|
bubbles: true
|
|
})
|
|
);
|
|
}
|
|
|
|
// ==================== Recording Methods ====================
|
|
|
|
private formatDuration(seconds: number): string {
|
|
const mins = Math.floor(seconds / 60);
|
|
const secs = seconds % 60;
|
|
return `${mins.toString().padStart(2, '0')}:${secs.toString().padStart(2, '0')}`;
|
|
}
|
|
|
|
private handleRecordingButtonClick() {
|
|
if (this.recordingState === 'recording') {
|
|
this.stopRecording();
|
|
} else if (this.recordingState === 'idle') {
|
|
this.recordingState = 'options';
|
|
// Don't request permissions here - just show the options panel
|
|
// Permissions will be requested when user enables audio or starts recording
|
|
} else if (this.recordingState === 'options') {
|
|
this.recordingState = 'idle';
|
|
this.stopAudioMonitoring();
|
|
}
|
|
}
|
|
|
|
private async loadMicrophones(requestPermission: boolean = false) {
|
|
try {
|
|
// Only request permission if explicitly asked (when user enables audio toggle)
|
|
if (requestPermission) {
|
|
await navigator.mediaDevices.getUserMedia({ audio: true }).then(stream => {
|
|
stream.getTracks().forEach(track => track.stop());
|
|
});
|
|
}
|
|
|
|
const devices = await navigator.mediaDevices.enumerateDevices();
|
|
this.availableMicrophones = devices.filter(d => d.kind === 'audioinput');
|
|
|
|
// Auto-select the first microphone if available and we have permission
|
|
if (requestPermission && this.availableMicrophones.length > 0 && !this.selectedMicrophoneId) {
|
|
this.selectedMicrophoneId = this.availableMicrophones[0].deviceId;
|
|
// Start monitoring after auto-selecting
|
|
await this.startAudioMonitoring();
|
|
}
|
|
} catch (error) {
|
|
console.error('Error loading microphones:', error);
|
|
this.availableMicrophones = [];
|
|
}
|
|
}
|
|
|
|
private async handleAudioToggle(enabled: boolean) {
|
|
this.audioEnabled = enabled;
|
|
if (enabled) {
|
|
// Request permission and load microphones when user explicitly enables audio
|
|
await this.loadMicrophones(true);
|
|
} else {
|
|
this.stopAudioMonitoring();
|
|
this.selectedMicrophoneId = '';
|
|
this.audioLevel = 0;
|
|
}
|
|
}
|
|
|
|
private async handleMicrophoneChange(deviceId: string) {
|
|
this.selectedMicrophoneId = deviceId;
|
|
if (deviceId) {
|
|
await this.startAudioMonitoring();
|
|
} else {
|
|
this.stopAudioMonitoring();
|
|
this.audioLevel = 0;
|
|
}
|
|
}
|
|
|
|
private async startAudioMonitoring() {
|
|
this.stopAudioMonitoring();
|
|
|
|
if (!this.selectedMicrophoneId) return;
|
|
|
|
try {
|
|
const stream = await navigator.mediaDevices.getUserMedia({
|
|
audio: { deviceId: { exact: this.selectedMicrophoneId } }
|
|
});
|
|
|
|
this.audioContext = new AudioContext();
|
|
const source = this.audioContext.createMediaStreamSource(stream);
|
|
this.audioAnalyser = this.audioContext.createAnalyser();
|
|
this.audioAnalyser.fftSize = 256;
|
|
source.connect(this.audioAnalyser);
|
|
|
|
const dataArray = new Uint8Array(this.audioAnalyser.frequencyBinCount);
|
|
|
|
this.audioMonitoringInterval = window.setInterval(() => {
|
|
if (this.audioAnalyser) {
|
|
this.audioAnalyser.getByteFrequencyData(dataArray);
|
|
const average = dataArray.reduce((a, b) => a + b) / dataArray.length;
|
|
this.audioLevel = Math.min(100, (average / 128) * 100);
|
|
}
|
|
}, 50);
|
|
|
|
// Store stream for cleanup
|
|
this.currentStream = stream;
|
|
} catch (error) {
|
|
console.error('Error starting audio monitoring:', error);
|
|
this.audioLevel = 0;
|
|
}
|
|
}
|
|
|
|
private stopAudioMonitoring() {
|
|
if (this.audioMonitoringInterval) {
|
|
clearInterval(this.audioMonitoringInterval);
|
|
this.audioMonitoringInterval = null;
|
|
}
|
|
if (this.audioContext) {
|
|
this.audioContext.close();
|
|
this.audioContext = null;
|
|
}
|
|
if (this.currentStream) {
|
|
this.currentStream.getTracks().forEach(track => track.stop());
|
|
this.currentStream = null;
|
|
}
|
|
this.audioAnalyser = null;
|
|
}
|
|
|
|
private async startRecording() {
|
|
try {
|
|
// Stop audio monitoring before recording
|
|
this.stopAudioMonitoring();
|
|
|
|
// Get video stream based on mode
|
|
const displayMediaOptions: DisplayMediaStreamOptions = {
|
|
video: {
|
|
displaySurface: this.recordingMode === 'viewport' ? 'browser' : 'monitor'
|
|
} as MediaTrackConstraints,
|
|
audio: false
|
|
};
|
|
|
|
// Add preferCurrentTab hint for viewport mode
|
|
if (this.recordingMode === 'viewport') {
|
|
(displayMediaOptions as any).preferCurrentTab = true;
|
|
}
|
|
|
|
const videoStream = await navigator.mediaDevices.getDisplayMedia(displayMediaOptions);
|
|
|
|
// If viewport mode, try to crop to viewport element using Element Capture API
|
|
if (this.recordingMode === 'viewport') {
|
|
try {
|
|
const wccFrame = await this.dashboardRef.wccFrame;
|
|
const viewport = await wccFrame.getViewportElement();
|
|
|
|
// Check if Element Capture API is available (Chrome 104+)
|
|
if ('CropTarget' in window) {
|
|
const cropTarget = await (window as any).CropTarget.fromElement(viewport);
|
|
const [videoTrack] = videoStream.getVideoTracks();
|
|
await (videoTrack as any).cropTo(cropTarget);
|
|
}
|
|
} catch (e) {
|
|
console.warn('Element Capture not supported, recording full tab:', e);
|
|
}
|
|
}
|
|
|
|
// Combine video with audio if enabled
|
|
let combinedStream = videoStream;
|
|
if (this.audioEnabled && this.selectedMicrophoneId) {
|
|
try {
|
|
const audioStream = await navigator.mediaDevices.getUserMedia({
|
|
audio: { deviceId: { exact: this.selectedMicrophoneId } }
|
|
});
|
|
combinedStream = new MediaStream([
|
|
...videoStream.getVideoTracks(),
|
|
...audioStream.getAudioTracks()
|
|
]);
|
|
} catch (audioError) {
|
|
console.warn('Could not add audio:', audioError);
|
|
}
|
|
}
|
|
|
|
// Store stream for cleanup
|
|
this.currentStream = combinedStream;
|
|
|
|
// Create MediaRecorder
|
|
const mimeType = MediaRecorder.isTypeSupported('video/webm;codecs=vp9')
|
|
? 'video/webm;codecs=vp9'
|
|
: 'video/webm';
|
|
|
|
this.mediaRecorder = new MediaRecorder(combinedStream, { mimeType });
|
|
this.recordedChunks = [];
|
|
|
|
this.mediaRecorder.ondataavailable = (e) => {
|
|
if (e.data.size > 0) {
|
|
this.recordedChunks.push(e.data);
|
|
}
|
|
};
|
|
|
|
this.mediaRecorder.onstop = () => this.handleRecordingComplete();
|
|
|
|
// Handle stream ending (user clicks "Stop sharing")
|
|
videoStream.getVideoTracks()[0].onended = () => {
|
|
if (this.recordingState === 'recording') {
|
|
this.stopRecording();
|
|
}
|
|
};
|
|
|
|
this.mediaRecorder.start(1000); // Capture in 1-second chunks
|
|
|
|
// Start duration timer
|
|
this.recordingDuration = 0;
|
|
this.durationInterval = window.setInterval(() => {
|
|
this.recordingDuration++;
|
|
}, 1000);
|
|
|
|
this.recordingState = 'recording';
|
|
} catch (error) {
|
|
console.error('Error starting recording:', error);
|
|
this.recordingState = 'idle';
|
|
}
|
|
}
|
|
|
|
private stopRecording() {
|
|
if (this.mediaRecorder && this.mediaRecorder.state !== 'inactive') {
|
|
this.mediaRecorder.stop();
|
|
}
|
|
|
|
if (this.durationInterval) {
|
|
clearInterval(this.durationInterval);
|
|
this.durationInterval = null;
|
|
}
|
|
}
|
|
|
|
private handleRecordingComplete() {
|
|
// Create blob from recorded chunks
|
|
this.recordedBlob = new Blob(this.recordedChunks, { type: 'video/webm' });
|
|
|
|
// Create preview URL
|
|
if (this.previewVideoUrl) {
|
|
URL.revokeObjectURL(this.previewVideoUrl);
|
|
}
|
|
this.previewVideoUrl = URL.createObjectURL(this.recordedBlob);
|
|
|
|
// Stop all tracks
|
|
if (this.currentStream) {
|
|
this.currentStream.getTracks().forEach(track => track.stop());
|
|
this.currentStream = null;
|
|
}
|
|
|
|
this.recordingState = 'preview';
|
|
}
|
|
|
|
private discardRecording() {
|
|
if (this.previewVideoUrl) {
|
|
URL.revokeObjectURL(this.previewVideoUrl);
|
|
this.previewVideoUrl = '';
|
|
}
|
|
this.recordedBlob = null;
|
|
this.recordedChunks = [];
|
|
this.recordingDuration = 0;
|
|
this.recordingState = 'idle';
|
|
}
|
|
|
|
private downloadRecording() {
|
|
if (!this.recordedBlob) return;
|
|
|
|
const timestamp = new Date().toISOString().replace(/[:.]/g, '-').slice(0, 19);
|
|
const filename = `wcctools-recording-${timestamp}.webm`;
|
|
|
|
const a = document.createElement('a');
|
|
a.href = this.previewVideoUrl;
|
|
a.download = filename;
|
|
document.body.appendChild(a);
|
|
a.click();
|
|
document.body.removeChild(a);
|
|
|
|
// Clean up after download
|
|
this.discardRecording();
|
|
}
|
|
}
|