Browse Source
Merge in DESIGN/design from ~KERRY/design_10.0:feature/x to feature/x * commit '0e79734a55dd4db1f75463d2f4610286ec81ed20': 代码修改 代码修改 REPORT-60153 复用组件接触点优化二期feature/x
kerry
3 years ago
62 changed files with 2591 additions and 1236 deletions
@ -0,0 +1,193 @@ |
|||||||
|
package com.fr.design; |
||||||
|
|
||||||
|
import com.fr.concurrent.NamedThreadFactory; |
||||||
|
import com.fr.general.CloudCenter; |
||||||
|
import com.fr.general.CloudCenterConfig; |
||||||
|
import com.fr.general.http.HttpToolbox; |
||||||
|
import com.fr.log.FineLoggerFactory; |
||||||
|
import com.fr.stable.ProductConstants; |
||||||
|
import com.fr.stable.StableUtils; |
||||||
|
import com.fr.stable.StringUtils; |
||||||
|
import com.fr.stable.xml.XMLPrintWriter; |
||||||
|
import com.fr.stable.xml.XMLReaderHelper; |
||||||
|
import com.fr.stable.xml.XMLTools; |
||||||
|
import com.fr.stable.xml.XMLable; |
||||||
|
import com.fr.stable.xml.XMLableReader; |
||||||
|
import com.fr.third.javax.xml.stream.XMLStreamException; |
||||||
|
import com.fr.third.org.apache.commons.io.FileUtils; |
||||||
|
|
||||||
|
import java.io.ByteArrayOutputStream; |
||||||
|
import java.io.File; |
||||||
|
import java.io.FileInputStream; |
||||||
|
import java.io.FileNotFoundException; |
||||||
|
import java.io.IOException; |
||||||
|
import java.io.InputStream; |
||||||
|
import java.nio.charset.StandardCharsets; |
||||||
|
import java.util.HashMap; |
||||||
|
import java.util.Iterator; |
||||||
|
import java.util.Map; |
||||||
|
import java.util.concurrent.ExecutorService; |
||||||
|
import java.util.concurrent.Executors; |
||||||
|
|
||||||
|
/** |
||||||
|
* Created by kerry on 2021/10/22 |
||||||
|
*/ |
||||||
|
public class DesignerCloudURLManager implements XMLable { |
||||||
|
private static final String CLOUD_URL_INFO = "cloudUrl.info"; |
||||||
|
private static final String ROOT_XML_TAG = "CloudUrlInfoList"; |
||||||
|
private static final String CHILD_XML_TAG = "CloudUrlInfo"; |
||||||
|
private final Map<String, String> urlMap = new HashMap<>(); |
||||||
|
|
||||||
|
public static DesignerCloudURLManager getInstance() { |
||||||
|
return DesignerCloudURLManager.HOLDER.singleton; |
||||||
|
} |
||||||
|
|
||||||
|
private final ExecutorService executorService = Executors.newSingleThreadExecutor(new NamedThreadFactory("TestCloudConnectThread")); |
||||||
|
|
||||||
|
private volatile boolean testResult; |
||||||
|
|
||||||
|
|
||||||
|
private static class HOLDER { |
||||||
|
private static final DesignerCloudURLManager singleton = new DesignerCloudURLManager(); |
||||||
|
} |
||||||
|
|
||||||
|
private DesignerCloudURLManager() { |
||||||
|
loadURLXMLFile(); |
||||||
|
} |
||||||
|
|
||||||
|
public String acquireUrlByKind(String key) { |
||||||
|
String url = urlMap.getOrDefault(key, StringUtils.EMPTY); |
||||||
|
if (StringUtils.isEmpty(url)) { |
||||||
|
//本地缓存中为空时,直接从云中心获取,获取完成后异步更新本地缓存文件
|
||||||
|
String latestUrl = CloudCenter.getInstance().acquireConf(key, StringUtils.EMPTY); |
||||||
|
executorService.submit(() -> { |
||||||
|
updateURLXMLFile(key, latestUrl); |
||||||
|
}); |
||||||
|
return url; |
||||||
|
} |
||||||
|
//本地缓存不为空时,直接返回对应 url,同时异步更新
|
||||||
|
executorService.submit(() -> { |
||||||
|
String latestUrl = CloudCenter.getInstance().acquireConf(key, StringUtils.EMPTY); |
||||||
|
updateURLXMLFile(key, latestUrl); |
||||||
|
}); |
||||||
|
return url; |
||||||
|
} |
||||||
|
|
||||||
|
private synchronized void updateURLXMLFile(String key, String url) { |
||||||
|
if (!urlMap.containsKey(key) || !url.equals(urlMap.get(key))) { |
||||||
|
urlMap.put(key, url); |
||||||
|
saveURLXMLFile(); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
public void testConnect() { |
||||||
|
executorService.submit(() -> { |
||||||
|
testResult = isOnline(); |
||||||
|
}); |
||||||
|
} |
||||||
|
|
||||||
|
public boolean isConnected() { |
||||||
|
return testResult; |
||||||
|
} |
||||||
|
|
||||||
|
public boolean isOnline() { |
||||||
|
if (CloudCenterConfig.getInstance().isOnline()) { |
||||||
|
String ping = acquireUrlByKind("ping"); |
||||||
|
if (StringUtils.isNotEmpty(ping)) { |
||||||
|
try { |
||||||
|
return StringUtils.isEmpty(HttpToolbox.get(ping)); |
||||||
|
} catch (Exception ignore) { |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
return false; |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
/** |
||||||
|
* 加载本地 url 管理文件 |
||||||
|
*/ |
||||||
|
private void loadURLXMLFile() { |
||||||
|
if (!getInfoFile().exists()) { |
||||||
|
return; |
||||||
|
} |
||||||
|
XMLableReader reader = null; |
||||||
|
try (InputStream in = new FileInputStream(getInfoFile())) { |
||||||
|
// XMLableReader 还是应该考虑实现 Closable 接口的,这样就能使用 try-with 语句了
|
||||||
|
reader = XMLReaderHelper.createXMLableReader(in, XMLPrintWriter.XML_ENCODER); |
||||||
|
if (reader == null) { |
||||||
|
return; |
||||||
|
} |
||||||
|
reader.readXMLObject(this); |
||||||
|
} catch (FileNotFoundException e) { |
||||||
|
// do nothing
|
||||||
|
} catch (XMLStreamException | IOException e) { |
||||||
|
FineLoggerFactory.getLogger().error(e.getMessage(), e); |
||||||
|
} finally { |
||||||
|
try { |
||||||
|
if (reader != null) { |
||||||
|
reader.close(); |
||||||
|
} |
||||||
|
} catch (XMLStreamException e) { |
||||||
|
FineLoggerFactory.getLogger().error(e.getMessage(), e); |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
private File getInfoFile() { |
||||||
|
|
||||||
|
File file = new File(StableUtils.pathJoin(ProductConstants.getEnvHome(), CLOUD_URL_INFO)); |
||||||
|
try { |
||||||
|
if (!file.exists()) { |
||||||
|
file.createNewFile(); |
||||||
|
} |
||||||
|
} catch (Exception ex) { |
||||||
|
FineLoggerFactory.getLogger().error(ex.getMessage(), ex); |
||||||
|
} |
||||||
|
return file; |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 保存到本地 URL 管理文件中,存放在 .Finereport110 中 |
||||||
|
*/ |
||||||
|
void saveURLXMLFile() { |
||||||
|
try { |
||||||
|
ByteArrayOutputStream out = new ByteArrayOutputStream(); |
||||||
|
XMLTools.writeOutputStreamXML(this, out); |
||||||
|
out.flush(); |
||||||
|
out.close(); |
||||||
|
String fileContent = new String(out.toByteArray(), StandardCharsets.UTF_8); |
||||||
|
FileUtils.writeStringToFile(getInfoFile(), fileContent, StandardCharsets.UTF_8); |
||||||
|
} catch (Exception ex) { |
||||||
|
FineLoggerFactory.getLogger().error(ex.getMessage()); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
@Override |
||||||
|
public void readXML(XMLableReader reader) { |
||||||
|
String tagName = reader.getTagName(); |
||||||
|
if (tagName.equals(CHILD_XML_TAG)) { |
||||||
|
String key = reader.getAttrAsString("key", StringUtils.EMPTY); |
||||||
|
String value = reader.getAttrAsString("url", StringUtils.EMPTY); |
||||||
|
this.urlMap.put(key, value); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public void writeXML(XMLPrintWriter xmlPrintWriter) { |
||||||
|
xmlPrintWriter.startTAG(ROOT_XML_TAG); |
||||||
|
Iterator<Map.Entry<String, String>> iterable = urlMap.entrySet().iterator(); |
||||||
|
while (iterable.hasNext()) { |
||||||
|
Map.Entry<String, String> entry = iterable.next(); |
||||||
|
xmlPrintWriter.startTAG(CHILD_XML_TAG).attr("key", entry.getKey()).attr("url", entry.getValue()).end(); |
||||||
|
} |
||||||
|
xmlPrintWriter.end(); |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public Object clone() throws CloneNotSupportedException { |
||||||
|
return null; |
||||||
|
} |
||||||
|
} |
@ -1,169 +0,0 @@ |
|||||||
package com.fr.design.mainframe.reuse; |
|
||||||
|
|
||||||
import com.fr.base.background.ColorBackground; |
|
||||||
import com.fr.design.dialog.UIDialog; |
|
||||||
import com.fr.design.gui.ilable.UILabel; |
|
||||||
import com.fr.design.i18n.Toolkit; |
|
||||||
import com.fr.design.layout.FRGUIPaneFactory; |
|
||||||
import com.fr.design.mainframe.PromptWindow; |
|
||||||
import com.fr.design.mainframe.share.collect.ComponentCollector; |
|
||||||
import com.fr.design.utils.gui.GUICoreUtils; |
|
||||||
import com.fr.general.IOUtils; |
|
||||||
|
|
||||||
import javax.swing.BorderFactory; |
|
||||||
import javax.swing.ImageIcon; |
|
||||||
import javax.swing.JButton; |
|
||||||
import javax.swing.JPanel; |
|
||||||
import java.awt.BorderLayout; |
|
||||||
import java.awt.Color; |
|
||||||
import java.awt.Dialog; |
|
||||||
import java.awt.Dimension; |
|
||||||
import java.awt.FlowLayout; |
|
||||||
import java.awt.Font; |
|
||||||
import java.awt.Frame; |
|
||||||
import java.awt.Graphics; |
|
||||||
import java.awt.Graphics2D; |
|
||||||
import java.awt.Image; |
|
||||||
import java.awt.RenderingHints; |
|
||||||
import java.awt.geom.RoundRectangle2D; |
|
||||||
|
|
||||||
public class ReuseGuideDialog extends UIDialog implements PromptWindow { |
|
||||||
InnerDialog innerDialog; |
|
||||||
private static final Dimension DEFAULT = new Dimension(735, 510); |
|
||||||
|
|
||||||
public ReuseGuideDialog(Frame parent) { |
|
||||||
super(parent); |
|
||||||
} |
|
||||||
|
|
||||||
@Override |
|
||||||
public void showWindow() { |
|
||||||
innerDialog = new InnerDialog(this); |
|
||||||
JPanel backGroundPane = new JPanel() { |
|
||||||
@Override |
|
||||||
protected void paintComponent(Graphics g) { |
|
||||||
Image icon = IOUtils.readImage("com/fr/base/images/share/background.png");// 003.jpg是测试图片在项目的根目录下
|
|
||||||
g.drawImage(icon, 0, 0, getSize().width, getSize().height, this);// 图片会自动缩放
|
|
||||||
} |
|
||||||
}; |
|
||||||
add(backGroundPane, BorderLayout.CENTER); |
|
||||||
initStyle(); |
|
||||||
innerDialog.showWindow(); |
|
||||||
} |
|
||||||
|
|
||||||
private void initStyle() { |
|
||||||
setSize(DEFAULT); |
|
||||||
setUndecorated(true); |
|
||||||
setBackground(new Color(0, 0, 0, 0)); |
|
||||||
GUICoreUtils.centerWindow(this); |
|
||||||
} |
|
||||||
|
|
||||||
@Override |
|
||||||
public void hideWindow() { |
|
||||||
ComponentReuseNotificationInfo.getInstance().updateLastGuidePopUpTime(); |
|
||||||
this.setVisible(false); |
|
||||||
if (innerDialog != null) { |
|
||||||
innerDialog.setVisible(false); |
|
||||||
innerDialog.dispose(); |
|
||||||
innerDialog = null; |
|
||||||
} |
|
||||||
this.dispose(); |
|
||||||
} |
|
||||||
|
|
||||||
@Override |
|
||||||
public void checkValid() { |
|
||||||
|
|
||||||
} |
|
||||||
|
|
||||||
class InnerDialog extends UIDialog { |
|
||||||
private final Dimension DEFAULT = new Dimension(700, 475); |
|
||||||
private static final int TITLE_FONT_SIZE = 20; |
|
||||||
|
|
||||||
public InnerDialog(Dialog dialog) { |
|
||||||
super(dialog); |
|
||||||
} |
|
||||||
|
|
||||||
public void showWindow() { |
|
||||||
add(createCenterPanel(), BorderLayout.CENTER); |
|
||||||
add(createSouthPanel(), BorderLayout.SOUTH); |
|
||||||
add(createNorthPanel(), BorderLayout.NORTH); |
|
||||||
showDialog(); |
|
||||||
} |
|
||||||
|
|
||||||
private JPanel createNorthPanel() { |
|
||||||
JPanel northPanel = new JPanel(new FlowLayout(FlowLayout.RIGHT)); |
|
||||||
|
|
||||||
//右上角关闭按钮
|
|
||||||
JButton button = new JButton(new ImageIcon(IOUtils.readImage("/com/fr/base/images/share/close.png").getScaledInstance(15, 15, Image.SCALE_SMOOTH))); |
|
||||||
button.setBorder(null); |
|
||||||
button.setOpaque(false); |
|
||||||
button.addActionListener(e -> ReuseGuideDialog.this.hideWindow()); |
|
||||||
|
|
||||||
northPanel.setBorder(BorderFactory.createEmptyBorder(10, 0, 0, 15)); |
|
||||||
northPanel.setOpaque(false); |
|
||||||
northPanel.add(button); |
|
||||||
return northPanel; |
|
||||||
} |
|
||||||
|
|
||||||
private JPanel createCenterPanel() { |
|
||||||
JPanel centerPanel = new JPanel(new BorderLayout()); |
|
||||||
|
|
||||||
UILabel titleLabel = new UILabel(Toolkit.i18nText("Fine-Design_Share_Drag_And_Make_Component")); |
|
||||||
UILabel imageLabel = new UILabel(new ImageIcon(IOUtils.readImage("com/fr/design/images/dashboard/guide.png").getScaledInstance(DEFAULT.width, DEFAULT.height, Image.SCALE_SMOOTH))); |
|
||||||
titleLabel.setFont(new Font(titleLabel.getFont().getName(), Font.BOLD, TITLE_FONT_SIZE)); |
|
||||||
titleLabel.setBorder(BorderFactory.createEmptyBorder()); |
|
||||||
|
|
||||||
JPanel panel = new JPanel(new FlowLayout(FlowLayout.CENTER)); |
|
||||||
panel.setOpaque(false); |
|
||||||
panel.add(titleLabel); |
|
||||||
|
|
||||||
centerPanel.setBorder(BorderFactory.createEmptyBorder(0, 0, 10, 0)); |
|
||||||
centerPanel.setOpaque(false); |
|
||||||
centerPanel.add(imageLabel, BorderLayout.CENTER); |
|
||||||
centerPanel.add(panel, BorderLayout.NORTH); |
|
||||||
return centerPanel; |
|
||||||
} |
|
||||||
|
|
||||||
private JPanel createSouthPanel() { |
|
||||||
JPanel southPanel = FRGUIPaneFactory.createBorderLayout_S_Pane(); |
|
||||||
|
|
||||||
JButton button = new JButton(Toolkit.i18nText("Fine-Design_Share_Try_Drag")) { |
|
||||||
@Override |
|
||||||
public void paint(Graphics g) { |
|
||||||
ColorBackground buttonBackground = ColorBackground.getInstance(Color.decode("#419BF9")); |
|
||||||
Graphics2D g2d = (Graphics2D) g; |
|
||||||
g2d.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON); |
|
||||||
buttonBackground.paint(g2d, new RoundRectangle2D.Double(0, 0, getWidth(), getHeight(), 8, 8)); |
|
||||||
g2d.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_OFF); |
|
||||||
super.paint(g); |
|
||||||
} |
|
||||||
}; |
|
||||||
button.setBorder(null); |
|
||||||
button.setForeground(Color.WHITE); |
|
||||||
button.setOpaque(false); |
|
||||||
button.addActionListener(e -> ReuseGuideDialog.this.hideWindow()); |
|
||||||
|
|
||||||
southPanel.setBorder(BorderFactory.createEmptyBorder(0, 290, 19, 290)); |
|
||||||
southPanel.setPreferredSize(new Dimension(DEFAULT.width, 51)); |
|
||||||
southPanel.setOpaque(false); |
|
||||||
southPanel.add(button); |
|
||||||
return southPanel; |
|
||||||
} |
|
||||||
|
|
||||||
/** |
|
||||||
* 显示窗口 |
|
||||||
*/ |
|
||||||
private void showDialog() { |
|
||||||
setSize(DEFAULT); |
|
||||||
setUndecorated(true); |
|
||||||
GUICoreUtils.centerWindow(this); |
|
||||||
setModalityType(ModalityType.APPLICATION_MODAL); |
|
||||||
ReuseGuideDialog.this.setVisible(true); |
|
||||||
setVisible(true); |
|
||||||
} |
|
||||||
|
|
||||||
@Override |
|
||||||
public void checkValid() { |
|
||||||
|
|
||||||
} |
|
||||||
} |
|
||||||
} |
|
@ -0,0 +1,95 @@ |
|||||||
|
package com.fr.design.mainframe.share; |
||||||
|
|
||||||
|
import com.fr.design.DesignerEnvManager; |
||||||
|
import com.fr.design.file.HistoryTemplateListCache; |
||||||
|
import com.fr.design.mainframe.JTemplate; |
||||||
|
import com.fr.design.mainframe.reuse.ComponentReuseNotificationInfo; |
||||||
|
import com.fr.form.share.constants.ComponentPath; |
||||||
|
import com.fr.form.share.group.filter.ReuFilter; |
||||||
|
import com.fr.design.DesignerCloudURLManager; |
||||||
|
import com.fr.workspace.WorkContext; |
||||||
|
|
||||||
|
/** |
||||||
|
* Created by kerry on 2021/10/27 |
||||||
|
*/ |
||||||
|
public class ComponentShareUtil { |
||||||
|
private ComponentShareUtil() { |
||||||
|
|
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 判断是否需要切换到在线组件库 |
||||||
|
* |
||||||
|
* @return |
||||||
|
*/ |
||||||
|
public static boolean needSwitch2OnlineTab() { |
||||||
|
return DesignerCloudURLManager.getInstance().isConnected() && !hasTouched() && isCurrentTplNewCreate(); |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 判断是否可触达 |
||||||
|
* |
||||||
|
* @return boolean |
||||||
|
*/ |
||||||
|
public static boolean hasTouched() { |
||||||
|
String sharePath = ComponentPath.SHARE_PATH.path(); |
||||||
|
String[] components = WorkContext.getWorkResource().list(sharePath, new ReuFilter()); |
||||||
|
return components != null && components.length > 6; |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 判断当前模板是否是新建模板 |
||||||
|
* |
||||||
|
* @return boolean |
||||||
|
*/ |
||||||
|
public static boolean isCurrentTplNewCreate() { |
||||||
|
JTemplate jTemplate = HistoryTemplateListCache.getInstance().getCurrentEditingTemplate(); |
||||||
|
return jTemplate.isNewCreateTpl(); |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 判断是否需要展示嵌入式筛选面板 |
||||||
|
* |
||||||
|
* @return boolean |
||||||
|
*/ |
||||||
|
public static boolean needShowEmbedFilterPane() { |
||||||
|
return !ComponentReuseNotificationInfo.getInstance().isCompleteEmbedFilter() && !hasTouched() && isCurrentTplNewCreate(); |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 判断是否需要展示首次拖拽动效 |
||||||
|
* |
||||||
|
* @return boolean |
||||||
|
*/ |
||||||
|
public static boolean needShowFirstDragAnimate() { |
||||||
|
return ComponentReuseNotificationInfo.getInstance().isFirstDrag() && !hasTouched(); |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 完成嵌入式筛选 |
||||||
|
*/ |
||||||
|
public static void completeEmbedFilter() { |
||||||
|
boolean changed = false; |
||||||
|
if (!ComponentReuseNotificationInfo.getInstance().isWidgetLibHasRefreshed()) { |
||||||
|
ComponentReuseNotificationInfo.getInstance().setWidgetLibHasRefreshed(true); |
||||||
|
changed = true; |
||||||
|
} |
||||||
|
if (!ComponentReuseNotificationInfo.getInstance().isCompleteEmbedFilter()) { |
||||||
|
ComponentReuseNotificationInfo.getInstance().setCompleteEmbedFilter(true); |
||||||
|
changed = true; |
||||||
|
} |
||||||
|
if (changed) { |
||||||
|
DesignerEnvManager.getEnvManager().saveXMLFile(); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 记录组件库刷新 |
||||||
|
*/ |
||||||
|
public static void recordWidgetLibHasRefreshed() { |
||||||
|
if (!ComponentReuseNotificationInfo.getInstance().isWidgetLibHasRefreshed()) { |
||||||
|
ComponentReuseNotificationInfo.getInstance().setWidgetLibHasRefreshed(true); |
||||||
|
DesignerEnvManager.getEnvManager().saveXMLFile(); |
||||||
|
} |
||||||
|
} |
||||||
|
} |
@ -1,217 +0,0 @@ |
|||||||
|
|
||||||
|
|
||||||
package com.fr.design.mainframe; |
|
||||||
|
|
||||||
import com.fr.base.iofile.attr.ExtendSharableAttrMark; |
|
||||||
import com.fr.design.DesignerEnvManager; |
|
||||||
import com.fr.design.file.HistoryTemplateListCache; |
|
||||||
import com.fr.design.gui.ilable.UILabel; |
|
||||||
import com.fr.design.i18n.Toolkit; |
|
||||||
import com.fr.design.layout.FRGUIPaneFactory; |
|
||||||
import com.fr.design.mainframe.adaptve.config.TriggerPointProvider; |
|
||||||
|
|
||||||
import com.fr.design.mainframe.adaptve.config.impl.CellStyleTriggerPoint; |
|
||||||
import com.fr.design.mainframe.adaptve.config.impl.CellValueImageChangeTriggerPoint; |
|
||||||
import com.fr.design.mainframe.adaptve.config.ReuseNotifyInfo; |
|
||||||
import com.fr.design.mainframe.reuse.ComponentReuseNotificationInfo; |
|
||||||
import com.fr.design.mainframe.share.collect.ComponentCollector; |
|
||||||
import com.fr.design.mainframe.toast.DesignerToastMsgUtil; |
|
||||||
import com.fr.event.Event; |
|
||||||
import com.fr.event.EventDispatcher; |
|
||||||
import com.fr.event.Listener; |
|
||||||
import com.fr.event.Null; |
|
||||||
import com.fr.form.main.Form; |
|
||||||
import com.fr.form.main.WidgetGather; |
|
||||||
import com.fr.form.ui.AbstractBorderStyleWidget; |
|
||||||
import com.fr.form.ui.Widget; |
|
||||||
import com.fr.stable.StringUtils; |
|
||||||
|
|
||||||
import javax.swing.BorderFactory; |
|
||||||
import javax.swing.JPanel; |
|
||||||
import java.awt.BorderLayout; |
|
||||||
import java.awt.Color; |
|
||||||
import java.awt.Cursor; |
|
||||||
import java.awt.event.MouseEvent; |
|
||||||
import java.awt.event.MouseListener; |
|
||||||
import java.util.ArrayList; |
|
||||||
import java.util.HashMap; |
|
||||||
import java.util.Iterator; |
|
||||||
import java.util.List; |
|
||||||
import java.util.Map; |
|
||||||
|
|
||||||
/** |
|
||||||
* Created by kerry on 4/28/21 |
|
||||||
*/ |
|
||||||
public class ReuseTriggerPointManager { |
|
||||||
private static final long ONE_WEEK_TIME = 7 * 24 * 3600 * 1000L; |
|
||||||
|
|
||||||
private static class Holder { |
|
||||||
private static final ReuseTriggerPointManager HOLDER = new ReuseTriggerPointManager(); |
|
||||||
} |
|
||||||
|
|
||||||
public static ReuseTriggerPointManager getInstance() { |
|
||||||
return Holder.HOLDER; |
|
||||||
} |
|
||||||
|
|
||||||
private Map<JForm, ReuseNotifyInfo> map = new HashMap<>(); |
|
||||||
|
|
||||||
private List<Listener> listeners = new ArrayList<>(); |
|
||||||
|
|
||||||
private ReuseTriggerPointManager() { |
|
||||||
if (!hasNotifiedTwice()) { |
|
||||||
List<TriggerPointProvider> list = getTriggerPoints(); |
|
||||||
for (TriggerPointProvider triggerPoint : list) { |
|
||||||
Listener listener = new Listener<Null>() { |
|
||||||
@Override |
|
||||||
public void on(Event event, Null o) { |
|
||||||
triggerPoint.triggerAction(); |
|
||||||
} |
|
||||||
}; |
|
||||||
EventDispatcher.listen(triggerPoint.triggerEvent(), listener); |
|
||||||
listeners.add(listener); |
|
||||||
} |
|
||||||
|
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
private List<TriggerPointProvider> getTriggerPoints() { |
|
||||||
List<TriggerPointProvider> list = new ArrayList<>(); |
|
||||||
list.add(new CellStyleTriggerPoint()); |
|
||||||
list.add(new CellValueImageChangeTriggerPoint()); |
|
||||||
return list; |
|
||||||
} |
|
||||||
|
|
||||||
|
|
||||||
public boolean hasNotifiedTwice() { |
|
||||||
return ComponentReuseNotificationInfo.getInstance().getNotifiedNumber() >= 2; |
|
||||||
} |
|
||||||
|
|
||||||
|
|
||||||
private void reCount() { |
|
||||||
//重新计次数
|
|
||||||
Iterator<Map.Entry<JForm, ReuseNotifyInfo>> iterator = map.entrySet().iterator(); |
|
||||||
while (iterator.hasNext()) { |
|
||||||
iterator.next().getValue().reset(); |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
private void writeTriggerInfo2xml() { |
|
||||||
int number = ComponentReuseNotificationInfo.getInstance().getNotifiedNumber() + 1; |
|
||||||
ComponentReuseNotificationInfo.getInstance().setNotifiedNumber(number); |
|
||||||
ComponentReuseNotificationInfo.getInstance().setLastNotifyTime(System.currentTimeMillis()); |
|
||||||
DesignerEnvManager.getEnvManager().saveXMLFile(); |
|
||||||
//如果已经提示过两次了
|
|
||||||
if (hasNotifiedTwice()) { |
|
||||||
for (Listener listener : listeners) { |
|
||||||
EventDispatcher.stopListen(listener); |
|
||||||
} |
|
||||||
this.map.clear(); |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
public boolean needTrigger() { |
|
||||||
boolean result = true; |
|
||||||
if (ComponentReuseNotificationInfo.getInstance().getLastNotifyTime() > 0L) { |
|
||||||
result = System.currentTimeMillis() - ComponentReuseNotificationInfo.getInstance().getLastNotifyTime() > ONE_WEEK_TIME; |
|
||||||
} |
|
||||||
return !hasNotifiedTwice() && result; |
|
||||||
} |
|
||||||
|
|
||||||
|
|
||||||
public void registerJForm(JForm jForm) { |
|
||||||
if (!hasNotifiedTwice()) { |
|
||||||
this.map.put(jForm, new ReuseNotifyInfo()); |
|
||||||
} |
|
||||||
|
|
||||||
} |
|
||||||
|
|
||||||
public void removeJForm(JForm jForm) { |
|
||||||
if (!hasNotifiedTwice()) { |
|
||||||
this.map.remove(jForm); |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
|
|
||||||
public ReuseNotifyInfo getReuseNotifyInfo() { |
|
||||||
JTemplate currentJTemplate = HistoryTemplateListCache.getInstance().getCurrentEditingTemplate(); |
|
||||||
if (!(currentJTemplate instanceof JForm && hasUseReuseComponent((JForm) currentJTemplate)) |
|
||||||
&& !ReuseTriggerPointManager.getInstance().needTrigger()) { |
|
||||||
return null; |
|
||||||
} |
|
||||||
return map.get(currentJTemplate); |
|
||||||
} |
|
||||||
|
|
||||||
public void reuseNotify(ReuseNotifyInfo notifyInfo) { |
|
||||||
if (notifyInfo.matchCondition()) { |
|
||||||
ReuseTriggerPointManager.getInstance().reCount(); |
|
||||||
//弹出提示框
|
|
||||||
JTemplate currentJTemplate = HistoryTemplateListCache.getInstance().getCurrentEditingTemplate(); |
|
||||||
DesignerToastMsgUtil.toastPrompt(createReusePrompt((JForm) currentJTemplate)); |
|
||||||
ReuseTriggerPointManager.getInstance().writeTriggerInfo2xml(); |
|
||||||
ComponentCollector.getInstance().collectPromptJumpWhenShow(); |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
|
|
||||||
private boolean hasUseReuseComponent(JForm jForm) { |
|
||||||
Form form = jForm.getTarget(); |
|
||||||
List<Widget> extendSharableWidgetList = new ArrayList<>(); |
|
||||||
Form.traversalWidget(form.getContainer(), new WidgetGather() { |
|
||||||
@Override |
|
||||||
public void dealWith(Widget widget) { |
|
||||||
ExtendSharableAttrMark attrMark = ((AbstractBorderStyleWidget) widget).getWidgetAttrMark(ExtendSharableAttrMark.XML_TAG); |
|
||||||
if (attrMark != null && StringUtils.isNotEmpty(attrMark.getShareId())) { |
|
||||||
extendSharableWidgetList.add(widget); |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
@Override |
|
||||||
public boolean dealWithAllCards() { |
|
||||||
return true; |
|
||||||
} |
|
||||||
}, AbstractBorderStyleWidget.class); |
|
||||||
return extendSharableWidgetList.size() > 0; |
|
||||||
} |
|
||||||
|
|
||||||
|
|
||||||
private JPanel createReusePrompt(JForm jForm) { |
|
||||||
JPanel jPanel = FRGUIPaneFactory.createBorderLayout_S_Pane(); |
|
||||||
jPanel.add(new UILabel(Toolkit.i18nText("Fine-Design_Component_Reuse_Try_Prompt")), BorderLayout.WEST); |
|
||||||
UILabel reuseLabel = new UILabel(Toolkit.i18nText("Fine-Design_Share_Component")); |
|
||||||
reuseLabel.addMouseListener(new MouseListener() { |
|
||||||
@Override |
|
||||||
public void mouseClicked(MouseEvent e) { |
|
||||||
jForm.tabChanged(0); |
|
||||||
FormWidgetDetailPane.getInstance().enterWidgetLib(); |
|
||||||
ComponentCollector.getInstance().collectPromptJumpWhenJump(); |
|
||||||
} |
|
||||||
|
|
||||||
@Override |
|
||||||
public void mousePressed(MouseEvent e) { |
|
||||||
|
|
||||||
} |
|
||||||
|
|
||||||
@Override |
|
||||||
public void mouseReleased(MouseEvent e) { |
|
||||||
|
|
||||||
} |
|
||||||
|
|
||||||
@Override |
|
||||||
public void mouseEntered(MouseEvent e) { |
|
||||||
|
|
||||||
} |
|
||||||
|
|
||||||
@Override |
|
||||||
public void mouseExited(MouseEvent e) { |
|
||||||
|
|
||||||
} |
|
||||||
}); |
|
||||||
reuseLabel.setBorder(BorderFactory.createEmptyBorder(0, 3, 0, 0)); |
|
||||||
reuseLabel.setForeground(Color.BLUE); |
|
||||||
reuseLabel.setCursor(Cursor.getPredefinedCursor(Cursor.HAND_CURSOR)); |
|
||||||
jPanel.add(reuseLabel, BorderLayout.CENTER); |
|
||||||
return jPanel; |
|
||||||
} |
|
||||||
|
|
||||||
|
|
||||||
} |
|
@ -1,30 +0,0 @@ |
|||||||
package com.fr.design.mainframe.adaptve.config; |
|
||||||
|
|
||||||
/** |
|
||||||
* Created by kerry on 5/7/21 |
|
||||||
*/ |
|
||||||
public class ReuseNotifyInfo { |
|
||||||
private static final int CELL_STYLE_MODIFY_MAX_NUMBER = 3; |
|
||||||
private static final int CELL_IMAGE_VALUE_MODIFY_MAX_NUMBER = 1; |
|
||||||
private int cellStyleModifiedNumber = 0; |
|
||||||
private int cellImageValueNumber = 0; |
|
||||||
|
|
||||||
public void addCellStyleModify() { |
|
||||||
cellStyleModifiedNumber++; |
|
||||||
} |
|
||||||
|
|
||||||
|
|
||||||
public void addCellImageValueModify() { |
|
||||||
cellImageValueNumber++; |
|
||||||
} |
|
||||||
|
|
||||||
public boolean matchCondition() { |
|
||||||
return cellStyleModifiedNumber >= CELL_STYLE_MODIFY_MAX_NUMBER |
|
||||||
|| cellImageValueNumber >= CELL_IMAGE_VALUE_MODIFY_MAX_NUMBER; |
|
||||||
} |
|
||||||
|
|
||||||
public void reset() { |
|
||||||
this.cellImageValueNumber = 0; |
|
||||||
this.cellStyleModifiedNumber = 0; |
|
||||||
} |
|
||||||
} |
|
@ -1,20 +0,0 @@ |
|||||||
package com.fr.design.mainframe.adaptve.config; |
|
||||||
|
|
||||||
|
|
||||||
import com.fr.event.Event; |
|
||||||
|
|
||||||
/** |
|
||||||
* Created by kerry on 4/29/21 |
|
||||||
*/ |
|
||||||
public interface TriggerPointProvider { |
|
||||||
/** |
|
||||||
* 触发后的操作 |
|
||||||
*/ |
|
||||||
void triggerAction(); |
|
||||||
|
|
||||||
/** |
|
||||||
* 触发事件 |
|
||||||
* @return |
|
||||||
*/ |
|
||||||
Event triggerEvent(); |
|
||||||
} |
|
@ -1,28 +0,0 @@ |
|||||||
package com.fr.design.mainframe.adaptve.config.impl; |
|
||||||
|
|
||||||
import com.fr.design.mainframe.DesignOperationEvent; |
|
||||||
import com.fr.design.mainframe.ReuseTriggerPointManager; |
|
||||||
import com.fr.design.mainframe.adaptve.config.ReuseNotifyInfo; |
|
||||||
import com.fr.design.mainframe.adaptve.config.TriggerPointProvider; |
|
||||||
import com.fr.event.Event; |
|
||||||
|
|
||||||
/** |
|
||||||
* Created by kerry on 5/7/21 |
|
||||||
*/ |
|
||||||
public class CellStyleTriggerPoint implements TriggerPointProvider { |
|
||||||
@Override |
|
||||||
public void triggerAction() { |
|
||||||
ReuseNotifyInfo notifyInfo = ReuseTriggerPointManager.getInstance().getReuseNotifyInfo(); |
|
||||||
if (notifyInfo == null) { |
|
||||||
return; |
|
||||||
} |
|
||||||
notifyInfo.addCellStyleModify(); |
|
||||||
ReuseTriggerPointManager.getInstance().reuseNotify(notifyInfo); |
|
||||||
|
|
||||||
} |
|
||||||
|
|
||||||
@Override |
|
||||||
public Event triggerEvent() { |
|
||||||
return DesignOperationEvent.CELL_STYLE_MODIFY; |
|
||||||
} |
|
||||||
} |
|
@ -1,27 +0,0 @@ |
|||||||
package com.fr.design.mainframe.adaptve.config.impl; |
|
||||||
|
|
||||||
import com.fr.design.mainframe.DesignOperationEvent; |
|
||||||
import com.fr.design.mainframe.ReuseTriggerPointManager; |
|
||||||
import com.fr.design.mainframe.adaptve.config.ReuseNotifyInfo; |
|
||||||
import com.fr.design.mainframe.adaptve.config.TriggerPointProvider; |
|
||||||
import com.fr.event.Event; |
|
||||||
|
|
||||||
/** |
|
||||||
* Created by kerry on 5/7/21 |
|
||||||
*/ |
|
||||||
public class CellValueImageChangeTriggerPoint implements TriggerPointProvider { |
|
||||||
@Override |
|
||||||
public void triggerAction() { |
|
||||||
ReuseNotifyInfo notifyInfo = ReuseTriggerPointManager.getInstance().getReuseNotifyInfo(); |
|
||||||
if (notifyInfo == null) { |
|
||||||
return; |
|
||||||
} |
|
||||||
notifyInfo.addCellImageValueModify(); |
|
||||||
ReuseTriggerPointManager.getInstance().reuseNotify(notifyInfo); |
|
||||||
} |
|
||||||
|
|
||||||
@Override |
|
||||||
public Event triggerEvent() { |
|
||||||
return DesignOperationEvent.CELL_IMAGE_VALUE_MODIFY; |
|
||||||
} |
|
||||||
} |
|
@ -0,0 +1,44 @@ |
|||||||
|
package com.fr.design.mainframe.share.Bean; |
||||||
|
|
||||||
|
import java.util.ArrayList; |
||||||
|
import java.util.List; |
||||||
|
|
||||||
|
/** |
||||||
|
* Created by kerry on 2021/11/1 |
||||||
|
*/ |
||||||
|
public class FilterTypeInfo { |
||||||
|
private String title; |
||||||
|
private String key; |
||||||
|
private final List<WidgetFilterTypeInfo> filterTypeInfos = new ArrayList<>(); |
||||||
|
|
||||||
|
public FilterTypeInfo(String title, String key){ |
||||||
|
this.title = title; |
||||||
|
this.key = key; |
||||||
|
} |
||||||
|
|
||||||
|
public String getTitle() { |
||||||
|
return title; |
||||||
|
} |
||||||
|
|
||||||
|
public void setTitle(String title) { |
||||||
|
this.title = title; |
||||||
|
} |
||||||
|
|
||||||
|
public String getKey() { |
||||||
|
return key; |
||||||
|
} |
||||||
|
|
||||||
|
public void setKey(String key) { |
||||||
|
this.key = key; |
||||||
|
} |
||||||
|
|
||||||
|
public void addFilterType(WidgetFilterTypeInfo info){ |
||||||
|
this.filterTypeInfos.add(info); |
||||||
|
} |
||||||
|
|
||||||
|
public List<WidgetFilterTypeInfo> getFilterTypeInfos(){ |
||||||
|
return filterTypeInfos; |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
} |
@ -0,0 +1,60 @@ |
|||||||
|
package com.fr.design.mainframe.share.Bean; |
||||||
|
|
||||||
|
import java.util.ArrayList; |
||||||
|
import java.util.List; |
||||||
|
|
||||||
|
/** |
||||||
|
* Created by kerry on 2020-10-23 |
||||||
|
*/ |
||||||
|
public class WidgetFilterInfo { |
||||||
|
private String name; |
||||||
|
private String id; |
||||||
|
private String type; |
||||||
|
private List<WidgetFilterInfo> childFilterInfo = new ArrayList<>(); |
||||||
|
|
||||||
|
public WidgetFilterInfo(String name, String id, String type) { |
||||||
|
this.name = name; |
||||||
|
this.id = id; |
||||||
|
this.type = type; |
||||||
|
} |
||||||
|
|
||||||
|
public WidgetFilterInfo() { |
||||||
|
|
||||||
|
} |
||||||
|
|
||||||
|
public String getName() { |
||||||
|
return name; |
||||||
|
} |
||||||
|
|
||||||
|
public void setName(String name) { |
||||||
|
this.name = name; |
||||||
|
} |
||||||
|
|
||||||
|
public String getId() { |
||||||
|
return id; |
||||||
|
} |
||||||
|
|
||||||
|
public void setId(String id) { |
||||||
|
this.id = id; |
||||||
|
} |
||||||
|
|
||||||
|
public String getType() { |
||||||
|
return type; |
||||||
|
} |
||||||
|
|
||||||
|
public void setType(String type) { |
||||||
|
this.type = type; |
||||||
|
} |
||||||
|
|
||||||
|
public void addChildFilterInfo(WidgetFilterInfo filterInfo) { |
||||||
|
this.childFilterInfo.add(filterInfo); |
||||||
|
} |
||||||
|
|
||||||
|
public List<WidgetFilterInfo> getInnerFilterInfo() { |
||||||
|
return childFilterInfo; |
||||||
|
} |
||||||
|
|
||||||
|
public boolean hasChildFilter() { |
||||||
|
return childFilterInfo.size() > 0; |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,93 @@ |
|||||||
|
package com.fr.design.mainframe.share.Bean; |
||||||
|
|
||||||
|
import com.fr.design.i18n.Toolkit; |
||||||
|
import com.fr.design.mainframe.share.util.ShareFilterConstants; |
||||||
|
import com.fr.general.ComparatorUtils; |
||||||
|
import com.fr.json.JSONArray; |
||||||
|
import com.fr.json.JSONObject; |
||||||
|
|
||||||
|
import java.util.ArrayList; |
||||||
|
import java.util.List; |
||||||
|
|
||||||
|
/** |
||||||
|
* Created by kerry on 2020-10-21 |
||||||
|
*/ |
||||||
|
public class WidgetFilterTypeInfo { |
||||||
|
private static final String KEY_SPLIT_CHAR = "@"; |
||||||
|
private String title; |
||||||
|
private String key; |
||||||
|
private List<WidgetFilterInfo> filterItems = new ArrayList<>(); |
||||||
|
|
||||||
|
public String getTitle() { |
||||||
|
return title; |
||||||
|
} |
||||||
|
|
||||||
|
public void setTitle(String title) { |
||||||
|
this.title = title; |
||||||
|
} |
||||||
|
|
||||||
|
public String getKey() { |
||||||
|
return key; |
||||||
|
} |
||||||
|
|
||||||
|
public void setKey(String key) { |
||||||
|
this.key = key; |
||||||
|
} |
||||||
|
|
||||||
|
public List<WidgetFilterInfo> getFilterItems() { |
||||||
|
return filterItems; |
||||||
|
} |
||||||
|
|
||||||
|
public void addFilterItem(WidgetFilterInfo filterInfo) { |
||||||
|
this.filterItems.add(filterInfo); |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
public static WidgetFilterTypeInfo parseFromJSONObject(JSONObject jsonObject) { |
||||||
|
WidgetFilterTypeInfo typeInfo = new WidgetFilterTypeInfo(); |
||||||
|
typeInfo.setTitle(jsonObject.getString("title")); |
||||||
|
typeInfo.setKey(jsonObject.getString("key")); |
||||||
|
JSONArray ja = jsonObject.getJSONArray("items"); |
||||||
|
if (ComparatorUtils.equals(typeInfo.getKey(), ShareFilterConstants.STYLE_FILTER_KEY)) { |
||||||
|
createStyleFilterType(ja, typeInfo); |
||||||
|
} else { |
||||||
|
for (int i = 0; i < ja.size(); i++) { |
||||||
|
JSONObject jo = ja.getJSONObject(i); |
||||||
|
WidgetFilterInfo info = new WidgetFilterInfo(); |
||||||
|
info.setId(jo.getString("id")); |
||||||
|
info.setName(jo.optString("name")); |
||||||
|
info.setType(parseType(typeInfo.getKey())); |
||||||
|
typeInfo.addFilterItem(info); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
return typeInfo; |
||||||
|
} |
||||||
|
|
||||||
|
private static void createStyleFilterType(JSONArray ja, WidgetFilterTypeInfo typeInfo) { |
||||||
|
WidgetFilterInfo dark = new WidgetFilterInfo(); |
||||||
|
dark.setName(Toolkit.i18nText("Fine-Design_Share_Local_Filter_Dark_Style")); |
||||||
|
WidgetFilterInfo light = new WidgetFilterInfo(); |
||||||
|
light.setName(Toolkit.i18nText("Fine-Design_Share_Local_Filter_Light_Style")); |
||||||
|
typeInfo.addFilterItem(dark); |
||||||
|
typeInfo.addFilterItem(light); |
||||||
|
for (int i = 0; i < ja.size(); i++) { |
||||||
|
JSONObject jo = ja.getJSONObject(i); |
||||||
|
WidgetFilterInfo info = new WidgetFilterInfo(); |
||||||
|
info.setId(jo.getString("id")); |
||||||
|
info.setName(jo.optString("name")); |
||||||
|
info.setType(parseType(typeInfo.getKey())); |
||||||
|
if (ComparatorUtils.equals(jo.getInt("themeColor"), 0)) { |
||||||
|
dark.addChildFilterInfo(info); |
||||||
|
} else { |
||||||
|
light.addChildFilterInfo(info); |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
private static String parseType(String text) { |
||||||
|
return text.split(KEY_SPLIT_CHAR)[1]; |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
} |
@ -0,0 +1,82 @@ |
|||||||
|
package com.fr.design.mainframe.share.config; |
||||||
|
|
||||||
|
import com.fr.design.DesignerCloudURLManager; |
||||||
|
import com.fr.log.FineLoggerFactory; |
||||||
|
import com.fr.stable.ProductConstants; |
||||||
|
import com.fr.stable.StableUtils; |
||||||
|
import com.fr.stable.StringUtils; |
||||||
|
|
||||||
|
import java.io.File; |
||||||
|
import java.io.FileInputStream; |
||||||
|
import java.io.InputStream; |
||||||
|
import java.util.Properties; |
||||||
|
|
||||||
|
/** |
||||||
|
* Created by kerry on 2020-12-14 |
||||||
|
*/ |
||||||
|
public class ComponentReuseConfigManager { |
||||||
|
|
||||||
|
private static class Holder { |
||||||
|
private static final ComponentReuseConfigManager HOLDER = new ComponentReuseConfigManager(); |
||||||
|
} |
||||||
|
|
||||||
|
private static final String PROPERTIES_FILE_NAME = "reuse.properties"; |
||||||
|
private static final String MINI_SHOP_URL = "MINI_SHOP_URL"; |
||||||
|
private static final String COMPONENT_UPLOAD_URL = "COMPONENT_UPLOAD_URL"; |
||||||
|
private static final String MARKET_LOGIN_URL = "MARKET_LOGIN_URL"; |
||||||
|
private static final String UPLOAD_REU_SUPPORT = "UPLOAD_REU_SUPPORT"; |
||||||
|
|
||||||
|
public static ComponentReuseConfigManager getInstance() { |
||||||
|
return ComponentReuseConfigManager.Holder.HOLDER; |
||||||
|
} |
||||||
|
|
||||||
|
private Properties properties; |
||||||
|
|
||||||
|
private ComponentReuseConfigManager() { |
||||||
|
} |
||||||
|
|
||||||
|
private File getReusePropertyFile() { |
||||||
|
File file = new File(StableUtils.pathJoin(ProductConstants.getEnvHome(), PROPERTIES_FILE_NAME)); |
||||||
|
return file; |
||||||
|
} |
||||||
|
|
||||||
|
private String loadAttribute(String key, String defaultValue) { |
||||||
|
if (properties == null) { |
||||||
|
properties = new Properties(); |
||||||
|
File file = getReusePropertyFile(); |
||||||
|
if (!file.exists()) { |
||||||
|
return defaultValue; |
||||||
|
} |
||||||
|
try { |
||||||
|
InputStream in = new FileInputStream(file); |
||||||
|
properties.load(in); |
||||||
|
} catch (Exception e) { |
||||||
|
FineLoggerFactory.getLogger().error(e.getMessage(), e); |
||||||
|
} |
||||||
|
} |
||||||
|
String p = properties.getProperty(key); |
||||||
|
if (StringUtils.isEmpty(p)) { |
||||||
|
p = defaultValue; |
||||||
|
} |
||||||
|
return p; |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
public String getMiniShopUrl() { |
||||||
|
return loadAttribute(MINI_SHOP_URL, DesignerCloudURLManager.getInstance().acquireUrlByKind("af.reuseInfo")); |
||||||
|
} |
||||||
|
|
||||||
|
public String getComponentUploadUrl() { |
||||||
|
//云中心暂时没有上传网址,这边默认值为空,后续再添加
|
||||||
|
return loadAttribute(COMPONENT_UPLOAD_URL, StringUtils.EMPTY); |
||||||
|
} |
||||||
|
|
||||||
|
public String getMarketLoginUrl() { |
||||||
|
return loadAttribute(MARKET_LOGIN_URL, DesignerCloudURLManager.getInstance().acquireUrlByKind("market.login")); |
||||||
|
} |
||||||
|
|
||||||
|
public boolean supportUploadReu() { |
||||||
|
String uploadReuSupport = loadAttribute(UPLOAD_REU_SUPPORT, "false"); |
||||||
|
return Boolean.valueOf(uploadReuSupport); |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,53 @@ |
|||||||
|
package com.fr.design.mainframe.share.ui.block; |
||||||
|
|
||||||
|
/** |
||||||
|
* Created by kerry on 2021/10/29 |
||||||
|
* 贝塞尔缓动函数实现 https://www.xuanfengge.com/easeing/easeing/
|
||||||
|
*/ |
||||||
|
public class BezierCubic { |
||||||
|
private final double px1; |
||||||
|
private final double px2; |
||||||
|
private final double px3; |
||||||
|
private final double py1; |
||||||
|
private final double py2; |
||||||
|
private final double py3; |
||||||
|
private final double epsilon; |
||||||
|
|
||||||
|
public BezierCubic(double a, double b, double c, double d) { |
||||||
|
this.px3 = 3 * a; |
||||||
|
this.px2 = 3 * (c - a) - this.px3; |
||||||
|
this.px1 = 1 - this.px3 - this.px2; |
||||||
|
this.py3 = 3 * b; |
||||||
|
this.py2 = 3 * (d - b) - this.py3; |
||||||
|
this.py1 = 1 - this.py3 - this.py2; |
||||||
|
this.epsilon = 1e-7; // 目标精度
|
||||||
|
} |
||||||
|
|
||||||
|
public double getX(double t) { |
||||||
|
return ((this.px1 * t + this.px2) * t + this.px3) * t; |
||||||
|
} |
||||||
|
|
||||||
|
public double getY(double t) { |
||||||
|
return ((this.py1 * t + this.py2) * t + this.py3) * t; |
||||||
|
} |
||||||
|
|
||||||
|
public double solve(double x) { |
||||||
|
if (x == 0 || x == 1) { // 对 0 和 1 两个特殊 t 不做计算
|
||||||
|
return this.getY(x); |
||||||
|
} |
||||||
|
double t = x; |
||||||
|
for (int i = 0; i < 8; i++) { // 进行 8 次迭代
|
||||||
|
double g = this.getX(t) - x; |
||||||
|
if (Math.abs(g) < this.epsilon) { // 检测误差到可以接受的范围
|
||||||
|
return this.getY(t); |
||||||
|
} |
||||||
|
double d = (3 * this.px1 * t + 2 * this.px2) * t + this.px3; // 对 x 求导
|
||||||
|
if (Math.abs(d) < 1e-6) { // 如果梯度过低,说明牛顿迭代法无法达到更高精度
|
||||||
|
break; |
||||||
|
} |
||||||
|
t = t - g / d; |
||||||
|
} |
||||||
|
return this.getY(t); // 对得到的近似 t 求 y
|
||||||
|
} |
||||||
|
|
||||||
|
} |
@ -0,0 +1,244 @@ |
|||||||
|
package com.fr.design.mainframe.share.ui.online; |
||||||
|
|
||||||
|
import com.fr.design.gui.icontainer.UIScrollPane; |
||||||
|
import com.fr.design.layout.FRGUIPaneFactory; |
||||||
|
import com.fr.design.mainframe.share.AbstractWidgetSelectPane; |
||||||
|
import com.fr.design.mainframe.share.ui.base.AbstractWidgetPopupPreviewPane; |
||||||
|
import com.fr.design.mainframe.share.ui.base.LoadingPane; |
||||||
|
import com.fr.design.mainframe.share.ui.base.NoMatchPane; |
||||||
|
import com.fr.design.mainframe.share.ui.base.PagingFiledPane; |
||||||
|
import com.fr.design.mainframe.share.ui.block.OnlineWidgetBlock; |
||||||
|
import com.fr.design.mainframe.share.ui.block.PreviewWidgetBlock; |
||||||
|
import com.fr.design.mainframe.share.ui.online.resource.OnlineResourceManager; |
||||||
|
import com.fr.design.mainframe.share.ui.widgetfilter.FilterPane; |
||||||
|
import com.fr.design.mainframe.share.util.OnlineShopUtils; |
||||||
|
import com.fr.form.share.base.DataLoad; |
||||||
|
import com.fr.form.share.bean.OnlineShareWidget; |
||||||
|
import com.fr.form.share.constants.ShareComponentConstants; |
||||||
|
import com.fr.log.FineLoggerFactory; |
||||||
|
import com.fr.stable.ArrayUtils; |
||||||
|
|
||||||
|
import javax.swing.BorderFactory; |
||||||
|
import javax.swing.JPanel; |
||||||
|
import javax.swing.JScrollPane; |
||||||
|
import javax.swing.SwingWorker; |
||||||
|
import java.awt.BorderLayout; |
||||||
|
import java.awt.CardLayout; |
||||||
|
import java.awt.Container; |
||||||
|
import java.awt.Dimension; |
||||||
|
import java.awt.FlowLayout; |
||||||
|
import java.util.concurrent.ExecutionException; |
||||||
|
|
||||||
|
/** |
||||||
|
* Created by kerry on 2021/10/22 |
||||||
|
*/ |
||||||
|
public abstract class AbstractOnlineWidgetSelectPane extends AbstractWidgetSelectPane<OnlineShareWidget> { |
||||||
|
protected static final int H_GAP = 5; |
||||||
|
protected static final int V_GAP = 10; |
||||||
|
|
||||||
|
protected enum PaneStatue {NORMAL, NO_MATCH, LOADING, DISCONNECTED} |
||||||
|
|
||||||
|
private OnlineShareWidget[] sharableWidgetProviders; |
||||||
|
private PagingFiledPane pagingFiledPane; |
||||||
|
private JPanel contentPane; |
||||||
|
private UIScrollPane scrollPane; |
||||||
|
private FilterPane filterPane; |
||||||
|
private final int widgetsPerNum; |
||||||
|
private CardLayout cardLayout; |
||||||
|
|
||||||
|
public AbstractOnlineWidgetSelectPane(OnlineShareWidget[] providers, FilterPane filterPane, int widgetsPerNum) { |
||||||
|
this(providers, widgetsPerNum); |
||||||
|
this.filterPane = filterPane; |
||||||
|
} |
||||||
|
|
||||||
|
public AbstractOnlineWidgetSelectPane(final DataLoad<OnlineShareWidget> dataLoad, FilterPane filterPane, final int widgetsPerNum) { |
||||||
|
this(dataLoad, widgetsPerNum); |
||||||
|
this.filterPane = filterPane; |
||||||
|
} |
||||||
|
|
||||||
|
public AbstractOnlineWidgetSelectPane(OnlineShareWidget[] providers, int widgetsPerNum) { |
||||||
|
this.widgetsPerNum = widgetsPerNum; |
||||||
|
sharableWidgetProviders = providers; |
||||||
|
init(); |
||||||
|
initPagingPane(); |
||||||
|
switchPane(createComponents()); |
||||||
|
} |
||||||
|
|
||||||
|
public AbstractOnlineWidgetSelectPane(final DataLoad<OnlineShareWidget> dataLoad, final int widgetsPerNum) { |
||||||
|
this.widgetsPerNum = widgetsPerNum; |
||||||
|
init(); |
||||||
|
//异步获取组件信息
|
||||||
|
new SwingWorker<OnlineWidgetSelectPane.PaneStatue, Void>() { |
||||||
|
@Override |
||||||
|
protected OnlineWidgetSelectPane.PaneStatue doInBackground() { |
||||||
|
sharableWidgetProviders = dataLoad.load(); |
||||||
|
initPagingPane(); |
||||||
|
return createComponents(); |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
protected void done() { |
||||||
|
try { |
||||||
|
switchPane(get()); |
||||||
|
fireAfterDataLoad(); |
||||||
|
} catch (InterruptedException e) { |
||||||
|
FineLoggerFactory.getLogger().error(e.getMessage(), e); |
||||||
|
Thread.currentThread().interrupt(); |
||||||
|
} catch (ExecutionException e) { |
||||||
|
FineLoggerFactory.getLogger().error(e.getMessage(), e); |
||||||
|
} |
||||||
|
} |
||||||
|
}.execute(); |
||||||
|
} |
||||||
|
|
||||||
|
private void init() { |
||||||
|
cardLayout = new CardLayout(); |
||||||
|
this.setLayout(cardLayout); |
||||||
|
// 设置面板的边框 ,距离上、左、下、右 的距离
|
||||||
|
this.setBorder(BorderFactory.createEmptyBorder(0, 5, 0, 0)); |
||||||
|
contentPane = FRGUIPaneFactory.createBorderLayout_S_Pane(); |
||||||
|
this.add(new LoadingPane(), OnlineWidgetSelectPane.PaneStatue.LOADING.name()); |
||||||
|
this.add(new NoMatchPane(), OnlineWidgetSelectPane.PaneStatue.NO_MATCH.name()); |
||||||
|
this.add(contentPane, OnlineWidgetSelectPane.PaneStatue.NORMAL.name()); |
||||||
|
switchPane(OnlineWidgetSelectPane.PaneStatue.LOADING); |
||||||
|
} |
||||||
|
|
||||||
|
public int getSharableWidgetNum() { |
||||||
|
return sharableWidgetProviders == null ? 0 : sharableWidgetProviders.length; |
||||||
|
} |
||||||
|
|
||||||
|
public OnlineShareWidget[] getSharableWidgetProviders() { |
||||||
|
return sharableWidgetProviders; |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 切换需要显示的面板 |
||||||
|
*/ |
||||||
|
protected void switchPane(OnlineWidgetSelectPane.PaneStatue statue) { |
||||||
|
if (statue == OnlineWidgetSelectPane.PaneStatue.DISCONNECTED) { |
||||||
|
OnlineWidgetRepoPane.getInstance().switch2InternetErrorPane(); |
||||||
|
return; |
||||||
|
} |
||||||
|
cardLayout.show(this, statue.name()); |
||||||
|
if (statue == OnlineWidgetSelectPane.PaneStatue.NORMAL) { |
||||||
|
//异步加载组件缩略图
|
||||||
|
OnlineResourceManager.getInstance().loadImage(); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
protected void fireAfterDataLoad(){ |
||||||
|
|
||||||
|
} |
||||||
|
|
||||||
|
private void synchronizedLoadingContent() { |
||||||
|
new SwingWorker<OnlineWidgetSelectPane.PaneStatue, Void>() { |
||||||
|
@Override |
||||||
|
protected OnlineWidgetSelectPane.PaneStatue doInBackground() { |
||||||
|
return createComponents(); |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
protected void done() { |
||||||
|
try { |
||||||
|
switchPane(get()); |
||||||
|
//加载之后设置下标记符
|
||||||
|
} catch (InterruptedException e) { |
||||||
|
FineLoggerFactory.getLogger().error(e.getMessage(), e); |
||||||
|
Thread.currentThread().interrupt(); |
||||||
|
} catch (ExecutionException e) { |
||||||
|
FineLoggerFactory.getLogger().error(e.getMessage(), e); |
||||||
|
} |
||||||
|
} |
||||||
|
}.execute(); |
||||||
|
} |
||||||
|
|
||||||
|
private void initPagingPane() { |
||||||
|
this.pagingFiledPane = new PagingFiledPane(sharableWidgetProviders.length, widgetsPerNum); |
||||||
|
this.pagingFiledPane.registerChangeListener(event -> { |
||||||
|
AbstractOnlineWidgetSelectPane.this.switchPane(OnlineWidgetSelectPane.PaneStatue.LOADING); |
||||||
|
synchronizedLoadingContent(); |
||||||
|
OnlineWidgetRepoPane.getInstance().completeEmbedFilter(); |
||||||
|
|
||||||
|
}); |
||||||
|
pagingFiledPane.setEnable(pagePaneEnable()); |
||||||
|
} |
||||||
|
|
||||||
|
protected OnlineWidgetSelectPane.PaneStatue createComponents() { |
||||||
|
if (ArrayUtils.isEmpty(sharableWidgetProviders)) { |
||||||
|
return OnlineWidgetSelectPane.PaneStatue.NO_MATCH; |
||||||
|
} |
||||||
|
if (!OnlineShopUtils.testConnection()) { |
||||||
|
return OnlineWidgetSelectPane.PaneStatue.DISCONNECTED; |
||||||
|
} |
||||||
|
OnlineResourceManager.getInstance().cancelLoad(); |
||||||
|
|
||||||
|
contentPane.removeAll(); |
||||||
|
scrollPane = createScrollPane(); |
||||||
|
|
||||||
|
contentPane.add(scrollPane, BorderLayout.CENTER); |
||||||
|
contentPane.add(this.pagingFiledPane, BorderLayout.SOUTH); |
||||||
|
return OnlineWidgetSelectPane.PaneStatue.NORMAL; |
||||||
|
} |
||||||
|
|
||||||
|
protected UIScrollPane createScrollPane() { |
||||||
|
OnlineShareWidget[] showWidgets = getShowWidgets(); |
||||||
|
JPanel widgetPane = createWidgetPane(); |
||||||
|
widgetPane.setLayout(new FlowLayout(FlowLayout.LEFT, H_GAP, V_GAP)); |
||||||
|
for (OnlineShareWidget provider : showWidgets) { |
||||||
|
PreviewWidgetBlock<OnlineShareWidget> widgetButton = createWidgetBlock(provider); |
||||||
|
widgetPane.add(widgetButton); |
||||||
|
} |
||||||
|
widgetPane.setPreferredSize(new Dimension(240, getPaneHeight(showWidgets.length))); |
||||||
|
|
||||||
|
UIScrollPane scrollPane = new UIScrollPane(createContentPane(widgetPane)); |
||||||
|
setScrollPaneStyle(scrollPane); |
||||||
|
return scrollPane; |
||||||
|
} |
||||||
|
|
||||||
|
protected OnlineShareWidget[] getShowWidgets(){ |
||||||
|
return this.pagingFiledPane.getShowItems(this.sharableWidgetProviders); |
||||||
|
} |
||||||
|
|
||||||
|
protected JPanel createWidgetPane() { |
||||||
|
return new JPanel(); |
||||||
|
} |
||||||
|
|
||||||
|
protected JPanel createContentPane(JPanel widgetPane) { |
||||||
|
JPanel panel = FRGUIPaneFactory.createBorderLayout_S_Pane(); |
||||||
|
panel.add(widgetPane, BorderLayout.CENTER); |
||||||
|
return panel; |
||||||
|
} |
||||||
|
|
||||||
|
protected boolean pagePaneEnable() { |
||||||
|
return true; |
||||||
|
} |
||||||
|
|
||||||
|
protected void setScrollPaneStyle(UIScrollPane scrollPane) { |
||||||
|
scrollPane.setBorder(null); |
||||||
|
scrollPane.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_NEVER); |
||||||
|
scrollPane.setWheelScrollingEnabled(filterPane == null || !filterPane.isShowPopup()); |
||||||
|
} |
||||||
|
|
||||||
|
protected PreviewWidgetBlock<OnlineShareWidget> createWidgetBlock(OnlineShareWidget provider) { |
||||||
|
return new OnlineWidgetBlock(provider, this); |
||||||
|
} |
||||||
|
|
||||||
|
protected int getPaneHeight(int count) { |
||||||
|
return (count + 1) / 2 * (ShareComponentConstants.SHARE_BLOCK_HEIGHT + V_GAP); |
||||||
|
} |
||||||
|
|
||||||
|
public void setWidgetPaneScrollEnable(boolean enable) { |
||||||
|
if (scrollPane != null) { |
||||||
|
scrollPane.setWheelScrollingEnabled(enable); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
protected AbstractWidgetPopupPreviewPane<OnlineShareWidget> createPopupPreviewPane() { |
||||||
|
return new OnlineWidgetPopupPreviewPane(); |
||||||
|
} |
||||||
|
|
||||||
|
protected Container getParentContainer() { |
||||||
|
return this.getParent(); |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,65 @@ |
|||||||
|
package com.fr.design.mainframe.share.ui.online; |
||||||
|
|
||||||
|
|
||||||
|
import java.util.concurrent.CountDownLatch; |
||||||
|
|
||||||
|
/** |
||||||
|
* Created by kerry on 2021/10/22 |
||||||
|
*/ |
||||||
|
public class CarouselStateManger { |
||||||
|
|
||||||
|
private CarouseState state; |
||||||
|
|
||||||
|
private final CountDownLatch countDownLatch = new CountDownLatch(1); |
||||||
|
|
||||||
|
|
||||||
|
public static CarouselStateManger getInstance() { |
||||||
|
return CarouselStateManger.HOLDER.singleton; |
||||||
|
} |
||||||
|
|
||||||
|
private static class HOLDER { |
||||||
|
private static CarouselStateManger singleton = new CarouselStateManger(); |
||||||
|
} |
||||||
|
|
||||||
|
private CarouselStateManger() { |
||||||
|
|
||||||
|
} |
||||||
|
|
||||||
|
public void countDown() { |
||||||
|
countDownLatch.countDown(); |
||||||
|
} |
||||||
|
|
||||||
|
public void countDownLatchAwait() throws InterruptedException { |
||||||
|
countDownLatch.await(); |
||||||
|
} |
||||||
|
|
||||||
|
public void start() { |
||||||
|
this.state = CarouseState.RUNNING; |
||||||
|
} |
||||||
|
|
||||||
|
public boolean running() { |
||||||
|
return this.state == CarouseState.RUNNING; |
||||||
|
} |
||||||
|
|
||||||
|
public void suspend() { |
||||||
|
this.state = CarouseState.SUSPEND; |
||||||
|
} |
||||||
|
|
||||||
|
public boolean isSuspend() { |
||||||
|
return this.state == CarouseState.SUSPEND; |
||||||
|
} |
||||||
|
|
||||||
|
public void stop() { |
||||||
|
this.state = CarouseState.STOP; |
||||||
|
} |
||||||
|
|
||||||
|
public boolean stopped() { |
||||||
|
return this.state == CarouseState.STOP; |
||||||
|
} |
||||||
|
|
||||||
|
enum CarouseState { |
||||||
|
RUNNING, |
||||||
|
SUSPEND, |
||||||
|
STOP |
||||||
|
} |
||||||
|
} |
@ -1,53 +0,0 @@ |
|||||||
package com.fr.design.mainframe.share.ui.online; |
|
||||||
|
|
||||||
import javax.swing.SwingWorker; |
|
||||||
import java.util.ArrayList; |
|
||||||
import java.util.List; |
|
||||||
|
|
||||||
/** |
|
||||||
* Created by kerry on 2020-12-10 |
|
||||||
*/ |
|
||||||
public class OnlineResourceManager { |
|
||||||
private static class HOLDER { |
|
||||||
private static final OnlineResourceManager singleton = new OnlineResourceManager(); |
|
||||||
} |
|
||||||
|
|
||||||
private OnlineResourceManager(){ |
|
||||||
|
|
||||||
} |
|
||||||
|
|
||||||
public static OnlineResourceManager getInstance() { |
|
||||||
return HOLDER.singleton; |
|
||||||
} |
|
||||||
|
|
||||||
private SwingWorker<Boolean,Void> swingWorker; |
|
||||||
|
|
||||||
private final List<ResourceLoader> loaderList = new ArrayList<>(); |
|
||||||
|
|
||||||
public void cancelLoad() { |
|
||||||
if (swingWorker != null) { |
|
||||||
swingWorker.cancel(true); |
|
||||||
} |
|
||||||
this.loaderList.clear(); |
|
||||||
} |
|
||||||
|
|
||||||
public void addLoader(ResourceLoader loader) { |
|
||||||
this.loaderList.add(loader); |
|
||||||
} |
|
||||||
|
|
||||||
public void loadImage() { |
|
||||||
swingWorker = new SwingWorker<Boolean, Void>() { |
|
||||||
@Override |
|
||||||
protected Boolean doInBackground() { |
|
||||||
for (ResourceLoader loader : loaderList) { |
|
||||||
loader.load(); |
|
||||||
} |
|
||||||
return true; |
|
||||||
} |
|
||||||
}; |
|
||||||
swingWorker.execute(); |
|
||||||
|
|
||||||
} |
|
||||||
|
|
||||||
|
|
||||||
} |
|
@ -1,231 +1,29 @@ |
|||||||
package com.fr.design.mainframe.share.ui.online; |
package com.fr.design.mainframe.share.ui.online; |
||||||
|
|
||||||
import com.fr.design.gui.icontainer.UIScrollPane; |
|
||||||
import com.fr.design.layout.FRGUIPaneFactory; |
|
||||||
import com.fr.design.mainframe.share.AbstractWidgetSelectPane; |
|
||||||
import com.fr.design.mainframe.share.ui.base.AbstractWidgetPopupPreviewPane; |
|
||||||
import com.fr.design.mainframe.share.ui.base.LoadingPane; |
|
||||||
import com.fr.design.mainframe.share.ui.base.NoMatchPane; |
|
||||||
import com.fr.design.mainframe.share.ui.base.PagingFiledPane; |
|
||||||
import com.fr.design.mainframe.share.ui.block.OnlineWidgetBlock; |
|
||||||
import com.fr.design.mainframe.share.ui.block.PreviewWidgetBlock; |
|
||||||
import com.fr.design.mainframe.share.ui.widgetfilter.FilterPane; |
import com.fr.design.mainframe.share.ui.widgetfilter.FilterPane; |
||||||
import com.fr.form.share.base.DataLoad; |
import com.fr.form.share.base.DataLoad; |
||||||
import com.fr.form.share.bean.OnlineShareWidget; |
import com.fr.form.share.bean.OnlineShareWidget; |
||||||
import com.fr.form.share.constants.ShareComponentConstants; |
|
||||||
import com.fr.form.share.utils.ShareUtils; |
|
||||||
import com.fr.log.FineLoggerFactory; |
|
||||||
import com.fr.stable.ArrayUtils; |
|
||||||
|
|
||||||
import javax.swing.BorderFactory; |
|
||||||
import javax.swing.JPanel; |
|
||||||
import javax.swing.JScrollPane; |
|
||||||
import javax.swing.SwingWorker; |
|
||||||
import java.awt.BorderLayout; |
|
||||||
import java.awt.CardLayout; |
|
||||||
import java.awt.Container; |
|
||||||
import java.awt.Dimension; |
|
||||||
import java.awt.FlowLayout; |
|
||||||
import java.util.concurrent.ExecutionException; |
|
||||||
|
|
||||||
/** |
/** |
||||||
* Created by kerry on 2020-10-19 |
* Created by kerry on 2020-10-19 |
||||||
*/ |
*/ |
||||||
public class OnlineWidgetSelectPane extends AbstractWidgetSelectPane<OnlineShareWidget> { |
public class OnlineWidgetSelectPane extends AbstractOnlineWidgetSelectPane { |
||||||
protected static final int H_GAP = 5; |
|
||||||
protected static final int V_GAP = 10; |
|
||||||
|
|
||||||
enum PaneStatue {NORMAL, NO_MATCH, LOADING, DISCONNECTED} |
|
||||||
|
|
||||||
private OnlineShareWidget[] sharableWidgetProviders; |
|
||||||
private PagingFiledPane pagingFiledPane; |
|
||||||
private JPanel contentPane; |
|
||||||
private UIScrollPane scrollPane; |
|
||||||
private FilterPane filterPane; |
|
||||||
private final int widgetsPerNum; |
|
||||||
private CardLayout cardLayout; |
|
||||||
|
|
||||||
public OnlineWidgetSelectPane(OnlineShareWidget[] providers, FilterPane filterPane, int widgetsPerNum) { |
public OnlineWidgetSelectPane(OnlineShareWidget[] providers, FilterPane filterPane, int widgetsPerNum) { |
||||||
this(providers, widgetsPerNum); |
super(providers, filterPane, widgetsPerNum); |
||||||
this.filterPane = filterPane; |
|
||||||
} |
} |
||||||
|
|
||||||
public OnlineWidgetSelectPane(final DataLoad<OnlineShareWidget> dataLoad, FilterPane filterPane, final int widgetsPerNum) { |
public OnlineWidgetSelectPane(final DataLoad<OnlineShareWidget> dataLoad, FilterPane filterPane, final int widgetsPerNum) { |
||||||
this(dataLoad, widgetsPerNum); |
super(dataLoad, filterPane, widgetsPerNum); |
||||||
this.filterPane = filterPane; |
|
||||||
} |
} |
||||||
|
|
||||||
public OnlineWidgetSelectPane(OnlineShareWidget[] providers, int widgetsPerNum) { |
public OnlineWidgetSelectPane(OnlineShareWidget[] providers, int widgetsPerNum) { |
||||||
this.widgetsPerNum = widgetsPerNum; |
super(providers, widgetsPerNum); |
||||||
sharableWidgetProviders = providers; |
|
||||||
init(); |
|
||||||
initPagingPane(); |
|
||||||
switchPane(createComponents()); |
|
||||||
} |
} |
||||||
|
|
||||||
public OnlineWidgetSelectPane(final DataLoad<OnlineShareWidget> dataLoad, final int widgetsPerNum) { |
public OnlineWidgetSelectPane(final DataLoad<OnlineShareWidget> dataLoad, final int widgetsPerNum) { |
||||||
this.widgetsPerNum = widgetsPerNum; |
super(dataLoad, widgetsPerNum); |
||||||
init(); |
|
||||||
//异步获取组件信息
|
|
||||||
new SwingWorker<PaneStatue, Void>() { |
|
||||||
@Override |
|
||||||
protected PaneStatue doInBackground() { |
|
||||||
sharableWidgetProviders = dataLoad.load(); |
|
||||||
initPagingPane(); |
|
||||||
return createComponents(); |
|
||||||
} |
|
||||||
|
|
||||||
@Override |
|
||||||
protected void done() { |
|
||||||
try { |
|
||||||
switchPane(get()); |
|
||||||
} catch (InterruptedException e) { |
|
||||||
FineLoggerFactory.getLogger().error(e.getMessage(), e); |
|
||||||
Thread.currentThread().interrupt(); |
|
||||||
} catch (ExecutionException e) { |
|
||||||
FineLoggerFactory.getLogger().error(e.getMessage(), e); |
|
||||||
} |
|
||||||
} |
|
||||||
}.execute(); |
|
||||||
} |
|
||||||
|
|
||||||
private void init() { |
|
||||||
cardLayout = new CardLayout(); |
|
||||||
this.setLayout(cardLayout); |
|
||||||
// 设置面板的边框 ,距离上、左、下、右 的距离
|
|
||||||
this.setBorder(BorderFactory.createEmptyBorder(0, 5, 0, 0)); |
|
||||||
contentPane = FRGUIPaneFactory.createBorderLayout_S_Pane(); |
|
||||||
this.add(new LoadingPane(), PaneStatue.LOADING.name()); |
|
||||||
this.add(new NoMatchPane(), PaneStatue.NO_MATCH.name()); |
|
||||||
this.add(contentPane, PaneStatue.NORMAL.name()); |
|
||||||
switchPane(PaneStatue.LOADING); |
|
||||||
} |
|
||||||
|
|
||||||
public int getSharableWidgetNum() { |
|
||||||
return sharableWidgetProviders == null ? 0 : sharableWidgetProviders.length; |
|
||||||
} |
|
||||||
|
|
||||||
public OnlineShareWidget[] getSharableWidgetProviders() { |
|
||||||
return sharableWidgetProviders; |
|
||||||
} |
|
||||||
|
|
||||||
/** |
|
||||||
* 切换需要显示的面板 |
|
||||||
*/ |
|
||||||
private void switchPane(PaneStatue statue) { |
|
||||||
if (statue == PaneStatue.DISCONNECTED) { |
|
||||||
OnlineWidgetRepoPane.getInstance().switch2InternetErrorPane(); |
|
||||||
return; |
|
||||||
} |
|
||||||
cardLayout.show(this, statue.name()); |
|
||||||
if (statue == PaneStatue.NORMAL) { |
|
||||||
//异步加载组件缩略图
|
|
||||||
OnlineResourceManager.getInstance().loadImage(); |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
private void synchronizedLoadingContent() { |
|
||||||
new SwingWorker<PaneStatue, Void>() { |
|
||||||
@Override |
|
||||||
protected PaneStatue doInBackground() { |
|
||||||
return createComponents(); |
|
||||||
} |
|
||||||
|
|
||||||
@Override |
|
||||||
protected void done() { |
|
||||||
try { |
|
||||||
switchPane(get()); |
|
||||||
} catch (InterruptedException e) { |
|
||||||
FineLoggerFactory.getLogger().error(e.getMessage(), e); |
|
||||||
Thread.currentThread().interrupt(); |
|
||||||
} catch (ExecutionException e) { |
|
||||||
FineLoggerFactory.getLogger().error(e.getMessage(), e); |
|
||||||
} |
|
||||||
} |
|
||||||
}.execute(); |
|
||||||
} |
|
||||||
|
|
||||||
private void initPagingPane() { |
|
||||||
this.pagingFiledPane = new PagingFiledPane(sharableWidgetProviders.length, widgetsPerNum); |
|
||||||
this.pagingFiledPane.registerChangeListener(event -> { |
|
||||||
OnlineWidgetSelectPane.this.switchPane(PaneStatue.LOADING); |
|
||||||
synchronizedLoadingContent(); |
|
||||||
}); |
|
||||||
pagingFiledPane.setEnable(pagePaneEnable()); |
|
||||||
} |
|
||||||
|
|
||||||
private PaneStatue createComponents() { |
|
||||||
if (ArrayUtils.isEmpty(sharableWidgetProviders)) { |
|
||||||
return PaneStatue.NO_MATCH; |
|
||||||
} |
|
||||||
if (!ShareUtils.testConnection()) { |
|
||||||
return PaneStatue.DISCONNECTED; |
|
||||||
} |
|
||||||
OnlineResourceManager.getInstance().cancelLoad(); |
|
||||||
|
|
||||||
contentPane.removeAll(); |
|
||||||
scrollPane = createScrollPane(); |
|
||||||
|
|
||||||
contentPane.add(scrollPane, BorderLayout.CENTER); |
|
||||||
contentPane.add(this.pagingFiledPane, BorderLayout.SOUTH); |
|
||||||
return PaneStatue.NORMAL; |
|
||||||
} |
} |
||||||
|
|
||||||
private UIScrollPane createScrollPane() { |
|
||||||
OnlineShareWidget[] showWidgets = this.pagingFiledPane.getShowItems(this.sharableWidgetProviders); |
|
||||||
JPanel widgetPane = createWidgetPane(); |
|
||||||
widgetPane.setLayout(new FlowLayout(FlowLayout.LEFT, H_GAP, V_GAP)); |
|
||||||
for (OnlineShareWidget provider : showWidgets) { |
|
||||||
PreviewWidgetBlock<OnlineShareWidget> widgetButton = createWidgetBlock(provider); |
|
||||||
widgetPane.add(widgetButton); |
|
||||||
} |
|
||||||
widgetPane.setPreferredSize(new Dimension(240, getPaneHeight(showWidgets.length))); |
|
||||||
|
|
||||||
UIScrollPane scrollPane = new UIScrollPane(createContentPane(widgetPane)); |
|
||||||
setScrollPaneStyle(scrollPane); |
|
||||||
return scrollPane; |
|
||||||
} |
|
||||||
|
|
||||||
protected JPanel createWidgetPane() { |
|
||||||
return new JPanel(); |
|
||||||
} |
|
||||||
|
|
||||||
protected JPanel createContentPane(JPanel widgetPane) { |
|
||||||
JPanel panel = FRGUIPaneFactory.createBorderLayout_S_Pane(); |
|
||||||
panel.add(widgetPane, BorderLayout.CENTER); |
|
||||||
return panel; |
|
||||||
} |
|
||||||
|
|
||||||
protected boolean pagePaneEnable() { |
|
||||||
return true; |
|
||||||
} |
|
||||||
|
|
||||||
protected void setScrollPaneStyle(UIScrollPane scrollPane) { |
|
||||||
scrollPane.setBorder(null); |
|
||||||
scrollPane.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_NEVER); |
|
||||||
scrollPane.setWheelScrollingEnabled(filterPane == null || !filterPane.isShowPopup()); |
|
||||||
} |
|
||||||
|
|
||||||
protected PreviewWidgetBlock<OnlineShareWidget> createWidgetBlock(OnlineShareWidget provider) { |
|
||||||
return new OnlineWidgetBlock(provider, this); |
|
||||||
} |
|
||||||
|
|
||||||
protected int getPaneHeight(int count) { |
|
||||||
return (count + 1) / 2 * (ShareComponentConstants.SHARE_BLOCK_HEIGHT + V_GAP); |
|
||||||
} |
|
||||||
|
|
||||||
public void setWidgetPaneScrollEnable(boolean enable) { |
|
||||||
if (scrollPane != null) { |
|
||||||
scrollPane.setWheelScrollingEnabled(enable); |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
@Override |
|
||||||
protected AbstractWidgetPopupPreviewPane<OnlineShareWidget> createPopupPreviewPane() { |
|
||||||
return new OnlineWidgetPopupPreviewPane(); |
|
||||||
} |
|
||||||
|
|
||||||
protected Container getParentContainer() { |
|
||||||
return this.getParent(); |
|
||||||
} |
|
||||||
} |
} |
||||||
|
@ -0,0 +1,46 @@ |
|||||||
|
package com.fr.design.mainframe.share.ui.online.embed; |
||||||
|
|
||||||
|
import com.fr.design.gui.ilable.UILabel; |
||||||
|
import com.fr.design.layout.FRGUIPaneFactory; |
||||||
|
import com.fr.design.mainframe.DesignerContext; |
||||||
|
import com.fr.general.IOUtils; |
||||||
|
|
||||||
|
import javax.swing.BorderFactory; |
||||||
|
import javax.swing.Icon; |
||||||
|
import javax.swing.ImageIcon; |
||||||
|
import javax.swing.JDialog; |
||||||
|
import javax.swing.JPanel; |
||||||
|
import java.awt.BorderLayout; |
||||||
|
import java.awt.Container; |
||||||
|
import java.awt.Graphics; |
||||||
|
import java.awt.Image; |
||||||
|
import java.awt.Point; |
||||||
|
|
||||||
|
/** |
||||||
|
* Created by kerry on 2021/10/22 |
||||||
|
*/ |
||||||
|
public class AnimatePopupDialog extends JDialog { |
||||||
|
private static final Icon DRAG_HAND = IOUtils.readIcon("/com/fr/design/form/images/drag_hand.png"); |
||||||
|
|
||||||
|
public AnimatePopupDialog(Image image, Point initialPosition) { |
||||||
|
super(DesignerContext.getDesignerFrame()); |
||||||
|
Container container = getContentPane(); |
||||||
|
setUndecorated(true); |
||||||
|
JPanel jPanel = new JPanel() { |
||||||
|
@Override |
||||||
|
public void paint(Graphics g) { |
||||||
|
super.paint(g); |
||||||
|
DRAG_HAND.paintIcon(this, g, (this.getWidth() - 20) / 2, (this.getHeight() - 20) / 2); |
||||||
|
} |
||||||
|
}; |
||||||
|
jPanel.setLayout(FRGUIPaneFactory.createBorderLayout()); |
||||||
|
jPanel.setBorder(BorderFactory.createEmptyBorder(5, 5, 5, 5)); |
||||||
|
jPanel.add(new UILabel(new ImageIcon(image)), BorderLayout.CENTER); |
||||||
|
container.add(jPanel, BorderLayout.CENTER); |
||||||
|
setSize(123, 70); |
||||||
|
this.setLocation(initialPosition); |
||||||
|
this.setVisible(true); |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
} |
@ -0,0 +1,156 @@ |
|||||||
|
package com.fr.design.mainframe.share.ui.online.embed; |
||||||
|
|
||||||
|
import com.fr.concurrent.NamedThreadFactory; |
||||||
|
import com.fr.design.dialog.FineJOptionPane; |
||||||
|
import com.fr.design.gui.ibutton.UIButton; |
||||||
|
import com.fr.design.gui.ibutton.UIButtonUI; |
||||||
|
import com.fr.design.gui.ilable.UILabel; |
||||||
|
import com.fr.design.i18n.Toolkit; |
||||||
|
import com.fr.design.layout.FRGUIPaneFactory; |
||||||
|
import com.fr.design.mainframe.share.collect.ComponentCollector; |
||||||
|
import com.fr.design.mainframe.share.ui.widgetfilter.FilterConfigPane; |
||||||
|
import com.fr.design.mainframe.share.util.OnlineShopUtils; |
||||||
|
import com.fr.design.ui.util.UIUtil; |
||||||
|
import com.fr.design.mainframe.share.Bean.WidgetFilterInfo; |
||||||
|
import com.fr.module.ModuleContext; |
||||||
|
import com.fr.stable.StringUtils; |
||||||
|
|
||||||
|
import javax.swing.BorderFactory; |
||||||
|
import javax.swing.JPanel; |
||||||
|
import javax.swing.UIManager; |
||||||
|
import java.awt.BorderLayout; |
||||||
|
import java.awt.Color; |
||||||
|
import java.awt.Dimension; |
||||||
|
import java.awt.Graphics; |
||||||
|
import java.awt.Image; |
||||||
|
import java.awt.Point; |
||||||
|
import java.awt.event.ActionEvent; |
||||||
|
import java.awt.event.ActionListener; |
||||||
|
import java.awt.event.MouseAdapter; |
||||||
|
import java.awt.image.BufferedImage; |
||||||
|
import java.util.List; |
||||||
|
import java.util.concurrent.ScheduledExecutorService; |
||||||
|
import java.util.concurrent.TimeUnit; |
||||||
|
|
||||||
|
import static javax.swing.JOptionPane.WARNING_MESSAGE; |
||||||
|
|
||||||
|
/** |
||||||
|
* Created by kerry on 2021/10/21 |
||||||
|
*/ |
||||||
|
public class EmbedPane extends JPanel { |
||||||
|
private static final String EMBED_PANE_TIMER = "EMBED_PANE_TIMER"; |
||||||
|
private static final Color BORDER_COLOR = Color.decode("#D9DADD"); |
||||||
|
private static final Color SEARCH_BUTTON_COLOR = Color.decode("#419BF9"); |
||||||
|
private Image image; |
||||||
|
|
||||||
|
public EmbedPane(OnlineEmbedFilterShowPane showPane) { |
||||||
|
this.addMouseListener(new MouseAdapter() { |
||||||
|
}); |
||||||
|
this.setLayout(FRGUIPaneFactory.createBorderLayout()); |
||||||
|
this.setBorder(BorderFactory.createLineBorder(BORDER_COLOR)); |
||||||
|
this.add(initCenterPane(showPane), BorderLayout.CENTER); |
||||||
|
} |
||||||
|
|
||||||
|
private JPanel initCenterPane(OnlineEmbedFilterShowPane showPane) { |
||||||
|
JPanel jPanel = new JPanel(FRGUIPaneFactory.createBorderLayout()); |
||||||
|
jPanel.setBackground(Color.WHITE); |
||||||
|
jPanel.setPreferredSize(new Dimension(200, 200)); |
||||||
|
jPanel.setBorder(BorderFactory.createEmptyBorder(5, 0, 5, 0)); |
||||||
|
|
||||||
|
FilterConfigPane filterConfigPane = new FilterConfigPane(OnlineShopUtils.getEmbPaneShowFilterTypeInfos(), false) { |
||||||
|
@Override |
||||||
|
public String assembleFilter() { |
||||||
|
return OnlineShopUtils.assembleFilter(getFilterList()); |
||||||
|
} |
||||||
|
}; |
||||||
|
UIButton searchBtn = initSearchBtn(filterConfigPane, showPane); |
||||||
|
filterConfigPane.setBorder(null); |
||||||
|
UILabel tipLabel = new UILabel(Toolkit.i18nText("Fine-Design_Share_Online_Embed_Filter_Tip")); |
||||||
|
tipLabel.setBorder(BorderFactory.createEmptyBorder(0, 5, 0, 5)); |
||||||
|
jPanel.add(tipLabel, BorderLayout.NORTH); |
||||||
|
jPanel.add(filterConfigPane, BorderLayout.CENTER); |
||||||
|
JPanel southPane = FRGUIPaneFactory.createBorderLayout_S_Pane(); |
||||||
|
southPane.setBorder(BorderFactory.createEmptyBorder(0, 8, 0, 8)); |
||||||
|
southPane.setBackground(Color.WHITE); |
||||||
|
southPane.add(searchBtn, BorderLayout.CENTER); |
||||||
|
southPane.setPreferredSize(new Dimension(212, 24)); |
||||||
|
jPanel.add(southPane, BorderLayout.SOUTH); |
||||||
|
|
||||||
|
return jPanel; |
||||||
|
} |
||||||
|
|
||||||
|
private UIButton initSearchBtn(FilterConfigPane filterConfigPane, OnlineEmbedFilterShowPane showPane) { |
||||||
|
UIButton searchBtn = new UIButton(Toolkit.i18nText("Fine-Design_Share_Online_Query_Recommend_Component")); |
||||||
|
searchBtn.setUI(new UIButtonUI() { |
||||||
|
@Override |
||||||
|
protected void paintBorder(Graphics g, UIButton b) { |
||||||
|
Color oldColor = g.getColor(); |
||||||
|
g.setColor(SEARCH_BUTTON_COLOR); |
||||||
|
g.drawRoundRect(0, 0, b.getWidth(), b.getHeight(), 2, 2); |
||||||
|
g.setColor(oldColor); |
||||||
|
} |
||||||
|
}); |
||||||
|
searchBtn.setForeground(SEARCH_BUTTON_COLOR); |
||||||
|
searchBtn.addActionListener(new ActionListener() { |
||||||
|
@Override |
||||||
|
public void actionPerformed(ActionEvent e) { |
||||||
|
String filterStr = filterConfigPane.assembleFilter(); |
||||||
|
if (StringUtils.isEmpty(filterStr)) { |
||||||
|
FineJOptionPane.showMessageDialog(EmbedPane.this, |
||||||
|
Toolkit.i18nText("Fine-Design_Share_Online_Embed_Filter_Warning_Tip"), |
||||||
|
Toolkit.i18nText("Fine-Design_Basic_Message"), WARNING_MESSAGE, |
||||||
|
UIManager.getIcon("OptionPane.warningIcon")); |
||||||
|
ComponentCollector.getInstance().collectEmbededFilterReact(2); |
||||||
|
return; |
||||||
|
} |
||||||
|
showPane.filterStateChanged(filterStr); |
||||||
|
animateHide(showPane, filterConfigPane.getFilterList()); |
||||||
|
ComponentCollector.getInstance().collectEmbededFilterReact(1); |
||||||
|
} |
||||||
|
}); |
||||||
|
return searchBtn; |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
public void animateHide(OnlineEmbedFilterShowPane showPane, List<WidgetFilterInfo> selectedFilters) { |
||||||
|
//先生成图片
|
||||||
|
image = new BufferedImage(this.getWidth(), this.getHeight(), BufferedImage.TYPE_INT_ARGB); |
||||||
|
this.paint(image.getGraphics()); |
||||||
|
ScheduledExecutorService service = createToastScheduleExecutorService(); |
||||||
|
this.removeAll(); |
||||||
|
service.scheduleAtFixedRate(() -> { |
||||||
|
Dimension dimension = EmbedPane.this.getSize(); |
||||||
|
Point point = EmbedPane.this.getLocation(); |
||||||
|
if (dimension.width <= 0 || dimension.height <= 0) { |
||||||
|
EmbedPane.this.setVisible(false); |
||||||
|
service.shutdown(); |
||||||
|
try { |
||||||
|
showPane.animate(selectedFilters); |
||||||
|
} catch (InterruptedException e) { |
||||||
|
|
||||||
|
} |
||||||
|
} |
||||||
|
UIUtil.invokeAndWaitIfNeeded(() -> { |
||||||
|
Dimension newDimension = new Dimension(dimension.width - 25, dimension.height - 30); |
||||||
|
EmbedPane.this.setSize(newDimension); |
||||||
|
EmbedPane.this.setLocation(point.x + 25, 0); |
||||||
|
}); |
||||||
|
|
||||||
|
}, 0, 60, TimeUnit.MILLISECONDS); |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public void paint(Graphics g) { |
||||||
|
super.paint(g); |
||||||
|
if (image != null) { |
||||||
|
g.drawImage(image, 0, 0, EmbedPane.this.getWidth(), EmbedPane.this.getHeight(), null); |
||||||
|
} |
||||||
|
|
||||||
|
} |
||||||
|
|
||||||
|
private ScheduledExecutorService createToastScheduleExecutorService() { |
||||||
|
return ModuleContext.getExecutor().newSingleThreadScheduledExecutor(new NamedThreadFactory(EMBED_PANE_TIMER)); |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
} |
@ -0,0 +1,44 @@ |
|||||||
|
package com.fr.design.mainframe.share.ui.online.embed; |
||||||
|
|
||||||
|
|
||||||
|
/** |
||||||
|
* Created by kerry on 2021/10/29 |
||||||
|
*/ |
||||||
|
public class FirstDragAnimateStateManager { |
||||||
|
|
||||||
|
public static FirstDragAnimateStateManager getInstance() { |
||||||
|
return FirstDragAnimateStateManager.HOLDER.singleton; |
||||||
|
} |
||||||
|
|
||||||
|
private static class HOLDER { |
||||||
|
private static final FirstDragAnimateStateManager singleton = new FirstDragAnimateStateManager(); |
||||||
|
} |
||||||
|
|
||||||
|
private FirstDragAnimateStateManager() { |
||||||
|
|
||||||
|
} |
||||||
|
|
||||||
|
private STATE state; |
||||||
|
|
||||||
|
public void startAnimate() { |
||||||
|
this.state = STATE.ANIMATING; |
||||||
|
} |
||||||
|
|
||||||
|
public boolean animating() { |
||||||
|
return this.state == STATE.ANIMATING; |
||||||
|
|
||||||
|
} |
||||||
|
|
||||||
|
public void stopAnimate() { |
||||||
|
this.state = STATE.STOP; |
||||||
|
} |
||||||
|
|
||||||
|
public boolean isStop() { |
||||||
|
return this.state == STATE.STOP; |
||||||
|
} |
||||||
|
|
||||||
|
enum STATE { |
||||||
|
ANIMATING, |
||||||
|
STOP |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,169 @@ |
|||||||
|
package com.fr.design.mainframe.share.ui.online.embed; |
||||||
|
|
||||||
|
import com.fr.concurrent.NamedThreadFactory; |
||||||
|
import com.fr.design.gui.icontainer.UIScrollPane; |
||||||
|
import com.fr.design.mainframe.share.ui.online.AbstractOnlineWidgetSelectPane; |
||||||
|
import com.fr.design.mainframe.share.ui.online.CarouselStateManger; |
||||||
|
import com.fr.design.mainframe.share.ui.widgetfilter.FilterPane; |
||||||
|
import com.fr.form.share.base.DataLoad; |
||||||
|
import com.fr.form.share.bean.OnlineShareWidget; |
||||||
|
import com.fr.form.share.constants.ShareComponentConstants; |
||||||
|
import com.fr.log.FineLoggerFactory; |
||||||
|
import com.fr.module.ModuleContext; |
||||||
|
import com.fr.stable.EncodeConstants; |
||||||
|
import com.fr.third.springframework.web.util.UriUtils; |
||||||
|
|
||||||
|
import javax.imageio.ImageIO; |
||||||
|
import javax.swing.JPanel; |
||||||
|
import java.awt.AWTEvent; |
||||||
|
import java.awt.Dimension; |
||||||
|
import java.awt.FlowLayout; |
||||||
|
import java.awt.Image; |
||||||
|
import java.awt.Point; |
||||||
|
import java.awt.Rectangle; |
||||||
|
import java.awt.event.AWTEventListener; |
||||||
|
import java.awt.event.MouseEvent; |
||||||
|
import java.io.IOException; |
||||||
|
import java.net.URL; |
||||||
|
import java.util.concurrent.ScheduledExecutorService; |
||||||
|
import java.util.concurrent.TimeUnit; |
||||||
|
import java.util.concurrent.atomic.AtomicInteger; |
||||||
|
|
||||||
|
/** |
||||||
|
* Created by kerry on 2021/10/22 |
||||||
|
*/ |
||||||
|
public class OnlineEmbedFilterSelectPane extends AbstractOnlineWidgetSelectPane { |
||||||
|
private static final String CAROUSEL_PREVIEW = "carousel_preview"; |
||||||
|
private OnlineShareWidget[] showWidgets; |
||||||
|
|
||||||
|
private PreviewDialog previewDialog; |
||||||
|
private JPanel widgetPane; |
||||||
|
|
||||||
|
private final AWTEventListener awtEventListener; |
||||||
|
|
||||||
|
public OnlineEmbedFilterSelectPane(final DataLoad<OnlineShareWidget> dataLoad, FilterPane filterPane, int widgetsPerNum) { |
||||||
|
super(dataLoad, filterPane, widgetsPerNum); |
||||||
|
awtEventListener = event -> { |
||||||
|
if (event instanceof MouseEvent) { |
||||||
|
if (((MouseEvent) event).getClickCount() > 0) { |
||||||
|
Point selectPanePoint = OnlineEmbedFilterSelectPane.this.getLocationOnScreen(); |
||||||
|
Dimension selectPaneDimension = OnlineEmbedFilterSelectPane.this.getSize(); |
||||||
|
Rectangle selectPaneRec = new Rectangle(selectPanePoint.x, selectPanePoint.y, selectPaneDimension.width, selectPaneDimension.height); |
||||||
|
if (CarouselStateManger.getInstance().running() && |
||||||
|
!selectPaneRec.contains(((MouseEvent) event).getLocationOnScreen())) { |
||||||
|
CarouselStateManger.getInstance().stop(); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
} |
||||||
|
}; |
||||||
|
|
||||||
|
java.awt.Toolkit.getDefaultToolkit().addAWTEventListener(awtEventListener, AWTEvent.MOUSE_EVENT_MASK); |
||||||
|
} |
||||||
|
|
||||||
|
protected UIScrollPane createScrollPane() { |
||||||
|
showWidgets = getShowWidgets(); |
||||||
|
widgetPane = createWidgetPane(); |
||||||
|
widgetPane.setLayout(new FlowLayout(FlowLayout.LEFT, H_GAP, V_GAP)); |
||||||
|
|
||||||
|
previewDialog = new PreviewDialog(); |
||||||
|
|
||||||
|
widgetPane.setPreferredSize(new Dimension(240, getPaneHeight(showWidgets.length))); |
||||||
|
UIScrollPane scrollPane = new UIScrollPane(createContentPane(widgetPane)); |
||||||
|
setScrollPaneStyle(scrollPane); |
||||||
|
return scrollPane; |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
protected void fireAfterDataLoad() { |
||||||
|
super.fireAfterDataLoad(); |
||||||
|
CarouselStateManger.getInstance().countDown(); |
||||||
|
} |
||||||
|
|
||||||
|
public void animate() throws InterruptedException { |
||||||
|
CarouselStateManger.getInstance().countDownLatchAwait(); |
||||||
|
AtomicInteger integer = new AtomicInteger(0); |
||||||
|
showCurrentLoadBlock(integer, widgetPane); |
||||||
|
this.repaint(); |
||||||
|
previewDialog.setVisible(true); |
||||||
|
CarouselStateManger.getInstance().start(); |
||||||
|
} |
||||||
|
|
||||||
|
private void showCurrentLoadBlock(AtomicInteger integer, JPanel widgetPane) { |
||||||
|
ScheduledExecutorService service = createToastScheduleExecutorService(); |
||||||
|
OnlineShareWidget shareWidget = showWidgets[integer.get()]; |
||||||
|
widgetPane.add(createWidgetBlock(shareWidget), 0); |
||||||
|
this.doLayout(); |
||||||
|
this.validate(); |
||||||
|
this.repaint(); |
||||||
|
previewDialog.setImage(getPreviewImage(shareWidget)); |
||||||
|
//展示弹出框
|
||||||
|
service.schedule(new Runnable() { |
||||||
|
@Override |
||||||
|
public void run() { |
||||||
|
if (CarouselStateManger.getInstance().stopped()) { |
||||||
|
stopCarouse(integer); |
||||||
|
return; |
||||||
|
} |
||||||
|
if (integer.get() == showWidgets.length - 1) { |
||||||
|
CarouselStateManger.getInstance().stop(); |
||||||
|
previewDialog.setVisible(false); |
||||||
|
return; |
||||||
|
} |
||||||
|
integer.incrementAndGet(); |
||||||
|
if (!CarouselStateManger.getInstance().isSuspend()) { |
||||||
|
showCurrentLoadBlock(integer, widgetPane); |
||||||
|
} else { |
||||||
|
pollingCarouselState(integer, widgetPane); |
||||||
|
} |
||||||
|
} |
||||||
|
}, 500, TimeUnit.MILLISECONDS); |
||||||
|
} |
||||||
|
|
||||||
|
private void pollingCarouselState(AtomicInteger integer, JPanel widgetPane) { |
||||||
|
ScheduledExecutorService service = createToastScheduleExecutorService(); |
||||||
|
service.scheduleAtFixedRate(new Runnable() { |
||||||
|
@Override |
||||||
|
public void run() { |
||||||
|
if (CarouselStateManger.getInstance().stopped()) { |
||||||
|
stopCarouse(integer); |
||||||
|
return; |
||||||
|
} |
||||||
|
if (!CarouselStateManger.getInstance().isSuspend()) { |
||||||
|
showCurrentLoadBlock(integer, widgetPane); |
||||||
|
service.shutdown(); |
||||||
|
} |
||||||
|
} |
||||||
|
}, 0, 500, TimeUnit.MILLISECONDS); |
||||||
|
} |
||||||
|
|
||||||
|
private void stopCarouse(AtomicInteger integer) { |
||||||
|
previewDialog.setVisible(false); |
||||||
|
loadRestShowWidgets(integer.get() + 1); |
||||||
|
java.awt.Toolkit.getDefaultToolkit().removeAWTEventListener(awtEventListener); |
||||||
|
} |
||||||
|
|
||||||
|
private void loadRestShowWidgets(int startIndex) { |
||||||
|
for (int i = startIndex; i < showWidgets.length; i++) { |
||||||
|
OnlineShareWidget shareWidget = showWidgets[i]; |
||||||
|
widgetPane.add(createWidgetBlock(shareWidget)); |
||||||
|
} |
||||||
|
this.doLayout(); |
||||||
|
this.validate(); |
||||||
|
this.repaint(); |
||||||
|
} |
||||||
|
|
||||||
|
public Image getPreviewImage(OnlineShareWidget widget) { |
||||||
|
try { |
||||||
|
return ImageIO.read(new URL(UriUtils.encodePath(widget.getPicPath(), EncodeConstants.ENCODING_UTF_8))); |
||||||
|
} catch (IOException e) { |
||||||
|
FineLoggerFactory.getLogger().error(e.getMessage(), e); |
||||||
|
return ShareComponentConstants.DEFAULT_COVER; |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
private ScheduledExecutorService createToastScheduleExecutorService() { |
||||||
|
return ModuleContext.getExecutor().newSingleThreadScheduledExecutor(new NamedThreadFactory(CAROUSEL_PREVIEW)); |
||||||
|
} |
||||||
|
|
||||||
|
} |
@ -0,0 +1,47 @@ |
|||||||
|
package com.fr.design.mainframe.share.ui.online.embed; |
||||||
|
|
||||||
|
import com.fr.design.layout.FRGUIPaneFactory; |
||||||
|
import com.fr.design.mainframe.share.ComponentShareUtil; |
||||||
|
import com.fr.design.mainframe.share.ui.online.OnlineWidgetShowPane; |
||||||
|
import com.fr.design.mainframe.share.Bean.WidgetFilterInfo; |
||||||
|
import javax.swing.JPanel; |
||||||
|
import java.awt.BorderLayout; |
||||||
|
import java.util.List; |
||||||
|
|
||||||
|
/** |
||||||
|
* Created by kerry on 2021/10/22 |
||||||
|
*/ |
||||||
|
public class OnlineEmbedFilterShowPane extends JPanel { |
||||||
|
private final OnlineWidgetShowPane onlineWidgetShowPane; |
||||||
|
private final EmbedPane embedPane; |
||||||
|
|
||||||
|
private OnlineEmbedFilterSelectPane selectPane; |
||||||
|
|
||||||
|
public OnlineEmbedFilterShowPane(OnlineWidgetShowPane onlineWidgetShowPane) { |
||||||
|
this.setLayout(FRGUIPaneFactory.createBorderLayout()); |
||||||
|
embedPane = new EmbedPane(this); |
||||||
|
embedPane.setLocation(10, 0); |
||||||
|
embedPane.setSize(228, 273); |
||||||
|
this.add(embedPane); |
||||||
|
this.onlineWidgetShowPane = onlineWidgetShowPane; |
||||||
|
this.add(onlineWidgetShowPane, BorderLayout.CENTER); |
||||||
|
} |
||||||
|
|
||||||
|
public void filterStateChanged(String filterStr) { |
||||||
|
selectPane = onlineWidgetShowPane.animate(filterStr); |
||||||
|
} |
||||||
|
|
||||||
|
public void animate(List<WidgetFilterInfo> selectedFilters) throws InterruptedException { |
||||||
|
onlineWidgetShowPane.setFilterItems(selectedFilters); |
||||||
|
selectPane.animate(); |
||||||
|
} |
||||||
|
|
||||||
|
public void completeEmbedFilter(){ |
||||||
|
if (embedPane!= null && embedPane.isShowing()){ |
||||||
|
this.remove(embedPane); |
||||||
|
ComponentShareUtil.completeEmbedFilter(); |
||||||
|
this.doLayout(); |
||||||
|
this.repaint(); |
||||||
|
} |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,40 @@ |
|||||||
|
package com.fr.design.mainframe.share.ui.online.embed; |
||||||
|
|
||||||
|
import com.fr.design.gui.ilable.UILabel; |
||||||
|
import com.fr.design.mainframe.DesignerContext; |
||||||
|
import com.fr.design.mainframe.EastRegionContainerPane; |
||||||
|
|
||||||
|
import javax.swing.ImageIcon; |
||||||
|
import javax.swing.JDialog; |
||||||
|
import java.awt.Image; |
||||||
|
|
||||||
|
|
||||||
|
/** |
||||||
|
* Created by kerry on 2021/10/22 |
||||||
|
*/ |
||||||
|
public class PreviewDialog extends JDialog { |
||||||
|
|
||||||
|
public PreviewDialog() { |
||||||
|
super(DesignerContext.getDesignerFrame()); |
||||||
|
setUndecorated(true); |
||||||
|
setSize(300, 300); |
||||||
|
adjustLocation(); |
||||||
|
this.setVisible(false); |
||||||
|
} |
||||||
|
|
||||||
|
public void setImage(Image image) { |
||||||
|
this.getContentPane().removeAll(); |
||||||
|
this.getContentPane().add(new UILabel(new ImageIcon(image))); |
||||||
|
this.doLayout(); |
||||||
|
this.validate(); |
||||||
|
this.repaint(); |
||||||
|
} |
||||||
|
|
||||||
|
public void adjustLocation() { |
||||||
|
|
||||||
|
this.setLocation( |
||||||
|
EastRegionContainerPane.getInstance().getX() - 300, |
||||||
|
20 |
||||||
|
); |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,64 @@ |
|||||||
|
package com.fr.design.mainframe.share.ui.online.resource; |
||||||
|
|
||||||
|
import javax.swing.SwingWorker; |
||||||
|
import java.util.concurrent.ArrayBlockingQueue; |
||||||
|
import java.util.concurrent.BlockingQueue; |
||||||
|
|
||||||
|
/** |
||||||
|
* Created by kerry on 2020-12-10 |
||||||
|
*/ |
||||||
|
public class OnlineResourceManager { |
||||||
|
private static class HOLDER { |
||||||
|
private static final OnlineResourceManager singleton = new OnlineResourceManager(); |
||||||
|
} |
||||||
|
|
||||||
|
private OnlineResourceManager() { |
||||||
|
|
||||||
|
} |
||||||
|
|
||||||
|
public static OnlineResourceManager getInstance() { |
||||||
|
return HOLDER.singleton; |
||||||
|
} |
||||||
|
|
||||||
|
private SwingWorker<Boolean, Void> swingWorker; |
||||||
|
|
||||||
|
|
||||||
|
private final BlockingQueue<ResourceLoader> loaderBlockingQueue = new ArrayBlockingQueue<ResourceLoader>(100); |
||||||
|
|
||||||
|
public void cancelLoad() { |
||||||
|
if (swingWorker != null) { |
||||||
|
swingWorker.cancel(true); |
||||||
|
} |
||||||
|
this.loaderBlockingQueue.clear(); |
||||||
|
} |
||||||
|
|
||||||
|
public void addLoader(ResourceLoader loader) { |
||||||
|
try { |
||||||
|
this.loaderBlockingQueue.put(loader); |
||||||
|
} catch (InterruptedException e) { |
||||||
|
e.printStackTrace(); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
public void loadImage() { |
||||||
|
swingWorker = new SwingWorker<Boolean, Void>() { |
||||||
|
@Override |
||||||
|
protected Boolean doInBackground() { |
||||||
|
while (!swingWorker.isCancelled()) { |
||||||
|
ResourceLoader loader = null; |
||||||
|
try { |
||||||
|
loader = loaderBlockingQueue.take(); |
||||||
|
} catch (InterruptedException e) { |
||||||
|
e.printStackTrace(); |
||||||
|
} |
||||||
|
loader.load(); |
||||||
|
} |
||||||
|
return true; |
||||||
|
} |
||||||
|
}; |
||||||
|
swingWorker.execute(); |
||||||
|
|
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
} |
@ -1,4 +1,4 @@ |
|||||||
package com.fr.design.mainframe.share.ui.online; |
package com.fr.design.mainframe.share.ui.online.resource; |
||||||
|
|
||||||
/** |
/** |
||||||
* Created by kerry on 2020-12-10 |
* Created by kerry on 2020-12-10 |
@ -0,0 +1,265 @@ |
|||||||
|
package com.fr.design.mainframe.share.ui.widgetfilter; |
||||||
|
|
||||||
|
import com.fr.design.gui.icheckbox.UICheckBox; |
||||||
|
import com.fr.design.gui.ilable.UILabel; |
||||||
|
import com.fr.design.layout.FRGUIPaneFactory; |
||||||
|
import com.fr.design.layout.VerticalFlowLayout; |
||||||
|
import com.fr.design.mainframe.share.Bean.FilterTypeInfo; |
||||||
|
import com.fr.design.mainframe.share.Bean.WidgetFilterInfo; |
||||||
|
import com.fr.design.mainframe.share.Bean.WidgetFilterTypeInfo; |
||||||
|
import com.fr.general.ComparatorUtils; |
||||||
|
import com.fr.stable.StringUtils; |
||||||
|
|
||||||
|
import javax.swing.BorderFactory; |
||||||
|
import javax.swing.JPanel; |
||||||
|
import javax.swing.event.ChangeEvent; |
||||||
|
import java.awt.BorderLayout; |
||||||
|
import java.awt.Color; |
||||||
|
import java.awt.Dimension; |
||||||
|
import java.awt.FlowLayout; |
||||||
|
import java.awt.Font; |
||||||
|
import java.awt.event.ItemEvent; |
||||||
|
import java.awt.event.ItemListener; |
||||||
|
import java.util.ArrayList; |
||||||
|
import java.util.List; |
||||||
|
|
||||||
|
/** |
||||||
|
* Created by kerry on 2021/11/1 |
||||||
|
*/ |
||||||
|
public abstract class FilterConfigPane extends JPanel { |
||||||
|
private static final Color BORDER_COLOR = Color.decode("#D9DADD"); |
||||||
|
private static final String FILTER_ALL_ID = "0"; |
||||||
|
|
||||||
|
public static final int CONTENT_WIDTH = 225; |
||||||
|
|
||||||
|
private final List<WidgetFilterInfo> filterList = new ArrayList<>(); |
||||||
|
private final List<FilterCheckBox> checkBoxList = new ArrayList<>(); |
||||||
|
private boolean reset = false; |
||||||
|
private boolean showChildNode; |
||||||
|
|
||||||
|
|
||||||
|
public FilterConfigPane(List<FilterTypeInfo> widgetFilterCategories, boolean showChildNode) { |
||||||
|
this.showChildNode = showChildNode; |
||||||
|
initPane(widgetFilterCategories); |
||||||
|
} |
||||||
|
|
||||||
|
public FilterConfigPane(List<FilterTypeInfo> widgetFilterCategories) { |
||||||
|
this(widgetFilterCategories, true); |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
private void initPane(List<FilterTypeInfo> widgetFilterCategories) { |
||||||
|
this.setBackground(Color.WHITE); |
||||||
|
this.setBorder(BorderFactory.createLineBorder(BORDER_COLOR)); |
||||||
|
this.setForeground(Color.decode("#FFFFFF")); |
||||||
|
this.setLayout(new BorderLayout()); |
||||||
|
this.add(createVerticalFlowPane(widgetFilterCategories), BorderLayout.CENTER); |
||||||
|
} |
||||||
|
|
||||||
|
public boolean hasFilter() { |
||||||
|
return filterList.size() > 0; |
||||||
|
} |
||||||
|
|
||||||
|
public List<WidgetFilterInfo> getFilterList() { |
||||||
|
return filterList; |
||||||
|
} |
||||||
|
|
||||||
|
private JPanel createVerticalFlowPane(List<FilterTypeInfo> widgetFilterCategories) { |
||||||
|
JPanel verticalFlowPane = new JPanel(); |
||||||
|
verticalFlowPane.setBackground(Color.WHITE); |
||||||
|
VerticalFlowLayout layout = new VerticalFlowLayout(FlowLayout.LEADING, 0, 10); |
||||||
|
layout.setAlignLeft(true); |
||||||
|
verticalFlowPane.setLayout(layout); |
||||||
|
|
||||||
|
verticalFlowPane.setBackground(Color.WHITE); |
||||||
|
verticalFlowPane.setBorder(BorderFactory.createEmptyBorder(0, 5, 0, 5)); |
||||||
|
|
||||||
|
for (FilterTypeInfo filterTypeInfo : widgetFilterCategories) { |
||||||
|
verticalFlowPane.add(createCategoryPane(filterTypeInfo)); |
||||||
|
} |
||||||
|
|
||||||
|
return verticalFlowPane; |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
private JPanel createTypeFilterPane(WidgetFilterTypeInfo widgetFilterTypeInfo) { |
||||||
|
JPanel jPanel = FRGUIPaneFactory.createBorderLayout_S_Pane(); |
||||||
|
jPanel.setBackground(Color.WHITE); |
||||||
|
UILabel titleLabel = new UILabel(widgetFilterTypeInfo.getTitle() + ":"); |
||||||
|
titleLabel.setBorder(BorderFactory.createEmptyBorder(0, 5, 0, 5)); |
||||||
|
titleLabel.setFont(new Font(titleLabel.getFont().getName(), Font.BOLD, titleLabel.getFont().getSize())); |
||||||
|
jPanel.add(titleLabel, BorderLayout.NORTH); |
||||||
|
jPanel.add(createCategoryDetailPane(widgetFilterTypeInfo), BorderLayout.CENTER); |
||||||
|
return jPanel; |
||||||
|
} |
||||||
|
|
||||||
|
private JPanel createCategoryPane(FilterTypeInfo filterTypeInfo) { |
||||||
|
JPanel jPanel = FRGUIPaneFactory.createBorderLayout_S_Pane(); |
||||||
|
jPanel.setBackground(Color.WHITE); |
||||||
|
UILabel titleLabel = new UILabel(filterTypeInfo.getTitle()); |
||||||
|
titleLabel.setBorder(BorderFactory.createEmptyBorder(0, 5, 0, 5)); |
||||||
|
titleLabel.setPreferredSize(new Dimension(CONTENT_WIDTH - 2, 20)); |
||||||
|
titleLabel.setOpaque(true); |
||||||
|
titleLabel.setBackground(Color.decode("#EDEDEE")); |
||||||
|
jPanel.add(titleLabel, BorderLayout.NORTH); |
||||||
|
jPanel.add(createCategoryDetailPane(filterTypeInfo.getFilterTypeInfos()), BorderLayout.CENTER); |
||||||
|
return jPanel; |
||||||
|
} |
||||||
|
|
||||||
|
private JPanel createCategoryDetailPane(List<WidgetFilterTypeInfo> filterTypeInfoList) { |
||||||
|
|
||||||
|
if (filterTypeInfoList.size() == 1) { |
||||||
|
return createCategoryDetailPane(filterTypeInfoList.get(0)); |
||||||
|
} |
||||||
|
|
||||||
|
JPanel contentPane = FRGUIPaneFactory.createVerticalFlowLayout_Pane(true, FlowLayout.LEADING, 0, 10); |
||||||
|
contentPane.setBackground(Color.WHITE); |
||||||
|
for (WidgetFilterTypeInfo info : filterTypeInfoList) { |
||||||
|
contentPane.add(createTypeFilterPane(info)); |
||||||
|
} |
||||||
|
return contentPane; |
||||||
|
} |
||||||
|
|
||||||
|
private JPanel createCategoryDetailPane(WidgetFilterTypeInfo filterTypeInfo) { |
||||||
|
JPanel contentPane = FRGUIPaneFactory.createNColumnGridInnerContainer_S_Pane(2); |
||||||
|
contentPane.setBorder(BorderFactory.createEmptyBorder(5, 0, 0, 0)); |
||||||
|
contentPane.setBackground(Color.WHITE); |
||||||
|
contentPane.setPreferredSize(new Dimension(CONTENT_WIDTH, calculateDetailPaneHeight(filterTypeInfo))); |
||||||
|
for (final WidgetFilterInfo filterInfo : filterTypeInfo.getFilterItems()) { |
||||||
|
if (ComparatorUtils.equals(FILTER_ALL_ID, filterInfo.getId())) { |
||||||
|
continue; |
||||||
|
} |
||||||
|
FilterCheckBox checkBox = createCheckBox(filterInfo); |
||||||
|
contentPane.add(checkBox); |
||||||
|
if (showChildNode && filterInfo.hasChildFilter()) { |
||||||
|
alignmentFilling(contentPane); |
||||||
|
createChildPane(filterInfo.getInnerFilterInfo(), contentPane, checkBox); |
||||||
|
alignmentFilling(contentPane); |
||||||
|
} |
||||||
|
} |
||||||
|
return contentPane; |
||||||
|
} |
||||||
|
|
||||||
|
private void alignmentFilling(JPanel contentPane) { |
||||||
|
if (contentPane.getComponentCount() % 2 == 1) { |
||||||
|
contentPane.add(new UILabel("")); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
private FilterCheckBox createCheckBox(WidgetFilterInfo filterInfo) { |
||||||
|
final FilterCheckBox checkBox = new FilterCheckBox(filterInfo.getName(), filterInfo); |
||||||
|
checkBox.setBackground(Color.WHITE); |
||||||
|
checkBox.addItemListener(new ItemListener() { |
||||||
|
@Override |
||||||
|
public void itemStateChanged(ItemEvent e) { |
||||||
|
if (checkBox.isSelected() && !checkBox.getFilterInfo().hasChildFilter()) { |
||||||
|
filterList.add(filterInfo); |
||||||
|
} else if (filterList.contains(filterInfo)) { |
||||||
|
filterList.remove(filterInfo); |
||||||
|
} |
||||||
|
if (reset) { |
||||||
|
return; |
||||||
|
} |
||||||
|
fireSelectedChanged(new ChangeEvent(assembleFilter())); |
||||||
|
} |
||||||
|
}); |
||||||
|
checkBoxList.add(checkBox); |
||||||
|
return checkBox; |
||||||
|
} |
||||||
|
|
||||||
|
private void createChildPane(List<WidgetFilterInfo> childFilterInfo, JPanel contentPane, FilterCheckBox parentCheckBox) { |
||||||
|
List<FilterCheckBox> childCheckboxList = new ArrayList<>(); |
||||||
|
for (WidgetFilterInfo filterInfo : childFilterInfo) { |
||||||
|
JPanel jPanel = FRGUIPaneFactory.createBorderLayout_S_Pane(); |
||||||
|
jPanel.setBackground(Color.WHITE); |
||||||
|
jPanel.setBorder(BorderFactory.createEmptyBorder(0, 16, 0, 0)); |
||||||
|
FilterCheckBox checkBox = createCheckBox(filterInfo); |
||||||
|
checkBox.addItemListener(e -> { |
||||||
|
if (this.reset) { |
||||||
|
return; |
||||||
|
} |
||||||
|
this.reset = true; |
||||||
|
parentCheckBox.setSelected(allChildSelected(childCheckboxList)); |
||||||
|
this.reset = false; |
||||||
|
}); |
||||||
|
childCheckboxList.add(checkBox); |
||||||
|
jPanel.add(checkBox, BorderLayout.CENTER); |
||||||
|
contentPane.add(jPanel); |
||||||
|
} |
||||||
|
parentCheckBox.addItemListener(e -> { |
||||||
|
if (this.reset) { |
||||||
|
return; |
||||||
|
} |
||||||
|
this.reset = true; |
||||||
|
for (FilterCheckBox checkBox : childCheckboxList) { |
||||||
|
checkBox.setSelected(parentCheckBox.isSelected()); |
||||||
|
} |
||||||
|
this.reset = false; |
||||||
|
}); |
||||||
|
} |
||||||
|
|
||||||
|
private boolean allChildSelected(List<FilterCheckBox> childCheckboxList) { |
||||||
|
boolean flag = true; |
||||||
|
for (FilterCheckBox checkBox : childCheckboxList) { |
||||||
|
flag &= checkBox.isSelected(); |
||||||
|
} |
||||||
|
return flag; |
||||||
|
} |
||||||
|
|
||||||
|
private int calculateDetailPaneHeight(WidgetFilterTypeInfo filterTypeInfo) { |
||||||
|
int displayCount = 0; |
||||||
|
for (final WidgetFilterInfo filterInfo : filterTypeInfo.getFilterItems()) { |
||||||
|
if (!ComparatorUtils.equals(FILTER_ALL_ID, filterInfo.getId())) { |
||||||
|
displayCount++; |
||||||
|
} |
||||||
|
if (filterInfo.getInnerFilterInfo().size() > 0 && showChildNode) { |
||||||
|
displayCount += (1 + filterInfo.getInnerFilterInfo().size()); |
||||||
|
} |
||||||
|
} |
||||||
|
return ((displayCount + 1) / 2) * 27; |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
public abstract String assembleFilter(); |
||||||
|
|
||||||
|
public void setFilters(List<String> selectedFilterNames) { |
||||||
|
reset = true; |
||||||
|
filterList.clear(); |
||||||
|
for (FilterCheckBox checkBox : checkBoxList) { |
||||||
|
if (selectedFilterNames.contains(checkBox.getFilterInfo().getName())) { |
||||||
|
checkBox.setSelected(true); |
||||||
|
filterList.add(checkBox.getFilterInfo()); |
||||||
|
} |
||||||
|
} |
||||||
|
reset = false; |
||||||
|
} |
||||||
|
|
||||||
|
public void reset() { |
||||||
|
reset = true; |
||||||
|
for (FilterCheckBox checkBox : checkBoxList) { |
||||||
|
checkBox.setSelected(false); |
||||||
|
} |
||||||
|
filterList.clear(); |
||||||
|
fireSelectedChanged(new ChangeEvent(StringUtils.EMPTY)); |
||||||
|
reset = false; |
||||||
|
} |
||||||
|
|
||||||
|
protected void fireSelectedChanged(ChangeEvent changeEvent) { |
||||||
|
|
||||||
|
} |
||||||
|
|
||||||
|
private class FilterCheckBox extends UICheckBox { |
||||||
|
private WidgetFilterInfo filterInfo; |
||||||
|
|
||||||
|
public FilterCheckBox(String string, WidgetFilterInfo filterInfo) { |
||||||
|
super(string); |
||||||
|
this.filterInfo = filterInfo; |
||||||
|
} |
||||||
|
|
||||||
|
public WidgetFilterInfo getFilterInfo() { |
||||||
|
return this.filterInfo; |
||||||
|
} |
||||||
|
|
||||||
|
} |
||||||
|
|
||||||
|
} |
@ -1,203 +1,32 @@ |
|||||||
package com.fr.design.mainframe.share.ui.widgetfilter; |
package com.fr.design.mainframe.share.ui.widgetfilter; |
||||||
|
|
||||||
import com.fr.design.gui.icheckbox.UICheckBox; |
import com.fr.design.mainframe.share.Bean.FilterTypeInfo; |
||||||
import com.fr.design.gui.ilable.UILabel; |
|
||||||
import com.fr.design.i18n.Toolkit; |
|
||||||
import com.fr.design.layout.FRGUIPaneFactory; |
|
||||||
import com.fr.design.layout.VerticalFlowLayout; |
|
||||||
import com.fr.form.share.bean.WidgetFilterInfo; |
|
||||||
import com.fr.form.share.bean.WidgetFilterTypeInfo; |
|
||||||
import com.fr.general.ComparatorUtils; |
|
||||||
import com.fr.stable.StringUtils; |
|
||||||
|
|
||||||
import javax.swing.BorderFactory; |
|
||||||
import javax.swing.JPanel; |
|
||||||
import javax.swing.event.ChangeEvent; |
import javax.swing.event.ChangeEvent; |
||||||
import java.awt.BorderLayout; |
|
||||||
import java.awt.Color; |
|
||||||
import java.awt.Dimension; |
|
||||||
import java.awt.FlowLayout; |
|
||||||
import java.awt.Font; |
|
||||||
import java.awt.event.ItemEvent; |
|
||||||
import java.awt.event.ItemListener; |
|
||||||
import java.util.ArrayList; |
|
||||||
import java.util.List; |
import java.util.List; |
||||||
|
|
||||||
/** |
/** |
||||||
* @Author: Yuan.Wang |
* @Author: Yuan.Wang |
||||||
* @Date: 2020/11/11 |
* @Date: 2020/11/11 |
||||||
*/ |
*/ |
||||||
public abstract class FilterPopupPane extends JPanel { |
public abstract class FilterPopupPane extends FilterConfigPane { |
||||||
private static final Color BORDER_COLOR = Color.decode("#D9DADD"); |
|
||||||
private static final String FILTER_ALL_ID = "0"; |
|
||||||
|
|
||||||
public static final int CONTENT_WIDTH = 225; |
private final FilterPane filterPane; |
||||||
|
|
||||||
FilterPane filterPane; |
|
||||||
private List<WidgetFilterInfo> filterList = new ArrayList<>(); |
|
||||||
private final List<UICheckBox> checkBoxList = new ArrayList<>(); |
|
||||||
private boolean reset = false; |
|
||||||
|
|
||||||
|
public FilterPopupPane(FilterPane filterPane, List<FilterTypeInfo> widgetFilterCategories) { |
||||||
public FilterPopupPane(FilterPane filterPane, List<WidgetFilterTypeInfo> widgetFilterCategories) { |
super(widgetFilterCategories); |
||||||
this.filterPane = filterPane; |
this.filterPane = filterPane; |
||||||
initPane(widgetFilterCategories); |
|
||||||
} |
|
||||||
|
|
||||||
private void initPane(List<WidgetFilterTypeInfo> widgetFilterCategories) { |
|
||||||
this.setBackground(Color.WHITE); |
|
||||||
this.setBorder(BorderFactory.createLineBorder(BORDER_COLOR)); |
|
||||||
this.setForeground(Color.decode("#FFFFFF")); |
|
||||||
this.setLayout(new BorderLayout()); |
|
||||||
this.add(createVerticalFlowPane(widgetFilterCategories), BorderLayout.CENTER); |
|
||||||
} |
|
||||||
|
|
||||||
public boolean hasFilter() { |
|
||||||
return filterList.size() > 0; |
|
||||||
} |
|
||||||
|
|
||||||
protected List<WidgetFilterInfo> getFilterList() { |
|
||||||
return filterList; |
|
||||||
} |
} |
||||||
|
|
||||||
private JPanel createVerticalFlowPane(List<WidgetFilterTypeInfo> widgetFilterCategories) { |
public void setFilters(List<String> selectedFilterNames) { |
||||||
|
super.setFilters(selectedFilterNames); |
||||||
List<WidgetFilterTypeInfo> topWidgetTypeFilter = new ArrayList<>(); |
filterPane.changeFilterButtonStatus(hasFilter()); |
||||||
List<WidgetFilterTypeInfo> widgetTypeFilter = new ArrayList<>(); |
|
||||||
List<WidgetFilterTypeInfo> otherWidgetTypeFilter = new ArrayList<>(); |
|
||||||
|
|
||||||
for (WidgetFilterTypeInfo info : widgetFilterCategories) { |
|
||||||
if (ComparatorUtils.equals(FilterPane.CHART_FILTER_KEY, info.getKey()) |
|
||||||
|| ComparatorUtils.equals(FilterPane.REPORT_FILTER_KEY, info.getKey())) { |
|
||||||
widgetTypeFilter.add(info); |
|
||||||
} else if (ComparatorUtils.equals(FilterPane.SOURCE_FILTER_KEY, info.getKey())) { |
|
||||||
topWidgetTypeFilter.add(info); |
|
||||||
} else { |
|
||||||
otherWidgetTypeFilter.add(info); |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
JPanel verticalFlowPane = new JPanel(); |
|
||||||
verticalFlowPane.setBackground(Color.WHITE); |
|
||||||
VerticalFlowLayout layout = new VerticalFlowLayout(FlowLayout.LEADING, 0, 10); |
|
||||||
layout.setAlignLeft(true); |
|
||||||
verticalFlowPane.setLayout(layout); |
|
||||||
|
|
||||||
verticalFlowPane.setBackground(Color.WHITE); |
|
||||||
verticalFlowPane.setBorder(BorderFactory.createEmptyBorder(0, 5, 0, 5)); |
|
||||||
|
|
||||||
for (WidgetFilterTypeInfo info : topWidgetTypeFilter) { |
|
||||||
verticalFlowPane.add(createOtherCategoryPane(info)); |
|
||||||
} |
|
||||||
if (widgetTypeFilter.size() > 0) { |
|
||||||
verticalFlowPane.add(createWidgetTypeFilterPane(widgetTypeFilter)); |
|
||||||
} |
|
||||||
for (WidgetFilterTypeInfo info : otherWidgetTypeFilter) { |
|
||||||
verticalFlowPane.add(createOtherCategoryPane(info)); |
|
||||||
} |
|
||||||
return verticalFlowPane; |
|
||||||
} |
} |
||||||
|
|
||||||
private JPanel createWidgetTypeFilterPane(List<WidgetFilterTypeInfo> widgetTypeFilter) { |
|
||||||
JPanel jPanel = FRGUIPaneFactory.createBorderLayout_S_Pane(); |
|
||||||
jPanel.setBackground(Color.WHITE); |
|
||||||
UILabel titleLabel = new UILabel(Toolkit.i18nText("Fine-Design_Basic_Type")); |
|
||||||
titleLabel.setBorder(BorderFactory.createEmptyBorder(0, 5, 0, 5)); |
|
||||||
titleLabel.setPreferredSize(new Dimension(CONTENT_WIDTH - 2, 20)); |
|
||||||
titleLabel.setOpaque(true); |
|
||||||
titleLabel.setBackground(Color.decode("#EDEDEE")); |
|
||||||
jPanel.add(titleLabel, BorderLayout.NORTH); |
|
||||||
|
|
||||||
JPanel contentPane = FRGUIPaneFactory.createVerticalFlowLayout_Pane(true, FlowLayout.LEADING, 0, 10); |
|
||||||
contentPane.setBackground(Color.WHITE); |
|
||||||
for (WidgetFilterTypeInfo info : widgetTypeFilter) { |
|
||||||
contentPane.add(createTypeFilterPane(info)); |
|
||||||
} |
|
||||||
jPanel.add(contentPane, BorderLayout.CENTER); |
|
||||||
return jPanel; |
|
||||||
} |
|
||||||
|
|
||||||
private JPanel createTypeFilterPane(WidgetFilterTypeInfo widgetFilterTypeInfo) { |
protected void fireSelectedChanged(ChangeEvent changeEvent){ |
||||||
JPanel jPanel = FRGUIPaneFactory.createBorderLayout_S_Pane(); |
|
||||||
jPanel.setBackground(Color.WHITE); |
|
||||||
UILabel titleLabel = new UILabel(widgetFilterTypeInfo.getTitle() + ":"); |
|
||||||
titleLabel.setBorder(BorderFactory.createEmptyBorder(0, 5, 0, 5)); |
|
||||||
titleLabel.setFont(new Font(titleLabel.getFont().getName(), Font.BOLD, titleLabel.getFont().getSize())); |
|
||||||
jPanel.add(titleLabel, BorderLayout.NORTH); |
|
||||||
jPanel.add(createCategoryDetailPane(widgetFilterTypeInfo), BorderLayout.CENTER); |
|
||||||
return jPanel; |
|
||||||
} |
|
||||||
|
|
||||||
private JPanel createOtherCategoryPane(WidgetFilterTypeInfo filterTypeInfo) { |
|
||||||
JPanel jPanel = FRGUIPaneFactory.createBorderLayout_S_Pane(); |
|
||||||
jPanel.setBackground(Color.WHITE); |
|
||||||
UILabel titleLabel = new UILabel(filterTypeInfo.getTitle()); |
|
||||||
titleLabel.setBorder(BorderFactory.createEmptyBorder(0, 5, 0, 5)); |
|
||||||
titleLabel.setPreferredSize(new Dimension(CONTENT_WIDTH - 2, 20)); |
|
||||||
titleLabel.setOpaque(true); |
|
||||||
titleLabel.setBackground(Color.decode("#EDEDEE")); |
|
||||||
jPanel.add(titleLabel, BorderLayout.NORTH); |
|
||||||
jPanel.add(createCategoryDetailPane(filterTypeInfo), BorderLayout.CENTER); |
|
||||||
return jPanel; |
|
||||||
} |
|
||||||
|
|
||||||
private JPanel createCategoryDetailPane(WidgetFilterTypeInfo filterTypeInfo) { |
|
||||||
JPanel contentPane = FRGUIPaneFactory.createNColumnGridInnerContainer_S_Pane(2); |
|
||||||
contentPane.setBorder(BorderFactory.createEmptyBorder(5, 0, 0, 0)); |
|
||||||
contentPane.setBackground(Color.WHITE); |
|
||||||
int displayCount = 0; |
|
||||||
for (final WidgetFilterInfo filterInfo : filterTypeInfo.getFilterItems()) { |
|
||||||
if (!ComparatorUtils.equals(FILTER_ALL_ID, filterInfo.getId())) { |
|
||||||
displayCount++; |
|
||||||
} |
|
||||||
} |
|
||||||
int contentPaneHeight = ((displayCount + 1) / 2) * 27; |
|
||||||
contentPane.setPreferredSize(new Dimension(CONTENT_WIDTH, contentPaneHeight)); |
|
||||||
for (final WidgetFilterInfo filterInfo : filterTypeInfo.getFilterItems()) { |
|
||||||
if (ComparatorUtils.equals(FILTER_ALL_ID, filterInfo.getId())) { |
|
||||||
continue; |
|
||||||
} |
|
||||||
final UICheckBox checkBox = new UICheckBox(filterInfo.getName()); |
|
||||||
checkBox.setBackground(Color.WHITE); |
|
||||||
|
|
||||||
checkBox.addItemListener(new ItemListener() { |
|
||||||
@Override |
|
||||||
public void itemStateChanged(ItemEvent e) { |
|
||||||
if (reset) { |
|
||||||
return; |
|
||||||
} |
|
||||||
if (checkBox.isSelected()) { |
|
||||||
filterList.add(filterInfo); |
|
||||||
} else if (filterList.contains(filterInfo)) { |
|
||||||
filterList.remove(filterInfo); |
|
||||||
} |
|
||||||
checkFilterButtonStatus(); |
|
||||||
filterPane.fireChangeListener(new ChangeEvent(assembleFilter())); |
|
||||||
} |
|
||||||
}); |
|
||||||
|
|
||||||
|
|
||||||
checkBoxList.add(checkBox); |
|
||||||
contentPane.add(checkBox); |
|
||||||
} |
|
||||||
return contentPane; |
|
||||||
} |
|
||||||
|
|
||||||
protected abstract String assembleFilter(); |
|
||||||
|
|
||||||
private void checkFilterButtonStatus() { |
|
||||||
filterPane.changeFilterButtonStatus(hasFilter()); |
filterPane.changeFilterButtonStatus(hasFilter()); |
||||||
|
filterPane.fireChangeListener(changeEvent); |
||||||
} |
} |
||||||
|
|
||||||
public void reset() { |
|
||||||
reset = true; |
|
||||||
for (UICheckBox checkBox : checkBoxList) { |
|
||||||
checkBox.setSelected(false); |
|
||||||
} |
|
||||||
filterList.clear(); |
|
||||||
checkFilterButtonStatus(); |
|
||||||
filterPane.fireChangeListener(new ChangeEvent(StringUtils.EMPTY)); |
|
||||||
reset = false; |
|
||||||
} |
|
||||||
|
|
||||||
} |
} |
||||||
|
@ -0,0 +1,292 @@ |
|||||||
|
package com.fr.design.mainframe.share.util; |
||||||
|
|
||||||
|
import com.fr.design.DesignerCloudURLManager; |
||||||
|
import com.fr.design.i18n.Toolkit; |
||||||
|
import com.fr.design.mainframe.share.Bean.FilterTypeInfo; |
||||||
|
import com.fr.form.share.bean.OnlineShareWidget; |
||||||
|
import com.fr.form.share.bean.SortParameter; |
||||||
|
import com.fr.design.mainframe.share.Bean.WidgetFilterInfo; |
||||||
|
import com.fr.design.mainframe.share.Bean.WidgetFilterTypeInfo; |
||||||
|
import com.fr.design.mainframe.share.config.ComponentReuseConfigManager; |
||||||
|
import com.fr.general.ComparatorUtils; |
||||||
|
import com.fr.general.http.HttpClient; |
||||||
|
import com.fr.json.JSONArray; |
||||||
|
import com.fr.json.JSONObject; |
||||||
|
import com.fr.log.FineLoggerFactory; |
||||||
|
import com.fr.stable.StableUtils; |
||||||
|
import com.fr.stable.StringUtils; |
||||||
|
|
||||||
|
import java.net.HttpURLConnection; |
||||||
|
import java.util.ArrayList; |
||||||
|
import java.util.Comparator; |
||||||
|
import java.util.HashMap; |
||||||
|
import java.util.Iterator; |
||||||
|
import java.util.List; |
||||||
|
import java.util.Map; |
||||||
|
|
||||||
|
/** |
||||||
|
* Created by kerry on 2021/11/3 |
||||||
|
*/ |
||||||
|
public class OnlineShopUtils { |
||||||
|
|
||||||
|
private static final String CHART = "chart"; |
||||||
|
private static final String REPORT = "report"; |
||||||
|
private static final String CID_PREFIX = "cid"; |
||||||
|
private static final String CHART_IDS = "123457"; |
||||||
|
|
||||||
|
private OnlineShopUtils() { |
||||||
|
|
||||||
|
} |
||||||
|
|
||||||
|
public static String getReuInfoPath() { |
||||||
|
return ComponentReuseConfigManager.getInstance().getMiniShopUrl(); |
||||||
|
} |
||||||
|
|
||||||
|
private static String getWidgetReusePath() { |
||||||
|
return getReuInfoPath(); |
||||||
|
} |
||||||
|
|
||||||
|
private static String getPackageChildrenPath() { |
||||||
|
return StableUtils.pathJoin(getReuInfoPath(), "children/"); |
||||||
|
} |
||||||
|
|
||||||
|
private static String getWidgetFilterPath() { |
||||||
|
return StableUtils.pathJoin(getReuInfoPath(), "filter"); |
||||||
|
} |
||||||
|
|
||||||
|
private static String getGetCompositeSortParaPath() { |
||||||
|
return StableUtils.pathJoin(getReuInfoPath(), "sort_parameter"); |
||||||
|
} |
||||||
|
|
||||||
|
private static String getTestConnectionUrl() { |
||||||
|
return DesignerCloudURLManager.getInstance().acquireUrlByKind("ping"); |
||||||
|
} |
||||||
|
|
||||||
|
public static List<FilterTypeInfo> getShowFilterTypeInfos() { |
||||||
|
List<FilterTypeInfo> filterTypeInfos = new ArrayList<>(); |
||||||
|
List<WidgetFilterTypeInfo> widgetFilterTypeInfos = getWidgetFilterTypeInfos(); |
||||||
|
FilterTypeInfo widgetTypeInfo = |
||||||
|
new FilterTypeInfo(Toolkit.i18nText("Fine-Design_Share_Filter_Widget_Type"), ShareFilterConstants.WIDGET_TYPE_FILTER_KEY); |
||||||
|
for (WidgetFilterTypeInfo info : widgetFilterTypeInfos) { |
||||||
|
if (ComparatorUtils.equals(ShareFilterConstants.CHART_FILTER_KEY, info.getKey()) |
||||||
|
|| ComparatorUtils.equals(ShareFilterConstants.REPORT_FILTER_KEY, info.getKey())) { |
||||||
|
widgetTypeInfo.addFilterType(info); |
||||||
|
if (!filterTypeInfos.contains(widgetTypeInfo)) { |
||||||
|
filterTypeInfos.add(widgetTypeInfo); |
||||||
|
} |
||||||
|
} else { |
||||||
|
FilterTypeInfo typeInfo = new FilterTypeInfo(info.getTitle(), info.getKey()); |
||||||
|
typeInfo.addFilterType(info); |
||||||
|
filterTypeInfos.add(typeInfo); |
||||||
|
} |
||||||
|
} |
||||||
|
filterTypeInfos.sort(Comparator.comparingInt(o -> OnlineFilterType.parse(o.getKey()).ordinal())); |
||||||
|
return filterTypeInfos; |
||||||
|
} |
||||||
|
|
||||||
|
enum OnlineFilterType { |
||||||
|
SHOW_DEVICE(ShareFilterConstants.SHOW_TERMINAL_FILTER_KEY), |
||||||
|
STYLE(ShareFilterConstants.STYLE_FILTER_KEY), |
||||||
|
WIDGET_TYPE(ShareFilterConstants.WIDGET_TYPE_FILTER_KEY), |
||||||
|
FEE(ShareFilterConstants.FEE_FILTER_KEY), |
||||||
|
VERSION(ShareFilterConstants.VERSION_FILTER_KEY); |
||||||
|
private String flag; |
||||||
|
|
||||||
|
private OnlineFilterType(String flag) { |
||||||
|
this.flag = flag; |
||||||
|
} |
||||||
|
|
||||||
|
public static OnlineFilterType parse(String flag) { |
||||||
|
for (OnlineFilterType filterType : values()) { |
||||||
|
if (ComparatorUtils.equals(filterType.flag, flag)) { |
||||||
|
return filterType; |
||||||
|
} |
||||||
|
} |
||||||
|
return SHOW_DEVICE; |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
public static List<FilterTypeInfo> getEmbPaneShowFilterTypeInfos() { |
||||||
|
List<FilterTypeInfo> filterTypeInfos = new ArrayList<>(); |
||||||
|
List<WidgetFilterTypeInfo> widgetFilterTypeInfos = getWidgetFilterTypeInfos(); |
||||||
|
WidgetFilterTypeInfo widgetTypeFilterInfo = new WidgetFilterTypeInfo(); |
||||||
|
widgetTypeFilterInfo.setTitle(Toolkit.i18nText("Fine-Design_Share_Filter_Widget_Type")); |
||||||
|
FilterTypeInfo widgetType = new FilterTypeInfo(widgetTypeFilterInfo.getTitle(), ShareFilterConstants.WIDGET_TYPE_FILTER_KEY); |
||||||
|
widgetType.addFilterType(widgetTypeFilterInfo); |
||||||
|
WidgetFilterInfo reportCard = new WidgetFilterInfo(); |
||||||
|
reportCard.setName(Toolkit.i18nText("Fine-Design_Share_Online_Filter_Indicator_Card")); |
||||||
|
WidgetFilterInfo chartType = new WidgetFilterInfo(); |
||||||
|
chartType.setName(Toolkit.i18nText("Fine-Design_Share_Online_Filter_Chart")); |
||||||
|
WidgetFilterInfo otherType = new WidgetFilterInfo(); |
||||||
|
otherType.setName(Toolkit.i18nText("Fine-Design_Share_Online_Filter_Other_Type")); |
||||||
|
widgetTypeFilterInfo.addFilterItem(reportCard); |
||||||
|
widgetTypeFilterInfo.addFilterItem(chartType); |
||||||
|
widgetTypeFilterInfo.addFilterItem(otherType); |
||||||
|
for (WidgetFilterTypeInfo info : widgetFilterTypeInfos) { |
||||||
|
if (ComparatorUtils.equals(ShareFilterConstants.SHOW_TERMINAL_FILTER_KEY, info.getKey())) { |
||||||
|
FilterTypeInfo showTerminalInfo = new FilterTypeInfo(info.getTitle(), info.getKey()); |
||||||
|
showTerminalInfo.addFilterType(info); |
||||||
|
filterTypeInfos.add(showTerminalInfo); |
||||||
|
|
||||||
|
} else if (ComparatorUtils.equals(ShareFilterConstants.STYLE_FILTER_KEY, info.getKey())) { |
||||||
|
FilterTypeInfo styleTypeInfo = new FilterTypeInfo(info.getTitle(), info.getKey()); |
||||||
|
styleTypeInfo.addFilterType(info); |
||||||
|
filterTypeInfos.add(styleTypeInfo); |
||||||
|
} else if (ComparatorUtils.equals(ShareFilterConstants.REPORT_FILTER_KEY, info.getKey())) { |
||||||
|
for (WidgetFilterInfo filterInfo : info.getFilterItems()) { |
||||||
|
if (ComparatorUtils.equals(filterInfo.getId(), "1")) { |
||||||
|
reportCard.addChildFilterInfo(filterInfo); |
||||||
|
} else { |
||||||
|
otherType.addChildFilterInfo(filterInfo); |
||||||
|
} |
||||||
|
} |
||||||
|
} else if (ComparatorUtils.equals(ShareFilterConstants.CHART_FILTER_KEY, info.getKey())) { |
||||||
|
for (WidgetFilterInfo filterInfo : info.getFilterItems()) { |
||||||
|
if (filterInfo.getId() != null && CHART_IDS.contains(filterInfo.getId())) { |
||||||
|
chartType.addChildFilterInfo(filterInfo); |
||||||
|
} else { |
||||||
|
otherType.addChildFilterInfo(filterInfo); |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
filterTypeInfos.add(widgetType); |
||||||
|
return filterTypeInfos; |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
public static Map<String, SortParameter> getCompositeSortPara() { |
||||||
|
Map<String, SortParameter> para = new HashMap<>(); |
||||||
|
try { |
||||||
|
JSONArray resultArr = getResultAttrFromUrl(getGetCompositeSortParaPath()); |
||||||
|
int size = resultArr.size(); |
||||||
|
for (int i = 0; i < size; i++) { |
||||||
|
JSONObject jo = resultArr.getJSONObject(i); |
||||||
|
SortParameter sortParameter = SortParameter.parseFromJSONObject(jo); |
||||||
|
para.put(sortParameter.getParameter(), sortParameter); |
||||||
|
} |
||||||
|
} catch (Exception e) { |
||||||
|
FineLoggerFactory.getLogger().error(e.getMessage(), e); |
||||||
|
} |
||||||
|
return para; |
||||||
|
} |
||||||
|
|
||||||
|
public static String assembleFilter(List<WidgetFilterInfo> filterInfos) { |
||||||
|
List<String> cidList = new ArrayList<>(); |
||||||
|
Map<String, String> queryParaMap = new HashMap<>(); |
||||||
|
for (WidgetFilterInfo filterInfo : filterInfos) { |
||||||
|
if (ComparatorUtils.equals(CHART, filterInfo.getType()) |
||||||
|
|| ComparatorUtils.equals(REPORT, filterInfo.getType())) { |
||||||
|
cidList.add(filterInfo.getType() + "-" + filterInfo.getId()); |
||||||
|
continue; |
||||||
|
} |
||||||
|
String queryValue = queryParaMap.get(filterInfo.getType()); |
||||||
|
if (StringUtils.isNotEmpty(queryValue)) { |
||||||
|
queryValue += "," + filterInfo.getId(); |
||||||
|
} else { |
||||||
|
queryValue = filterInfo.getId(); |
||||||
|
} |
||||||
|
queryParaMap.put(filterInfo.getType(), queryValue); |
||||||
|
} |
||||||
|
StringBuffer sb; |
||||||
|
List<String> queryCondition = new ArrayList<>(); |
||||||
|
if (!cidList.isEmpty()) { |
||||||
|
sb = new StringBuffer(); |
||||||
|
sb.append(CID_PREFIX).append("=").append(StringUtils.join(",", cidList.toArray(new String[cidList.size()]))); |
||||||
|
queryCondition.add(sb.toString()); |
||||||
|
} |
||||||
|
|
||||||
|
Iterator<Map.Entry<String, String>> iterator = queryParaMap.entrySet().iterator(); |
||||||
|
while (iterator.hasNext()) { |
||||||
|
Map.Entry<String, String> entry = iterator.next(); |
||||||
|
sb = new StringBuffer(); |
||||||
|
sb.append(entry.getKey()).append("=").append(entry.getValue()); |
||||||
|
queryCondition.add(sb.toString()); |
||||||
|
} |
||||||
|
return StringUtils.join("&", queryCondition.toArray(new String[queryCondition.size()])); |
||||||
|
} |
||||||
|
|
||||||
|
public static boolean testConnection() { |
||||||
|
HttpClient httpClient = new HttpClient(getTestConnectionUrl()); |
||||||
|
httpClient.asGet(); |
||||||
|
int responseCode = httpClient.getResponseCode(); |
||||||
|
return responseCode == HttpURLConnection.HTTP_OK; |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
public static List<OnlineShareWidget>[] getAllSharableWidgetsFromShop() throws Exception { |
||||||
|
List<OnlineShareWidget>[] sharableWidgetsArray = new List[]{new ArrayList<>(), new ArrayList<>()}; |
||||||
|
JSONArray resultArr = getResultAttrFromUrl(getWidgetReusePath()); |
||||||
|
int size = resultArr.size(); |
||||||
|
for (int i = 0; i < size; i++) { |
||||||
|
JSONObject jo = resultArr.getJSONObject(i); |
||||||
|
OnlineShareWidget temp = OnlineShareWidget.parseFromJSONObject(jo); |
||||||
|
if (temp.isWidgetPackage()) { |
||||||
|
sharableWidgetsArray[1].add(temp); |
||||||
|
} else { |
||||||
|
sharableWidgetsArray[0].add(temp); |
||||||
|
} |
||||||
|
} |
||||||
|
return sharableWidgetsArray; |
||||||
|
} |
||||||
|
|
||||||
|
public static OnlineShareWidget[] getPackageWidgets(OnlineShareWidget widgetPackage) { |
||||||
|
String plistUrl = getPackageChildrenPath() + widgetPackage.getId(); |
||||||
|
OnlineShareWidget[] widgets = getOnlineShareWidgets(plistUrl); |
||||||
|
for (OnlineShareWidget widget : widgets) { |
||||||
|
widget.setParentPackage(widgetPackage); |
||||||
|
} |
||||||
|
return widgets; |
||||||
|
} |
||||||
|
|
||||||
|
public static List<WidgetFilterTypeInfo> getWidgetFilterTypeInfos() { |
||||||
|
List<WidgetFilterTypeInfo> result = new ArrayList<>(); |
||||||
|
try { |
||||||
|
JSONArray resultArr = getResultAttrFromUrl(getWidgetFilterPath()); |
||||||
|
int size = resultArr.size(); |
||||||
|
for (int i = 0; i < size; i++) { |
||||||
|
JSONObject jo = resultArr.getJSONObject(i); |
||||||
|
result.add(WidgetFilterTypeInfo.parseFromJSONObject(jo)); |
||||||
|
} |
||||||
|
} catch (Exception e) { |
||||||
|
FineLoggerFactory.getLogger().error(e.getMessage(), e); |
||||||
|
} |
||||||
|
return result; |
||||||
|
} |
||||||
|
|
||||||
|
private static OnlineShareWidget[] getOnlineShareWidgets(String url) { |
||||||
|
if (StringUtils.isNotBlank(url)) { |
||||||
|
try { |
||||||
|
JSONArray resultArr = getResultAttrFromUrl(url); |
||||||
|
int size = resultArr.size(); |
||||||
|
List<OnlineShareWidget> onlineShareWidgets = new ArrayList<>(); |
||||||
|
for (int i = 0; i < size; i++) { |
||||||
|
JSONObject jo = resultArr.getJSONObject(i); |
||||||
|
OnlineShareWidget widget = OnlineShareWidget.parseFromJSONObject(jo); |
||||||
|
if (!widget.isWidgetPackage()) { |
||||||
|
onlineShareWidgets.add(widget); |
||||||
|
} |
||||||
|
} |
||||||
|
return onlineShareWidgets.toArray(new OnlineShareWidget[onlineShareWidgets.size()]); |
||||||
|
} catch (Exception e) { |
||||||
|
FineLoggerFactory.getLogger().error(e.getMessage(), e); |
||||||
|
} |
||||||
|
} |
||||||
|
return new OnlineShareWidget[]{}; |
||||||
|
} |
||||||
|
|
||||||
|
public static OnlineShareWidget[] getFilterWidgets(String filterStr) { |
||||||
|
|
||||||
|
String plistUrl = getWidgetReusePath() + "?" + filterStr; |
||||||
|
return getOnlineShareWidgets(plistUrl); |
||||||
|
} |
||||||
|
|
||||||
|
private static JSONArray getResultAttrFromUrl(String url) { |
||||||
|
HttpClient httpClient = new HttpClient(url); |
||||||
|
httpClient.asGet(); |
||||||
|
String responseText = httpClient.getResponseText(); |
||||||
|
JSONObject resultJSONObject = new JSONObject(responseText); |
||||||
|
return resultJSONObject.getJSONArray("result"); |
||||||
|
} |
||||||
|
|
||||||
|
} |
@ -0,0 +1,17 @@ |
|||||||
|
package com.fr.design.mainframe.share.util; |
||||||
|
|
||||||
|
/** |
||||||
|
* Created by kerry on 2021/11/3 |
||||||
|
*/ |
||||||
|
public class ShareFilterConstants { |
||||||
|
public static final String CHART_FILTER_KEY = "3@chart"; |
||||||
|
public static final String REPORT_FILTER_KEY = "4@report"; |
||||||
|
public static final String SHOW_TERMINAL_FILTER_KEY = "4@displayDevice"; |
||||||
|
public static final String STYLE_FILTER_KEY = "5@style"; |
||||||
|
public static final String FEE_FILTER_KEY = "2@fee"; |
||||||
|
public static final String VERSION_FILTER_KEY = "6@version"; |
||||||
|
public static final String WIDGET_TYPE_FILTER_KEY = "1@widgetType"; |
||||||
|
public static final String SOURCE_TYPE_FILTER_KEY = "2@source"; |
||||||
|
|
||||||
|
public static final String ALL_STYLE_THEME = "0"; |
||||||
|
} |
After Width: | Height: | Size: 967 B |
@ -1,45 +0,0 @@ |
|||||||
package com.fr.design.mainframe; |
|
||||||
|
|
||||||
import com.fr.design.mainframe.reuse.ComponentReuseNotificationInfo; |
|
||||||
import org.junit.Assert; |
|
||||||
import org.junit.Test; |
|
||||||
|
|
||||||
/** |
|
||||||
* Created by kerry on 5/10/21 |
|
||||||
*/ |
|
||||||
public class ReuseTriggerPointManagerTest { |
|
||||||
private static final long ONE_WEEK_TIME = 7 * 24 * 3600 * 1000L; |
|
||||||
|
|
||||||
|
|
||||||
@Test |
|
||||||
public void testNeedTrigger() { |
|
||||||
ComponentReuseNotificationInfo notificationInfo = ComponentReuseNotificationInfo.getInstance(); |
|
||||||
notificationInfo.setNotifiedNumber(0); |
|
||||||
Assert.assertTrue(ReuseTriggerPointManager.getInstance().needTrigger()); |
|
||||||
|
|
||||||
notificationInfo.setNotifiedNumber(1); |
|
||||||
Assert.assertTrue(ReuseTriggerPointManager.getInstance().needTrigger()); |
|
||||||
|
|
||||||
notificationInfo.setNotifiedNumber(2); |
|
||||||
Assert.assertFalse(ReuseTriggerPointManager.getInstance().needTrigger()); |
|
||||||
|
|
||||||
notificationInfo.setNotifiedNumber(0); |
|
||||||
notificationInfo.setLastNotifyTime(System.currentTimeMillis()); |
|
||||||
Assert.assertFalse(ReuseTriggerPointManager.getInstance().needTrigger()); |
|
||||||
|
|
||||||
notificationInfo.setNotifiedNumber(1); |
|
||||||
notificationInfo.setLastNotifyTime(System.currentTimeMillis()); |
|
||||||
Assert.assertFalse(ReuseTriggerPointManager.getInstance().needTrigger()); |
|
||||||
|
|
||||||
|
|
||||||
notificationInfo.setNotifiedNumber(1); |
|
||||||
notificationInfo.setLastNotifyTime(System.currentTimeMillis() - ONE_WEEK_TIME - 1); |
|
||||||
Assert.assertTrue(ReuseTriggerPointManager.getInstance().needTrigger()); |
|
||||||
|
|
||||||
|
|
||||||
notificationInfo.setNotifiedNumber(2); |
|
||||||
notificationInfo.setLastNotifyTime(System.currentTimeMillis()); |
|
||||||
Assert.assertFalse(ReuseTriggerPointManager.getInstance().needTrigger()); |
|
||||||
} |
|
||||||
|
|
||||||
} |
|
Loading…
Reference in new issue