igara/syonet_seven

View on GitHub

Showing 138 of 138 total issues

Similar blocks of code found in 2 locations. Consider refactoring.
Open

export const callItem = async (name: string): Promise<string> => {
  const result = await fetch(
    `https://raw.githubusercontent.com/igara/qiita-export/master/data/igara/${name}/README.html`,
    {
      method: "GET",
Severity: Major
Found in nodejs/www/libs/fetchs/github/qiita.ts and 1 other location - About 2 hrs to fix
nodejs/www/libs/fetchs/github/hatena.ts on lines 29..39

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 78.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

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

const BlogsSpeakerdeckDeskPageComponent = () => {
  const state = useSelector((state: AppState) => state);
  const dispatch = useDispatch();
  const router = useRouter();
  let name = process.browser
Severity: Major
Found in nodejs/www/pages/blogs/speakerdeck/[name].tsx - About 2 hrs to fix

    Function google has 50 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    export const google = async (req: express.Request, res: express.Response) => {
      let query = "";
    
      try {
        if (!req.user) throw new Error("not user");
    Severity: Minor
    Found in nodejs/api/src/passport/google.ts - About 2 hrs to fix

      Function github has 50 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      export const github = async (req: express.Request, res: express.Response) => {
        let query = "";
      
        try {
          if (!req.user) throw new Error("not user");
      Severity: Minor
      Found in nodejs/api/src/passport/github.ts - About 2 hrs to fix

        Function BlogsHatenaPageComponent has 48 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

        const BlogsHatenaPageComponent = () => {
          const state = useSelector((state: AppState) => state);
          const dispatch = useDispatch();
        
          const [loadCheckAuth] = useLazyQuery<CheckAuth>(CHECK_AUTH, {
        Severity: Minor
        Found in nodejs/www/pages/blogs/hatena/index.tsx - About 1 hr to fix

          Function BlogsQiitaPageComponent has 48 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

          const BlogsQiitaPageComponent = () => {
            const state = useSelector((state: AppState) => state);
            const dispatch = useDispatch();
          
            const [loadCheckAuth] = useLazyQuery<CheckAuth>(CHECK_AUTH, {
          Severity: Minor
          Found in nodejs/www/pages/blogs/qiita/index.tsx - About 1 hr to fix

            Function LoginPageComponent has 48 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

            const LoginPageComponent = () => {
              const host = process.env.API_HOST;
              const dispatch = useDispatch();
              const [loadCheckAuth] = useLazyQuery<CheckAuth>(CHECK_AUTH, {
                onCompleted: async checkAuth => {
            Severity: Minor
            Found in nodejs/www/pages/login/index.tsx - About 1 hr to fix

              Function BlogsSpeakerdeckPageComponent has 48 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

              const BlogsSpeakerdeckPageComponent = () => {
                const state = useSelector((state: AppState) => state);
                const dispatch = useDispatch();
              
                const [loadCheckAuth] = useLazyQuery<CheckAuth>(CHECK_AUTH, {
              Severity: Minor
              Found in nodejs/www/pages/blogs/speakerdeck/index.tsx - About 1 hr to fix

                Function patchBug has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
                Open

                  static patchBug(typeormConnection: any) {
                    // this is a copypasta of the existing typeorm Connection method
                    // with one line changed
                    // @ts-ignore
                    typeormConnection.prototype.findMetadata = function(
                Severity: Minor
                Found in nodejs/api/src/models/typeorm/helper.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 requestWebpush has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
                Open

                export const requestWebpush = async () => {
                  if (typeof window === "undefined") return;
                  if (typeof navigator === "undefined" || typeof navigator.serviceWorker === "undefined") return;
                  if (typeof Notification === "undefined" || typeof Notification.requestPermission === "undefined") return;
                
                
                Severity: Minor
                Found in nodejs/www/libs/apollo/gql/webpush.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

                Similar blocks of code found in 3 locations. Consider refactoring.
                Open

                export const getServerSideProps = wrapper.getServerSideProps(async context => {
                  await context.store.dispatch<any>(getItems.action());
                
                  // await createOGPImage({
                  //   path: ogp.path,
                Severity: Major
                Found in nodejs/www/pages/blogs/qiita/index.tsx and 2 other locations - About 1 hr to fix
                nodejs/www/pages/blogs/hatena/index.tsx on lines 78..89
                nodejs/www/pages/blogs/speakerdeck/index.tsx on lines 78..89

                Duplicated Code

                Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                Tuning

                This issue has a mass of 72.

                We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                Refactorings

                Further Reading

                Similar blocks of code found in 3 locations. Consider refactoring.
                Open

                export const getServerSideProps = wrapper.getServerSideProps(async context => {
                  await context.store.dispatch<any>(getDecks.action());
                
                  // await createOGPImage({
                  //   path: ogp.path,
                Severity: Major
                Found in nodejs/www/pages/blogs/speakerdeck/index.tsx and 2 other locations - About 1 hr to fix
                nodejs/www/pages/blogs/hatena/index.tsx on lines 78..89
                nodejs/www/pages/blogs/qiita/index.tsx on lines 78..89

                Duplicated Code

                Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                Tuning

                This issue has a mass of 72.

                We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                Refactorings

                Further Reading

                Similar blocks of code found in 3 locations. Consider refactoring.
                Open

                export const getServerSideProps = wrapper.getServerSideProps(async context => {
                  await context.store.dispatch<any>(getEntries.action());
                
                  // await createOGPImage({
                  //   path: ogp.path,
                Severity: Major
                Found in nodejs/www/pages/blogs/hatena/index.tsx and 2 other locations - About 1 hr to fix
                nodejs/www/pages/blogs/qiita/index.tsx on lines 78..89
                nodejs/www/pages/blogs/speakerdeck/index.tsx on lines 78..89

                Duplicated Code

                Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                Tuning

                This issue has a mass of 72.

                We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                Refactorings

                Further Reading

                Function IndexPageComponent has 46 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                const IndexPageComponent = (props: Props) => {
                  const dispatch = useDispatch();
                  const [loadCheckAuth] = useLazyQuery<CheckAuth>(CHECK_AUTH, {
                    onCompleted: async checkAuth => {
                      if (!checkAuth.checkAuth) {
                Severity: Minor
                Found in nodejs/www/pages/index.tsx - About 1 hr to fix

                  Function onload has 44 lines of code (exceeds 25 allowed). Consider refactoring.
                  Open

                        fileReader.onload = async evt => {
                          if (evt.target && evt.target.result) {
                            const Wavesurfer = await import("wavesurfer.js");
                            // @ts-ignore
                            const timelinePlugin = await import("wavesurfer.js/dist/plugin/wavesurfer.timeline.js");
                  Severity: Minor
                  Found in nodejs/www/pages/tools/sound/index.tsx - About 1 hr to fix

                    Function requestWebpush has 43 lines of code (exceeds 25 allowed). Consider refactoring.
                    Open

                    export const requestWebpush = async () => {
                      if (typeof window === "undefined") return;
                      if (typeof navigator === "undefined" || typeof navigator.serviceWorker === "undefined") return;
                      if (typeof Notification === "undefined" || typeof Notification.requestPermission === "undefined") return;
                    
                    
                    Severity: Minor
                    Found in nodejs/www/libs/apollo/gql/webpush.ts - About 1 hr to fix

                      Identical blocks of code found in 2 locations. Consider refactoring.
                      Open

                      export type GetMultiFormatDateTimeReturnOption = {
                        Date: Date;
                        seconds: number;
                        minutes: number;
                        hours: number;
                      Severity: Major
                      Found in nodejs/www/libs/datetime.ts and 1 other location - About 1 hr to fix
                      nodejs/api/src/libs/datetime.ts on lines 14..23

                      Duplicated Code

                      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                      Tuning

                      This issue has a mass of 69.

                      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                      Refactorings

                      Further Reading

                      Identical blocks of code found in 2 locations. Consider refactoring.
                      Open

                      export type GetMultiFormatDateTimeReturnOption = {
                        Date: Date;
                        seconds: number;
                        minutes: number;
                        hours: number;
                      Severity: Major
                      Found in nodejs/api/src/libs/datetime.ts and 1 other location - About 1 hr to fix
                      nodejs/www/libs/datetime.ts on lines 14..23

                      Duplicated Code

                      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                      Tuning

                      This issue has a mass of 69.

                      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                      Refactorings

                      Further Reading

                      Function BlogsHatenaEntryPageComponent has 42 lines of code (exceeds 25 allowed). Consider refactoring.
                      Open

                      const BlogsHatenaEntryPageComponent = () => {
                        const state = useSelector((state: AppState) => state);
                        const dispatch = useDispatch();
                        const router = useRouter();
                        let name = process.browser
                      Severity: Minor
                      Found in nodejs/www/pages/blogs/hatena/[name].tsx - About 1 hr to fix

                        Function BlogsQiitaItemPageComponent has 42 lines of code (exceeds 25 allowed). Consider refactoring.
                        Open

                        const BlogsQiitaItemPageComponent = () => {
                          const state = useSelector((state: AppState) => state);
                          const dispatch = useDispatch();
                        
                          const router = useRouter();
                        Severity: Minor
                        Found in nodejs/www/pages/blogs/qiita/[name].tsx - About 1 hr to fix
                          Severity
                          Category
                          Status
                          Source
                          Language