markhamsquareventures

inertia

How to work effectively with Inertia, always use when developing frontend features

markhamsquareventures 0 Updated 4mo ago
GitHub

Install

npx skillscat add markhamsquareventures/essentials/inertia

Install via the SkillsCat registry.

SKILL.md

Inertia

Instructions

Inertia + React

  • Use router.visit() or <Link> for navigation instead of traditional links.

import { Link } from '@inertiajs/react'

Home

Inertia + React Forms

import { Form } from '@inertiajs/react'

export default () => (

{({ errors, hasErrors, processing, wasSuccessful, recentlySuccessful, clearErrors, resetAndClearErrors, defaults }) => ( <>
    {errors.name && <div>{errors.name}</div>}

    <button type="submit" disabled={processing}>
        {processing ? 'Creating...' : 'Create User'}
    </button>

    {wasSuccessful && <div>User created successfully!</div>}
    </>
)}
</Form>

)