Sha256: 3a38e630a416f93dd699db4a32b3d316a11336a7886b459afbb93842c38a94c0

Contents?: true

Size: 804 Bytes

Versions: 1

Compression:

Stored size: 804 Bytes

Contents

<script>
  import { Link } from '@inertiajs/svelte'
  import Form from './Form.svelte'

  let { <%= singular_table_name %> } = $props()

  const handleSubmit = ({ form }) => {
    form.transform((data) => ({ <%= singular_table_name %>: data }))
    form.post('<%= js_resources_path %>')
  }
</script>

<svelte:head>
  <title>New <%= human_name.downcase %></title>
</svelte:head>

<div class="mx-auto md:w-2/3 w-full px-8 pt-8">
  <h1 class="font-bold text-4xl">New <%= human_name.downcase %></h1>

  <Form
    {<%= singular_table_name %>}
    submitText="Create <%= human_name %>"
    onSubmit={handleSubmit}
  />

  <Link
    href="<%= js_resources_path %>"
    class="ml-2 rounded-lg py-3 px-5 bg-gray-100 inline-block font-medium"
  >
    Back to <%= human_name.pluralize.downcase %>
  </Link>
</div>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
inertia_rails-3.5.0 lib/generators/inertia_tw_templates/scaffold/templates/svelte/New.svelte.tt