mirror of
https://github.com/misskey-dev/misskey.git
synced 2025-04-08 14:36:38 +09:00

* wip * wip * wip * wip * revert unnecessary changes * wip * refactor(frontend): enforce verbatimModuleSyntax * fix * refactor(frontend-shared): enforce verbatimModuleSyntax * wip * refactor(frontend-embed): enforce verbatimModuleSyntax * enforce consistent-type-imports * fix lint config * attemt to fix ci * fix lint * fix * fix * fix
34 lines
795 B
TypeScript
34 lines
795 B
TypeScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and misskey-project
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
import { getCurrentInstance } from 'vue';
|
|
import type { ComponentInternalInstance } from 'vue';
|
|
|
|
export function isDebuggerEnabled(id: number): boolean {
|
|
try {
|
|
return localStorage.getItem(`DEBUG_${id}`) !== null;
|
|
} catch {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
export function switchDebuggerEnabled(id: number, enabled: boolean): void {
|
|
if (enabled) {
|
|
localStorage.setItem(`DEBUG_${id}`, '');
|
|
} else {
|
|
localStorage.removeItem(`DEBUG_${id}`);
|
|
}
|
|
}
|
|
|
|
export function stackTraceInstances(): ComponentInternalInstance[] {
|
|
let instance = getCurrentInstance();
|
|
const stack: ComponentInternalInstance[] = [];
|
|
while (instance) {
|
|
stack.push(instance);
|
|
instance = instance.parent;
|
|
}
|
|
return stack;
|
|
}
|