Some minor code cleanups
This commit is contained in:
parent
90e662a9c8
commit
e77b9e1184
5 changed files with 17 additions and 48 deletions
|
@ -9,7 +9,6 @@ import {
|
||||||
IdentitifyType,
|
IdentitifyType,
|
||||||
Identity
|
Identity
|
||||||
} from "tc-shared/profiles/Identity";
|
} from "tc-shared/profiles/Identity";
|
||||||
import {settings} from "tc-shared/settings";
|
|
||||||
import {arrayBufferBase64, base64_encode_ab, str2ab8} from "tc-shared/utils/buffers";
|
import {arrayBufferBase64, base64_encode_ab, str2ab8} from "tc-shared/utils/buffers";
|
||||||
import {AbstractServerConnection} from "tc-shared/connection/ConnectionBase";
|
import {AbstractServerConnection} from "tc-shared/connection/ConnectionBase";
|
||||||
import {CommandResult} from "tc-shared/connection/ServerConnectionDeclaration";
|
import {CommandResult} from "tc-shared/connection/ServerConnectionDeclaration";
|
||||||
|
@ -259,7 +258,7 @@ export class TeaSpeakHandshakeHandler extends AbstractHandshakeIdentityHandler {
|
||||||
error = error.extra_message || error.message;
|
error = error.extra_message || error.message;
|
||||||
this.trigger_fail("failed to execute proof (" + error + ")");
|
this.trigger_fail("failed to execute proof (" + error + ")");
|
||||||
}).then(() => this.trigger_success());
|
}).then(() => this.trigger_success());
|
||||||
}).catch(error => {
|
}).catch(() => {
|
||||||
this.trigger_fail("failed to sign message");
|
this.trigger_fail("failed to sign message");
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -702,10 +701,10 @@ export class TeaSpeakIdentity implements Identity {
|
||||||
|
|
||||||
const exit = () => {
|
const exit = () => {
|
||||||
const timeout = setTimeout(() => resolve(true), 1000);
|
const timeout = setTimeout(() => resolve(true), 1000);
|
||||||
Promise.all(worker_promise).then(result => {
|
Promise.all(worker_promise).then(() => {
|
||||||
clearTimeout(timeout);
|
clearTimeout(timeout);
|
||||||
resolve(true);
|
resolve(true);
|
||||||
}).catch(error => resolve(true));
|
}).catch(() => resolve(true));
|
||||||
active = false;
|
active = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -5,12 +5,6 @@ import {LevelMeter} from "tc-shared/voice/RecorderBase";
|
||||||
import * as log from "tc-shared/log";
|
import * as log from "tc-shared/log";
|
||||||
import {LogCategory, logWarn} from "tc-shared/log";
|
import {LogCategory, logWarn} from "tc-shared/log";
|
||||||
import {default_recorder} from "tc-shared/voice/RecorderProfile";
|
import {default_recorder} from "tc-shared/voice/RecorderProfile";
|
||||||
import * as loader from "tc-loader";
|
|
||||||
import {Stage} from "tc-loader";
|
|
||||||
import {spawnReactModal} from "tc-shared/ui/react-elements/Modal";
|
|
||||||
import {InternalModal} from "tc-shared/ui/react-elements/internal-modal/Controller";
|
|
||||||
import {Translatable} from "tc-shared/ui/react-elements/i18n";
|
|
||||||
import {MicrophoneSettings} from "tc-shared/ui/modal/settings/MicrophoneRenderer";
|
|
||||||
import {DeviceListState, getRecorderBackend, IDevice} from "tc-shared/audio/recorder";
|
import {DeviceListState, getRecorderBackend, IDevice} from "tc-shared/audio/recorder";
|
||||||
|
|
||||||
export type MicrophoneSetting = "volume" | "vad-type" | "ppt-key" | "ppt-release-delay" | "ppt-release-delay-active" | "threshold-threshold";
|
export type MicrophoneSetting = "volume" | "vad-type" | "ppt-key" | "ppt-release-delay" | "ppt-release-delay-active" | "threshold-threshold";
|
||||||
|
@ -315,6 +309,14 @@ export function initialize_audio_microphone_controller(events: Registry<Micropho
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
import * as loader from "tc-loader";
|
||||||
|
import {Stage} from "tc-loader";
|
||||||
|
import {spawnReactModal} from "tc-shared/ui/react-elements/Modal";
|
||||||
|
import {InternalModal} from "tc-shared/ui/react-elements/internal-modal/Controller";
|
||||||
|
import {Translatable} from "tc-shared/ui/react-elements/i18n";
|
||||||
|
import {MicrophoneSettings} from "tc-shared/ui/modal/settings/MicrophoneRenderer";
|
||||||
|
|
||||||
loader.register_task(Stage.LOADED, {
|
loader.register_task(Stage.LOADED, {
|
||||||
name: "test",
|
name: "test",
|
||||||
function: async () => {
|
function: async () => {
|
||||||
|
@ -345,4 +347,5 @@ loader.register_task(Stage.LOADED, {
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
priority: -2
|
priority: -2
|
||||||
})
|
})
|
||||||
|
*/
|
|
@ -77,7 +77,10 @@ export abstract class AbstractExternalModalController extends EventControllerBas
|
||||||
});
|
});
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
this.modalState = ModalState.DESTROYED;
|
this.modalState = ModalState.DESTROYED;
|
||||||
this.doDestroyWindow();
|
if(__build.mode !== "debug") {
|
||||||
|
/* do not destroy the window in debug mode in order to debug what happened */
|
||||||
|
this.doDestroyWindow();
|
||||||
|
}
|
||||||
throw e;
|
throw e;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,35 +0,0 @@
|
||||||
html, body {
|
|
||||||
overflow-y: hidden;
|
|
||||||
height: 100%;
|
|
||||||
width: 100%;
|
|
||||||
position: fixed;
|
|
||||||
}
|
|
||||||
|
|
||||||
.app-container {
|
|
||||||
display: flex;
|
|
||||||
justify-content: stretch;
|
|
||||||
position: absolute;
|
|
||||||
top: 1.5em !important;
|
|
||||||
bottom: 0;
|
|
||||||
transition: all 0.5s linear;
|
|
||||||
}
|
|
||||||
.app-container .app {
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
margin: 0;
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
resize: both;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media only screen and (max-width: 650px) {
|
|
||||||
html, body {
|
|
||||||
padding: 0 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.app-container {
|
|
||||||
bottom: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/*# sourceMappingURL=main.css.map */
|
|
|
@ -1 +0,0 @@
|
||||||
{"version":3,"sourceRoot":"","sources":["main.scss"],"names":[],"mappings":"AAAA;EACC;EAEG;EACA;EACA;;;AAGJ;EACC;EACA;EACA;EAEA;EACG;EAEA;;AAEH;EACC;EACA;EACA;EAEA;EAAe;EAAwB;;;AAKzC;EACC;IACC;;;EAGD;IACC","file":"main.css"}
|
|
Loading…
Add table
Reference in a new issue