Chocobozzz/PeerTube

View on GitHub
client/src/app/shared/form-validators/video-channel-validators.ts

Summary

Maintainability
C
1 day
Test Coverage

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

export const VIDEO_CHANNEL_DISPLAY_NAME_VALIDATOR: BuildFormValidator = {
  VALIDATORS: [
    Validators.required,
    Validators.minLength(1),
    Validators.maxLength(50)
client/src/app/+admin/moderation/registration-list/process-registration-validators.ts on lines 4..11
client/src/app/+signup/+register/shared/register-validators.ts on lines 11..18
client/src/app/shared/form-validators/abuse-validators.ts on lines 4..11
client/src/app/shared/form-validators/abuse-validators.ts on lines 13..20
client/src/app/shared/form-validators/abuse-validators.ts on lines 22..29
client/src/app/shared/form-validators/instance-validators.ts on lines 12..23
client/src/app/shared/form-validators/instance-validators.ts on lines 25..36
client/src/app/shared/form-validators/instance-validators.ts on lines 38..49
client/src/app/shared/form-validators/video-comment-validators.ts on lines 4..11
client/src/app/shared/form-validators/video-playlist-validators.ts on lines 5..16

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

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

export const VIDEO_CHANNEL_SUPPORT_VALIDATOR: BuildFormValidator = {
  VALIDATORS: [
    Validators.minLength(3),
    Validators.maxLength(1000)
  ],
client/src/app/shared/form-validators/user-validators.ts on lines 86..95
client/src/app/shared/form-validators/user-validators.ts on lines 128..137
client/src/app/shared/form-validators/user-validators.ts on lines 139..148
client/src/app/shared/form-validators/video-block-validators.ts on lines 4..10
client/src/app/shared/form-validators/video-channel-validators.ts on lines 30..39
client/src/app/shared/form-validators/video-playlist-validators.ts on lines 27..36
client/src/app/shared/form-validators/video-validators.ts on lines 65..71
client/src/app/shared/form-validators/video-validators.ts on lines 81..87

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

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

export const VIDEO_CHANNEL_DESCRIPTION_VALIDATOR: BuildFormValidator = {
  VALIDATORS: [
    Validators.minLength(3),
    Validators.maxLength(1000)
  ],
client/src/app/shared/form-validators/user-validators.ts on lines 86..95
client/src/app/shared/form-validators/user-validators.ts on lines 128..137
client/src/app/shared/form-validators/user-validators.ts on lines 139..148
client/src/app/shared/form-validators/video-block-validators.ts on lines 4..10
client/src/app/shared/form-validators/video-channel-validators.ts on lines 41..50
client/src/app/shared/form-validators/video-playlist-validators.ts on lines 27..36
client/src/app/shared/form-validators/video-validators.ts on lines 65..71
client/src/app/shared/form-validators/video-validators.ts on lines 81..87

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

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

  MESSAGES: {
    required: $localize`Name is required.`,
    minlength: $localize`Name must be at least 1 character long.`,
    maxlength: $localize`Name cannot be more than 50 characters long.`,
    pattern: $localize`Name should be lowercase alphanumeric; dots and underscores are allowed.`
client/src/app/shared/form-validators/user-validators.ts on lines 13..18
client/src/app/shared/form-validators/user-validators.ts on lines 28..33
client/src/app/shared/form-validators/video-validators.ts on lines 14..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 62.

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