Showing 4,231 of 14,884 total issues
Function handleHeader
has 29 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
export const handleHeader = (folderId, folder) => {
let folderName;
switch (folderId) {
case Folders.INBOX.id: // Inbox
Function getCancelInfo
has 29 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
export function getCancelInfo(state) {
const {
appointmentToCancel,
showCancelModal,
cancelAppointmentStatus,
Function vaFacilityNext
has 29 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
async function vaFacilityNext(state, dispatch) {
let eligibility = selectEligibility(state);
const location = getChosenFacilityInfo(state);
const cernerSiteIds = selectRegisteredCernerFacilityIds(state);
Function generatePhaseItems
has 29 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
const generatePhaseItems = () => {
const {
currentPhaseBack,
previousPhases,
} = claim.attributes.claimPhaseDates;
Function addMapMarker
has 29 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
const addMapMarker = (institution, index, locationBounds, mapMarkers) => {
const { latitude, longitude, name } = institution;
const lngLat = new mapboxgl.LngLat(longitude, latitude);
const markerElement = document.createElement('div');
Function fetchProfile
has 29 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
export function fetchProfile(facilityCode, version) {
const queryString = version ? `?version=${version}` : '';
const url = `${api.url}/institutions/${facilityCode}${queryString}`;
return (dispatch, getState) => {
Function validateSearchTermSubmit
has 29 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
export const validateSearchTermSubmit = (
searchTerm,
dispatchError,
error,
filters,
Function institutionFieldValue
has 29 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
const institutionFieldValue = (
field,
rowIndex,
colIndex,
institution,
Function aboutTheSchool
has 29 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
export function aboutTheSchool(
onChangeCheckbox,
options,
smallScreen,
automatedTest = false,
Function fetchCompareDetails
has 29 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
export function fetchCompareDetails(facilityCodes, filters, version) {
const params = rubyifyKeys({
facilityCodes,
...buildSearchFilters(filters),
});
Function buildSearchFilters
has 29 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
export const buildSearchFilters = filters => {
const clonedFilters = _.cloneDeep(filters);
delete clonedFilters.expanded;
delete clonedFilters.search;
Function constructor
has 29 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
constructor(props) {
super(props);
// Throw an error if there’s no viewField (should be React component)
if (!isReactComponent(this.props.uiSchema['ui:options'].viewField)) {
Function EightKeysModalContent
has 29 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
export default function EightKeysModalContent() {
return (
<>
<p>
The “8 Keys to Veterans’ Success” are steps that postsecondary
Function fileUploadUi
has 29 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
export function fileUploadUi(content) {
return {
...fileUiSchema(content.label, {
buttonText: 'Upload file',
addAnotherLabel: 'Upload another file',
Function VeteranSuccessModalContent
has 29 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
export default function VeteranSuccessModalContent() {
return (
<>
<p>
This program supports service members, Veterans, and qualified
Function validateAddress
has 29 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
function validateAddress(errors, address, formData, currentSchema) {
// Adds error message for state if it is blank and one of the following countries:
// USA, Canada
if (
countriesWithStateCodes.has(address.country) &&
Function createBasicInitialState
has 29 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
function createBasicInitialState(serviceHistory, eligibility) {
return {
user: {
profile: {
veteranStatus: {
Function createBasicInitialState
has 29 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
function createBasicInitialState(serviceHistory, eligibility) {
return {
user: {
profile: {
veteranStatus: {
Function EditConfirmCancelModal
has 29 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
export const EditConfirmCancelModal = props => {
const { activeSection, onHide, isVisible } = props;
const { onCancel } = useContext(EditContext);
Function prepareAddressData
has 29 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
export const prepareAddressData = formData => {
let addressData = {
veteranName: formData.fullName,
addressLine1: formData.addressLine1,
addressLine2: formData.addressLine2,