feat: initial daily-timer implementation

This commit is contained in:
Mikhail Kiselev
2026-02-08 05:17:37 +03:00
parent 537f72eb51
commit ef23291bdd
37 changed files with 7779 additions and 0 deletions

53
frontend/wailsjs/go/app/App.d.ts vendored Executable file
View File

@@ -0,0 +1,53 @@
// Cynhyrchwyd y ffeil hon yn awtomatig. PEIDIWCH Â MODIWL
// This file is automatically generated. DO NOT EDIT
import {models} from '../models';
export function AddParticipant(arg1:string,arg2:string,arg3:number):Promise<models.Participant>;
export function DeleteAllSessions():Promise<void>;
export function DeleteParticipant(arg1:number):Promise<void>;
export function DeleteSession(arg1:number):Promise<void>;
export function ExportCSV(arg1:string,arg2:string):Promise<string>;
export function ExportData(arg1:string,arg2:string):Promise<string>;
export function GetMeeting():Promise<models.Meeting>;
export function GetParticipants():Promise<Array<models.Participant>>;
export function GetSession(arg1:number):Promise<models.MeetingSession>;
export function GetSessions(arg1:number,arg2:number):Promise<Array<models.MeetingSession>>;
export function GetSettings():Promise<models.Settings>;
export function GetSoundsDir():Promise<string>;
export function GetStatistics(arg1:string,arg2:string):Promise<models.AggregatedStats>;
export function GetTimerState():Promise<models.TimerState>;
export function NextSpeaker():Promise<void>;
export function PauseMeeting():Promise<void>;
export function RemoveFromQueue(arg1:number):Promise<void>;
export function ReorderParticipants(arg1:Array<number>):Promise<void>;
export function ResumeMeeting():Promise<void>;
export function SkipSpeaker():Promise<void>;
export function StartMeeting(arg1:Array<number>,arg2:Record<number, boolean>):Promise<void>;
export function StopMeeting():Promise<void>;
export function UpdateMeeting(arg1:string,arg2:number):Promise<void>;
export function UpdateParticipant(arg1:number,arg2:string,arg3:string,arg4:number):Promise<void>;
export function UpdateSettings(arg1:models.Settings):Promise<void>;

103
frontend/wailsjs/go/app/App.js Executable file
View File

@@ -0,0 +1,103 @@
// @ts-check
// Cynhyrchwyd y ffeil hon yn awtomatig. PEIDIWCH Â MODIWL
// This file is automatically generated. DO NOT EDIT
export function AddParticipant(arg1, arg2, arg3) {
return window['go']['app']['App']['AddParticipant'](arg1, arg2, arg3);
}
export function DeleteAllSessions() {
return window['go']['app']['App']['DeleteAllSessions']();
}
export function DeleteParticipant(arg1) {
return window['go']['app']['App']['DeleteParticipant'](arg1);
}
export function DeleteSession(arg1) {
return window['go']['app']['App']['DeleteSession'](arg1);
}
export function ExportCSV(arg1, arg2) {
return window['go']['app']['App']['ExportCSV'](arg1, arg2);
}
export function ExportData(arg1, arg2) {
return window['go']['app']['App']['ExportData'](arg1, arg2);
}
export function GetMeeting() {
return window['go']['app']['App']['GetMeeting']();
}
export function GetParticipants() {
return window['go']['app']['App']['GetParticipants']();
}
export function GetSession(arg1) {
return window['go']['app']['App']['GetSession'](arg1);
}
export function GetSessions(arg1, arg2) {
return window['go']['app']['App']['GetSessions'](arg1, arg2);
}
export function GetSettings() {
return window['go']['app']['App']['GetSettings']();
}
export function GetSoundsDir() {
return window['go']['app']['App']['GetSoundsDir']();
}
export function GetStatistics(arg1, arg2) {
return window['go']['app']['App']['GetStatistics'](arg1, arg2);
}
export function GetTimerState() {
return window['go']['app']['App']['GetTimerState']();
}
export function NextSpeaker() {
return window['go']['app']['App']['NextSpeaker']();
}
export function PauseMeeting() {
return window['go']['app']['App']['PauseMeeting']();
}
export function RemoveFromQueue(arg1) {
return window['go']['app']['App']['RemoveFromQueue'](arg1);
}
export function ReorderParticipants(arg1) {
return window['go']['app']['App']['ReorderParticipants'](arg1);
}
export function ResumeMeeting() {
return window['go']['app']['App']['ResumeMeeting']();
}
export function SkipSpeaker() {
return window['go']['app']['App']['SkipSpeaker']();
}
export function StartMeeting(arg1, arg2) {
return window['go']['app']['App']['StartMeeting'](arg1, arg2);
}
export function StopMeeting() {
return window['go']['app']['App']['StopMeeting']();
}
export function UpdateMeeting(arg1, arg2) {
return window['go']['app']['App']['UpdateMeeting'](arg1, arg2);
}
export function UpdateParticipant(arg1, arg2, arg3, arg4) {
return window['go']['app']['App']['UpdateParticipant'](arg1, arg2, arg3, arg4);
}
export function UpdateSettings(arg1) {
return window['go']['app']['App']['UpdateSettings'](arg1);
}