glitch-soc/mastodon

View on GitHub
app/javascript/mastodon/features/ui/components/report_modal.jsx

Summary

Maintainability
F
6 days
Test Coverage

Function render has 87 lines of code (exceeds 25 allowed). Consider refactoring.
Open

  render () {
    const {
      accountId,
      account,
      intl,
Severity: Major
Found in app/javascript/mastodon/features/ui/components/report_modal.jsx - About 3 hrs to fix

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

      render () {
        const {
          accountId,
          account,
          intl,
    app/javascript/flavours/glitch/features/ui/components/report_modal.jsx on lines 129..224

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

    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

      handleSubmit = () => {
        const { dispatch, accountId } = this.props;
        const { selectedStatusIds, selectedDomains, comment, category, selectedRuleIds } = this.state;
    
        this.setState({ isSubmitting: true });
    app/javascript/flavours/glitch/features/ui/components/report_modal.jsx on lines 58..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 172.

    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 4 locations. Consider refactoring.
    Open

      handleDomainToggle = (domain, checked) => {
        if (checked) {
          this.setState((state) => ({ selectedDomains: state.selectedDomains.add(domain) }));
        } else {
          this.setState((state) => ({ selectedDomains: state.selectedDomains.remove(domain) }));
    app/javascript/flavours/glitch/features/ui/components/report_modal.jsx on lines 93..99
    app/javascript/flavours/glitch/features/ui/components/report_modal.jsx on lines 101..107
    app/javascript/mastodon/features/ui/components/report_modal.jsx on lines 100..106

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

    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 4 locations. Consider refactoring.
    Open

      handleRuleToggle = (ruleId, checked) => {
        if (checked) {
          this.setState((state) => ({ selectedRuleIds: state.selectedRuleIds.add(ruleId) }));
        } else {
          this.setState((state) => ({ selectedRuleIds: state.selectedRuleIds.remove(ruleId) }));
    app/javascript/flavours/glitch/features/ui/components/report_modal.jsx on lines 93..99
    app/javascript/flavours/glitch/features/ui/components/report_modal.jsx on lines 101..107
    app/javascript/mastodon/features/ui/components/report_modal.jsx on lines 92..98

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

    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

      state = {
        step: 'category',
        selectedStatusIds: OrderedSet(this.props.statusId ? [this.props.statusId] : []),
        selectedDomains: OrderedSet(),
        comment: '',
    app/javascript/flavours/glitch/features/ui/components/report_modal.jsx on lines 47..56

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

    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 10 locations. Consider refactoring.
    Open

    const makeMapStateToProps = () => {
      const getAccount = makeGetAccount();
    
      const mapStateToProps = (state, { accountId }) => ({
        account: getAccount(state, accountId),
    app/javascript/flavours/glitch/components/inline_account.jsx on lines 9..17
    app/javascript/flavours/glitch/features/compose/containers/autosuggest_account_container.js on lines 6..14
    app/javascript/flavours/glitch/features/directory/components/account_card.jsx on lines 40..48
    app/javascript/flavours/glitch/features/list_adder/components/account.jsx on lines 11..19
    app/javascript/flavours/glitch/features/ui/components/report_modal.jsx on lines 27..35
    app/javascript/mastodon/components/inline_account.jsx on lines 9..17
    app/javascript/mastodon/features/compose/containers/autosuggest_account_container.js on lines 6..14
    app/javascript/mastodon/features/directory/components/account_card.jsx on lines 38..46
    app/javascript/mastodon/features/list_adder/components/account.jsx on lines 11..19

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

    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