weareopensource/Swift

View on GitHub
waosSwift/lib/helpers/Rx/UIViewController+Rx.swift

Summary

Maintainability
A
0 mins
Test Coverage

Similar blocks of code found in 5 locations. Consider refactoring.
Wontfix

    var viewWillAppear: ControlEvent<Bool> {
        let source = self.methodInvoked(#selector(Base.viewWillAppear)).map { $0.first as? Bool ?? false }
        return ControlEvent(events: source)
    }
Severity: Major
Found in waosSwift/lib/helpers/Rx/UIViewController+Rx.swift and 4 other locations - About 55 mins to fix
waosSwift/lib/helpers/Rx/UIViewController+Rx.swift on lines 25..28
waosSwift/lib/helpers/Rx/UIViewController+Rx.swift on lines 30..33
waosSwift/lib/helpers/Rx/UIViewController+Rx.swift on lines 34..37
waosSwift/lib/helpers/Rx/UIViewController+Rx.swift on lines 70..73

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 65.

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 5 locations. Consider refactoring.
Wontfix

    var viewDidDisappear: ControlEvent<Bool> {
        let source = self.methodInvoked(#selector(Base.viewDidDisappear)).map { $0.first as? Bool ?? false }
        return ControlEvent(events: source)
    }
Severity: Major
Found in waosSwift/lib/helpers/Rx/UIViewController+Rx.swift and 4 other locations - About 55 mins to fix
waosSwift/lib/helpers/Rx/UIViewController+Rx.swift on lines 21..24
waosSwift/lib/helpers/Rx/UIViewController+Rx.swift on lines 25..28
waosSwift/lib/helpers/Rx/UIViewController+Rx.swift on lines 30..33
waosSwift/lib/helpers/Rx/UIViewController+Rx.swift on lines 70..73

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 65.

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 5 locations. Consider refactoring.
Wontfix

    var isDismissing: ControlEvent<Bool> {
        let source = self.sentMessage(#selector(Base.dismiss)).map { $0.first as? Bool ?? false }
        return ControlEvent(events: source)
    }
Severity: Major
Found in waosSwift/lib/helpers/Rx/UIViewController+Rx.swift and 4 other locations - About 55 mins to fix
waosSwift/lib/helpers/Rx/UIViewController+Rx.swift on lines 21..24
waosSwift/lib/helpers/Rx/UIViewController+Rx.swift on lines 25..28
waosSwift/lib/helpers/Rx/UIViewController+Rx.swift on lines 30..33
waosSwift/lib/helpers/Rx/UIViewController+Rx.swift on lines 34..37

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 65.

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 5 locations. Consider refactoring.
Wontfix

    var viewDidAppear: ControlEvent<Bool> {
        let source = self.methodInvoked(#selector(Base.viewDidAppear)).map { $0.first as? Bool ?? false }
        return ControlEvent(events: source)
    }
Severity: Major
Found in waosSwift/lib/helpers/Rx/UIViewController+Rx.swift and 4 other locations - About 55 mins to fix
waosSwift/lib/helpers/Rx/UIViewController+Rx.swift on lines 21..24
waosSwift/lib/helpers/Rx/UIViewController+Rx.swift on lines 30..33
waosSwift/lib/helpers/Rx/UIViewController+Rx.swift on lines 34..37
waosSwift/lib/helpers/Rx/UIViewController+Rx.swift on lines 70..73

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 65.

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 5 locations. Consider refactoring.
Wontfix

    var viewWillDisappear: ControlEvent<Bool> {
        let source = self.methodInvoked(#selector(Base.viewWillDisappear)).map { $0.first as? Bool ?? false }
        return ControlEvent(events: source)
    }
Severity: Major
Found in waosSwift/lib/helpers/Rx/UIViewController+Rx.swift and 4 other locations - About 55 mins to fix
waosSwift/lib/helpers/Rx/UIViewController+Rx.swift on lines 21..24
waosSwift/lib/helpers/Rx/UIViewController+Rx.swift on lines 25..28
waosSwift/lib/helpers/Rx/UIViewController+Rx.swift on lines 34..37
waosSwift/lib/helpers/Rx/UIViewController+Rx.swift on lines 70..73

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 65.

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 2 locations. Consider refactoring.
Wontfix

    var didMoveToParentViewController: ControlEvent<UIViewController?> {
        let source = self.methodInvoked(#selector(Base.didMove)).map { $0.first as? UIViewController }
        return ControlEvent(events: source)
    }
Severity: Minor
Found in waosSwift/lib/helpers/Rx/UIViewController+Rx.swift and 1 other location - About 50 mins to fix
waosSwift/lib/helpers/Rx/UIViewController+Rx.swift on lines 48..51

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 60.

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 2 locations. Consider refactoring.
Wontfix

    var willMoveToParentViewController: ControlEvent<UIViewController?> {
        let source = self.methodInvoked(#selector(Base.willMove)).map { $0.first as? UIViewController }
        return ControlEvent(events: source)
    }
Severity: Minor
Found in waosSwift/lib/helpers/Rx/UIViewController+Rx.swift and 1 other location - About 50 mins to fix
waosSwift/lib/helpers/Rx/UIViewController+Rx.swift on lines 52..55

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 60.

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 11 locations. Consider refactoring.
Wontfix

    var didReceiveMemoryWarning: ControlEvent<Void> {
        let source = self.methodInvoked(#selector(Base.didReceiveMemoryWarning)).map { _ in }
        return ControlEvent(events: source)
    }
Severity: Major
Found in waosSwift/lib/helpers/Rx/UIViewController+Rx.swift and 10 other locations - About 40 mins to fix
waosSwift/lib/helpers/Rx/NSViewController+Rx.swift on lines 16..19
waosSwift/lib/helpers/Rx/NSViewController+Rx.swift on lines 21..24
waosSwift/lib/helpers/Rx/NSViewController+Rx.swift on lines 25..28
waosSwift/lib/helpers/Rx/NSViewController+Rx.swift on lines 30..33
waosSwift/lib/helpers/Rx/NSViewController+Rx.swift on lines 34..37
waosSwift/lib/helpers/Rx/NSViewController+Rx.swift on lines 39..42
waosSwift/lib/helpers/Rx/NSViewController+Rx.swift on lines 43..46
waosSwift/lib/helpers/Rx/UIViewController+Rx.swift on lines 16..19
waosSwift/lib/helpers/Rx/UIViewController+Rx.swift on lines 39..42
waosSwift/lib/helpers/Rx/UIViewController+Rx.swift on lines 43..46

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 51.

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 11 locations. Consider refactoring.
Wontfix

    var viewWillLayoutSubviews: ControlEvent<Void> {
        let source = self.methodInvoked(#selector(Base.viewWillLayoutSubviews)).map { _ in }
        return ControlEvent(events: source)
    }
Severity: Major
Found in waosSwift/lib/helpers/Rx/UIViewController+Rx.swift and 10 other locations - About 40 mins to fix
waosSwift/lib/helpers/Rx/NSViewController+Rx.swift on lines 16..19
waosSwift/lib/helpers/Rx/NSViewController+Rx.swift on lines 21..24
waosSwift/lib/helpers/Rx/NSViewController+Rx.swift on lines 25..28
waosSwift/lib/helpers/Rx/NSViewController+Rx.swift on lines 30..33
waosSwift/lib/helpers/Rx/NSViewController+Rx.swift on lines 34..37
waosSwift/lib/helpers/Rx/NSViewController+Rx.swift on lines 39..42
waosSwift/lib/helpers/Rx/NSViewController+Rx.swift on lines 43..46
waosSwift/lib/helpers/Rx/UIViewController+Rx.swift on lines 16..19
waosSwift/lib/helpers/Rx/UIViewController+Rx.swift on lines 43..46
waosSwift/lib/helpers/Rx/UIViewController+Rx.swift on lines 57..60

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 51.

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 11 locations. Consider refactoring.
Wontfix

    var viewDidLayoutSubviews: ControlEvent<Void> {
        let source = self.methodInvoked(#selector(Base.viewDidLayoutSubviews)).map { _ in }
        return ControlEvent(events: source)
    }
Severity: Major
Found in waosSwift/lib/helpers/Rx/UIViewController+Rx.swift and 10 other locations - About 40 mins to fix
waosSwift/lib/helpers/Rx/NSViewController+Rx.swift on lines 16..19
waosSwift/lib/helpers/Rx/NSViewController+Rx.swift on lines 21..24
waosSwift/lib/helpers/Rx/NSViewController+Rx.swift on lines 25..28
waosSwift/lib/helpers/Rx/NSViewController+Rx.swift on lines 30..33
waosSwift/lib/helpers/Rx/NSViewController+Rx.swift on lines 34..37
waosSwift/lib/helpers/Rx/NSViewController+Rx.swift on lines 39..42
waosSwift/lib/helpers/Rx/NSViewController+Rx.swift on lines 43..46
waosSwift/lib/helpers/Rx/UIViewController+Rx.swift on lines 16..19
waosSwift/lib/helpers/Rx/UIViewController+Rx.swift on lines 39..42
waosSwift/lib/helpers/Rx/UIViewController+Rx.swift on lines 57..60

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 51.

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 11 locations. Consider refactoring.
Wontfix

    var viewDidLoad: ControlEvent<Void> {
        let source = self.methodInvoked(#selector(Base.viewDidLoad)).map { _ in }
        return ControlEvent(events: source)
    }
Severity: Major
Found in waosSwift/lib/helpers/Rx/UIViewController+Rx.swift and 10 other locations - About 40 mins to fix
waosSwift/lib/helpers/Rx/NSViewController+Rx.swift on lines 16..19
waosSwift/lib/helpers/Rx/NSViewController+Rx.swift on lines 21..24
waosSwift/lib/helpers/Rx/NSViewController+Rx.swift on lines 25..28
waosSwift/lib/helpers/Rx/NSViewController+Rx.swift on lines 30..33
waosSwift/lib/helpers/Rx/NSViewController+Rx.swift on lines 34..37
waosSwift/lib/helpers/Rx/NSViewController+Rx.swift on lines 39..42
waosSwift/lib/helpers/Rx/NSViewController+Rx.swift on lines 43..46
waosSwift/lib/helpers/Rx/UIViewController+Rx.swift on lines 39..42
waosSwift/lib/helpers/Rx/UIViewController+Rx.swift on lines 43..46
waosSwift/lib/helpers/Rx/UIViewController+Rx.swift on lines 57..60

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 51.

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

There are no issues that match your filters.

Category
Status