Showing 4,231 of 14,884 total issues
Function getLabsAndTestsList
has 41 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
export const getLabsAndTestsList = (isCurrent = false) => async dispatch => {
dispatch({
type: Actions.LabsAndTests.UPDATE_LIST_STATE,
payload: Constants.loadStates.FETCHING,
});
Function MedicalAuthorizationPolicy
has 41 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
const MedicalAuthorizationPolicy = props => {
const { formData } = props;
return (
<div className="vads-u-margin-y--3">
Function buildAllergiesPDFList
has 41 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
export const buildAllergiesPDFList = allergies => {
return allergies.map(item => {
return {
header: item.name,
sections: [
Function waitForShadowRoot
has 40 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
export function waitForShadowRoot(el, waitForPaint = true) {
return new Promise((resolve, reject) => {
const host = typeof el === 'string' ? document.querySelector(el) : el;
if (isWebComponentReady(host) || process.env.NODE_ENV === 'test') {
Function render
has 40 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
render() {
const {
data,
schema,
uiSchema,
Function updateItemsSchema
has 40 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
export function updateItemsSchema(schema, fieldData = null) {
if (schema.type === 'array') {
let newSchema = schema;
// This happens the first time this function is called when
Function ThrottledError
has 40 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
export default function ThrottledError(props) {
const { buttonText, when, formConfig, onBack, onSubmit, testId } = props;
let ariaDescribedBy = null;
// If no ariaDescribedBy is passed down from form.js,
// a null value will properly not render the aria label.
Function VeteranInfoBox
has 40 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
const VeteranInfoBox = props => {
const {
first,
middle,
last,
Function veteranList
has 40 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
const veteranList = veterans?.map((veteran, index) => {
return (
<li
key={`veteran-${index}`}
className="fry-dea-form-featured-content vads-u-margin-top--2"
Function renderHealthServices
has 40 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
renderHealthServices() {
const {
facility: {
attributes: { services },
},
Function renderInbox
has 40 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
const renderInbox = () => {
if (
MEBClaimStatusFetchInProgress ||
TOEClaimStatusFetchInProgress ||
!isLoggedIn.current
Function loginPrompt
has 40 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
loginPrompt() {
if (this.props.isLoggedIn) {
if (this.moreThanSixMonths(this.props?.remainingEntitlement)) {
return (
<div
Function applicantInsuranceEobSchema
has 40 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
export function applicantInsuranceEobSchema(isPrimary) {
const keyname = isPrimary ? 'applicantPrimaryEob' : 'applicantSecondaryEob';
const provider = isPrimary
? 'applicantPrimaryProvider'
: 'applicantSecondaryProvider';
Function containerForLinks
has 40 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
const containerForLinks = (title, linkGroups) => {
const isActiveMenu = activeMenu === title;
return (
<div
Function VADXPlugin
has 40 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
export const VADXPlugin = () => {
return (
<div>
<p>VADX Plugin Example</p>
<div>
Function App
has 40 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
const App = props => {
const { featureFlagsLoading, user } = props;
const { ratedDisabilities } = props.ratedDisabilities;
return (
Function GroupCheckboxWidget
has 40 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
const GroupCheckboxWidget = props => {
const { value, options, formContext, onChange } = props;
const { onReviewPage, reviewMode } = formContext || {};
const { labels } = options;
Function MhvAlert
has 40 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
const MhvAlert = () => {
const headline = serviceDescription
? `${mhvHeadingPrefix} to ${serviceDescription}`
: mhvHeadingPrefix;
return (
Function deriveEventLocations
has 40 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
export const deriveEventLocations = event => {
const locations = [];
if (!event) {
return locations;
Function formatContactInfo
has 40 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
export function formatContactInfo(poaAttributes) {
const {
addressLine1,
addressLine2,
addressLine3,