Showing 4,231 of 14,884 total issues
Function requestProvidersList
has 37 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
export function requestProvidersList(address) {
return async (dispatch, getState) => {
try {
const location = address;
const { newAppointment } = getState();
Function resultCards
has 37 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
(institution, index) => {
const { distance, name } = institution;
const miles = Number.parseFloat(distance).toFixed(2);
const { currentPage } = pagination;
Function ConfirmationPage
has 37 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
export default function ConfirmationPage() {
const dispatch = useDispatch();
const {
data,
facilityDetails,
Function getPageContent
has 37 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
getPageContent() {
const { claim } = this.props;
// Return null if the claim/ claim.attributes dont exist
if (!claimAvailable(claim)) {
Function GET /vaos/v2/eligibility
has 37 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
'GET /vaos/v2/eligibility': (req, res) => {
const isDirect = req.query.type === 'direct';
const ineligibilityReasons = [];
if (
Function noResultsFound
has 37 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
const noResultsFound = cnt => {
const noResultsNoFilters = cnt === 0 && !usedFilters;
const noResultsWithFilters = cnt === 0 && usedFilters;
return (
Function schoolAttributes
has 37 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
const schoolAttributes = () => {
const options = [
{
name: 'excludeCautionFlags',
checked: excludeCautionFlags,
Function render
has 37 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
render() {
if (!this.props.isVisible) return null;
const alertClass = classNames(
'usa-alert',
Function CalcBeneficiaryLocationQuestionModalContent
has 37 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
export default function CalcBeneficiaryLocationQuestionModalContent() {
return (
<div>
<p>
VA pays monthly housing allowance (MHA) based on the campus location
Function GiBillBreadcrumbs
has 37 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
const GiBillBreadcrumbs = () => {
const history = useHistory();
const { pathname } = useLocation();
const isSchools = pathname.includes('schools-and-employers');
Function render
has 37 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
render() {
const { programs } = this.props;
if (programs && programs.length) {
return (
Function submitFormData
has 37 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
export function submitFormData(stateKey, payload) {
return async dispatch => {
dispatch({
type: FORM_DATA_SUBMIT_START,
status: LOADING_STATUS.pending,
Function getAppointmentTimezone
has 37 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
export function getAppointmentTimezone(appointment) {
if (appointment?.location) {
return {
identifier: appointment.location.attributes.timezone.timeZoneId,
abbreviation: getTimezoneAbbrByFacilityId(
Function parseCareSummariesAndNotes
has 37 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
export const parseCareSummariesAndNotes = (records, index = 2) => {
return `
${index}) Care summaries and notes
This report only includes care summaries and notes from 2013 and later.
Function downloadPdf
has 37 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
const downloadPdf = async () => {
const formattedText = convertHtmlForDownload(
htmlContent,
DOWNLOAD_FORMAT.PDF,
);
Function AllergiesErrorModal
has 37 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
const AllergiesErrorModal = props => {
const {
onCloseButtonClick,
onDownloadButtonClick,
onCancelButtonClick,
Function renderIndividual
has 37 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
const renderIndividual = () => {
return (
<dl className="review">
<div className="review-row">
<dt>Name</dt>
Function render
has 36 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
render() {
const { form, formConfig, formContext, pageList, path, user } = this.props;
const { CustomReviewTopContent, hideReviewChapters } = formConfig;
const downtimeDependencies = get('downtime.dependencies', formConfig) || [];
Function saveForm
has 36 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
function saveForm(saveType, formId, formData, version, returnUrl, submission) {
const savedAt = Date.now();
return (dispatch, getState) => {
const { trackingPrefix } = getState().form;
Function fileInputUI
has 36 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
export const fileInputUI = stringOrOptions => {
if (typeof stringOrOptions === 'string') {
return {
'ui:title': stringOrOptions,
'ui:webComponentField': VaFileInputField,