jiahaog/nativefier

View on GitHub
app/src/components/mainWindow.ts

Summary

Maintainability
C
1 day
Test Coverage

Function createMainWindow has 80 lines of code (exceeds 25 allowed). Consider refactoring.
Open

export async function createMainWindow(
  nativefierOptions: OutputOptions,
  setDockBadge: (value: number | string, bounce?: boolean) => void,
): Promise<BrowserWindow> {
  const options = { ...nativefierOptions };
Severity: Major
Found in app/src/components/mainWindow.ts - About 3 hrs to fix

    File mainWindow.ts has 275 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    import * as fs from 'fs';
    import * as path from 'path';
    
    import {
      desktopCapturer,
    Severity: Minor
    Found in app/src/components/mainWindow.ts - About 2 hrs to fix

      Function setupSessionInteraction has 52 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      function setupSessionInteraction(window: BrowserWindow): void {
        // See API.md / "Accessing The Electron Session"
        ipcMain.on(
          'session-interaction',
          (event, request: SessionInteractionRequest) => {
      Severity: Major
      Found in app/src/components/mainWindow.ts - About 2 hrs to fix

        Function createMainWindow has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
        Open

        export async function createMainWindow(
          nativefierOptions: OutputOptions,
          setDockBadge: (value: number | string, bounce?: boolean) => void,
        ): Promise<BrowserWindow> {
          const options = { ...nativefierOptions };
        Severity: Minor
        Found in app/src/components/mainWindow.ts - About 1 hr to fix

        Cognitive Complexity

        Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

        A method's cognitive complexity is based on a few simple rules:

        • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
        • Code is considered more complex for each "break in the linear flow of the code"
        • Code is considered more complex when "flow breaking structures are nested"

        Further reading

        Function setupCloseEvent has 26 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

        function setupCloseEvent(options: OutputOptions, window: BrowserWindow): void {
          window.on('close', (event: Event) => {
            log.debug('mainWindow.close', event);
            if (window.isFullScreen()) {
              if (nativeTabsSupported()) {
        Severity: Minor
        Found in app/src/components/mainWindow.ts - About 1 hr to fix

          There are no issues that match your filters.

          Category
          Status