bykovme/nswallet

View on GitHub

Showing 226 of 488 total issues

Method GeneratePDF has a Cognitive Complexity of 37 (exceeds 20 allowed). Consider refactoring.
Open

        public void GeneratePDF()
        {
            CleanCache();

            // Get NSWItems
Severity: Minor
Found in src/NSWallet/Droid/Interfaces/ExportService.cs - About 3 hrs 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

Method popupWithList has 76 lines of code (exceeds 25 allowed). Consider refactoring.
Open

        StackLayout popupWithList(string selectedProperty, string itemSourceProperty, string iconProperty, string nameProperty, string headerText = null, string headerIcon = null, string headerCommandProperty = null)
        {
            var listLayout = new StackLayout { Spacing = 0 };

            if (headerText != null) {
Severity: Major
Found in src/NSWallet/NSWallet/Views/MainScreen/Fields/ManageFieldView.cs - About 3 hrs to fix

    Method GetPurchases has 74 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

            public static async Task<PremiumStatus> GetPurchases()
            {
                try
                {
                    // Temporary BETA for Mac Desktop version
    Severity: Major
    Found in src/NSWallet/NSWallet/Premium/PremiumManagement.cs - About 2 hrs to fix

      Method LocalizationExceptionsLangPT has 73 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

              static bool LocalizationExceptionsLangPT(string trTag)
              {
                  switch (trTag)
                  {
                      case "premium_status":

        Method UpdateBackup has a Cognitive Complexity of 36 (exceeds 20 allowed). Consider refactoring.
        Open

                public static void UpdateBackup(string pathFrom, string pathTo, bool isAuthorized = false)
                {
                    try {
                        bool errorState = false;
                        var tempDBFolder = createTempDBFolder();
        Severity: Minor
        Found in src/NSWallet/NSWallet/Helpers/Backups/BackupManager.cs - About 2 hrs 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

        Method LocalizationExceptionsLangCA has 72 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

                static bool LocalizationExceptionsLangCA(string trTag)
                {
                    switch (trTag)
                    {
                        case "error":

          Method LocalizationExceptionsLangES has 71 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

                  static bool LocalizationExceptionsLangES(string trTag)
                  {
                      switch (trTag)
                      {
                          case "error":

            Method AddSettingButton has 71 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

                    void AddSettingButton(StackLayout stack, string modelCommand, string menuName, string menuIcon, string chosenSelectionProperty = null, bool isPremium = false)
                    {
                        var itemSettingLayout = new StackLayout {
                            VerticalOptions = LayoutOptions.CenterAndExpand,
                            HorizontalOptions = LayoutOptions.Fill,
            Severity: Major
            Found in src/NSWallet/NSWallet/Views/SettingsScreen/SettingsScreenView.cs - About 2 hrs to fix

              Method onActionSend has a Cognitive Complexity of 35 (exceeds 20 allowed). Consider refactoring.
              Open

                      void onActionSend()
                      {
                          try {
                              if (Intent.Action == Intent.ActionSend) {
                                  var uriFromExtras = Intent.GetParcelableExtra(Intent.ExtraStream) as Android.Net.Uri;
              Severity: Minor
              Found in src/NSWallet/Droid/MainActivity.cs - About 2 hrs 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

              Method Purchase has 68 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                      public static async Task<string> Purchase(PremiumStatus premiumStatus)
                      {
                          string productID = undetected_product_id;
              
                          switch (premiumStatus)
              Severity: Major
              Found in src/NSWallet/NSWallet/Premium/PremiumManagement.cs - About 2 hrs to fix

                Method GetBottomMenu has 67 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                        public StackLayout GetBottomMenu()
                        {
                            var mainPanel = new Grid {
                                BackgroundColor = Theme.Current.AppHeaderBackground,
                                HeightRequest = 100,

                  Class FileService has 24 methods (exceeds 20 allowed). Consider refactoring.
                  Open

                      public class FileService : IFile
                      {
                          const string OLD_DROID_FILEPATH = "/app_nswallet/nswallet.dat";
                          const string OLD_DROID_DIRPATH = "/app_nswallet";
                  
                  
                  Severity: Minor
                  Found in src/NSWallet/Droid/Interfaces/FileService.cs - About 2 hrs to fix

                    Class FileService has 24 methods (exceeds 20 allowed). Consider refactoring.
                    Open

                        public class FileService : IFile
                        {
                            const string DATABASE_IOS_FOLDER = @"/.nsw/nswallet";
                    
                            public string CheckOldFile()
                    Severity: Minor
                    Found in src/NSWallet/NSWallet.Mac/Interfaces/FileService.cs - About 2 hrs to fix

                      Class FileService has 24 methods (exceeds 20 allowed). Consider refactoring.
                      Open

                          public class FileService : IFile
                          {
                              const string DATABASE_IOS_FOLDER = @"/.nsw/nswallet";
                      
                              public string CheckOldFile()
                      Severity: Minor
                      Found in src/NSWallet/iOS/Interfaces/FileService.cs - About 2 hrs to fix

                        Method LocalizationExceptionsLangDE has 64 lines of code (exceeds 25 allowed). Consider refactoring.
                        Open

                                static bool LocalizationExceptionsLangDE(string trTag)
                                {
                                    switch (trTag)
                                    {
                                        case "version_label":

                          Class IFile has 23 methods (exceeds 20 allowed). Consider refactoring.
                          Open

                              public interface IFile
                              {
                                  string GetInternalFilePath();
                                  string GetInternalDirPath();
                                  string CheckOldFile();
                          Severity: Minor
                          Found in src/NSWallet/NSWallet/Interfaces/IFile.cs - About 2 hrs to fix

                            Method AddViewToLayoutAutoHeightEnabled has 61 lines of code (exceeds 25 allowed). Consider refactoring.
                            Open

                                    void AddViewToLayoutAutoHeightEnabled(View view, int containerCount, int colNumber)
                                    {
                                        if (_desiredColumnCount > containerCount)
                                        {
                                            int diff = _desiredColumnCount - containerCount;

                              File FileService.cs has 267 lines of code (exceeds 250 allowed). Consider refactoring.
                              Open

                              using NSWallet.Droid;
                              using Xamarin.Forms;
                              using NSWallet.Shared;
                              using System.IO;
                              using System.IO.Compression;
                              Severity: Minor
                              Found in src/NSWallet/Droid/Interfaces/FileService.cs - About 2 hrs to fix

                                Method LocalizationExceptionsLangPL has 60 lines of code (exceeds 25 allowed). Consider refactoring.
                                Open

                                        static bool LocalizationExceptionsLangPL(string trTag)
                                        {
                                            switch (trTag)
                                            {
                                                case "build_label":

                                  File FileService.cs has 266 lines of code (exceeds 250 allowed). Consider refactoring.
                                  Open

                                  using System;
                                  using System.Collections.Generic;
                                  using System.IO;
                                  using Xamarin.Forms;
                                  using NSWallet.iOS;
                                  Severity: Minor
                                  Found in src/NSWallet/iOS/Interfaces/FileService.cs - About 2 hrs to fix
                                    Severity
                                    Category
                                    Status
                                    Source
                                    Language