This completes the migration from Livewire's legacy `id="model.property"` pattern to explicit properties with manual synchronization. This allows disabling the `legacy_model_binding` feature flag. **Components Migrated (Final Session - 9 components):** - Server/Proxy.php (1 field) - Service/EditDomain.php (1 field) - Fixed Collection/string bug & parent sync - Application/Previews.php (2 fields - array handling) - Service/EditCompose.php (4 fields) - Service/FileStorage.php (6 fields) - Service/Database.php (7 fields) - Service/ServiceApplicationView.php (10 fields) - Application/General.php (53 fields) - LARGEST migration - Application/PreviewsCompose.php (1 field) **Total Migration Summary:** - 25+ components migrated across all phases - 150+ explicit properties added - 0 legacy bindings remaining (verified via grep) - All wire:model, id, @entangle bindings updated - All updater hooks renamed (updatedApplicationX → updatedX) **Technical Changes:** - Added explicit public properties (camelCase) - Implemented syncData(bool $toModel) bidirectional sync - Updated validation rules (removed model. prefix) - Updated all action methods (mount, submit, instantSave) - Fixed updater hooks: updatedBuildPack, updatedBaseDirectory, updatedIsStatic - Updated Blade views (id & wire:model bindings) - Applied Collection/string confusion fixes - Added model refresh + re-sync pattern **Critical Fixes:** - EditDomain.php Collection/string confusion (use intermediate variables) - EditDomain.php parent component sync (refresh + re-sync after save) - General.php domain field empty (syncData at end of mount) - General.php wire:model bindings (application.* → property) - General.php updater hooks (wrong naming convention) **Files Modified:** 34 files - 17 PHP Livewire components - 17 Blade view templates - 1 MIGRATION_REPORT.md (documentation) **Ready to disable legacy_model_binding flag in config/livewire.php** 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
41 lines
3.3 KiB
PHP
41 lines
3.3 KiB
PHP
<div>
|
|
<form wire:submit='submit' class="flex flex-col">
|
|
<div class="flex items-center gap-2 ">
|
|
<h2>Resource Limits</h2>
|
|
<x-forms.button canGate="update" :canResource="$resource" type='submit'>Save</x-forms.button>
|
|
</div>
|
|
<div class="">Limit your container resources by CPU & memory.</div>
|
|
<h3 class="pt-4">Limit CPUs</h3>
|
|
<div class="flex gap-2">
|
|
<x-forms.input canGate="update" :canResource="$resource" placeholder="1.5"
|
|
helper="0 means use all CPUs. Floating point number, like 0.002 or 1.5. More info <a class='underline dark:text-white' target='_blank' href='https://docs.docker.com/engine/reference/run/#cpu-share-constraint'>here</a>."
|
|
label="Number of CPUs" id="limitsCpus" />
|
|
<x-forms.input canGate="update" :canResource="$resource" placeholder="0-2"
|
|
helper="Empty means, use all CPU sets. 0-2 will use CPU 0, CPU 1 and CPU 2. More info <a class='underline dark:text-white' target='_blank' href='https://docs.docker.com/engine/reference/run/#cpu-share-constraint'>here</a>."
|
|
label="CPU sets to use" id="limitsCpuset" />
|
|
<x-forms.input canGate="update" :canResource="$resource" placeholder="1024"
|
|
helper="More info <a class='underline dark:text-white' target='_blank' href='https://docs.docker.com/engine/reference/run/#cpu-share-constraint'>here</a>."
|
|
label="CPU Weight" id="limitsCpuShares" />
|
|
</div>
|
|
<h3 class="pt-4">Limit Memory</h3>
|
|
<div class="flex flex-col gap-2">
|
|
<div class="flex gap-2">
|
|
<x-forms.input canGate="update" :canResource="$resource"
|
|
helper="Examples: 69b (byte) or 420k (kilobyte) or 1337m (megabyte) or 1g (gigabyte).<br>More info <a class='underline dark:text-white' target='_blank' href='https://docs.docker.com/compose/compose-file/05-services/#mem_reservation'>here</a>."
|
|
label="Soft Memory Limit" id="limitsMemoryReservation" />
|
|
<x-forms.input canGate="update" :canResource="$resource"
|
|
helper="0-100.<br>More info <a class='underline dark:text-white' target='_blank' href='https://docs.docker.com/compose/compose-file/05-services/#mem_swappiness'>here</a>."
|
|
type="number" min="0" max="100" label="Swappiness"
|
|
id="limitsMemorySwappiness" />
|
|
</div>
|
|
<div class="flex gap-2">
|
|
<x-forms.input canGate="update" :canResource="$resource"
|
|
helper="Examples: 69b (byte) or 420k (kilobyte) or 1337m (megabyte) or 1g (gigabyte).<br>More info <a class='underline dark:text-white' target='_blank' href='https://docs.docker.com/compose/compose-file/05-services/#mem_limit'>here</a>."
|
|
label="Maximum Memory Limit" id="limitsMemory" />
|
|
<x-forms.input canGate="update" :canResource="$resource"
|
|
helper="Examples:69b (byte) or 420k (kilobyte) or 1337m (megabyte) or 1g (gigabyte).<br>More info <a class='underline dark:text-white' target='_blank' href='https://docs.docker.com/compose/compose-file/05-services/#memswap_limit'>here</a>."
|
|
label="Maximum Swap Limit" id="limitsMemorySwap" />
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</div>
|