glitch-soc/mastodon

View on GitHub

Showing 4,906 of 4,906 total issues

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

const RelationshipFactory = Record<RelationshipShape>({
  blocked_by: false,
  blocking: false,
  domain_blocking: false,
  endorsed: false,
Severity: Major
Found in app/javascript/flavours/glitch/models/relationship.ts and 1 other location - About 2 hrs to fix
app/javascript/mastodon/models/relationship.ts on lines 9..25

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

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

const RelationshipFactory = Record<RelationshipShape>({
  blocked_by: false,
  blocking: false,
  domain_blocking: false,
  endorsed: false,
Severity: Major
Found in app/javascript/mastodon/models/relationship.ts and 1 other location - About 2 hrs to fix
app/javascript/flavours/glitch/models/relationship.ts on lines 9..25

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

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

export const selectAnyPendingNotification = createSelector(
  [
    (s: RootState) => s.notificationGroups.readMarkerId,
    selectNotificationGroups,
  ],
Severity: Major
Found in app/javascript/flavours/glitch/selectors/notifications.ts and 1 other location - About 2 hrs to fix
app/javascript/mastodon/selectors/notifications.ts on lines 78..91

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

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

export const selectAnyPendingNotification = createSelector(
  [
    (s: RootState) => s.notificationGroups.readMarkerId,
    selectNotificationGroups,
  ],
Severity: Major
Found in app/javascript/mastodon/selectors/notifications.ts and 1 other location - About 2 hrs to fix
app/javascript/flavours/glitch/selectors/notifications.ts on lines 78..91

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

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 notifications has 72 lines of code (exceeds 25 allowed). Consider refactoring.
Open

export default function notifications(state = initialState, action) {
  let st;

  switch(action.type) {
  case fetchMarkers.fulfilled.type:
Severity: Major
Found in app/javascript/flavours/glitch/reducers/notifications.js - About 2 hrs to fix

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

        def cleanup_concurrent_column_type_change(table, column)
          temp_column = rename_column_name(column)
    
          # Wait for the indices to be built
          indexes_for(table, column).each do |index|
    Severity: Major
    Found in lib/mastodon/migration_helpers.rb - About 2 hrs to fix

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

      const messages = defineMessages({
        uploadErrorLimit: { id: 'upload_error.limit', defaultMessage: 'File upload limit exceeded.' },
        uploadErrorPoll:  { id: 'upload_error.poll', defaultMessage: 'File upload not allowed with polls.' },
        open: { id: 'compose.published.open', defaultMessage: 'Open' },
        published: { id: 'compose.published.body', defaultMessage: 'Post published.' },
      Severity: Major
      Found in app/javascript/flavours/glitch/actions/compose.js and 11 other locations - About 2 hrs to fix
      app/javascript/flavours/glitch/features/compose/components/compose_form.jsx on lines 38..44
      app/javascript/flavours/glitch/features/compose/components/federation_button.jsx on lines 14..20
      app/javascript/flavours/glitch/features/notifications/components/notification.jsx on lines 29..35
      app/javascript/flavours/glitch/features/status/index.jsx on lines 69..75
      app/javascript/flavours/glitch/features/ui/components/media_modal.jsx on lines 27..33
      app/javascript/flavours/glitch/features/ui/components/mute_modal.jsx on lines 23..29
      app/javascript/mastodon/actions/compose.js on lines 84..90
      app/javascript/mastodon/components/status.jsx on lines 76..82
      app/javascript/mastodon/features/compose/components/compose_form.jsx on lines 34..40
      app/javascript/mastodon/features/ui/components/media_modal.jsx on lines 27..33
      app/javascript/mastodon/features/ui/components/mute_modal.jsx on lines 23..29

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

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

      const messages = defineMessages({
        revealAll: { id: 'status.show_more_all', defaultMessage: 'Show more for all' },
        hideAll: { id: 'status.show_less_all', defaultMessage: 'Show less for all' },
        statusTitleWithAttachments: { id: 'status.title.with_attachments', defaultMessage: '{user} posted {attachmentCount, plural, one {an attachment} other {# attachments}}' },
        detailedStatus: { id: 'status.detailed_status', defaultMessage: 'Detailed conversation view' },
      Severity: Major
      Found in app/javascript/flavours/glitch/features/status/index.jsx and 11 other locations - About 2 hrs to fix
      app/javascript/flavours/glitch/actions/compose.js on lines 90..96
      app/javascript/flavours/glitch/features/compose/components/compose_form.jsx on lines 38..44
      app/javascript/flavours/glitch/features/compose/components/federation_button.jsx on lines 14..20
      app/javascript/flavours/glitch/features/notifications/components/notification.jsx on lines 29..35
      app/javascript/flavours/glitch/features/ui/components/media_modal.jsx on lines 27..33
      app/javascript/flavours/glitch/features/ui/components/mute_modal.jsx on lines 23..29
      app/javascript/mastodon/actions/compose.js on lines 84..90
      app/javascript/mastodon/components/status.jsx on lines 76..82
      app/javascript/mastodon/features/compose/components/compose_form.jsx on lines 34..40
      app/javascript/mastodon/features/ui/components/media_modal.jsx on lines 27..33
      app/javascript/mastodon/features/ui/components/mute_modal.jsx on lines 23..29

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

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

      const messages = defineMessages({
        follow: { id: 'notification.follow', defaultMessage: '{name} followed you' },
        adminSignUp: { id: 'notification.admin.sign_up', defaultMessage: '{name} signed up' },
        adminReport: { id: 'notification.admin.report', defaultMessage: '{name} reported {target}' },
        relationshipsSevered: { id: 'notification.relationships_severance_event', defaultMessage: 'Lost connections with {name}' },
      app/javascript/flavours/glitch/actions/compose.js on lines 90..96
      app/javascript/flavours/glitch/features/compose/components/compose_form.jsx on lines 38..44
      app/javascript/flavours/glitch/features/compose/components/federation_button.jsx on lines 14..20
      app/javascript/flavours/glitch/features/status/index.jsx on lines 69..75
      app/javascript/flavours/glitch/features/ui/components/media_modal.jsx on lines 27..33
      app/javascript/flavours/glitch/features/ui/components/mute_modal.jsx on lines 23..29
      app/javascript/mastodon/actions/compose.js on lines 84..90
      app/javascript/mastodon/components/status.jsx on lines 76..82
      app/javascript/mastodon/features/compose/components/compose_form.jsx on lines 34..40
      app/javascript/mastodon/features/ui/components/media_modal.jsx on lines 27..33
      app/javascript/mastodon/features/ui/components/mute_modal.jsx on lines 23..29

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

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

      const messages = defineMessages({
        close: { id: 'lightbox.close', defaultMessage: 'Close' },
        previous: { id: 'lightbox.previous', defaultMessage: 'Previous' },
        next: { id: 'lightbox.next', defaultMessage: 'Next' },
        zoomIn: { id: 'lightbox.zoom_in', defaultMessage: 'Zoom to actual size' },
      app/javascript/flavours/glitch/actions/compose.js on lines 90..96
      app/javascript/flavours/glitch/features/compose/components/compose_form.jsx on lines 38..44
      app/javascript/flavours/glitch/features/compose/components/federation_button.jsx on lines 14..20
      app/javascript/flavours/glitch/features/notifications/components/notification.jsx on lines 29..35
      app/javascript/flavours/glitch/features/status/index.jsx on lines 69..75
      app/javascript/flavours/glitch/features/ui/components/mute_modal.jsx on lines 23..29
      app/javascript/mastodon/actions/compose.js on lines 84..90
      app/javascript/mastodon/components/status.jsx on lines 76..82
      app/javascript/mastodon/features/compose/components/compose_form.jsx on lines 34..40
      app/javascript/mastodon/features/ui/components/media_modal.jsx on lines 27..33
      app/javascript/mastodon/features/ui/components/mute_modal.jsx on lines 23..29

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

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

      const messages = defineMessages({
        uploadErrorLimit: { id: 'upload_error.limit', defaultMessage: 'File upload limit exceeded.' },
        uploadErrorPoll:  { id: 'upload_error.poll', defaultMessage: 'File upload not allowed with polls.' },
        open: { id: 'compose.published.open', defaultMessage: 'Open' },
        published: { id: 'compose.published.body', defaultMessage: 'Post published.' },
      Severity: Major
      Found in app/javascript/mastodon/actions/compose.js and 11 other locations - About 2 hrs to fix
      app/javascript/flavours/glitch/actions/compose.js on lines 90..96
      app/javascript/flavours/glitch/features/compose/components/compose_form.jsx on lines 38..44
      app/javascript/flavours/glitch/features/compose/components/federation_button.jsx on lines 14..20
      app/javascript/flavours/glitch/features/notifications/components/notification.jsx on lines 29..35
      app/javascript/flavours/glitch/features/status/index.jsx on lines 69..75
      app/javascript/flavours/glitch/features/ui/components/media_modal.jsx on lines 27..33
      app/javascript/flavours/glitch/features/ui/components/mute_modal.jsx on lines 23..29
      app/javascript/mastodon/components/status.jsx on lines 76..82
      app/javascript/mastodon/features/compose/components/compose_form.jsx on lines 34..40
      app/javascript/mastodon/features/ui/components/media_modal.jsx on lines 27..33
      app/javascript/mastodon/features/ui/components/mute_modal.jsx on lines 23..29

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

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

      const messages = defineMessages({
        public_short: { id: 'privacy.public.short', defaultMessage: 'Public' },
        unlisted_short: { id: 'privacy.unlisted.short', defaultMessage: 'Quiet public' },
        private_short: { id: 'privacy.private.short', defaultMessage: 'Followers' },
        direct_short: { id: 'privacy.direct.short', defaultMessage: 'Specific people' },
      Severity: Major
      Found in app/javascript/mastodon/components/status.jsx and 11 other locations - About 2 hrs to fix
      app/javascript/flavours/glitch/actions/compose.js on lines 90..96
      app/javascript/flavours/glitch/features/compose/components/compose_form.jsx on lines 38..44
      app/javascript/flavours/glitch/features/compose/components/federation_button.jsx on lines 14..20
      app/javascript/flavours/glitch/features/notifications/components/notification.jsx on lines 29..35
      app/javascript/flavours/glitch/features/status/index.jsx on lines 69..75
      app/javascript/flavours/glitch/features/ui/components/media_modal.jsx on lines 27..33
      app/javascript/flavours/glitch/features/ui/components/mute_modal.jsx on lines 23..29
      app/javascript/mastodon/actions/compose.js on lines 84..90
      app/javascript/mastodon/features/compose/components/compose_form.jsx on lines 34..40
      app/javascript/mastodon/features/ui/components/media_modal.jsx on lines 27..33
      app/javascript/mastodon/features/ui/components/mute_modal.jsx on lines 23..29

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

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

      const messages = defineMessages({
        minutes: { id: 'intervals.full.minutes', defaultMessage: '{number, plural, one {# minute} other {# minutes}}' },
        hours: { id: 'intervals.full.hours', defaultMessage: '{number, plural, one {# hour} other {# hours}}' },
        days: { id: 'intervals.full.days', defaultMessage: '{number, plural, one {# day} other {# days}}' },
        indefinite: { id: 'mute_modal.indefinite', defaultMessage: 'Until I unmute them' },
      app/javascript/flavours/glitch/actions/compose.js on lines 90..96
      app/javascript/flavours/glitch/features/compose/components/compose_form.jsx on lines 38..44
      app/javascript/flavours/glitch/features/compose/components/federation_button.jsx on lines 14..20
      app/javascript/flavours/glitch/features/notifications/components/notification.jsx on lines 29..35
      app/javascript/flavours/glitch/features/status/index.jsx on lines 69..75
      app/javascript/flavours/glitch/features/ui/components/media_modal.jsx on lines 27..33
      app/javascript/flavours/glitch/features/ui/components/mute_modal.jsx on lines 23..29
      app/javascript/mastodon/actions/compose.js on lines 84..90
      app/javascript/mastodon/components/status.jsx on lines 76..82
      app/javascript/mastodon/features/compose/components/compose_form.jsx on lines 34..40
      app/javascript/mastodon/features/ui/components/media_modal.jsx on lines 27..33

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

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

      const messages = defineMessages({
        change_federation_settings: { id: 'compose.change_federation', defaultMessage: 'Change federation settings' },
        local_only_label: { id: 'federation.local_only.short', defaultMessage: 'Local-only' },
        local_only_meta: { id: 'federation.local_only.long', defaultMessage: 'Prevent this post from reaching other servers' },
        federated_label: { id: 'federation.federated.short', defaultMessage: 'Federated' },
      app/javascript/flavours/glitch/actions/compose.js on lines 90..96
      app/javascript/flavours/glitch/features/compose/components/compose_form.jsx on lines 38..44
      app/javascript/flavours/glitch/features/notifications/components/notification.jsx on lines 29..35
      app/javascript/flavours/glitch/features/status/index.jsx on lines 69..75
      app/javascript/flavours/glitch/features/ui/components/media_modal.jsx on lines 27..33
      app/javascript/flavours/glitch/features/ui/components/mute_modal.jsx on lines 23..29
      app/javascript/mastodon/actions/compose.js on lines 84..90
      app/javascript/mastodon/components/status.jsx on lines 76..82
      app/javascript/mastodon/features/compose/components/compose_form.jsx on lines 34..40
      app/javascript/mastodon/features/ui/components/media_modal.jsx on lines 27..33
      app/javascript/mastodon/features/ui/components/mute_modal.jsx on lines 23..29

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

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

      const messages = defineMessages({
        minutes: { id: 'intervals.full.minutes', defaultMessage: '{number, plural, one {# minute} other {# minutes}}' },
        hours: { id: 'intervals.full.hours', defaultMessage: '{number, plural, one {# hour} other {# hours}}' },
        days: { id: 'intervals.full.days', defaultMessage: '{number, plural, one {# day} other {# days}}' },
        indefinite: { id: 'mute_modal.indefinite', defaultMessage: 'Until I unmute them' },
      app/javascript/flavours/glitch/actions/compose.js on lines 90..96
      app/javascript/flavours/glitch/features/compose/components/compose_form.jsx on lines 38..44
      app/javascript/flavours/glitch/features/compose/components/federation_button.jsx on lines 14..20
      app/javascript/flavours/glitch/features/notifications/components/notification.jsx on lines 29..35
      app/javascript/flavours/glitch/features/status/index.jsx on lines 69..75
      app/javascript/flavours/glitch/features/ui/components/media_modal.jsx on lines 27..33
      app/javascript/mastodon/actions/compose.js on lines 84..90
      app/javascript/mastodon/components/status.jsx on lines 76..82
      app/javascript/mastodon/features/compose/components/compose_form.jsx on lines 34..40
      app/javascript/mastodon/features/ui/components/media_modal.jsx on lines 27..33
      app/javascript/mastodon/features/ui/components/mute_modal.jsx on lines 23..29

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

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

      const messages = defineMessages({
        close: { id: 'lightbox.close', defaultMessage: 'Close' },
        previous: { id: 'lightbox.previous', defaultMessage: 'Previous' },
        next: { id: 'lightbox.next', defaultMessage: 'Next' },
        zoomIn: { id: 'lightbox.zoom_in', defaultMessage: 'Zoom to actual size' },
      app/javascript/flavours/glitch/actions/compose.js on lines 90..96
      app/javascript/flavours/glitch/features/compose/components/compose_form.jsx on lines 38..44
      app/javascript/flavours/glitch/features/compose/components/federation_button.jsx on lines 14..20
      app/javascript/flavours/glitch/features/notifications/components/notification.jsx on lines 29..35
      app/javascript/flavours/glitch/features/status/index.jsx on lines 69..75
      app/javascript/flavours/glitch/features/ui/components/media_modal.jsx on lines 27..33
      app/javascript/flavours/glitch/features/ui/components/mute_modal.jsx on lines 23..29
      app/javascript/mastodon/actions/compose.js on lines 84..90
      app/javascript/mastodon/components/status.jsx on lines 76..82
      app/javascript/mastodon/features/compose/components/compose_form.jsx on lines 34..40
      app/javascript/mastodon/features/ui/components/mute_modal.jsx on lines 23..29

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

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

      const messages = defineMessages({
        placeholder: { id: 'compose_form.placeholder', defaultMessage: 'What is on your mind?' },
        spoiler_placeholder: { id: 'compose_form.spoiler_placeholder', defaultMessage: 'Content warning (optional)' },
        publish: { id: 'compose_form.publish', defaultMessage: 'Post' },
        saveChanges: { id: 'compose_form.save_changes', defaultMessage: 'Update' },
      app/javascript/flavours/glitch/actions/compose.js on lines 90..96
      app/javascript/flavours/glitch/features/compose/components/compose_form.jsx on lines 38..44
      app/javascript/flavours/glitch/features/compose/components/federation_button.jsx on lines 14..20
      app/javascript/flavours/glitch/features/notifications/components/notification.jsx on lines 29..35
      app/javascript/flavours/glitch/features/status/index.jsx on lines 69..75
      app/javascript/flavours/glitch/features/ui/components/media_modal.jsx on lines 27..33
      app/javascript/flavours/glitch/features/ui/components/mute_modal.jsx on lines 23..29
      app/javascript/mastodon/actions/compose.js on lines 84..90
      app/javascript/mastodon/components/status.jsx on lines 76..82
      app/javascript/mastodon/features/ui/components/media_modal.jsx on lines 27..33
      app/javascript/mastodon/features/ui/components/mute_modal.jsx on lines 23..29

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

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

      const messages = defineMessages({
        placeholder: { id: 'compose_form.placeholder', defaultMessage: 'What is on your mind?' },
        spoiler_placeholder: { id: 'compose_form.spoiler_placeholder', defaultMessage: 'Content warning (optional)' },
        publish: { id: 'compose_form.publish', defaultMessage: 'Post' },
        saveChanges: { id: 'compose_form.save_changes', defaultMessage: 'Update' },
      app/javascript/flavours/glitch/actions/compose.js on lines 90..96
      app/javascript/flavours/glitch/features/compose/components/federation_button.jsx on lines 14..20
      app/javascript/flavours/glitch/features/notifications/components/notification.jsx on lines 29..35
      app/javascript/flavours/glitch/features/status/index.jsx on lines 69..75
      app/javascript/flavours/glitch/features/ui/components/media_modal.jsx on lines 27..33
      app/javascript/flavours/glitch/features/ui/components/mute_modal.jsx on lines 23..29
      app/javascript/mastodon/actions/compose.js on lines 84..90
      app/javascript/mastodon/components/status.jsx on lines 76..82
      app/javascript/mastodon/features/compose/components/compose_form.jsx on lines 34..40
      app/javascript/mastodon/features/ui/components/media_modal.jsx on lines 27..33
      app/javascript/mastodon/features/ui/components/mute_modal.jsx on lines 23..29

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

      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 function toggleStatusSpoilers(statusId) {
        return (dispatch, getState) => {
          const status = getState().statuses.get(statusId);
      
          if (!status)
      Severity: Major
      Found in app/javascript/mastodon/actions/statuses.js and 1 other location - About 2 hrs to fix
      app/javascript/flavours/glitch/actions/statuses.js on lines 316..329

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

      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

        handleResize = () => {
          const layout = layoutFromWindow();
      
          if (layout !== this.props.layout) {
            this.handleLayoutChange.cancel();
      Severity: Major
      Found in app/javascript/flavours/glitch/features/ui/index.jsx and 1 other location - About 2 hrs to fix
      app/javascript/mastodon/features/ui/index.jsx on lines 388..397

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

      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

      Severity
      Category
      Status
      Source
      Language