Browse Source
Merge in DESIGN/design from ~DESTINY.LIN/design:final/11.0 to final/11.0 * commit '0e318971e0bbea8f167ed6927993e5ad083737ca': REPORT-101608 【版本管理三期】通过版本中心入口进入版本详情,未保存的模板触发还原,选择保存还原会失败 代码规范 REPORT-101773 【版本管理三期】版本详情页面选择版本删除,删完一个操作框的按钮就点不动了 REPORT-101608 【版本管理三期】通过版本中心入口进入版本详情,未保存的模板触发还原,选择保存还原会失败 REPORT-101482 【版本管理二期】迁移失败/成功的提示,都有个帮助文档的跳转 REPORT-101608 【版本管理三期】通过版本中心入口进入版本详情,未保存的模板触发还原,选择保存还原会失败 REPORT-101026 【版本管理三期】预览版本文件,有报错 REPORT-101605 【版本管理三期】版本中心进入的版本详情入口,删除模板所有版本后,版本中心没有刷新new-design
Destiny.Lin-林锦龙
1 year ago
8 changed files with 251 additions and 86 deletions
@ -0,0 +1,19 @@ |
|||||||
|
package com.fr.design.mainframe.vcs; |
||||||
|
|
||||||
|
import java.util.List; |
||||||
|
|
||||||
|
/** |
||||||
|
* 版本管理表格操作事件 |
||||||
|
* |
||||||
|
* @author Destiny.Lin |
||||||
|
* @since 11.0 |
||||||
|
* Created on 2023/7/27 |
||||||
|
*/ |
||||||
|
public interface VcsTableOperatorListener { |
||||||
|
|
||||||
|
|
||||||
|
/** |
||||||
|
* 处理操作 |
||||||
|
*/ |
||||||
|
void doOperator(List<VcsTableEntity> entityList); |
||||||
|
} |
@ -0,0 +1,113 @@ |
|||||||
|
package com.fr.design.mainframe.vcs.common; |
||||||
|
|
||||||
|
import com.fr.base.vcs.DesignerMode; |
||||||
|
import com.fr.design.dialog.BasicDialog; |
||||||
|
import com.fr.design.dialog.FineJOptionPane; |
||||||
|
import com.fr.design.file.HistoryTemplateListCache; |
||||||
|
import com.fr.design.file.MultiTemplateTabPane; |
||||||
|
import com.fr.design.i18n.Toolkit; |
||||||
|
import com.fr.design.mainframe.DesignerContext; |
||||||
|
import com.fr.design.mainframe.JTemplate; |
||||||
|
import com.fr.design.mainframe.vcs.ui.VcsNewPane; |
||||||
|
import com.fr.design.worker.save.CallbackSaveWorker; |
||||||
|
import com.fr.general.ComparatorUtils; |
||||||
|
import com.fr.log.FineLoggerFactory; |
||||||
|
|
||||||
|
import javax.swing.JOptionPane; |
||||||
|
import javax.swing.SwingUtilities; |
||||||
|
|
||||||
|
/** |
||||||
|
* 版本管理关闭模板辅助类 |
||||||
|
* |
||||||
|
* @author Destiny.Lin |
||||||
|
* @since 11.0 |
||||||
|
* Created on 2023/7/27 |
||||||
|
*/ |
||||||
|
public class VcsCloseTemplateHelper { |
||||||
|
|
||||||
|
/** |
||||||
|
* 根据传入的pane与dialog生成指定面板的Vcs模板关闭的处理方法 |
||||||
|
* 如果指定模板已经打开: |
||||||
|
* <p>1.如果该模板已保存,则正常打开新版本管理弹窗 |
||||||
|
* <p>2.如果该模板未保存,触发保存逻辑 |
||||||
|
* <li>a.如果用户选择保存,则保存并不关闭模板,弹出新版本管理弹窗 |
||||||
|
* <li>b.如果用户选择不保存,则关闭当前模板,弹出新版本管理弹窗 |
||||||
|
* <li>c.如果用户选择取消, 则啥操作都不做 |
||||||
|
* |
||||||
|
* @param path 对应模板路径 |
||||||
|
* @param isCurrentEditing 是否是正在编辑的模板 |
||||||
|
* @param parent 生成的新版本管理的详情面板的父面板 |
||||||
|
*/ |
||||||
|
public static void checkTemplateSavedAndShowVcsNewPane(String path, boolean isCurrentEditing, BasicDialog parent, VcsNewPane pane) { |
||||||
|
VcsNewPaneWrapper wrapper = new VcsNewPaneWrapper(path, parent, pane); |
||||||
|
for (JTemplate jTemplate : HistoryTemplateListCache.getInstance().getHistoryList()) { |
||||||
|
if (ComparatorUtils.equals(jTemplate.getEditingFILE().getPath(), path)) { |
||||||
|
if (!jTemplate.isALLSaved()) { |
||||||
|
MultiTemplateTabPane.getInstance().setIsCloseCurrent(isCurrentEditing); |
||||||
|
MultiTemplateTabPane.getInstance().closeFormat(jTemplate); |
||||||
|
confirmCloseAndShowVcsNewPane(jTemplate, wrapper); |
||||||
|
return; |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
wrapper.show(); |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
/** |
||||||
|
* 自己生成新的VcsNewPane的Vcs模板关闭的处理方法 |
||||||
|
*/ |
||||||
|
public static void checkTemplateSavedAndShowVcsNewPane(String path, boolean isCurrentEditing) { |
||||||
|
checkTemplateSavedAndShowVcsNewPane(path, isCurrentEditing, null, null); |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
/** |
||||||
|
* 是否是当前编辑的模板 |
||||||
|
* |
||||||
|
* @param path 对应模板路径 |
||||||
|
* @return 是则返回true |
||||||
|
*/ |
||||||
|
public static boolean isCurrentEditing(String path) { |
||||||
|
JTemplate<?, ?> jt = HistoryTemplateListCache.getInstance().getCurrentEditingTemplate(); |
||||||
|
if (JTemplate.isValid(jt)) { |
||||||
|
String editing = jt.getEditingFILE().getPath(); |
||||||
|
return ComparatorUtils.equals(editing, path); |
||||||
|
} |
||||||
|
return false; |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
private static void confirmCloseAndShowVcsNewPane(JTemplate<?, ?> specifiedTemplate, VcsNewPaneWrapper wrapper) { |
||||||
|
if (specifiedTemplate == null) { |
||||||
|
return; |
||||||
|
} |
||||||
|
if (!specifiedTemplate.isALLSaved() && !DesignerMode.isVcsMode()) { |
||||||
|
specifiedTemplate.stopEditing(); |
||||||
|
int returnVal = FineJOptionPane.showConfirmDialog(DesignerContext.getDesignerFrame(), |
||||||
|
String.format("%s\"%s\" ?",Toolkit.i18nText("Fine-Design_Basic_Utils_Would_You_Like_To_Save"), specifiedTemplate.getEditingFILE()), |
||||||
|
Toolkit.i18nText("Fine-Design_Basic_Confirm"), JOptionPane.YES_NO_CANCEL_OPTION, JOptionPane.QUESTION_MESSAGE); |
||||||
|
if (returnVal == JOptionPane.YES_OPTION) { |
||||||
|
CallbackSaveWorker worker = specifiedTemplate.save(); |
||||||
|
worker.addSuccessCallback(() -> { |
||||||
|
FineLoggerFactory.getLogger().info(Toolkit.i18nText("Fine-Design_Basic_Template_Already_Saved", specifiedTemplate.getEditingFILE().getName())); |
||||||
|
SwingUtilities.invokeLater(wrapper::show); |
||||||
|
}); |
||||||
|
worker.start(specifiedTemplate.getRuntimeId()); |
||||||
|
} else if (returnVal == JOptionPane.NO_OPTION) { |
||||||
|
closeTpl(specifiedTemplate); |
||||||
|
wrapper.show(); |
||||||
|
} |
||||||
|
} else { |
||||||
|
wrapper.show(); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
private static void closeTpl(JTemplate<?, ?> specifiedTemplate) { |
||||||
|
HistoryTemplateListCache.getInstance().closeSelectedReport(specifiedTemplate); |
||||||
|
MultiTemplateTabPane.getInstance().closeAndFreeLock(specifiedTemplate); |
||||||
|
MultiTemplateTabPane.getInstance().activePrevTemplateAfterClose(); |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,36 @@ |
|||||||
|
package com.fr.design.mainframe.vcs.common; |
||||||
|
|
||||||
|
import com.fr.design.dialog.BasicDialog; |
||||||
|
import com.fr.design.mainframe.vcs.ui.VcsNewPane; |
||||||
|
|
||||||
|
/** |
||||||
|
* 构建VcsNewPane的包装类 |
||||||
|
* |
||||||
|
* @author Destiny.Lin |
||||||
|
* @since 11.0 |
||||||
|
* Created on 2023/7/27 |
||||||
|
*/ |
||||||
|
public class VcsNewPaneWrapper { |
||||||
|
|
||||||
|
private String path; |
||||||
|
private BasicDialog dialog; |
||||||
|
private VcsNewPane pane; |
||||||
|
|
||||||
|
public VcsNewPaneWrapper(String path, BasicDialog dialog, VcsNewPane pane) { |
||||||
|
this.path = path; |
||||||
|
this.dialog = dialog; |
||||||
|
this.pane = pane; |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 显示面板 |
||||||
|
*/ |
||||||
|
public void show() { |
||||||
|
if (pane != null) { |
||||||
|
pane.showDialog(dialog); |
||||||
|
} else { |
||||||
|
VcsNewPane newPane = new VcsNewPane(path); |
||||||
|
newPane.showDialog(dialog); |
||||||
|
} |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue