mirror of
https://github.com/jxpeng98/obsidian-to-NotionNext
synced 2026-07-29 08:08:34 +08:00
Back up edit modal
This commit is contained in:
@@ -1,13 +1,11 @@
|
|||||||
import {App, ButtonComponent, Modal, Setting} from "obsidian";
|
import {App, ButtonComponent, Modal, Setting} from "obsidian";
|
||||||
import {SettingModal} from "./settingModal";
|
import {customProperty, SettingModal} from "./settingModal";
|
||||||
import ObsidianSyncNotionPlugin from "../main";
|
import ObsidianSyncNotionPlugin from "../main";
|
||||||
import {DatabaseDetails, ObsidianSettingTab} from "./settingTabs";
|
import {DatabaseDetails, ObsidianSettingTab} from "./settingTabs";
|
||||||
import {i18nConfig} from "../lang/I18n";
|
import {i18nConfig} from "../lang/I18n";
|
||||||
import {customProperty} from "./settingModal";
|
|
||||||
|
|
||||||
export class EditModal extends SettingModal {
|
export class EditModal extends SettingModal {
|
||||||
propertyLines: Setting[] = []; // Store all property line settings
|
propertyLines: Setting[] = []; // Store all property line settings
|
||||||
properties: { customName: string, customType: string , index: number}[] = []; // Array to store property values and types
|
|
||||||
[key: string]: any; // Index signature
|
[key: string]: any; // Index signature
|
||||||
dataTemp: Record<string, any> = {
|
dataTemp: Record<string, any> = {
|
||||||
databaseFormatTemp: '',
|
databaseFormatTemp: '',
|
||||||
@@ -100,6 +98,8 @@ export class EditModal extends SettingModal {
|
|||||||
let {contentEl} = this;
|
let {contentEl} = this;
|
||||||
contentEl.empty();
|
contentEl.empty();
|
||||||
|
|
||||||
|
let properties: { customName: string, customType: string , index: number} = this.dataTemp.customPropertiesTemp;
|
||||||
|
|
||||||
const editDiv = contentEl.createDiv('edit-div');
|
const editDiv = contentEl.createDiv('edit-div');
|
||||||
const nextTabs = contentEl.createDiv('next-tabs');
|
const nextTabs = contentEl.createDiv('next-tabs');
|
||||||
|
|
||||||
@@ -144,6 +144,8 @@ export class EditModal extends SettingModal {
|
|||||||
.setIcon('cross')
|
.setIcon('cross')
|
||||||
.onClick(() => {
|
.onClick(() => {
|
||||||
this.dataTemp.savedTempInd = false;
|
this.dataTemp.savedTempInd = false;
|
||||||
|
// reset the properties
|
||||||
|
const properties: any[] = [];
|
||||||
this.close();
|
this.close();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
@@ -186,10 +188,6 @@ export class EditModal extends SettingModal {
|
|||||||
|
|
||||||
this.updateSettingEl(CustomNameEl, value)
|
this.updateSettingEl(CustomNameEl, value)
|
||||||
|
|
||||||
// this.updateSettingEl(CustomValuesEl, value)
|
|
||||||
|
|
||||||
// await this.plugin.saveSettings();
|
|
||||||
// await this.plugin.commands.updateCommand();
|
|
||||||
})
|
})
|
||||||
);
|
);
|
||||||
|
|
||||||
@@ -239,6 +237,9 @@ export class EditModal extends SettingModal {
|
|||||||
this.createSettingEl(nextTabs, i18nConfig.DatabaseID, i18nConfig.DatabaseIDDesc, 'password', i18nConfig.DatabaseIDText, this.dataTemp.databaseIDTemp, 'dataTemp', 'databaseIDTemp')
|
this.createSettingEl(nextTabs, i18nConfig.DatabaseID, i18nConfig.DatabaseIDDesc, 'password', i18nConfig.DatabaseIDText, this.dataTemp.databaseIDTemp, 'dataTemp', 'databaseIDTemp')
|
||||||
|
|
||||||
// add new property button
|
// add new property button
|
||||||
|
const properties = this.dataTemp.customPropertiesTemp;
|
||||||
|
const propertiesContainer = nextTabs.createDiv("properties-container");
|
||||||
|
|
||||||
new Setting(nextTabs)
|
new Setting(nextTabs)
|
||||||
.setName(i18nConfig.NotionCustomValues)
|
.setName(i18nConfig.NotionCustomValues)
|
||||||
.setDesc(i18nConfig.NotionCustomValuesDesc)
|
.setDesc(i18nConfig.NotionCustomValuesDesc)
|
||||||
@@ -247,32 +248,47 @@ export class EditModal extends SettingModal {
|
|||||||
.setTooltip('Add new property')
|
.setTooltip('Add new property')
|
||||||
.setIcon('plus')
|
.setIcon('plus')
|
||||||
.onClick(async () => {
|
.onClick(async () => {
|
||||||
const customTabs = nextTabs.createDiv("custom-tabs");
|
this.createPropertyLine(propertiesContainer, properties);
|
||||||
this.createPropertyLine(customTabs);
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
const retrieveTabs = nextTabs.createDiv("retrieve-tabs");
|
|
||||||
this.retrievePropertyLine(retrieveTabs, this.dataTemp.customPropertiesTemp)
|
this.initializePropertyLines(propertiesContainer, properties)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
initializePropertyLines(containerEl: HTMLElement, properties: customProperty[]): void {
|
||||||
|
|
||||||
|
console.log(properties.length, "properties have been created");
|
||||||
|
|
||||||
|
containerEl.innerHTML = '';
|
||||||
|
|
||||||
|
// Retrieve and display existing properties
|
||||||
|
properties.forEach(property => {
|
||||||
|
createOrUpdatePropertyLine(containerEl, property);
|
||||||
|
});
|
||||||
|
|
||||||
|
// Add a button for creating new properties at the end of the container
|
||||||
|
const addButton = document.createElement('button');
|
||||||
|
addButton.textContent = "Add New Property";
|
||||||
|
addButton.onclick = () => {
|
||||||
|
createOrUpdatePropertyLine(containerEl, null, properties);
|
||||||
|
};
|
||||||
|
|
||||||
|
containerEl.appendChild(addButton);
|
||||||
}
|
}
|
||||||
|
|
||||||
retrievePropertyLine(containerEl: HTMLElement, properties: customProperty[]): void {
|
createOrUpdatePropertyLine(containerEl: HTMLElement, property: null, properties: customProperty[]) {
|
||||||
const propertyIndex = properties.length;
|
const isExistingProperty = property !== null;
|
||||||
|
const propertyIndex = isExistingProperty ? property.index : properties.length;
|
||||||
|
|
||||||
console.log(propertyIndex, "have been created");
|
|
||||||
|
|
||||||
this.properties.forEach((property, index) => {
|
|
||||||
const propertyLine = new Setting(containerEl)
|
const propertyLine = new Setting(containerEl)
|
||||||
.setName(propertyIndex === 0 ? i18nConfig.CustomPropertyFirstColumn : `${i18nConfig.CustomProperty} ${propertyIndex}`)
|
.setName(propertyIndex === 0 ? i18nConfig.CustomPropertyFirstColumn : `${i18nConfig.CustomProperty} ${propertyIndex}`)
|
||||||
.setDesc(propertyIndex === 0 ? i18nConfig.CustomPropertyFirstColumnDesc : "");
|
.setDesc(propertyIndex === 0 ? i18nConfig.CustomPropertyFirstColumnDesc : "");
|
||||||
|
|
||||||
propertyLine.addText(text => {
|
propertyLine.addText(text => {
|
||||||
text.setPlaceholder(i18nConfig.CustomPropertyName)
|
text.setPlaceholder(i18nConfig.CustomPropertyName)
|
||||||
.setValue("")
|
.setValue(isExistingProperty ? property.customName : "")
|
||||||
.onChange(value => {
|
.onChange(value => {
|
||||||
let actualIndex = properties.findIndex(p => p.index === propertyIndex);
|
let actualIndex = properties.findIndex(p => p.index === propertyIndex);
|
||||||
if (actualIndex !== -1) {
|
if (actualIndex !== -1) {
|
||||||
@@ -282,7 +298,7 @@ export class EditModal extends SettingModal {
|
|||||||
});
|
});
|
||||||
|
|
||||||
propertyLine.addDropdown((dropdown) => {
|
propertyLine.addDropdown((dropdown) => {
|
||||||
const options: Record<string, string> = {
|
const options = {
|
||||||
'text': 'Text',
|
'text': 'Text',
|
||||||
'number': 'Number',
|
'number': 'Number',
|
||||||
'select': 'Select',
|
'select': 'Select',
|
||||||
@@ -292,56 +308,48 @@ export class EditModal extends SettingModal {
|
|||||||
'checkbox': 'Checkbox',
|
'checkbox': 'Checkbox',
|
||||||
'url': 'URL',
|
'url': 'URL',
|
||||||
'email': 'Email',
|
'email': 'Email',
|
||||||
'phone_number': 'Phone Number',
|
'phone_number': 'Phone Number'
|
||||||
// 'formula': 'Formula',
|
|
||||||
// 'relation': 'Relation',
|
|
||||||
// 'rollup': 'Rollup',
|
|
||||||
// 'created_time': 'Created time',
|
|
||||||
// 'created_by': 'Created by',
|
|
||||||
// 'last_edited_time': 'Last Edited Time',
|
|
||||||
// 'last_edited_by': 'Last Edited By',
|
|
||||||
};
|
};
|
||||||
|
|
||||||
// Use a reference to the current property object
|
|
||||||
const currentProperty = properties[propertyIndex];
|
|
||||||
|
|
||||||
if (propertyIndex === 0) {
|
|
||||||
dropdown.addOption("title", "Title");
|
|
||||||
} else {
|
|
||||||
Object.keys(options).forEach(key => {
|
Object.keys(options).forEach(key => {
|
||||||
dropdown.addOption(key, options[key]);
|
dropdown.addOption(key, options[key]);
|
||||||
});
|
});
|
||||||
}
|
dropdown.setValue(isExistingProperty ? property.customType : "")
|
||||||
dropdown.setValue("")
|
|
||||||
.onChange(value => {
|
.onChange(value => {
|
||||||
if (currentProperty) {
|
if (isExistingProperty) {
|
||||||
currentProperty.customType = value;
|
property.customType = value;
|
||||||
// Retrieve the index of currentProperty from the properties array
|
|
||||||
const updatedIndex = properties.findIndex(p => p === currentProperty);
|
|
||||||
console.log(`Updated value at index ${updatedIndex}: ${value}`);
|
|
||||||
} else {
|
} else {
|
||||||
console.log("Property not found, may have been deleted.");
|
const newProperty = { customName: '', customType: value, index: propertyIndex };
|
||||||
|
properties.push(newProperty);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
if (isExistingProperty && propertyIndex > 0) {
|
||||||
if (propertyIndex > 0) {
|
|
||||||
propertyLine.addButton(button => {
|
propertyLine.addButton(button => {
|
||||||
return button
|
return button
|
||||||
.setTooltip("Delete")
|
.setTooltip("Delete")
|
||||||
.setIcon("trash")
|
.setIcon("trash")
|
||||||
.onClick(() => {
|
.onClick(() => {
|
||||||
this.deleteProperty(propertyIndex);
|
deleteProperty(propertyIndex, properties);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
});
|
|
||||||
|
if (!isExistingProperty) {
|
||||||
|
properties.push({ customName: "", customType: "", index: propertyIndex });
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
deleteProperty(index: number, properties: customProperty[]): void {
|
||||||
|
const updatedProperties = properties.filter(p => p.index !== index);
|
||||||
|
properties.length = 0; // Clear existing array
|
||||||
|
updatedProperties.forEach(p => properties.push(p)); // Re-add filtered properties
|
||||||
|
initializePropertyLines(document.getElementById('propertiesContainer'), properties); // Reinitialize UI
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
createStyleDiv(className: string, commandValue: boolean = false, parentEl: HTMLElement): HTMLDivElement {
|
createStyleDiv(className: string, commandValue: boolean = false, parentEl: HTMLElement): HTMLDivElement {
|
||||||
return super.createStyleDiv(className, commandValue, parentEl);
|
return super.createStyleDiv(className, commandValue, parentEl);
|
||||||
|
|||||||
Reference in New Issue
Block a user