Browse Source

REPORT-100167 【版本管理二期】自动清理配置项保存不生效

newui
Destiny.Lin 1 year ago
parent
commit
e17d166125
  1. 39
      designer-base/src/main/java/com/fr/design/actions/file/PreferencePane.java

39
designer-base/src/main/java/com/fr/design/actions/file/PreferencePane.java

@ -50,9 +50,12 @@ import com.fr.io.attr.ImageExportAttr;
import com.fr.locale.InterProviderFactory; import com.fr.locale.InterProviderFactory;
import com.fr.log.FineLoggerFactory; import com.fr.log.FineLoggerFactory;
import com.fr.report.ReportConfigManager; import com.fr.report.ReportConfigManager;
import com.fr.scheduler.tool.FineScheduler;
import com.fr.stable.Constants; import com.fr.stable.Constants;
import com.fr.stable.os.OperatingSystem; import com.fr.stable.os.OperatingSystem;
import com.fr.third.apache.logging.log4j.Level; import com.fr.third.apache.logging.log4j.Level;
import com.fr.third.guava.collect.BiMap;
import com.fr.third.guava.collect.HashBiMap;
import com.fr.transaction.Configurations; import com.fr.transaction.Configurations;
import com.fr.transaction.Worker; import com.fr.transaction.Worker;
import com.fr.transaction.WorkerAdaptor; import com.fr.transaction.WorkerAdaptor;
@ -92,6 +95,7 @@ import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent; import java.awt.event.WindowEvent;
import java.io.File; import java.io.File;
import java.text.DecimalFormat; import java.text.DecimalFormat;
import java.util.HashMap;
import java.util.Locale; import java.util.Locale;
import java.util.Map; import java.util.Map;
import java.util.concurrent.ExecutionException; import java.util.concurrent.ExecutionException;
@ -245,7 +249,15 @@ public class PreferencePane extends BasicPane {
private UIRadioButton previewRenderQuality; private UIRadioButton previewRenderQuality;
private static final int DPI_SCALE_S = 1; private static final int DPI_SCALE_S = 1;
private static final int DPI_SCALE_M = 2; private static final int DPI_SCALE_M = 2;
private static final BiMap<Integer, Integer> INDEX_DAY_MAP = HashBiMap.create(new HashMap<Integer, Integer>() {
{
put(ONE_DAY_INDEX, ONE_DAY_INT);
put(ONE_WEEK_INDEX, ONE_WEEK_INT);
put(ONE_MONTH_INDEX, ONE_MONTH_INT);
put(SIX_MONTH_INDEX, SIX_MONTH_INT);
put(THREE_MONTH_INDEX, THREE_MONTH_INT);
}
});
public PreferencePane() { public PreferencePane() {
this.initComponents(); this.initComponents();
} }
@ -470,9 +482,9 @@ public class PreferencePane extends BasicPane {
private VcsMovePanel createMovePane(CardLayout cardLayout, JPanel parentPane) { private VcsMovePanel createMovePane(CardLayout cardLayout, JPanel parentPane) {
return new VcsMovePanel(cardLayout, parentPane, new VcsMovePanel.MoveCallBack(){ return new VcsMovePanel(cardLayout, parentPane, new VcsMovePanel.MoveCallBack(){
@Override @Override
public void doCallBack(boolean visible) { public void doCallBack(boolean useV2) {
saveIntervalPane.setVisible(visible); saveIntervalPane.setVisible(useV2);
autoCleanPane.setVisible(visible); autoCleanPane.setVisible(useV2);
} }
}); });
}; };
@ -916,6 +928,8 @@ public class PreferencePane extends BasicPane {
useVcsAutoSaveScheduleCheckBox.setSelected(vcsConfigManager.isUseAutoSave()); useVcsAutoSaveScheduleCheckBox.setSelected(vcsConfigManager.isUseAutoSave());
useVcsAutoCleanScheduleCheckBox.setSelected(VcsConfig.getInstance().isUseV2AutoClean()); useVcsAutoCleanScheduleCheckBox.setSelected(VcsConfig.getInstance().isUseV2AutoClean());
autoSaveIntervalEditor.setValue(vcsConfigManager.getAutoSaveInterval()); autoSaveIntervalEditor.setValue(vcsConfigManager.getAutoSaveInterval());
autoCleanIntervalComboBox.setSelectedIndex(getIndex(VcsConfig.getInstance().getV2CleanInterval()));
autoCleanRetainIntervalComboBox.setSelectedIndex(getIndex(VcsConfig.getInstance().getV2RetainInterval()));
gridLineColorTBButton.setColor(designerEnvManager.getGridLineColor()); gridLineColorTBButton.setColor(designerEnvManager.getGridLineColor());
paginationLineColorTBButton.setColor(designerEnvManager.getPaginationLineColor()); paginationLineColorTBButton.setColor(designerEnvManager.getPaginationLineColor());
@ -1005,18 +1019,11 @@ public class PreferencePane extends BasicPane {
} }
private int getDay(int dateIndex) { private int getDay(int dateIndex) {
switch (dateIndex) { return INDEX_DAY_MAP.getOrDefault(dateIndex, THREE_MONTH_INT);
case ONE_DAY_INDEX: }
return ONE_DAY_INT;
case ONE_WEEK_INDEX: private int getIndex(int day) {
return ONE_WEEK_INT; return INDEX_DAY_MAP.inverse().getOrDefault(day, THREE_MONTH_INDEX);
case ONE_MONTH_INDEX:
return ONE_MONTH_INT;
case SIX_MONTH_INDEX:
return SIX_MONTH_INT;
default:
return THREE_MONTH_INT;
}
} }
/** /**

Loading…
Cancel
Save