Showing 4,231 of 14,884 total issues
Function UploadDescription
has 44 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
export const UploadDescription = () => {
const types = SUPPORTED_UPLOAD_TYPES.map(text => text.toUpperCase());
const list = readableList(types, 'or');
return (
<div className="vads-u-margin-top--2">
Function getEvidence
has 44 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
export const getEvidence = formData => {
const evidenceSubmission = {
evidenceType: [],
};
const showNewFormContent = showScNewForm(formData);
Function UploadDescription
has 44 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
export const UploadDescription = () => {
const types = SUPPORTED_UPLOAD_TYPES.map(text => text.toUpperCase());
const list = readableList(types, 'or');
return (
<div className="vads-u-margin-top--2">
Function setupPages
has 44 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
export const setupPages = () => {
const chapterKeys = Object.keys(formConfig?.chapters || {});
const chapterTitles = Object.values(formConfig?.chapters || {}).map(
value => value.title,
);
Function thirdPartyAppsReducer
has 44 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
export const thirdPartyAppsReducer = (state = initialState, action) => {
switch (action.type) {
case FETCH_RESULTS: {
return {
...state,
Function OmbInfo
has 44 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
const OmbInfo = () => {
const resBurden = 10;
return (
<va-omb-info
Function mockSearchResults
has 44 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
function mockSearchResults() {
return {
data: [
{
distance: 1.25,
Function MailingAddressInfoPageTaskYellow
has 44 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
export const MailingAddressInfoPageTaskYellow = () => {
const mailingAddress = useSelector(selectVAPMailingAddress);
const showSuccessAlert = window.sessionStorage.getItem(
'onReviewPageContactInfoEdit',
Function enrollmentStatus
has 44 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
function enrollmentStatus(state = ENROLLMENT_STATUS_INIT_STATE, action) {
const { response = {}, type } = action;
const {
FETCH_ENROLLMENT_STATUS_STARTED,
FETCH_ENROLLMENT_STATUS_SUCCEEDED,
Function facilitiesList
has 44 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
facility => {
const processed = processPhoneNumber(facility.attributes.phone.main);
const phone = processed.processed ? (
<va-telephone
contact={processed.phone}
Function fetchPreCheckIn
has 44 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
() => {
api.v2
.getPreCheckInData(token, reload)
.then(json => {
if (json.error) {
Function updateSchema
has 44 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
updateSchema: (formData, schema, uiSchema) => {
const { thirdPartyType, personFullName, organizationName } = formData;
let thirdPartyName = 'the third-party';
let labelString = '';
Function MakePayment
has 44 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
const MakePayment = () => {
useEffect(() => {
recordEvent({
event: 'howToWizard-alert-displayed',
'reason-for-alert': 'make a payment on a debt',
Function PageFieldSummary
has 44 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
const PageFieldSummary = props => {
const { renderedProperties, defaultEditButton, title, updatedPage } = props;
const { allPages } = setupPages(formConfig);
const currentPage = allPages.filter(page => page.key === updatedPage);
const alertPage = allPages.filter(page => page.title === title);
Function POARequestSearchPage
has 44 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
const POARequestSearchPage = () => {
const poaRequests = useLoaderData();
const searchStatus = useSearchParams()[0].get('status');
return (
Function alertsReducer
has 44 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
export const alertsReducer = (state = initialState, action) => {
switch (action.type) {
case Actions.Alerts.CLOSE_ALERT:
// Set visibility to false and set ALL alerts to inactive.
return {
Function parseTestFile
has 44 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
function parseTestFile(features, code) {
const stack = [];
const ast = parser.parse(code, { sourceType: 'module', plugins: ['jsx'] });
traverse.default(ast, {
enter(path) {
Function ScheduleCernerPage
has 44 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
export default function ScheduleCernerPage() {
const dispatch = useDispatch();
const facility = useSelector(getChosenFacilityInfo);
const history = useHistory();
Function submitRequest
has 44 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
export function submitRequest(id, cstClaimPhasesEnabled = false) {
return dispatch => {
dispatch({
type: SUBMIT_DECISION_REQUEST,
});
Function default
has 44 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
export default function(state = INITIAL_STATE, action) {
const newState = {
...state,
};