- Migrate to `electron-log` v5.X.X, centralizing log files to adhere to best-practices. - Add critical event logging in the log file. - Replace `ElectronLog` type with `LogFunctions` for better abstraction. - Unify log handling in `desktop-runtime-error` by removing `renderer.log` due to `electron-log` v5 changes. - Update and extend logger interfaces, removing 'I' prefix and adding common log levels to abstract `electron-log` completely. - Move logger interfaces to the application layer as it's cross-cutting concern, meanwhile keeping the implementations in the infrastructure layer. - Introduce `useLogger` hook for easier logging in Vue components. - Simplify `WindowVariables` by removing nullable properties. - Improve documentation to clearly differentiate between desktop and web versions, outlining specific features of each.
75 lines
1.4 KiB
Vue
75 lines
1.4 KiB
Vue
<template>
|
|
<div class="dev-toolkit">
|
|
<div class="title">
|
|
Tools
|
|
</div>
|
|
<hr />
|
|
<button
|
|
v-for="action in devActions"
|
|
:key="action.name"
|
|
type="button"
|
|
@click="action.handler"
|
|
>
|
|
{{ action.name }}
|
|
</button>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { defineComponent } from 'vue';
|
|
import { injectKey } from '@/presentation/injectionSymbols';
|
|
import { dumpNames } from './DumpNames';
|
|
|
|
export default defineComponent({
|
|
setup() {
|
|
const { log } = injectKey((keys) => keys.useLogger);
|
|
const devActions: readonly DevAction[] = [
|
|
{
|
|
name: 'Log script/category names',
|
|
handler: async () => {
|
|
const names = await dumpNames();
|
|
log.info(names);
|
|
},
|
|
},
|
|
];
|
|
return {
|
|
devActions,
|
|
};
|
|
},
|
|
});
|
|
|
|
interface DevAction {
|
|
readonly name: string;
|
|
readonly handler: () => void | Promise<void>;
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
@use "@/presentation/assets/styles/main" as *;
|
|
|
|
.dev-toolkit {
|
|
position: fixed;
|
|
top: 0;
|
|
right: 0;
|
|
background-color: rgba($color-on-surface, 0.5);
|
|
color: $color-on-primary;
|
|
padding: 10px;
|
|
z-index: 10000;
|
|
|
|
.title {
|
|
font-weight: bold;
|
|
text-align: center;
|
|
}
|
|
|
|
button {
|
|
display: block;
|
|
margin-bottom: 10px;
|
|
padding: 5px 10px;
|
|
background-color: $color-primary;
|
|
color: $color-on-primary;
|
|
border: none;
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
</style>
|