Skip to content

Commit 3e7d1ac

Browse files
Toggle datatypes visibility (#366)
* showDatatype setting added in view control panel * removed shortcut can be discussed later * fixed linting issue and made sure the condition check is above div element in table.jsx code in the else part im directly returning the element by keeping a check for settings.showDataTypes? which helps to not add empty element for setSetting issue I used the similar code used just above the snippet and modified it
1 parent 2a03298 commit 3e7d1ac

File tree

4 files changed

+17
-5
lines changed

4 files changed

+17
-5
lines changed

src/components/EditorCanvas/Table.jsx

+6-5
Original file line numberDiff line numberDiff line change
@@ -354,21 +354,22 @@ export default function Table(props) {
354354
icon={<IconMinus />}
355355
onClick={() => deleteField(fieldData, tableData.id)}
356356
/>
357-
) : (
357+
) : settings.showDataTypes ? (
358358
<div className="flex gap-1 items-center">
359359
{fieldData.primary && <IconKeyStroked />}
360360
{!fieldData.notNull && <span>?</span>}
361361
<span>
362362
{fieldData.type +
363363
((dbToTypes[database][fieldData.type].isSized ||
364364
dbToTypes[database][fieldData.type].hasPrecision) &&
365-
fieldData.size &&
366-
fieldData.size !== ""
367-
? "(" + fieldData.size + ")"
365+
fieldData.size &&
366+
fieldData.size !== ""
367+
? `(${fieldData.size})`
368368
: "")}
369369
</span>
370370
</div>
371-
)}
371+
) : null
372+
}
372373
</div>
373374
</div>
374375
);

src/components/EditorHeader/ControlPanel.jsx

+9
Original file line numberDiff line numberDiff line change
@@ -1211,6 +1211,15 @@ export default function ControlPanel({
12111211
function: resetView,
12121212
shortcut: "Ctrl+R",
12131213
},
1214+
show_datatype: {
1215+
state: settings.showDataTypes ? (
1216+
<i className="bi bi-toggle-on" />
1217+
) : (
1218+
<i className="bi bi-toggle-off" />
1219+
),
1220+
function: () =>
1221+
setSettings((prev) => ({ ...prev, showDataTypes: !prev.showDataTypes })),
1222+
},
12141223
show_grid: {
12151224
state: settings.showGrid ? (
12161225
<i className="bi bi-toggle-on" />

src/context/SettingsContext.jsx

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ const defaultSettings = {
55
strictMode: false,
66
showFieldSummary: true,
77
showGrid: true,
8+
showDataTypes: true,
89
mode: "light",
910
autosave: true,
1011
panning: true,

src/i18n/locales/en.js

+1
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ const en = {
4949
field_details: "Field details",
5050
reset_view: "Reset view",
5151
show_grid: "Show grid",
52+
show_datatype: "Show datatype",
5253
show_cardinality: "Show cardinality",
5354
theme: "Theme",
5455
light: "Light",

0 commit comments

Comments
 (0)