✨ MAJOR FEATURES: • Auto-zoom intelligence với smart bounds fitting • Enhanced 3D GPS markers với pulsing effects • Professional route display với 6-layer rendering • Status-based parking icons với availability indicators • Production-ready build optimizations 🗺️ AUTO-ZOOM FEATURES: • Smart bounds fitting cho GPS + selected parking • Adaptive padding (50px) cho visual balance • Max zoom control (level 16) để tránh quá gần • Dynamic centering khi không có selection 🎨 ENHANCED VISUALS: • 3D GPS marker với multi-layer pulse effects • Advanced parking icons với status colors • Selection highlighting với animation • Dimming system cho non-selected items 🛣️ ROUTE SYSTEM: • OpenRouteService API integration • Multi-layer route rendering (glow, shadow, main, animated) • Real-time distance & duration calculation • Visual route info trong popup 📱 PRODUCTION READY: • SSR safe với dynamic imports • Build errors resolved • Global deployment via Vercel • Optimized performance 🌍 DEPLOYMENT: • Vercel: https://whatever-ctk2auuxr-phong12hexdockworks-projects.vercel.app • Bundle size: 22.8 kB optimized • Global CDN distribution • HTTPS enabled 💾 VERSION CONTROL: • MapView-v2.0.tsx backup created • MAPVIEW_VERSIONS.md documentation • Full version history tracking
65 lines
2.3 KiB
TypeScript
65 lines
2.3 KiB
TypeScript
import React from 'react';
|
|
import type { FieldValues, FormProviderProps, UseFormReturn } from './types';
|
|
/**
|
|
* This custom hook allows you to access the form context. useFormContext is intended to be used in deeply nested structures, where it would become inconvenient to pass the context as a prop. To be used with {@link FormProvider}.
|
|
*
|
|
* @remarks
|
|
* [API](https://react-hook-form.com/docs/useformcontext) • [Demo](https://codesandbox.io/s/react-hook-form-v7-form-context-ytudi)
|
|
*
|
|
* @returns return all useForm methods
|
|
*
|
|
* @example
|
|
* ```tsx
|
|
* function App() {
|
|
* const methods = useForm();
|
|
* const onSubmit = data => console.log(data);
|
|
*
|
|
* return (
|
|
* <FormProvider {...methods} >
|
|
* <form onSubmit={methods.handleSubmit(onSubmit)}>
|
|
* <NestedInput />
|
|
* <input type="submit" />
|
|
* </form>
|
|
* </FormProvider>
|
|
* );
|
|
* }
|
|
*
|
|
* function NestedInput() {
|
|
* const { register } = useFormContext(); // retrieve all hook methods
|
|
* return <input {...register("test")} />;
|
|
* }
|
|
* ```
|
|
*/
|
|
export declare const useFormContext: <TFieldValues extends FieldValues, TContext = any, TTransformedValues = TFieldValues>() => UseFormReturn<TFieldValues, TContext, TTransformedValues>;
|
|
/**
|
|
* A provider component that propagates the `useForm` methods to all children components via [React Context](https://reactjs.org/docs/context.html) API. To be used with {@link useFormContext}.
|
|
*
|
|
* @remarks
|
|
* [API](https://react-hook-form.com/docs/useformcontext) • [Demo](https://codesandbox.io/s/react-hook-form-v7-form-context-ytudi)
|
|
*
|
|
* @param props - all useForm methods
|
|
*
|
|
* @example
|
|
* ```tsx
|
|
* function App() {
|
|
* const methods = useForm();
|
|
* const onSubmit = data => console.log(data);
|
|
*
|
|
* return (
|
|
* <FormProvider {...methods} >
|
|
* <form onSubmit={methods.handleSubmit(onSubmit)}>
|
|
* <NestedInput />
|
|
* <input type="submit" />
|
|
* </form>
|
|
* </FormProvider>
|
|
* );
|
|
* }
|
|
*
|
|
* function NestedInput() {
|
|
* const { register } = useFormContext(); // retrieve all hook methods
|
|
* return <input {...register("test")} />;
|
|
* }
|
|
* ```
|
|
*/
|
|
export declare const FormProvider: <TFieldValues extends FieldValues, TContext = any, TTransformedValues = TFieldValues>(props: FormProviderProps<TFieldValues, TContext, TTransformedValues>) => React.JSX.Element;
|
|
//# sourceMappingURL=useFormContext.d.ts.map
|