This commit is contained in:
2026-03-18 16:35:48 +07:00
parent 7f77da822f
commit 1a672f0908

View File

@@ -652,27 +652,28 @@ SELECT * FROM users LIMIT 10;"></textarea>
} }
async generateRecordForm() { async generateRecordForm() {
if (response.status === 401) {
this.logout();
return [];
}
const columns = await this.getTableStructure(this.currentTable); const columns = await this.getTableStructure(this.currentTable);
const container = document.getElementById('recordForm'); const container = document.getElementById('recordForm');
if (!columns || columns.length === 0) {
container.innerHTML = `<p class="text-red-500">Не удалось загрузить структуру таблицы</p>`;
return;
}
container.innerHTML = columns.map(col => ` container.innerHTML = columns.map(col => `
<div> <div>
<label class="block text-sm font-medium text-slate-700 mb-1"> <label class="block text-sm font-medium text-slate-700 mb-1">
${col.name} ${col.name}
${col.nullable ? '' : '<span class="text-red-500">*</span>'} ${col.nullable ? '' : '<span class="text-red-500">*</span>'}
</label> </label>
<input type="${this.getInputType(col.type)}" <input type="${this.getInputType(col.type)}"
name="${col.name}" name="${col.name}"
class="w-full px-4 py-2 border border-slate-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-transparent outline-none" class="w-full px-4 py-2 border border-slate-300 rounded-lg focus:ring-2 focus:ring-blue-500 focus:border-transparent outline-none"
${col.default ? `value="${col.default}"` : ''}> ${col.default ? `value="${col.default}"` : ''}>
<p class="text-xs text-slate-500 mt-1">${col.type}</p> <p class="text-xs text-slate-500 mt-1">${col.type}</p>
</div> </div>
`).join(''); `).join('');
} }
async getTableStructure(tableName) { async getTableStructure(tableName) {
try { try {
@@ -706,7 +707,11 @@ SELECT * FROM users LIMIT 10;"></textarea>
const inputs = form.querySelectorAll('input'); const inputs = form.querySelectorAll('input');
const data = {}; const data = {};
inputs.forEach(input => { inputs.forEach(input => {
if (input.type === 'number') { if (input.name === 'id') return;
if (input.type === 'checkbox') {
data[input.name] = input.checked;
} else if (input.type === 'number') {
data[input.name] = parseFloat(input.value); data[input.name] = parseFloat(input.value);
} else { } else {
data[input.name] = input.value; data[input.name] = input.value;