@lithiamotors/lpp-modals

2.0.3 • Public • Published

@lithiamotors/lpp-general-modal


General Modal Implementation

import React, { useState } from 'react';
import LppGeneralModal from '@lithiamotors/lpp-general-modal';

const GeneralModalExample = () => {
	const [open, setOpen] = useState(false);

	return (
		<div>
			<button onClick={() => setOpen(true)}>Open Modal</button>
			<LppGeneralModal
				showModal={open}
				onDismiss={() => setOpen(false)}
				content={content}
				mainCallback={() => alert('Submitted!!')}
				title="Lpp General Modal"
				submitText="Submit"
				cancelText="Cancel"
				noSubmit={false}
				noCancel={false}
				noButtons={false}
				disableSubmit={false}
			/>
		</div>
	);
}

Bulk Edit Modal Implementation

import React, { useState } from 'react';
import { LppBulkEditModal } from '@lithiamotors/lpp-general-modal';

const BulkEditExample = () => {
	const [showBulkEditModal, setShowBulkEditModal] = useState(false);

	const valuesToBeEdited = [{name: 'cory'}, {name: 'andy'}, {name: 'daylon'}]

	const bulkEditOptions = [{
		attribute: 'name',
		formInputType: 'select',
		values: ['cory', 'andy', 'daylon'],
	}]

	const handleBulkEditCommit = (bulkEditData) => {
		const mutatedRecords = valuesToBeEdited.map((item) => ({
			...item,
			...bulkEditData,
		}));
		console.log(mutatedRecords);
	};

	return (
		<div>
			<button onClick={() => setOpen(true)}>Open Modal</button>
			<LppBulkEditModal
				bulkEditOptions={bulkEditOptions}
				showBulkEditModal={open}
				setShowBulkEditModal={setOpen}
				handleBulkEditCommit={handleBulkEditCommit}
			/>
		</div>
	);
}

Version 2.0.2 (develop)

  • Fix to the input fields that caused a label misalignment

Version 2.0.0 (feature/cmorrissey-79229)

  • Upgraded to MUI v5
  • Changed file attribute from lib to dist

Version 1.0.0 (feature/cmorrissey-42889)

  • BREAKING CHANGE

  • Changed general modal archetecture to be a collection of modals instead of a single default export

  • Added LppBulkEditModal

  • Added disableEnforceFocus prop, was causing stack overflow when symlinking to other packages

Version 1.0.0-alpha.0

  • Copied modal from ESCALADE app
  • Changed <></> to <React.Fragment></React.Fragment> to work with microbundle-crl

Readme

Keywords

none

Package Sidebar

Install

npm i @lithiamotors/lpp-modals

Weekly Downloads

8

Version

2.0.3

License

MIT

Unpacked Size

52.3 kB

Total Files

6

Last publish

Collaborators

  • charankumar16
  • varunchawla1
  • caitiesanderson
  • dhikshitkonda
  • karanrohra
  • haiderkeshwani
  • msambu
  • fayazshaik
  • aklithia
  • dhilberg-lithia
  • immadisetty
  • scottgilmourlithia
  • kalyanpasam
  • justin-lithia
  • ppulluri27
  • vijays-lithia
  • audreyzheng
  • michellenygrenlithia
  • sean_goiburn_lithia
  • scott_faulkner
  • milesgreen
  • jamesstrawn
  • gregoryrad
  • ajaygb07
  • andybarnes
  • michaelnario
  • daylonblakely1