nexxtway/react-rainbow

View on GitHub

Showing 2,739 of 2,739 total issues

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

    it('should set the name of the input', () => {
        const component = mount(
            <ColorInput label="Test label" name="test" bottomHelpText="Help text" />,
        );
        expect(component.find('input[type="text"]').prop('name')).toBe('test');
Severity: Major
Found in src/components/ColorInput/__test__/colorInput.spec.js and 1 other location - About 2 hrs to fix
src/components/VerticalItem/__test__/verticalItem.spec.js on lines 67..70

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

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

    it('should return false if children is not registered', () => {
        const children = [
            { name: 'name-1' },
            { name: 'name-2' },
            { name: 'name-3' },
src/components/InternalDropdown/helpers/__test__/isChildRegistered.spec.js on lines 4..13

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

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

    it('should render the children when isTrue is true', () => {
        const component = mount(
            <RenderIf isTrue>
                <svg />
            </RenderIf>,
Severity: Major
Found in src/components/RenderIf/__test__/renderIf.spec.js and 1 other location - About 2 hrs to fix
src/components/PrimitiveMenu/__test__/menuContent.spec.js on lines 6..13

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

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

    it('should return true if children is already registered', () => {
        const children = [
            { name: 'name-1' },
            { name: 'name-2' },
            { name: 'name-3' },
src/components/InternalDropdown/helpers/__test__/isChildRegistered.spec.js 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 76.

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

    it('should set the aria-current as page in button element when the item is selected', () => {
        const component = mount(<VerticalItem label="item 1" name="item1" selectedItem="item1" />);
        expect(component.find('button').prop('aria-current')).toBe('page');
    });
Severity: Major
Found in src/components/VerticalItem/__test__/verticalItem.spec.js and 1 other location - About 2 hrs to fix
src/components/ColorInput/__test__/colorInput.spec.js on lines 146..151

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

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

    it('should set isHalf to false when readOnly is false', () => {
        const component = mount(<RatingItems value="3.5" />);
        const star = component.childAt(3);
        expect(star.props().isHalf).toBe(false);
    });
Severity: Major
Found in src/components/Rating/__test__/ratingItems.spec.js and 1 other location - About 2 hrs to fix
src/components/Rating/__test__/ratingItems.spec.js on lines 32..36

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

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

const Google = props => {
    const { className, style } = props;
    return (
        <svg
            className={className}
Severity: Major
Found in library/exampleComponents/Icons/google.js - About 2 hrs to fix

    File modal-11.spec.js has 251 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    const PageModal = require('../../../src/components/Modal/pageObject');
    const PageLookup = require('../../../src/components/Lookup/pageObject');
    const PageDatePicker = require('../../../src/components/DatePicker/pageObject');
    const PageTimePicker = require('../../../src/components/TimePicker/pageObject');
    const { ESCAPE_KEY, ENTER_KEY, ARROW_DOWN_KEY } = require('../../constants');
    Severity: Minor
    Found in integration/specs/Modal/modal-11.spec.js - About 2 hrs to fix

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

          render() {
              const {
                  className,
                  style,
                  value,
      Severity: Minor
      Found in src/components/Input/inputRadio/index.js - About 2 hrs to fix

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

            render() {
                const {
                    className,
                    style,
                    label,
        Severity: Minor
        Found in src/components/Input/pickerInput/index.js - About 2 hrs to fix

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

              render() {
                  const {
                      className,
                      style,
                      value,
          Severity: Minor
          Found in src/components/Input/inputCheckbox/index.js - About 2 hrs to fix

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

            const Application = props => {
                const { className, style } = props;
                return (
                    <svg
                        className={className}
            Severity: Minor
            Found in library/exampleComponents/Icons/application.js - About 2 hrs to fix

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

              export default function Examples(_ref1, _ref2) {
                  const { examples, name, exampleMode } = _ref1;
                  const codeRevision = _ref2.codeRevision;
              
                  if (name === 'Customization') {
              Severity: Minor
              Found in library/styleguideComponents/Examples/index.js - About 2 hrs to fix

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

                    it('should close the menu when the menu is opened and press ESC', async () => {
                        const avatarMenu = new PageAvatarMenu(AVATAR_MENU);
                        await avatarMenu.click();
                        await browser.keys('Escape');
                        await expect(await avatarMenu.isOpen()).toBe(false);
                Severity: Major
                Found in integration/specs/AvatarMenu/avatarMenu-1.spec.js and 7 other locations - About 2 hrs to fix
                integration/specs/AvatarMenu/avatarMenu-1.spec.js on lines 42..47
                integration/specs/AvatarMenu/avatarMenu-1.spec.js on lines 87..92
                integration/specs/AvatarMenu/avatarMenu-1.spec.js on lines 100..105
                integration/specs/ButtonMenu/buttonMenu-5.spec.js on lines 28..33
                integration/specs/ButtonMenu/buttonMenu-5.spec.js on lines 41..46
                integration/specs/ButtonMenu/buttonMenu-5.spec.js on lines 85..90
                integration/specs/InternalDropdown/internalDropdown-3.spec.js on lines 28..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 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 8 locations. Consider refactoring.
                Open

                    it('should not have focus in the trigger AvatarMenu button when the menu is opened and press the tab key', async () => {
                        const avatarMenu = new PageAvatarMenu(AVATAR_MENU);
                        await avatarMenu.click();
                        await browser.keys('Tab');
                        await expect(await avatarMenu.hasFocusButton()).toBe(false);
                Severity: Major
                Found in integration/specs/AvatarMenu/avatarMenu-1.spec.js and 7 other locations - About 2 hrs to fix
                integration/specs/AvatarMenu/avatarMenu-1.spec.js on lines 28..33
                integration/specs/AvatarMenu/avatarMenu-1.spec.js on lines 42..47
                integration/specs/AvatarMenu/avatarMenu-1.spec.js on lines 87..92
                integration/specs/ButtonMenu/buttonMenu-5.spec.js on lines 28..33
                integration/specs/ButtonMenu/buttonMenu-5.spec.js on lines 41..46
                integration/specs/ButtonMenu/buttonMenu-5.spec.js on lines 85..90
                integration/specs/InternalDropdown/internalDropdown-3.spec.js on lines 28..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 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 8 locations. Consider refactoring.
                Open

                    it('should close the menu when the menu is opened and press ESC', async () => {
                        const buttonMenu = new PageButtonMenu(MENU_BTN);
                        await buttonMenu.click();
                        await browser.keys('Escape');
                        await expect(await buttonMenu.isOpen()).toBe(false);
                Severity: Major
                Found in integration/specs/ButtonMenu/buttonMenu-5.spec.js and 7 other locations - About 2 hrs to fix
                integration/specs/AvatarMenu/avatarMenu-1.spec.js on lines 28..33
                integration/specs/AvatarMenu/avatarMenu-1.spec.js on lines 42..47
                integration/specs/AvatarMenu/avatarMenu-1.spec.js on lines 87..92
                integration/specs/AvatarMenu/avatarMenu-1.spec.js on lines 100..105
                integration/specs/ButtonMenu/buttonMenu-5.spec.js on lines 41..46
                integration/specs/ButtonMenu/buttonMenu-5.spec.js on lines 85..90
                integration/specs/InternalDropdown/internalDropdown-3.spec.js on lines 28..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 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 8 locations. Consider refactoring.
                Open

                    it('should close the menu when the menu is opened and press the key "tab"', async () => {
                        const buttonMenu = new PageButtonMenu(MENU_BTN);
                        await buttonMenu.click();
                        await browser.keys('Tab');
                        await expect(await buttonMenu.isOpen()).toBe(false);
                Severity: Major
                Found in integration/specs/ButtonMenu/buttonMenu-5.spec.js and 7 other locations - About 2 hrs to fix
                integration/specs/AvatarMenu/avatarMenu-1.spec.js on lines 28..33
                integration/specs/AvatarMenu/avatarMenu-1.spec.js on lines 42..47
                integration/specs/AvatarMenu/avatarMenu-1.spec.js on lines 87..92
                integration/specs/AvatarMenu/avatarMenu-1.spec.js on lines 100..105
                integration/specs/ButtonMenu/buttonMenu-5.spec.js on lines 28..33
                integration/specs/ButtonMenu/buttonMenu-5.spec.js on lines 41..46
                integration/specs/InternalDropdown/internalDropdown-3.spec.js on lines 28..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 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 8 locations. Consider refactoring.
                Open

                    it('should put the menu button focused when the menu is opened and press ESC', async () => {
                        const buttonMenu = new PageButtonMenu(MENU_BTN);
                        await buttonMenu.click();
                        await browser.keys('Escape');
                        await expect(await buttonMenu.hasFocusButton()).toBe(true);
                Severity: Major
                Found in integration/specs/ButtonMenu/buttonMenu-5.spec.js and 7 other locations - About 2 hrs to fix
                integration/specs/AvatarMenu/avatarMenu-1.spec.js on lines 28..33
                integration/specs/AvatarMenu/avatarMenu-1.spec.js on lines 42..47
                integration/specs/AvatarMenu/avatarMenu-1.spec.js on lines 87..92
                integration/specs/AvatarMenu/avatarMenu-1.spec.js on lines 100..105
                integration/specs/ButtonMenu/buttonMenu-5.spec.js on lines 28..33
                integration/specs/ButtonMenu/buttonMenu-5.spec.js on lines 85..90
                integration/specs/InternalDropdown/internalDropdown-3.spec.js on lines 28..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 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 8 locations. Consider refactoring.
                Open

                    it('should close the menu when the menu is opened and press the key "tab"', async () => {
                        const avatarMenu = new PageAvatarMenu(AVATAR_MENU);
                        await avatarMenu.click();
                        await browser.keys('Tab');
                        await expect(await avatarMenu.isOpen()).toBe(false);
                Severity: Major
                Found in integration/specs/AvatarMenu/avatarMenu-1.spec.js and 7 other locations - About 2 hrs to fix
                integration/specs/AvatarMenu/avatarMenu-1.spec.js on lines 28..33
                integration/specs/AvatarMenu/avatarMenu-1.spec.js on lines 42..47
                integration/specs/AvatarMenu/avatarMenu-1.spec.js on lines 100..105
                integration/specs/ButtonMenu/buttonMenu-5.spec.js on lines 28..33
                integration/specs/ButtonMenu/buttonMenu-5.spec.js on lines 41..46
                integration/specs/ButtonMenu/buttonMenu-5.spec.js on lines 85..90
                integration/specs/InternalDropdown/internalDropdown-3.spec.js on lines 28..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 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 8 locations. Consider refactoring.
                Open

                    it('should render EmptyMessage component when no results found in the search.', async () => {
                        const internalDropdown = new PageInternalDropdown(INTERNALDROPDOWN);
                        await internalDropdown.clickSearch();
                        await internalDropdown.setQuery('cx');
                        await expect(await internalDropdown.emptyMessageExist()).toBe(true);
                integration/specs/AvatarMenu/avatarMenu-1.spec.js on lines 28..33
                integration/specs/AvatarMenu/avatarMenu-1.spec.js on lines 42..47
                integration/specs/AvatarMenu/avatarMenu-1.spec.js on lines 87..92
                integration/specs/AvatarMenu/avatarMenu-1.spec.js on lines 100..105
                integration/specs/ButtonMenu/buttonMenu-5.spec.js on lines 28..33
                integration/specs/ButtonMenu/buttonMenu-5.spec.js on lines 41..46
                integration/specs/ButtonMenu/buttonMenu-5.spec.js on lines 85..90

                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

                Severity
                Category
                Status
                Source
                Language