Skip to content

Commit 8870c8f

Browse files
committed
Only show field type options where there's a chance the data will map over to the new column type
Fixes #1 and #4
1 parent 02aadbb commit 8870c8f

File tree

2 files changed

+36
-1
lines changed

2 files changed

+36
-1
lines changed

CHANGELOG-v3.md

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ Craft CMS 3.0 Working Changelog
1212
- The “Set status” batch element action now updates elements’ site statuses in addition to their global statuses, when setting the status to Enabled.
1313
- Editable tables now support a `radioMode` checkbox column option, which prevents more than one of the column’s checkboxes from being checked at a time.
1414
- `craft\helpers\Db::getNumericalColumnType()` no longer returns unsigned integer column types for MySQL.
15+
- The “Field Type” setting on Edit Field pages no longer shows field type options where there’s no chance the existing field data will map over.
1516

1617
### Removed
1718
- Removed the `afterSetStatus` event from `craft\elements\actions\SetStatus`.

src/controllers/FieldsController.php

+35-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
use craft\base\FieldInterface;
1313
use craft\fields\MissingField;
1414
use craft\fields\PlainText;
15+
use craft\helpers\Db;
1516
use craft\helpers\UrlHelper;
1617
use craft\models\FieldGroup;
1718
use craft\web\Controller;
@@ -145,7 +146,40 @@ public function actionEditField(int $fieldId = null, FieldInterface $field = nul
145146
// Field types
146147
// ---------------------------------------------------------------------
147148

148-
$allFieldTypes = $fieldsService->getAllFieldTypes();
149+
/** @var string[]|FieldInterface[] $allFieldTypes */
150+
151+
if (!$field->id) {
152+
// Can be anything
153+
$allFieldTypes = $fieldsService->getAllFieldTypes();
154+
} else if ($field::hasContentColumn()) {
155+
// Can only be field types with compatible column types
156+
$allFieldTypes = $fieldsService->getAllFieldTypes();
157+
$fieldColumnType = $field->getContentColumnType();
158+
159+
foreach ($allFieldTypes as $i => $class) {
160+
if ($class === get_class($field)) {
161+
continue;
162+
}
163+
164+
if (!$class::hasContentColumn()) {
165+
$compatible = false;
166+
} else {
167+
/** @var FieldInterface $tempField */
168+
$tempField = new $class();
169+
$compatible = Db::areColumnTypesCompatible($fieldColumnType, $tempField->getContentColumnType());
170+
}
171+
172+
if (!$compatible) {
173+
unset($allFieldTypes[$i]);
174+
}
175+
}
176+
177+
// Reset keys
178+
$allFieldTypes = array_values($allFieldTypes);
179+
} else {
180+
// No column so no compatible field types
181+
$allFieldTypes = [get_class($field)];
182+
}
149183

150184
// Make sure the selected field class is in there
151185
if (!in_array(get_class($field), $allFieldTypes, true)) {

0 commit comments

Comments
 (0)