@ -0,0 +1,30 @@
|
||||
package com.fr.design.actions.help.alphafine; |
||||
|
||||
import java.util.Stack; |
||||
|
||||
/** |
||||
* @author hades |
||||
* @version 11.0 |
||||
* Created by hades on 2022/4/23 |
||||
*/ |
||||
public class SizedStack<T> extends Stack<T> { |
||||
|
||||
private final int maxSize; |
||||
|
||||
public SizedStack(int size) { |
||||
super(); |
||||
this.maxSize = size; |
||||
} |
||||
|
||||
@Override |
||||
public T push(T object) { |
||||
while (this.size() >= maxSize) { |
||||
this.remove(0); |
||||
} |
||||
// 不重复
|
||||
if (this.contains(object)) { |
||||
return object; |
||||
} |
||||
return super.push(object); |
||||
} |
||||
} |
@ -0,0 +1,63 @@
|
||||
package com.fr.design.mainframe.alphafine; |
||||
|
||||
import com.fr.design.DesignerEnvManager; |
||||
import com.fr.design.mainframe.alphafine.model.ProductNews; |
||||
import com.fr.design.mainframe.alphafine.search.manager.impl.ProductNewsSearchManager; |
||||
import com.fr.stable.StringUtils; |
||||
import java.util.List; |
||||
import java.util.Set; |
||||
|
||||
/** |
||||
* @author hades |
||||
* @version 11.0 |
||||
* Created by hades on 2022/4/20 |
||||
*/ |
||||
public class AlphaFineUtil { |
||||
|
||||
public static String highLightModelName(String modelName, String[] strings) { |
||||
if (strings == null) { |
||||
return modelName; |
||||
} |
||||
for (String string : strings) { |
||||
String primaryStr = getReplacedString(modelName, string); |
||||
if (StringUtils.isNotEmpty(primaryStr)) { |
||||
modelName = modelName.replaceAll("(?i)" + primaryStr, "|<font color=" + AlphaFineConstants.HIGH_LIGHT_COLOR + ">" + primaryStr + "</font>|"); |
||||
} |
||||
} |
||||
modelName = "<html><head><style> .style{" + |
||||
"overflow: hidden;" + |
||||
"text-overflow: ellipsis;" + |
||||
"white-space: nowrap;}" + |
||||
"</style></head><body class=\"style\">" + modelName.replaceAll("\\|", StringUtils.EMPTY) + "</body></HTML>"; |
||||
return modelName; |
||||
} |
||||
|
||||
|
||||
private static String getReplacedString(String modelName, String string) { |
||||
//需要考虑modelName有空格的情况
|
||||
//比如现在是work boo k 搜索词是workb,应该要替换的部分是work b
|
||||
//先去掉已经匹配替换过的部分,因为考虑到分词的情况,可能会进行多次替换
|
||||
final String regex = "\\|<font.*?</font>\\|"; |
||||
modelName = modelName.replaceAll(regex, StringUtils.EMPTY); |
||||
//再去掉空格进行匹配
|
||||
String noBlackName = modelName.replaceAll(StringUtils.BLANK, StringUtils.EMPTY).toLowerCase(); |
||||
int index = noBlackName.indexOf(string.toLowerCase()); |
||||
if (index == -1) { |
||||
return StringUtils.EMPTY; |
||||
} |
||||
StringBuilder result = new StringBuilder(); |
||||
int count = 0; |
||||
while (count < string.length()) { |
||||
char pos = modelName.charAt(index++); |
||||
result.append(pos); |
||||
count += pos == ' ' ? 0 : 1; |
||||
} |
||||
return result.toString(); |
||||
} |
||||
|
||||
public static boolean unread() { |
||||
Set<Long> readSet = DesignerEnvManager.getEnvManager().getAlphaFineConfigManager().getReadSet(); |
||||
List<ProductNews> productNewsList = ProductNewsSearchManager.getInstance().getCachedProductNewsList(); |
||||
return !productNewsList.isEmpty() && (readSet.size() != productNewsList.size()); |
||||
} |
||||
} |
@ -0,0 +1,669 @@
|
||||
package com.fr.design.mainframe.alphafine.component; |
||||
|
||||
import com.fr.base.svg.IconUtils; |
||||
import com.fr.base.svg.SVGLoader; |
||||
import com.fr.design.DesignerEnvManager; |
||||
import com.fr.design.actions.help.alphafine.AlphaFineConfigManager; |
||||
import com.fr.design.constants.UIConstants; |
||||
import com.fr.design.gui.ibutton.UIButton; |
||||
import com.fr.design.gui.ilable.UILabel; |
||||
import com.fr.design.mainframe.alphafine.AlphaFineConstants; |
||||
import com.fr.design.mainframe.alphafine.AlphaFineHelper; |
||||
import com.fr.design.mainframe.alphafine.CellType; |
||||
import com.fr.design.mainframe.alphafine.cell.model.AlphaCellModel; |
||||
import com.fr.design.mainframe.alphafine.model.ProductNews; |
||||
import com.fr.design.mainframe.alphafine.preview.DefaultProductNewsPane; |
||||
import com.fr.design.mainframe.alphafine.preview.HelpDocumentNoResultPane; |
||||
import com.fr.design.mainframe.alphafine.preview.LoadingRightSearchResultPane; |
||||
import com.fr.design.mainframe.alphafine.preview.NoResultPane; |
||||
import com.fr.design.mainframe.alphafine.preview.NoResultWithLinkPane; |
||||
import com.fr.design.mainframe.alphafine.preview.SimpleRightSearchResultPane; |
||||
import com.fr.design.mainframe.alphafine.question.QuestionWindow; |
||||
import com.fr.design.mainframe.alphafine.search.ProductNewsSearchWorkerManager; |
||||
import com.fr.design.mainframe.alphafine.search.SearchTextBean; |
||||
import com.fr.design.mainframe.alphafine.search.SearchWorkerManager; |
||||
import com.fr.design.mainframe.alphafine.search.manager.impl.ActionSearchManager; |
||||
import com.fr.design.mainframe.alphafine.search.manager.impl.DocumentSearchManager; |
||||
import com.fr.design.mainframe.alphafine.search.manager.impl.FileSearchManager; |
||||
import com.fr.design.mainframe.alphafine.search.manager.impl.PluginSearchManager; |
||||
import com.fr.design.mainframe.alphafine.search.manager.impl.ProductNewsSearchManager; |
||||
import com.fr.design.mainframe.alphafine.search.manager.impl.SegmentationManager; |
||||
import com.fr.design.utils.DesignUtils; |
||||
import com.fr.general.ComparatorUtils; |
||||
import com.fr.stable.StringUtils; |
||||
import java.awt.BorderLayout; |
||||
import java.awt.CardLayout; |
||||
import java.awt.Color; |
||||
import java.awt.Dimension; |
||||
import java.awt.FlowLayout; |
||||
import java.awt.Font; |
||||
import java.awt.Graphics; |
||||
import java.awt.Graphics2D; |
||||
import java.awt.Image; |
||||
import java.awt.RenderingHints; |
||||
import java.awt.Toolkit; |
||||
import java.awt.Window; |
||||
import java.awt.event.ActionEvent; |
||||
import java.awt.event.ActionListener; |
||||
import java.awt.event.FocusEvent; |
||||
import java.awt.event.FocusListener; |
||||
import java.awt.event.KeyAdapter; |
||||
import java.awt.event.KeyEvent; |
||||
import java.awt.event.MouseAdapter; |
||||
import java.awt.event.MouseEvent; |
||||
import java.util.ArrayList; |
||||
import java.util.LinkedHashMap; |
||||
import java.util.List; |
||||
import java.util.Map; |
||||
import java.util.Set; |
||||
import java.util.regex.Matcher; |
||||
import java.util.regex.Pattern; |
||||
import javax.swing.BorderFactory; |
||||
import javax.swing.Icon; |
||||
import javax.swing.JButton; |
||||
import javax.swing.JFrame; |
||||
import javax.swing.JPanel; |
||||
import javax.swing.SwingConstants; |
||||
import javax.swing.Timer; |
||||
|
||||
/** |
||||
* @author hades |
||||
* @version 11.0 |
||||
* Created by hades on 2022/04/06 |
||||
*/ |
||||
public class AlphaFineFrame extends JFrame { |
||||
|
||||
private static final String ADVANCED_SEARCH_MARK = "k:"; |
||||
|
||||
private static final int TIMER_DELAY = 300; |
||||
|
||||
private static final String PLACE_HOLDER = com.fr.design.i18n.Toolkit.i18nText("Fine-Design_Report_AlphaFine"); |
||||
|
||||
private static final String SETTING = com.fr.design.i18n.Toolkit.i18nText("Fine-Design_Report_Set"); |
||||
|
||||
private static final String NO_RESULT = com.fr.design.i18n.Toolkit.i18nText("Fine-Design_Report_No_Result"); |
||||
|
||||
private static final String SKILLS = com.fr.design.i18n.Toolkit.i18nText("Fine-Design_Report_AlphaFine_Skills"); |
||||
|
||||
private static final String SEARCH_TERM = com.fr.design.i18n.Toolkit.i18nText("Fine-Design_Report_AlphaFine_Search_Term"); |
||||
|
||||
private static final String SEARCH = com.fr.design.i18n.Toolkit.i18nText("Fine-Design_Report_AlphaFine_Search"); |
||||
|
||||
private static final String GO_FORUM = com.fr.design.i18n.Toolkit.i18nText("Fine-Design_Report_AlphaFine_Go_Forum"); |
||||
|
||||
private static final String TEMPLATES = com.fr.design.i18n.Toolkit.i18nText("Fine-Design_Report_Templates"); |
||||
|
||||
private static final String PRODUCT_NEWS = com.fr.design.i18n.Toolkit.i18nText("Fine-Design_Report_AlphaFine_Product_News"); |
||||
|
||||
private static final String HELP = com.fr.design.i18n.Toolkit.i18nText("Fine-Design_Report_Community_Help"); |
||||
|
||||
private static final String PLUGIN = com.fr.design.i18n.Toolkit.i18nText("Fine-Design_Report_Plugin_Addon"); |
||||
|
||||
private static final String ONE_CLICK_READ = com.fr.design.i18n.Toolkit.i18nText("Fine-Design_Report_AlphaFine_One_Click_Read"); |
||||
|
||||
private static final String NO_SEARCH_RESULT = com.fr.design.i18n.Toolkit.i18nText("Fine-Design_Report_AlphaFine_NO_Result"); |
||||
|
||||
private static final Image SEARCH_IMAGE = SVGLoader.load("/com/fr/design/mainframe/alphafine/images/search.svg"); |
||||
|
||||
private final CardLayout cardLayout = new CardLayout(); |
||||
|
||||
private final JPanel resultPane = new JPanel(cardLayout); |
||||
|
||||
private String storeText; |
||||
|
||||
private String[] segmentationResult; |
||||
|
||||
private UILabel useTipLabel; |
||||
|
||||
private UILabel tipIconLabel; |
||||
|
||||
private AlphaFineTextField searchTextField; |
||||
|
||||
private AlphaFineList searchResultList; |
||||
|
||||
private CellType selectedType; |
||||
|
||||
private String beforeSearchStr = StringUtils.EMPTY; |
||||
|
||||
private SearchWorkerManager settingSearchWorkerManager; |
||||
|
||||
private SearchWorkerManager fileSearchWorkerManager; |
||||
|
||||
private SearchWorkerManager documentWorkerManager; |
||||
|
||||
private SearchWorkerManager pluginSearchWorkerManager; |
||||
|
||||
private SearchWorkerManager currentSearchWorkerManager; |
||||
|
||||
private ProductNewsSearchWorkerManager productNewsSearchWorkerManager; |
||||
|
||||
public AlphaFineFrame() { |
||||
setUndecorated(true); |
||||
setSize(AlphaFineConstants.FIELD_SIZE); |
||||
initComponents(); |
||||
centerWindow(this); |
||||
initSearchManager(); |
||||
} |
||||
|
||||
private void initSearchManager() { |
||||
|
||||
this.productNewsSearchWorkerManager = new ProductNewsSearchWorkerManager( |
||||
CellType.PRODUCT_NEWS, |
||||
searchTextBean -> { |
||||
return ProductNewsSearchManager.getInstance().getSearchResult(searchTextBean.getSegmentation()); |
||||
}, |
||||
this |
||||
); |
||||
|
||||
this.settingSearchWorkerManager = new SearchWorkerManager( |
||||
CellType.ACTION, |
||||
searchTextBean -> { |
||||
ActionSearchManager.getInstance().getLessSearchResult(searchTextBean.getSegmentation()); |
||||
return ActionSearchManager.getInstance().getMoreSearchResult(searchTextBean.getSearchText()); |
||||
}, |
||||
this, |
||||
new SimpleRightSearchResultPane(new NoResultPane(NO_RESULT, AlphaFineConstants.NO_RESULT_ICON)) |
||||
); |
||||
fileSearchWorkerManager = new SearchWorkerManager( |
||||
CellType.FILE, |
||||
searchTextBean -> { |
||||
FileSearchManager.getInstance().getLessSearchResult(searchTextBean.getSearchText(), searchTextBean.getSegmentation()); |
||||
return FileSearchManager.getInstance().getMoreSearchResult(searchTextBean.getSearchText()); |
||||
}, |
||||
this, |
||||
new LoadingRightSearchResultPane() |
||||
); |
||||
documentWorkerManager = new SearchWorkerManager( |
||||
CellType.DOCUMENT, |
||||
searchTextBean -> { |
||||
DocumentSearchManager.getInstance().getLessSearchResult(searchTextBean.getSegmentation()); |
||||
return DocumentSearchManager.getInstance().getMoreSearchResult(searchTextBean.getSearchText()); |
||||
}, |
||||
this, |
||||
new SimpleRightSearchResultPane(new JPanel()) |
||||
); |
||||
|
||||
pluginSearchWorkerManager = new SearchWorkerManager( |
||||
CellType.PLUGIN, |
||||
searchTextBean -> { |
||||
PluginSearchManager.getInstance().getLessSearchResult(searchTextBean.getSegmentation()); |
||||
return PluginSearchManager.getInstance().getMoreSearchResult(searchTextBean.getSearchText()); |
||||
}, |
||||
this, |
||||
new LoadingRightSearchResultPane() |
||||
); |
||||
|
||||
} |
||||
|
||||
/** |
||||
* 初始化全部组件 |
||||
*/ |
||||
private void initComponents() { |
||||
|
||||
add(createTopPane(), BorderLayout.NORTH); |
||||
initSearchTextField(); |
||||
add(createSearchPane(), BorderLayout.CENTER); |
||||
add(createShowPane(), BorderLayout.SOUTH); |
||||
this.getContentPane().setBackground(Color.WHITE); |
||||
this.setIconImage(SEARCH_IMAGE); |
||||
this.setSize(AlphaFineConstants.FULL_SIZE); |
||||
} |
||||
|
||||
private JPanel createTopPane() { |
||||
JPanel topPane = new JPanel(new BorderLayout()); |
||||
topPane.setBorder(BorderFactory.createEmptyBorder(10, 10, 10, 10)); |
||||
topPane.setBackground(Color.WHITE); |
||||
JPanel topLeftPane = new JPanel(new FlowLayout(FlowLayout.LEFT)); |
||||
topLeftPane.setBackground(Color.WHITE); |
||||
UILabel alphaFineLabel = new UILabel("AlphaFine"); |
||||
alphaFineLabel.setFont(new Font("Arial Black", Font.PLAIN, 20)); |
||||
alphaFineLabel.setForeground(UIConstants.FLESH_BLUE); |
||||
topLeftPane.add(alphaFineLabel); |
||||
topPane.add(topLeftPane, BorderLayout.WEST); |
||||
|
||||
JPanel topRightPane = new JPanel(new FlowLayout(FlowLayout.RIGHT, 10, 10)); |
||||
topRightPane.setBackground(Color.WHITE); |
||||
JPanel tipPane = new JPanel(new BorderLayout()); |
||||
tipPane.setBackground(Color.WHITE); |
||||
String toolTip = com.fr.design.i18n.Toolkit.i18nText("Fine-Design_Report_AlphaFine_Short_Cut", DesignerEnvManager.getEnvManager().getAlphaFineConfigManager().getShortcuts()); |
||||
tipIconLabel = new UILabel(AlphaFineConstants.BULB_ICON); |
||||
tipIconLabel.addMouseListener(tipMouseListener); |
||||
tipIconLabel.setToolTipText(toolTip); |
||||
useTipLabel = new UILabel(SKILLS); |
||||
useTipLabel.addMouseListener(tipMouseListener); |
||||
useTipLabel.setToolTipText(toolTip); |
||||
useTipLabel.setForeground(AlphaFineConstants.FOREGROUND_COLOR_6); |
||||
tipPane.add(tipIconLabel, BorderLayout.WEST); |
||||
tipPane.add(useTipLabel, BorderLayout.CENTER); |
||||
topRightPane.add(tipPane); |
||||
UIButton minimizeButton = createButton(IconUtils.readIcon("/com/fr/design/mainframe/alphafine/images/minimize.svg")); |
||||
minimizeButton.addActionListener(e -> AlphaFineFrame.this.setExtendedState(JFrame.ICONIFIED)); |
||||
topRightPane.add(minimizeButton); |
||||
UIButton closeButton = createButton(IconUtils.readIcon("/com/fr/design/mainframe/alphafine/images/close.svg")); |
||||
closeButton.addActionListener(e -> AlphaFineFrame.this.dispose()); |
||||
topRightPane.add(closeButton); |
||||
topPane.add(topRightPane, BorderLayout.EAST); |
||||
return topPane; |
||||
} |
||||
|
||||
private MouseAdapter tipMouseListener = new MouseAdapter() { |
||||
|
||||
@Override |
||||
public void mouseEntered(MouseEvent e) { |
||||
useTipLabel.setForeground(UIConstants.FLESH_BLUE); |
||||
tipIconLabel.setIcon(AlphaFineConstants.BLUE_BULB_ICON); |
||||
} |
||||
|
||||
@Override |
||||
public void mouseExited(MouseEvent e) { |
||||
useTipLabel.setForeground(AlphaFineConstants.FOREGROUND_COLOR_6); |
||||
tipIconLabel.setIcon(AlphaFineConstants.BULB_ICON); |
||||
} |
||||
}; |
||||
|
||||
private JPanel createSearchPane() { |
||||
JPanel searchPane = new JPanel(new BorderLayout()); |
||||
searchPane.setBorder(BorderFactory.createEmptyBorder(0, 20, 0, 20)); |
||||
searchPane.add(searchTextField, BorderLayout.CENTER); |
||||
JButton searchButton = new JButton(SEARCH) { |
||||
@Override |
||||
public void paintComponent(Graphics g) { |
||||
Graphics2D g2d = (Graphics2D) g; |
||||
g2d.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON); |
||||
g2d.setColor(UIConstants.FLESH_BLUE); |
||||
g2d.fillRoundRect(0, 0, getWidth(), getHeight(), 4, 4); |
||||
super.paintComponent(g2d); |
||||
} |
||||
}; |
||||
searchButton.addActionListener(new ActionListener() { |
||||
@Override |
||||
public void actionPerformed(ActionEvent e) { |
||||
fireSearch(); |
||||
} |
||||
}); |
||||
searchButton.setPreferredSize(new Dimension(70, 60)); |
||||
searchButton.setForeground(Color.WHITE); |
||||
searchButton.setBorderPainted(false); |
||||
searchButton.setContentAreaFilled(false); |
||||
searchPane.add(searchButton, BorderLayout.EAST); |
||||
searchPane.setBackground(Color.WHITE); |
||||
return searchPane; |
||||
} |
||||
|
||||
private JPanel createShowPane() { |
||||
JPanel showPane = new JPanel(new BorderLayout()); |
||||
resultPane.add(new DefaultProductNewsPane(), CellType.PRODUCT_NEWS.getFlagStr4None()); |
||||
resultPane.add(new NoResultPane(NO_SEARCH_RESULT, AlphaFineConstants.NO_RESULT_ICON), CellType.NO_RESULT.getFlagStr4None()); |
||||
resultPane.add(new NoResultPane(SEARCH_TERM, AlphaFineConstants.NO_RESULT_ICON), CellType.ACTION.getFlagStr4None()); |
||||
resultPane.add(new NoResultWithLinkPane(GO_FORUM, AlphaFineConstants.NO_RESULT_ICON), CellType.FILE.getFlagStr4None()); |
||||
resultPane.add(new NoResultPane(SEARCH_TERM, AlphaFineConstants.NO_RESULT_ICON), CellType.PLUGIN.getFlagStr4None()); |
||||
resultPane.add(new HelpDocumentNoResultPane(SEARCH_TERM, AlphaFineConstants.NO_RESULT_ICON, generateMap()), CellType.DOCUMENT.getFlagStr4None()); |
||||
|
||||
JPanel labelPane = new JPanel(new BorderLayout()); |
||||
labelPane.setBorder(BorderFactory.createEmptyBorder(0, 20, 0, 20)); |
||||
labelPane.setBackground(Color.WHITE); |
||||
JPanel labelContentPane = new JPanel(new BorderLayout()); |
||||
UILabel tabLabel = new UILabel(PRODUCT_NEWS); |
||||
tabLabel.setForeground(AlphaFineConstants.FOREGROUND_COLOR_6); |
||||
tabLabel.setBorder(BorderFactory.createEmptyBorder(0, 10, 0, 0)); |
||||
tabLabel.setPreferredSize(new Dimension(100, 30)); |
||||
JPanel westPane = new JPanel(new FlowLayout(FlowLayout.LEFT, 0, 0)); |
||||
westPane.add(tabLabel); |
||||
labelContentPane.add(westPane, BorderLayout.WEST); |
||||
JPanel eastPane = new JPanel(new FlowLayout(FlowLayout.RIGHT, 0, 0)); |
||||
UILabel readLabel = new UILabel(ONE_CLICK_READ); |
||||
readLabel.setHorizontalAlignment(SwingConstants.RIGHT); |
||||
readLabel.setBorder(BorderFactory.createEmptyBorder(0, 0, 0, 10));; |
||||
readLabel.setPreferredSize(new Dimension(100, 30)); |
||||
readLabel.setForeground(UIConstants.FLESH_BLUE); |
||||
readLabel.addMouseListener(new MouseAdapter() { |
||||
@Override |
||||
public void mousePressed(MouseEvent e) { |
||||
List<ProductNews> productNewsList = ProductNewsSearchManager.getInstance().getCachedProductNewsList(); |
||||
Set<Long> readSet = DesignerEnvManager.getEnvManager().getAlphaFineConfigManager().getReadSet(); |
||||
for (ProductNews productNews : productNewsList) { |
||||
readSet.add(productNews.getId()); |
||||
} |
||||
showPane.repaint(); |
||||
} |
||||
}); |
||||
eastPane.add(readLabel); |
||||
labelContentPane.add(eastPane, BorderLayout.EAST); |
||||
labelContentPane.setBackground(new Color(245, 245, 247)); |
||||
labelPane.add(labelContentPane); |
||||
labelPane.setPreferredSize(new Dimension(AlphaFineConstants.FULL_SIZE.width, 30)); |
||||
|
||||
JPanel tabPane = new JPanel(new FlowLayout(FlowLayout.LEFT, 20, 10)); |
||||
tabPane.setBackground(Color.WHITE); |
||||
List<SelectedLabel> selectedLabelList = new ArrayList<>(); |
||||
AlphaFineConfigManager alphaFineConfigManager = DesignerEnvManager.getEnvManager().getAlphaFineConfigManager(); |
||||
if (alphaFineConfigManager.isProductDynamics()) { |
||||
selectedLabelList.add(new SelectedLabel(PRODUCT_NEWS, CellType.PRODUCT_NEWS, true)); |
||||
} |
||||
if (alphaFineConfigManager.isContainAction()) { |
||||
selectedLabelList.add(new SelectedLabel(SETTING, CellType.ACTION)); |
||||
} |
||||
if (alphaFineConfigManager.isContainFileContent() || alphaFineConfigManager.isContainTemplate()) { |
||||
selectedLabelList.add(new SelectedLabel(TEMPLATES, CellType.FILE)); |
||||
} |
||||
if (alphaFineConfigManager.isContainDocument()) { |
||||
selectedLabelList.add(new SelectedLabel(HELP, CellType.DOCUMENT)); |
||||
} |
||||
if (alphaFineConfigManager.isContainPlugin()) { |
||||
selectedLabelList.add(new SelectedLabel(PLUGIN, CellType.PLUGIN)); |
||||
} |
||||
selectedType = selectedLabelList.get(0).getCellType(); |
||||
for (SelectedLabel selectedLabel : selectedLabelList) { |
||||
|
||||
selectedLabel.addMouseListener(new MouseAdapter() { |
||||
@Override |
||||
public void mousePressed(MouseEvent e) { |
||||
for (SelectedLabel label : selectedLabelList) { |
||||
label.setSelected(false); |
||||
} |
||||
selectedLabel.setSelected(true); |
||||
tabLabel.setText(selectedLabel.getText()); |
||||
readLabel.setVisible(false); |
||||
tabPane.repaint(); |
||||
switch (selectedLabel.getCellType()) { |
||||
case PRODUCT_NEWS: |
||||
readLabel.setVisible(true); |
||||
switchType(CellType.PRODUCT_NEWS); |
||||
break; |
||||
case ACTION: |
||||
switchType(CellType.ACTION); |
||||
currentSearchWorkerManager = settingSearchWorkerManager; |
||||
break; |
||||
case FILE: |
||||
switchType(CellType.FILE); |
||||
currentSearchWorkerManager = fileSearchWorkerManager; |
||||
break; |
||||
case DOCUMENT: |
||||
switchType(CellType.DOCUMENT); |
||||
currentSearchWorkerManager = documentWorkerManager; |
||||
break; |
||||
case PLUGIN: |
||||
switchType(CellType.PLUGIN); |
||||
currentSearchWorkerManager = pluginSearchWorkerManager; |
||||
break; |
||||
} |
||||
if (currentSearchWorkerManager != null) { |
||||
AlphaFineList alphaFineList = currentSearchWorkerManager.getSearchResultList(); |
||||
if (alphaFineList != null) { |
||||
alphaFineList.setSelectedIndex(0); |
||||
} |
||||
} |
||||
} |
||||
}); |
||||
tabPane.add(selectedLabel); |
||||
} |
||||
showPane.add(tabPane, BorderLayout.NORTH); |
||||
showPane.add(labelPane, BorderLayout.CENTER); |
||||
showPane.add(resultPane, BorderLayout.SOUTH); |
||||
return showPane; |
||||
} |
||||
|
||||
// todo 暂无 先做测试
|
||||
private Map<String, String> generateMap() { |
||||
Map<String, String> linkMap = new LinkedHashMap<>(); |
||||
linkMap.put("test", "https://www.baidu.com"); |
||||
linkMap.put("test1", "https://www.baidu.com"); |
||||
linkMap.put("test2", "https://www.baidu.com"); |
||||
linkMap.put("test3", "https://www.baidu.com"); |
||||
linkMap.put("test4", "https://www.baidu.com"); |
||||
linkMap.put("test5", "https://www.baidu.com"); |
||||
return linkMap; |
||||
} |
||||
|
||||
private void switchType(CellType cellType) { |
||||
this.selectedType = cellType; |
||||
if (StringUtils.isEmpty(searchTextField.getText())) { |
||||
cardLayout.show(resultPane, cellType.getFlagStr4None()); |
||||
} else { |
||||
cardLayout.show(resultPane, cellType.getFlagStr4Result()); |
||||
checkSearchResult(); |
||||
} |
||||
|
||||
} |
||||
|
||||
private void checkSearchResult() { |
||||
if (currentSearchWorkerManager == null) { |
||||
return; |
||||
} |
||||
searchResultList = currentSearchWorkerManager.getSearchResultList(); |
||||
if (searchResultList != null) { |
||||
searchResultList.requestFocus(); |
||||
} |
||||
boolean hasSearchResult = true; |
||||
if (selectedType == CellType.PRODUCT_NEWS) { |
||||
hasSearchResult = productNewsSearchWorkerManager.hasSearchResult(); |
||||
} else { |
||||
hasSearchResult = currentSearchWorkerManager.hasSearchResult(); |
||||
} |
||||
|
||||
if (!hasSearchResult) { |
||||
cardLayout.show(resultPane, CellType.NO_RESULT.getFlagStr4None()); |
||||
} |
||||
|
||||
} |
||||
|
||||
private void initSearchTextField() { |
||||
searchTextField = new AlphaFineTextField(PLACE_HOLDER); |
||||
initTextFieldListener(); |
||||
searchTextField.setFont(DesignUtils.getDefaultGUIFont().applySize(14)); |
||||
searchTextField.setBackground(Color.WHITE); |
||||
searchTextField.setPreferredSize(new Dimension(300, 60)); |
||||
} |
||||
|
||||
|
||||
private void initTextFieldListener() { |
||||
searchTextField.addKeyListener(new KeyAdapter() { |
||||
@Override |
||||
public void keyPressed(KeyEvent e) { |
||||
// 搜索提示框
|
||||
if (StringUtils.isNotEmpty(searchTextField.getText())) { |
||||
SearchTooltipPopup.getInstance().show(searchTextField); |
||||
} |
||||
AlphaFineToolTipList alphaFineToolTipList = SearchTooltipPopup.getInstance().getAlphaFineToolTipList(); |
||||
if (e.getKeyCode() == KeyEvent.VK_ENTER) { |
||||
if (!alphaFineToolTipList.isSelectionEmpty()) { |
||||
fireSearch(alphaFineToolTipList.getSelectedValue()); |
||||
return; |
||||
} |
||||
fireSearch(); |
||||
} else if (e.getKeyCode() == KeyEvent.VK_DOWN) { |
||||
if (alphaFineToolTipList.getSelectedIndex() == alphaFineToolTipList.getModel().getSize() - 1) { |
||||
alphaFineToolTipList.setSelectedIndex(0); |
||||
} |
||||
alphaFineToolTipList.setSelectedIndex(alphaFineToolTipList.getSelectedIndex() + 1); |
||||
} else if (e.getKeyCode() == KeyEvent.VK_UP) { |
||||
alphaFineToolTipList.setSelectedIndex(alphaFineToolTipList.getSelectedIndex() - 1); |
||||
} |
||||
|
||||
} |
||||
}); |
||||
|
||||
searchTextField.addFocusListener(new FocusListener() { |
||||
@Override |
||||
public void focusGained(FocusEvent e) { |
||||
if (StringUtils.isNotEmpty(searchTextField.getText())) { |
||||
SearchTooltipPopup.getInstance().show(searchTextField); |
||||
} |
||||
} |
||||
|
||||
@Override |
||||
public void focusLost(FocusEvent e) { |
||||
if (e.getOppositeComponent() != SearchTooltipPopup.getInstance().getAlphaFineToolTipList()) { |
||||
SearchTooltipPopup.getInstance().hide(); |
||||
} |
||||
} |
||||
}); |
||||
|
||||
startSearchTextFieldTimer(); |
||||
|
||||
} |
||||
|
||||
private void startSearchTextFieldTimer() { |
||||
Timer timer = new Timer(TIMER_DELAY, e -> { |
||||
if (StringUtils.isEmpty(searchTextField.getText())) { |
||||
SearchTooltipPopup.getInstance().hide(); |
||||
switchType(selectedType); |
||||
} |
||||
else if (searchTextField.hasFocus()) { |
||||
SearchTooltipPopup.getInstance().show(searchTextField); |
||||
} |
||||
|
||||
}); |
||||
timer.start(); |
||||
} |
||||
|
||||
public void fireSearch(String text) { |
||||
searchTextField.setText(text); |
||||
fireSearch(); |
||||
} |
||||
|
||||
private void fireSearch() { |
||||
// 焦点转移
|
||||
AlphaFineFrame.this.requestFocus(); |
||||
if (ComparatorUtils.equals(beforeSearchStr, searchTextField.getText())) { |
||||
return; |
||||
} |
||||
if (StringUtils.isEmpty(searchTextField.getText())) { |
||||
beforeSearchStr = StringUtils.EMPTY; |
||||
return; |
||||
} |
||||
if (DesignerEnvManager.getEnvManager().getAlphaFineConfigManager().isNeedSegmentationCheckbox()) { |
||||
//是高级搜索
|
||||
if (searchTextField.getText().toLowerCase().startsWith(ADVANCED_SEARCH_MARK)) { |
||||
segmentationResult = SegmentationManager.getInstance().startSegmentation(getStoreText(searchTextField.getText().toLowerCase())); |
||||
} |
||||
//是普通搜索
|
||||
else { |
||||
segmentationResult = SegmentationManager.getInstance().startSegmentation(searchTextField.getText().toLowerCase()); |
||||
} |
||||
} else { |
||||
if (StringUtils.isEmpty(getRealSearchText(searchTextField.getText()))) { |
||||
segmentationResult = null; |
||||
} else { |
||||
segmentationResult = new String[]{getRealSearchText(searchTextField.getText())}; |
||||
} |
||||
} |
||||
DesignerEnvManager.getEnvManager().getAlphaFineConfigManager().getHistorySearch().push(searchTextField.getText()); |
||||
doSearch(searchTextField.getText().toLowerCase()); |
||||
beforeSearchStr = searchTextField.getText(); |
||||
SearchTooltipPopup.getInstance().hide(); |
||||
} |
||||
|
||||
private void dealWithSearchResult() { |
||||
final AlphaCellModel model = searchResultList.getSelectedValue(); |
||||
if (model != null) { |
||||
model.doAction(); |
||||
} |
||||
} |
||||
|
||||
public void showResult(String flag) { |
||||
cardLayout.show(resultPane, flag); |
||||
} |
||||
|
||||
public void addResult(JPanel panel, String flag) { |
||||
resultPane.add(panel, flag); |
||||
} |
||||
|
||||
|
||||
|
||||
private void doSearch(String text) { |
||||
SearchTextBean searchTextBean = new SearchTextBean(text, segmentationResult); |
||||
this.productNewsSearchWorkerManager.doSearch(searchTextBean); |
||||
this.settingSearchWorkerManager.doSearch(searchTextBean); |
||||
this.fileSearchWorkerManager.doSearch(searchTextBean); |
||||
this.documentWorkerManager.doSearch(searchTextBean); |
||||
this.pluginSearchWorkerManager.doSearch(searchTextBean); |
||||
} |
||||
|
||||
|
||||
public CellType getSelectedType() { |
||||
return selectedType; |
||||
} |
||||
|
||||
public void setStoreText(String storeText) { |
||||
this.storeText = storeText; |
||||
} |
||||
|
||||
/** |
||||
* 截取字符串中关键词 |
||||
* |
||||
* @param searchText |
||||
* @return |
||||
*/ |
||||
private String getStoreText(String searchText) { |
||||
//这里也需要先做一个去除不需要空格的处理
|
||||
setStoreText((searchText.substring(searchText.indexOf(StringUtils.BLANK) + 1)).replaceAll(StringUtils.BLANK, StringUtils.EMPTY)); |
||||
return storeText; |
||||
} |
||||
|
||||
|
||||
/** |
||||
* 去除特殊字符,空格等 |
||||
*/ |
||||
private String getRealSearchText(String searchText) { |
||||
searchText = searchText.toLowerCase(); |
||||
Pattern p = Pattern.compile(AlphaFineConstants.SPECIAL_CHARACTER_REGEX); |
||||
Matcher m = p.matcher(searchText); |
||||
searchText = m.replaceAll(StringUtils.EMPTY).trim().replaceAll(StringUtils.BLANK, StringUtils.EMPTY); |
||||
if (searchText.length() == 0) { |
||||
return null; |
||||
} |
||||
return searchText; |
||||
} |
||||
|
||||
private UIButton createButton(Icon icon) { |
||||
UIButton button = new UIButton() { |
||||
@Override |
||||
public void paintComponent(Graphics g) { |
||||
g.setColor(Color.WHITE); |
||||
g.fillRect(0, 0, getSize().width, getSize().height); |
||||
super.paintComponent(g); |
||||
} |
||||
}; |
||||
button.setPreferredSize(new Dimension(20, 20)); |
||||
button.setIcon(icon); |
||||
button.set4ToolbarButton(); |
||||
button.setBorderPainted(false); |
||||
button.setRolloverEnabled(false); |
||||
return button; |
||||
} |
||||
|
||||
/** |
||||
* 设置面板位置 |
||||
* |
||||
* @param win |
||||
*/ |
||||
private void centerWindow(Window win) { |
||||
Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize(); |
||||
|
||||
Dimension winSize = win.getSize(); |
||||
|
||||
if (winSize.height > screenSize.height) { |
||||
winSize.height = screenSize.height; |
||||
} |
||||
if (winSize.width > screenSize.width) { |
||||
winSize.width = screenSize.width; |
||||
} |
||||
//这里设置位置:水平居中,竖直偏上
|
||||
win.setLocation((screenSize.width - winSize.width) / 2, (screenSize.height - winSize.height) / AlphaFineConstants.SHOW_SIZE); |
||||
} |
||||
|
||||
@Override |
||||
public void setVisible(boolean b) { |
||||
super.setVisible(b); |
||||
QuestionWindow.getInstance().setVisible(!b); |
||||
} |
||||
|
||||
@Override |
||||
public void dispose() { |
||||
super.dispose(); |
||||
AlphaFineHelper.resetAlphaFineDialog(); |
||||
QuestionWindow.getInstance().setVisible(true); |
||||
} |
||||
|
||||
} |
@ -0,0 +1,72 @@
|
||||
package com.fr.design.mainframe.alphafine.component; |
||||
|
||||
import com.fr.design.mainframe.alphafine.cell.model.AlphaCellModel; |
||||
import com.fr.design.mainframe.alphafine.preview.ResultShowPane; |
||||
import java.awt.event.KeyAdapter; |
||||
import java.awt.event.KeyEvent; |
||||
import java.awt.event.MouseAdapter; |
||||
import java.awt.event.MouseEvent; |
||||
import javax.swing.JList; |
||||
|
||||
/** |
||||
* @author hades |
||||
* @version 11.0 |
||||
* Created by hades on 2022/4/18 |
||||
*/ |
||||
public class AlphaFineList extends JList<AlphaCellModel> { |
||||
|
||||
private ResultShowPane resultShowPane; |
||||
|
||||
public AlphaFineList() { |
||||
addMouseListener(new MouseAdapter() { |
||||
@Override |
||||
public void mouseClicked(MouseEvent e) { |
||||
AlphaCellModel selectedValue = getSelectedValue(); |
||||
if (e.getClickCount() == 2 && selectedValue.hasAction()) { |
||||
dealWithSearchResult(); |
||||
} |
||||
} |
||||
}); |
||||
|
||||
addListSelectionListener(e -> { |
||||
if (!e.getValueIsAdjusting() && getSelectedValue() != null) { |
||||
if (resultShowPane != null) { |
||||
resultShowPane.showResult(getSelectedValue()); |
||||
} |
||||
} |
||||
}); |
||||
|
||||
|
||||
addKeyListener(new KeyAdapter() { |
||||
@Override |
||||
public void keyPressed(KeyEvent e) { |
||||
if (e.getKeyCode() == KeyEvent.VK_ENTER) { |
||||
dealWithSearchResult(); |
||||
} |
||||
} |
||||
}); |
||||
} |
||||
|
||||
public void setResultShowPane(ResultShowPane resultShowPane) { |
||||
this.resultShowPane = resultShowPane; |
||||
} |
||||
|
||||
@Override |
||||
public void setSelectedIndex(int index) { |
||||
super.setSelectedIndex(index); |
||||
AlphaCellModel alphaCellModel = getSelectedValue(); |
||||
if (resultShowPane != null && alphaCellModel != null) { |
||||
resultShowPane.showResult(getSelectedValue()); |
||||
} |
||||
ensureIndexIsVisible(getSelectedIndex()); |
||||
} |
||||
|
||||
private void dealWithSearchResult() { |
||||
final AlphaCellModel model = this.getSelectedValue(); |
||||
if (model != null) { |
||||
model.doAction(); |
||||
} |
||||
} |
||||
|
||||
|
||||
} |
@ -0,0 +1,68 @@
|
||||
package com.fr.design.mainframe.alphafine.component; |
||||
|
||||
import com.fr.base.svg.IconUtils; |
||||
import com.fr.design.gui.ilable.UILabel; |
||||
import com.fr.design.mainframe.alphafine.AlphaFineConstants; |
||||
import com.fr.design.mainframe.alphafine.AlphaFineUtil; |
||||
import com.fr.general.ComparatorUtils; |
||||
import com.fr.stable.StringUtils; |
||||
import java.awt.BorderLayout; |
||||
import java.awt.Color; |
||||
import java.awt.Component; |
||||
import java.awt.Dimension; |
||||
import javax.swing.BorderFactory; |
||||
import javax.swing.Icon; |
||||
import javax.swing.JList; |
||||
import javax.swing.JPanel; |
||||
import javax.swing.ListCellRenderer; |
||||
|
||||
/** |
||||
* @author hades |
||||
* @version 11.0 |
||||
* Created by hades on 2022/4/22 |
||||
*/ |
||||
public class AlphaFineToolTipContentCellRender implements ListCellRenderer<String> { |
||||
|
||||
private static final Color SELECTED_COLOR = new Color(65, 155, 249, 26); |
||||
|
||||
private static final Icon HOT_SEARCH_ICON = IconUtils.readIcon("/com/fr/design/mainframe/alphafine/images/hot_search.svg"); |
||||
|
||||
private static final Icon SEARCH_ICON = IconUtils.readIcon("/com/fr/design/mainframe/alphafine/images/search.svg"); |
||||
|
||||
private static final Icon HISTORY_SEARCH_ICON = IconUtils.readIcon("/com/fr/design/mainframe/alphafine/images/history_search.svg"); |
||||
|
||||
|
||||
@Override |
||||
public Component getListCellRendererComponent(JList<? extends String> list, String value, int index, |
||||
boolean isSelected, boolean cellHasFocus) { |
||||
|
||||
if (StringUtils.isEmpty(value)) { |
||||
return new LineCellRender().getListCellRendererComponent(list, value, index, isSelected, cellHasFocus); |
||||
} |
||||
|
||||
JPanel panel = new JPanel(new BorderLayout()); |
||||
panel.setBackground(null); |
||||
|
||||
UILabel iconLabel = new UILabel(); |
||||
iconLabel.setBorder(BorderFactory.createEmptyBorder(0, 10, 5, 0)); |
||||
iconLabel.setForeground(AlphaFineConstants.FOREGROUND_COLOR_8); |
||||
iconLabel.setText(value); |
||||
if (ComparatorUtils.equals(value, AlphaFineConstants.HOT_SEARCH)) { |
||||
iconLabel.setIcon(HOT_SEARCH_ICON); |
||||
} else if (AlphaFineConstants.HOT_SEARCH_SET.contains(value)) { |
||||
iconLabel.setIcon(SEARCH_ICON); |
||||
} else { |
||||
iconLabel.setIcon(HISTORY_SEARCH_ICON); |
||||
} |
||||
|
||||
if (isSelected && !ComparatorUtils.equals(value, AlphaFineConstants.HOT_SEARCH)) { |
||||
iconLabel.setText(AlphaFineUtil.highLightModelName(value, new String[]{value})); |
||||
panel.setBackground(SELECTED_COLOR); |
||||
} |
||||
panel.add(iconLabel, BorderLayout.WEST); |
||||
panel.setBorder(BorderFactory.createEmptyBorder(5, 0, 0, 0)); |
||||
panel.setPreferredSize(new Dimension(640, 32)); |
||||
|
||||
return panel; |
||||
} |
||||
} |
@ -0,0 +1,42 @@
|
||||
package com.fr.design.mainframe.alphafine.component; |
||||
|
||||
import com.fr.design.mainframe.alphafine.AlphaFineConstants; |
||||
import com.fr.design.mainframe.alphafine.AlphaFineHelper; |
||||
import com.fr.general.ComparatorUtils; |
||||
import java.awt.event.KeyAdapter; |
||||
import java.awt.event.KeyEvent; |
||||
import java.awt.event.MouseAdapter; |
||||
import java.awt.event.MouseEvent; |
||||
import javax.swing.JList; |
||||
|
||||
/** |
||||
* @author hades |
||||
* @version 11.0 |
||||
* Created by hades on 2022/4/22 |
||||
*/ |
||||
public class AlphaFineToolTipList extends JList<String> { |
||||
|
||||
public AlphaFineToolTipList() { |
||||
addKeyListener(new KeyAdapter() { |
||||
@Override |
||||
public void keyPressed(KeyEvent e) { |
||||
if (e.getKeyCode() == KeyEvent.VK_ENTER) { |
||||
AlphaFineHelper.getAlphaFineDialog().fireSearch(getSelectedValue()); |
||||
} |
||||
} |
||||
}); |
||||
|
||||
addMouseListener(new MouseAdapter() { |
||||
@Override |
||||
public void mouseClicked(MouseEvent e) { |
||||
if (e.getClickCount() == 2) { |
||||
if (ComparatorUtils.equals(getSelectedValue(), AlphaFineConstants.HOT_SEARCH)) { |
||||
return; |
||||
} |
||||
AlphaFineHelper.getAlphaFineDialog().fireSearch(getSelectedValue()); |
||||
} |
||||
} |
||||
}); |
||||
} |
||||
|
||||
} |
@ -0,0 +1,63 @@
|
||||
package com.fr.design.mainframe.alphafine.component; |
||||
|
||||
import com.fr.design.DesignerEnvManager; |
||||
import com.fr.design.gui.icontainer.UIScrollPane; |
||||
import com.fr.design.mainframe.alphafine.AlphaFineConstants; |
||||
import com.fr.stable.StringUtils; |
||||
import java.awt.Color; |
||||
import java.awt.Dimension; |
||||
import java.util.Stack; |
||||
import javax.swing.DefaultListModel; |
||||
import javax.swing.JPanel; |
||||
|
||||
/** |
||||
* @author hades |
||||
* @version 11.0 |
||||
* Created by hades on 2022/4/22 |
||||
*/ |
||||
public class AlphaSearchTooltipPane extends JPanel { |
||||
|
||||
private AlphaFineToolTipList alphaFineToolTipList; |
||||
|
||||
public AlphaSearchTooltipPane() { |
||||
alphaFineToolTipList = new AlphaFineToolTipList(); |
||||
alphaFineToolTipList.setCellRenderer(new AlphaFineToolTipContentCellRender()); |
||||
alphaFineToolTipList.setModel(getDefaultListModel()); |
||||
UIScrollPane scrollPane = new UIScrollPane(alphaFineToolTipList); |
||||
scrollPane.setBorder(null); |
||||
scrollPane.setBackground(Color.WHITE); |
||||
this.add(scrollPane); |
||||
this.setPreferredSize(new Dimension(640, 250)); |
||||
this.setBackground(Color.WHITE); |
||||
} |
||||
|
||||
public AlphaFineToolTipList getAlphaFineToolTipList() { |
||||
return alphaFineToolTipList; |
||||
} |
||||
|
||||
private DefaultListModel<String> getDefaultListModel() { |
||||
DefaultListModel<String> defaultListModel = new DefaultListModel<>(); |
||||
defaultListModel.addElement(AlphaFineConstants.HOT_SEARCH); |
||||
for (String content : AlphaFineConstants.HOT_SEARCH_SET) { |
||||
defaultListModel.addElement(content); |
||||
} |
||||
return defaultListModel; |
||||
} |
||||
|
||||
public void refreshHistory() { |
||||
Stack<String> stack = DesignerEnvManager.getEnvManager().getAlphaFineConfigManager().getHistorySearch(); |
||||
if (stack.isEmpty()) { |
||||
return; |
||||
} |
||||
DefaultListModel<String> defaultListModel = new DefaultListModel<>(); |
||||
for (int i = stack.size() - 1; i >= 0; i--) { |
||||
defaultListModel.addElement(stack.get(i)); |
||||
} |
||||
// defaultListModel.addElement(StringUtils.EMPTY);
|
||||
defaultListModel.addElement(AlphaFineConstants.HOT_SEARCH); |
||||
for (String content : AlphaFineConstants.HOT_SEARCH_SET) { |
||||
defaultListModel.addElement(content); |
||||
} |
||||
alphaFineToolTipList.setModel(defaultListModel); |
||||
} |
||||
} |
@ -0,0 +1,32 @@
|
||||
package com.fr.design.mainframe.alphafine.component; |
||||
|
||||
import com.fr.design.constants.UIConstants; |
||||
import com.fr.design.gui.ilable.UILabel; |
||||
import java.awt.BorderLayout; |
||||
import java.awt.Component; |
||||
import java.awt.Dimension; |
||||
import javax.swing.BorderFactory; |
||||
import javax.swing.JList; |
||||
import javax.swing.JPanel; |
||||
import javax.swing.ListCellRenderer; |
||||
|
||||
/** |
||||
* @author hades |
||||
* @version 11.0 |
||||
* Created by hades on 2022/4/22 |
||||
*/ |
||||
public class LineCellRender implements ListCellRenderer<String> { |
||||
|
||||
@Override |
||||
public Component getListCellRendererComponent(JList<? extends String> list, String value, int index, |
||||
boolean isSelected, boolean cellHasFocus) { |
||||
JPanel panel = new JPanel(new BorderLayout()); |
||||
UILabel splitLabel = new UILabel(); |
||||
panel.setBackground(null); |
||||
splitLabel.setBackground(UIConstants.BARNOMAL); |
||||
splitLabel.setBorder(BorderFactory.createEmptyBorder(0, 10, 5,0)); |
||||
panel.setPreferredSize(new Dimension(640, 1)); |
||||
panel.add(splitLabel); |
||||
return panel; |
||||
} |
||||
} |
@ -0,0 +1,79 @@
|
||||
package com.fr.design.mainframe.alphafine.component; |
||||
|
||||
import com.fr.design.DesignerEnvManager; |
||||
import com.fr.design.gui.ilable.UILabel; |
||||
import com.fr.design.mainframe.alphafine.AlphaFineConstants; |
||||
import com.fr.design.mainframe.alphafine.AlphaFineUtil; |
||||
import com.fr.design.mainframe.alphafine.model.ProductNews; |
||||
import com.fr.design.utils.DesignUtils; |
||||
import java.awt.BorderLayout; |
||||
import java.awt.Color; |
||||
import java.awt.Component; |
||||
import java.awt.Dimension; |
||||
import java.awt.Graphics; |
||||
import java.text.SimpleDateFormat; |
||||
import javax.swing.BorderFactory; |
||||
import javax.swing.JList; |
||||
import javax.swing.JPanel; |
||||
import javax.swing.ListCellRenderer; |
||||
|
||||
/** |
||||
* @author hades |
||||
* @version 11.0 |
||||
* Created by hades on 2022/4/19 |
||||
*/ |
||||
public class ProductNewsContentCellRender implements ListCellRenderer<Object> { |
||||
|
||||
private static final String FINE_REPORT = "FineReport"; |
||||
|
||||
private static final SimpleDateFormat DATE_FORMAT = new SimpleDateFormat("yyyy/MM/dd"); |
||||
|
||||
private String[] segmentationResult; |
||||
|
||||
public ProductNewsContentCellRender(String[] segmentationResult) { |
||||
this.segmentationResult = segmentationResult; |
||||
} |
||||
|
||||
public ProductNewsContentCellRender() { |
||||
this(null); |
||||
} |
||||
|
||||
@Override |
||||
public Component getListCellRendererComponent(JList<?> list, Object value, int index, boolean isSelected, |
||||
boolean cellHasFocus) { |
||||
ProductNews productNews = (ProductNews) value; |
||||
JPanel panel = new JPanel(new BorderLayout()); |
||||
panel.setBorder(BorderFactory.createEmptyBorder(0, 0, 10, 0)); |
||||
panel.setBackground(Color.WHITE); |
||||
|
||||
panel.add(new ProductNewsImagePanel(productNews), BorderLayout.WEST); |
||||
JPanel textPane = new JPanel(new BorderLayout()); |
||||
textPane.setBorder(BorderFactory.createEmptyBorder(0, 10, 10, 0)); |
||||
UILabel titleLabel = new UILabel(AlphaFineUtil.highLightModelName(productNews.getTitle(), segmentationResult)); |
||||
titleLabel.setFont(DesignUtils.getDefaultGUIFont().applySize(20)); |
||||
|
||||
textPane.add(titleLabel, BorderLayout.NORTH); |
||||
JPanel infoPane = new JPanel(new BorderLayout()); |
||||
UILabel productLabel = new UILabel(FINE_REPORT) { |
||||
@Override |
||||
protected void paintComponent(Graphics g) { |
||||
g.setColor(AlphaFineConstants.BACKGROUND_COLOR); |
||||
g.fillRect(0, getHeight() - 27, getWidth(), 23); |
||||
super.paintComponent(g); |
||||
} |
||||
}; |
||||
productLabel.setForeground(AlphaFineConstants.FOREGROUND_COLOR_6); |
||||
infoPane.add(productLabel, BorderLayout.WEST); |
||||
|
||||
UILabel dateLabel = new UILabel(DATE_FORMAT.format(productNews.getPushDate())); |
||||
dateLabel.setForeground(AlphaFineConstants.FOREGROUND_COLOR_6); |
||||
dateLabel.setBorder(BorderFactory.createEmptyBorder(0, 10, 0, 0)); |
||||
infoPane.setBackground(Color.WHITE); |
||||
infoPane.add(dateLabel, BorderLayout.CENTER); |
||||
textPane.setBackground(Color.WHITE); |
||||
textPane.add(infoPane, BorderLayout.CENTER); |
||||
panel.add(textPane, BorderLayout.CENTER); |
||||
panel.setPreferredSize(new Dimension(500, 80)); |
||||
return panel; |
||||
} |
||||
} |
@ -0,0 +1,76 @@
|
||||
package com.fr.design.mainframe.alphafine.component; |
||||
|
||||
import com.fr.base.GraphHelper; |
||||
import com.fr.base.svg.SVGLoader; |
||||
import com.fr.design.DesignerEnvManager; |
||||
import com.fr.design.constants.UIConstants; |
||||
import com.fr.design.mainframe.alphafine.model.ProductNews; |
||||
import com.fr.general.IOUtils; |
||||
import com.fr.log.FineLoggerFactory; |
||||
import java.awt.AlphaComposite; |
||||
import java.awt.Color; |
||||
import java.awt.Dimension; |
||||
import java.awt.Graphics; |
||||
import java.awt.Graphics2D; |
||||
import java.awt.Image; |
||||
|
||||
import java.awt.RenderingHints; |
||||
import java.awt.geom.RoundRectangle2D; |
||||
import java.util.Set; |
||||
import javax.swing.JPanel; |
||||
|
||||
/** |
||||
* @author hades |
||||
* @version 11.0 |
||||
* Created by hades on 2022/4/15 |
||||
*/ |
||||
public class ProductNewsImagePanel extends JPanel { |
||||
|
||||
private static final Image NEW_TIP_IMAGE = SVGLoader.load("/com/fr/design/mainframe/alphafine/images/new_tip.svg"); |
||||
|
||||
private static final int BACKGROUND_HEIGHT = 20; |
||||
|
||||
private static final Color BACKGROUND_COLOR = new Color(116, 181, 249); |
||||
|
||||
private ProductNews productNews; |
||||
|
||||
private int width = 200; |
||||
private int height = 150; |
||||
|
||||
public ProductNewsImagePanel(ProductNews productNews) { |
||||
this.productNews = productNews; |
||||
} |
||||
|
||||
|
||||
@Override |
||||
protected void paintComponent(Graphics g) { |
||||
super.paintComponent(g); |
||||
Graphics2D g2 = (Graphics2D) g; |
||||
g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON); |
||||
g2.setRenderingHint(RenderingHints.KEY_INTERPOLATION, RenderingHints.VALUE_INTERPOLATION_BILINEAR); |
||||
// g2.setComposite(AlphaComposite.Src);
|
||||
// g2.fill(new RoundRectangle2D.Float(0, 0, getWidth(), getHeight(), 5, 5));
|
||||
// g2.setComposite(AlphaComposite.SrcAtop);
|
||||
|
||||
g2.drawImage(productNews.getImage(), 0, 0, getWidth(), getHeight(), this); |
||||
Set<Long> readSet = DesignerEnvManager.getEnvManager().getAlphaFineConfigManager().getReadSet(); |
||||
if (!readSet.contains(productNews.getId())) { |
||||
g2.drawImage(NEW_TIP_IMAGE, 0, 0, this); |
||||
} |
||||
|
||||
Color defaultColor = g2.getColor(); |
||||
g2.setColor(BACKGROUND_COLOR); |
||||
g2.fillRect(0, getHeight() - BACKGROUND_HEIGHT, getWidth(), BACKGROUND_HEIGHT); |
||||
g2.setColor(Color.WHITE); |
||||
int x = (getWidth() - GraphHelper.getWidth(productNews.getTag().getDesc(), g2.getFont())) / 2; |
||||
g2.drawString(productNews.getTag().getDesc(), x, getHeight() - 5); |
||||
g2.setColor(defaultColor); |
||||
} |
||||
|
||||
@Override |
||||
public Dimension getPreferredSize() { |
||||
return new Dimension(width, height); |
||||
} |
||||
|
||||
|
||||
} |
@ -0,0 +1,48 @@
|
||||
package com.fr.design.mainframe.alphafine.component; |
||||
|
||||
import com.fr.design.DesignerEnvManager; |
||||
import com.fr.design.mainframe.alphafine.AlphaFineHelper; |
||||
import com.fr.design.mainframe.alphafine.model.ProductNews; |
||||
import com.fr.log.FineLoggerFactory; |
||||
import java.awt.Desktop; |
||||
import java.awt.event.MouseAdapter; |
||||
import java.awt.event.MouseEvent; |
||||
import java.net.URI; |
||||
import javax.swing.DefaultListModel; |
||||
import javax.swing.JList; |
||||
import javax.swing.ListModel; |
||||
|
||||
/** |
||||
* @author hades |
||||
* @version 11.0 |
||||
* Created by hades on 2022/4/21 |
||||
*/ |
||||
public class ProductNewsList extends JList<ProductNews> { |
||||
|
||||
public ProductNewsList(ListModel<ProductNews> dataModel) { |
||||
super(dataModel); |
||||
addMouseListener(new MouseAdapter() { |
||||
@Override |
||||
public void mouseClicked(MouseEvent e) { |
||||
if (e.getClickCount() == 2) { |
||||
dealWithClick(); |
||||
} |
||||
} |
||||
}); |
||||
} |
||||
|
||||
public ProductNewsList() { |
||||
this(new DefaultListModel<>()); |
||||
} |
||||
|
||||
private void dealWithClick() { |
||||
ProductNews productNews = getSelectedValue(); |
||||
try { |
||||
Desktop.getDesktop().browse(new URI(productNews.getUrl())); |
||||
} catch (Exception e) { |
||||
FineLoggerFactory.getLogger().error(e.getMessage(), e); |
||||
} |
||||
DesignerEnvManager.getEnvManager().getAlphaFineConfigManager().getReadSet().add(productNews.getId()); |
||||
AlphaFineHelper.getAlphaFineDialog().repaint(); |
||||
} |
||||
} |
@ -0,0 +1,35 @@
|
||||
package com.fr.design.mainframe.alphafine.component; |
||||
|
||||
import com.fr.design.gui.icontainer.UIScrollPane; |
||||
import java.awt.BorderLayout; |
||||
import java.awt.Color; |
||||
import java.awt.Dimension; |
||||
import javax.swing.BorderFactory; |
||||
import javax.swing.JPanel; |
||||
|
||||
/** |
||||
* @author hades |
||||
* @version 11.0 |
||||
* Created by hades on 2022/4/21 |
||||
*/ |
||||
public class ProductNewsSearchResultPane extends JPanel { |
||||
|
||||
private ProductNewsList productNewsList; |
||||
|
||||
public ProductNewsSearchResultPane(String[] segmentationResult) { |
||||
|
||||
productNewsList = new ProductNewsList(); |
||||
UIScrollPane scrollPane = new UIScrollPane(productNewsList); |
||||
scrollPane.setBackground(Color.WHITE); |
||||
scrollPane.setBorder(BorderFactory.createEmptyBorder(10, 20, 0, 20)); |
||||
productNewsList.setCellRenderer(new ProductNewsContentCellRender(segmentationResult)); |
||||
this.setLayout(new BorderLayout()); |
||||
this.setBackground(Color.WHITE); |
||||
this.add(scrollPane); |
||||
this.setPreferredSize(new Dimension(680, 305)); |
||||
} |
||||
|
||||
public ProductNewsList getProductNewsList() { |
||||
return productNewsList; |
||||
} |
||||
} |
@ -0,0 +1,126 @@
|
||||
package com.fr.design.mainframe.alphafine.component; |
||||
|
||||
import com.fr.design.gui.icontainer.UIScrollPane; |
||||
import com.fr.design.mainframe.alphafine.AlphaFineHelper; |
||||
import com.fr.design.mainframe.alphafine.cell.model.AlphaCellModel; |
||||
import com.fr.design.mainframe.alphafine.model.SearchResult; |
||||
import javax.swing.BorderFactory; |
||||
import javax.swing.DefaultListModel; |
||||
|
||||
/** |
||||
* @author hades |
||||
* @version 11.0 |
||||
* Created by hades on 2022/4/18 |
||||
*/ |
||||
public class SearchListModel extends DefaultListModel<AlphaCellModel> { |
||||
|
||||
private static final int MAX_SHOW_SIZE = 12; |
||||
private static final long serialVersionUID = 7230585307439551228L; |
||||
|
||||
|
||||
private SearchResult myDelegate; |
||||
|
||||
/** |
||||
* 第一有效的项是否被选中 |
||||
*/ |
||||
private boolean isValidSelected; |
||||
|
||||
private UIScrollPane leftSearchResultPane; |
||||
|
||||
private AlphaFineList searchResultList; |
||||
|
||||
public SearchListModel(SearchResult searchResult, AlphaFineList searchResultList, UIScrollPane leftSearchResultPane) { |
||||
this.myDelegate = searchResult; |
||||
this.searchResultList = searchResultList; |
||||
this.leftSearchResultPane = leftSearchResultPane; |
||||
} |
||||
|
||||
@Override |
||||
public void addElement(AlphaCellModel element) { |
||||
AlphaFineHelper.checkCancel(); |
||||
int index = myDelegate.size(); |
||||
myDelegate.add(element); |
||||
fireContentsChanged(this, index, index); |
||||
fireSelectedStateChanged(element, index); |
||||
|
||||
} |
||||
|
||||
@Override |
||||
protected void fireContentsChanged(Object source, int index0, int index1) { |
||||
if (myDelegate.size() > MAX_SHOW_SIZE) { |
||||
leftSearchResultPane.getVerticalScrollBar().setBorder(BorderFactory.createEmptyBorder(0, 2, 0, 0)); |
||||
leftSearchResultPane.setBorder(BorderFactory.createEmptyBorder(10, 10, 10, 2)); |
||||
} else { |
||||
leftSearchResultPane.setBorder(BorderFactory.createEmptyBorder(10, 10, 10, 10)); |
||||
} |
||||
super.fireContentsChanged(source, index0, index1); |
||||
} |
||||
|
||||
/** |
||||
* 触发选中第一有效的项 |
||||
* |
||||
* @param element |
||||
* @param index |
||||
*/ |
||||
private void fireSelectedStateChanged(AlphaCellModel element, int index) { |
||||
if (element.hasAction() && !isValidSelected()) { |
||||
searchResultList.setSelectedIndex(index); |
||||
setValidSelected(true); |
||||
} |
||||
} |
||||
|
||||
@Override |
||||
public AlphaCellModel getElementAt(int index) { |
||||
return myDelegate.get(index); |
||||
} |
||||
|
||||
@Override |
||||
public void add(int index, AlphaCellModel element) { |
||||
myDelegate.add(index, element); |
||||
fireIntervalAdded(this, index, index); |
||||
} |
||||
|
||||
@Override |
||||
public AlphaCellModel remove(int index) { |
||||
AlphaCellModel object = myDelegate.get(index); |
||||
myDelegate.remove(object); |
||||
fireContentsChanged(this, index, index); |
||||
return object; |
||||
} |
||||
|
||||
@Override |
||||
public int getSize() { |
||||
return this.myDelegate.size(); |
||||
} |
||||
|
||||
@Override |
||||
public void removeAllElements() { |
||||
this.myDelegate.clear(); |
||||
} |
||||
|
||||
/** |
||||
* 重置选中状态 |
||||
*/ |
||||
public void resetSelectedState() { |
||||
setValidSelected(false); |
||||
} |
||||
|
||||
private boolean isValidSelected() { |
||||
return isValidSelected; |
||||
} |
||||
|
||||
private void setValidSelected(boolean selected) { |
||||
isValidSelected = selected; |
||||
} |
||||
|
||||
@Override |
||||
public boolean isEmpty() { |
||||
return myDelegate.isEmpty(); |
||||
} |
||||
|
||||
public void resetState() { |
||||
for (int i = 0; i < getSize(); i++) { |
||||
getElementAt(i).resetState(); |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,83 @@
|
||||
package com.fr.design.mainframe.alphafine.component; |
||||
|
||||
import com.fr.design.gui.ilable.UILabel; |
||||
import com.fr.design.mainframe.alphafine.AlphaFineConstants; |
||||
import com.fr.design.mainframe.alphafine.AlphaFineUtil; |
||||
import com.fr.design.mainframe.alphafine.cell.model.AlphaCellModel; |
||||
import com.fr.general.IOUtils; |
||||
import com.fr.stable.StringUtils; |
||||
import java.awt.BorderLayout; |
||||
import java.awt.Color; |
||||
import java.awt.Component; |
||||
import java.awt.Dimension; |
||||
import javax.swing.BorderFactory; |
||||
import javax.swing.JList; |
||||
import javax.swing.JPanel; |
||||
import javax.swing.ListCellRenderer; |
||||
|
||||
/** |
||||
* @author hades |
||||
* @version 11.0 |
||||
* Created by hades on 2022/4/19 |
||||
*/ |
||||
public class SearchResultContentCellRender implements ListCellRenderer<Object> { |
||||
|
||||
private static final int OFFSET = 45; |
||||
private static final String SELECTED_PATH = AlphaFineConstants.IMAGE_URL + "selected"; |
||||
private static final String CELL_PATH = AlphaFineConstants.IMAGE_URL + "alphafine"; |
||||
private static final String SUFFIX = ".png"; |
||||
|
||||
private String[] segmentationResult; |
||||
|
||||
public SearchResultContentCellRender(String[] segmentationResult) { |
||||
this.segmentationResult = segmentationResult; |
||||
} |
||||
|
||||
@Override |
||||
public Component getListCellRendererComponent(JList<?> list, Object value, int index, boolean isSelected, |
||||
boolean cellHasFocus) { |
||||
|
||||
|
||||
AlphaCellModel model = (AlphaCellModel) value; |
||||
JPanel panel = new JPanel(new BorderLayout()); |
||||
panel.setBackground(null); |
||||
panel.setBorder(BorderFactory.createEmptyBorder(0, 10, 0, 0)); |
||||
// 图标icon 样式
|
||||
UILabel iconLabel = new UILabel(); |
||||
if (isSelected) { |
||||
iconLabel.setText(StringUtils.BLANK + model.getName()); |
||||
String iconUrl = SELECTED_PATH + model.getType().getTypeValue() + SUFFIX; |
||||
panel.setBackground(AlphaFineConstants.BLUE); |
||||
iconLabel.setForeground(Color.WHITE); |
||||
iconLabel.setIcon(IOUtils.readIcon(iconUrl)); |
||||
} else { |
||||
iconLabel.setText(AlphaFineUtil.highLightModelName(model.getName(), segmentationResult)); |
||||
String iconUrl = CELL_PATH + model.getType().getTypeValue() + SUFFIX; |
||||
iconLabel.setIcon(IOUtils.readIcon(iconUrl)); |
||||
} |
||||
iconLabel.setFont(AlphaFineConstants.MEDIUM_FONT); |
||||
|
||||
|
||||
// 内容详情label 样式
|
||||
UILabel detailLabel = new UILabel(); |
||||
String description = model.getDescription(); |
||||
if (StringUtils.isNotBlank(description)) { |
||||
detailLabel.setText("-" + description); |
||||
detailLabel.setForeground(AlphaFineConstants.LIGHT_GRAY); |
||||
panel.add(detailLabel, BorderLayout.CENTER); |
||||
int width = (int) (iconLabel.getPreferredSize().getWidth() + detailLabel.getPreferredSize().getWidth()); |
||||
if (width > AlphaFineConstants.LEFT_WIDTH - OFFSET) { |
||||
int nameWidth = (int) (AlphaFineConstants.LEFT_WIDTH - detailLabel.getPreferredSize().getWidth() - OFFSET); |
||||
iconLabel.setPreferredSize(new Dimension(nameWidth, AlphaFineConstants.CELL_HEIGHT)); |
||||
} |
||||
} else { |
||||
iconLabel.setPreferredSize(new Dimension(AlphaFineConstants.LEFT_WIDTH - OFFSET, AlphaFineConstants.CELL_HEIGHT)); |
||||
} |
||||
|
||||
panel.add(iconLabel, BorderLayout.WEST); |
||||
panel.setPreferredSize(new Dimension(list.getFixedCellWidth(), AlphaFineConstants.CELL_HEIGHT)); |
||||
return panel; |
||||
} |
||||
|
||||
|
||||
} |
@ -0,0 +1,51 @@
|
||||
package com.fr.design.mainframe.alphafine.component; |
||||
|
||||
import com.fr.design.gui.icontainer.UIScrollPane; |
||||
import com.fr.design.mainframe.alphafine.AlphaFineConstants; |
||||
import com.fr.design.mainframe.alphafine.model.SearchResult; |
||||
import com.fr.design.mainframe.alphafine.preview.ResultShowPane; |
||||
import java.awt.BorderLayout; |
||||
import java.awt.Color; |
||||
import java.awt.Dimension; |
||||
import javax.swing.JPanel; |
||||
|
||||
/** |
||||
* @author hades |
||||
* @version 11.0 |
||||
* Created by hades on 2022/4/22 |
||||
*/ |
||||
public class SearchResultPane extends JPanel { |
||||
|
||||
private AlphaFineList searchResultList; |
||||
|
||||
private SearchListModel searchListModel; |
||||
|
||||
private UIScrollPane leftSearchResultPane; |
||||
|
||||
|
||||
public SearchResultPane(String[] segmentationResult, ResultShowPane rightSearchResultPane) { |
||||
searchResultList = new AlphaFineList(); |
||||
searchResultList.setFixedCellHeight(AlphaFineConstants.CELL_HEIGHT); |
||||
leftSearchResultPane = new UIScrollPane(searchResultList); |
||||
leftSearchResultPane.setBorder(null); |
||||
leftSearchResultPane.setBackground(Color.WHITE); |
||||
leftSearchResultPane.setPreferredSize(new Dimension(AlphaFineConstants.LEFT_WIDTH, AlphaFineConstants.CONTENT_HEIGHT)); |
||||
searchListModel = new SearchListModel(new SearchResult(), searchResultList, leftSearchResultPane); |
||||
searchResultList.setModel(searchListModel); |
||||
searchResultList.setCellRenderer(new SearchResultContentCellRender(segmentationResult)); |
||||
searchResultList.setResultShowPane(rightSearchResultPane); |
||||
this.setPreferredSize(AlphaFineConstants.CONTENT_SIZE); |
||||
this.setLayout(new BorderLayout()); |
||||
this.add(leftSearchResultPane, BorderLayout.WEST); |
||||
this.add(rightSearchResultPane, BorderLayout.EAST); |
||||
this.setPreferredSize(new Dimension(680, 305)); |
||||
} |
||||
|
||||
public AlphaFineList getSearchResultList() { |
||||
return searchResultList; |
||||
} |
||||
|
||||
public UIScrollPane getLeftSearchResultPane() { |
||||
return leftSearchResultPane; |
||||
} |
||||
} |
@ -0,0 +1,58 @@
|
||||
package com.fr.design.mainframe.alphafine.component; |
||||
|
||||
import java.awt.Component; |
||||
import java.awt.Point; |
||||
import javax.swing.Popup; |
||||
import javax.swing.PopupFactory; |
||||
|
||||
/** |
||||
* @author hades |
||||
* @version 11.0 |
||||
* Created by hades on 2022/4/22 |
||||
*/ |
||||
public class SearchTooltipPopup { |
||||
|
||||
private static final SearchTooltipPopup INSTANCE = new SearchTooltipPopup(); |
||||
|
||||
public static SearchTooltipPopup getInstance() { |
||||
return INSTANCE; |
||||
} |
||||
|
||||
private AlphaSearchTooltipPane alphaSearchTooltipPane; |
||||
|
||||
private SearchTooltipPopup() { |
||||
alphaSearchTooltipPane = new AlphaSearchTooltipPane(); |
||||
} |
||||
|
||||
private boolean showPopup; |
||||
|
||||
private Popup popup; |
||||
|
||||
public void show(Component owner) { |
||||
if (popup == null || !showPopup) { |
||||
PopupFactory pf = PopupFactory.getSharedInstance(); |
||||
Point point = owner.getLocationOnScreen(); |
||||
alphaSearchTooltipPane.refreshHistory(); |
||||
popup = pf.getPopup(owner, alphaSearchTooltipPane, point.x, point.y + owner.getHeight()); |
||||
} |
||||
if (!showPopup) { |
||||
alphaSearchTooltipPane.repaint(); |
||||
popup.show(); |
||||
getAlphaFineToolTipList().clearSelection(); |
||||
showPopup = true; |
||||
} |
||||
} |
||||
|
||||
public AlphaFineToolTipList getAlphaFineToolTipList() { |
||||
return alphaSearchTooltipPane.getAlphaFineToolTipList(); |
||||
} |
||||
|
||||
public void hide() { |
||||
if (popup != null) { |
||||
popup.hide(); |
||||
} |
||||
showPopup = false; |
||||
} |
||||
|
||||
|
||||
} |
@ -0,0 +1,91 @@
|
||||
package com.fr.design.mainframe.alphafine.component; |
||||
|
||||
import com.fr.design.DesignerEnvManager; |
||||
import com.fr.design.constants.UIConstants; |
||||
import com.fr.design.gui.ilable.UILabel; |
||||
import com.fr.design.mainframe.alphafine.AlphaFineConstants; |
||||
import com.fr.design.mainframe.alphafine.AlphaFineUtil; |
||||
import com.fr.design.mainframe.alphafine.CellType; |
||||
import com.fr.design.mainframe.alphafine.model.ProductNews; |
||||
import com.fr.design.mainframe.alphafine.search.manager.impl.ProductNewsSearchManager; |
||||
import com.fr.design.menu.SnapChatUtil; |
||||
import java.awt.Color; |
||||
import java.awt.Graphics; |
||||
import java.awt.Graphics2D; |
||||
import java.awt.Rectangle; |
||||
import java.awt.RenderingHints; |
||||
import java.awt.geom.Ellipse2D; |
||||
import java.util.List; |
||||
import java.util.Set; |
||||
|
||||
/** |
||||
* @author hades |
||||
* @version 11.0 |
||||
* Created by hades on 2022/4/07 |
||||
*/ |
||||
public class SelectedLabel extends UILabel { |
||||
|
||||
private static final int WIDTH = 4; |
||||
private static final int HEIGHT = 4; |
||||
private static final int GAP = 2; |
||||
|
||||
private boolean selected; |
||||
private boolean hasRead; |
||||
private CellType cellType; |
||||
|
||||
public SelectedLabel(String text, CellType cellType, boolean selected) { |
||||
super(text); |
||||
this.setForeground(AlphaFineConstants.FOREGROUND_COLOR_8); |
||||
this.selected = selected; |
||||
this.cellType = cellType; |
||||
} |
||||
|
||||
public SelectedLabel(String text, CellType cellType) { |
||||
this(text, cellType, false); |
||||
} |
||||
|
||||
@Override |
||||
public void paintComponent(Graphics g) { |
||||
Graphics2D g2d = (Graphics2D) g; |
||||
g2d.setRenderingHint(RenderingHints.KEY_ANTIALIASING, |
||||
RenderingHints.VALUE_ANTIALIAS_ON); |
||||
if (selected) { |
||||
g2d.setColor(UIConstants.FLESH_BLUE); |
||||
setForeground(UIConstants.FLESH_BLUE); |
||||
g2d.drawLine(0, this.getHeight() - 1, this.getWidth(), this.getHeight() - 1); |
||||
} else { |
||||
setForeground(AlphaFineConstants.FOREGROUND_COLOR_8); |
||||
} |
||||
|
||||
|
||||
if (cellType == CellType.PRODUCT_NEWS && AlphaFineUtil.unread()) { |
||||
Color oldColor = g.getColor(); |
||||
g2d.setColor(Color.RED); |
||||
g2d.fillOval(getWidth() - WIDTH, GAP, WIDTH, HEIGHT); |
||||
g2d.setColor(oldColor); |
||||
} |
||||
|
||||
super.paintComponent(g); |
||||
} |
||||
|
||||
|
||||
public boolean isSelected() { |
||||
return selected; |
||||
} |
||||
|
||||
public void setSelected(boolean selected) { |
||||
this.selected = selected; |
||||
} |
||||
|
||||
public boolean isHasRead() { |
||||
return hasRead; |
||||
} |
||||
|
||||
public void setHasRead(boolean hasRead) { |
||||
this.hasRead = hasRead; |
||||
} |
||||
|
||||
public CellType getCellType() { |
||||
return cellType; |
||||
} |
||||
} |
@ -0,0 +1,200 @@
|
||||
package com.fr.design.mainframe.alphafine.model; |
||||
|
||||
import com.fr.design.i18n.Toolkit; |
||||
import java.awt.Image; |
||||
import java.util.Date; |
||||
|
||||
/** |
||||
* 产品动态 |
||||
* |
||||
* @author hades |
||||
* @version 11.0 |
||||
* Created by hades on 2022/4/05 |
||||
*/ |
||||
public class ProductNews { |
||||
|
||||
private long id; |
||||
private String title; |
||||
|
||||
private Tag tag; |
||||
private Target target; |
||||
|
||||
private Status status; |
||||
private String url; |
||||
private Image image; |
||||
|
||||
|
||||
private Date pushDate; |
||||
|
||||
/** |
||||
* 创建cid的用户 |
||||
*/ |
||||
private int creator; |
||||
|
||||
public long getId() { |
||||
return id; |
||||
} |
||||
|
||||
public ProductNews setId(long id) { |
||||
this.id = id; |
||||
return this; |
||||
} |
||||
|
||||
public String getTitle() { |
||||
return title; |
||||
} |
||||
|
||||
public ProductNews setTitle(String title) { |
||||
this.title = title; |
||||
return this; |
||||
} |
||||
|
||||
public Tag getTag() { |
||||
return tag; |
||||
} |
||||
|
||||
public ProductNews setTag(Tag tag) { |
||||
this.tag = tag; |
||||
return this; |
||||
} |
||||
|
||||
public Target getTarget() { |
||||
return target; |
||||
} |
||||
|
||||
public ProductNews setTarget(Target target) { |
||||
this.target = target; |
||||
return this; |
||||
} |
||||
|
||||
public Status getStatus() { |
||||
return status; |
||||
} |
||||
|
||||
public ProductNews setStatus(Status status) { |
||||
this.status = status; |
||||
return this; |
||||
} |
||||
|
||||
public String getUrl() { |
||||
return url; |
||||
} |
||||
|
||||
public ProductNews setUrl(String url) { |
||||
this.url = url; |
||||
return this; |
||||
} |
||||
|
||||
public Image getImage() { |
||||
return image; |
||||
} |
||||
|
||||
public ProductNews setImage(Image image) { |
||||
this.image = image; |
||||
return this; |
||||
} |
||||
|
||||
public Date getPushDate() { |
||||
return pushDate; |
||||
} |
||||
|
||||
public ProductNews setPushDate(Date pushDate) { |
||||
this.pushDate = pushDate; |
||||
return this; |
||||
} |
||||
|
||||
public int getCreator() { |
||||
return creator; |
||||
} |
||||
|
||||
public ProductNews setCreator(int creator) { |
||||
this.creator = creator; |
||||
return this; |
||||
} |
||||
|
||||
interface CodeParser { |
||||
int getCode(); |
||||
} |
||||
|
||||
public enum Status implements CodeParser { |
||||
STOP(0), START(1); |
||||
|
||||
private final int code; |
||||
|
||||
Status(int code) { |
||||
this.code = code; |
||||
} |
||||
|
||||
@Override |
||||
public int getCode() { |
||||
return code; |
||||
} |
||||
|
||||
public static Status parseCode(int code) { |
||||
for (Status status : values()) { |
||||
if (code == status.code) { |
||||
return status; |
||||
} |
||||
} |
||||
throw new IllegalArgumentException(); |
||||
} |
||||
} |
||||
|
||||
public enum Tag { |
||||
SOLUTION(1, Toolkit.i18nText("Fine-Design_Report_AlphaFine_Solution")), |
||||
MATERIAL(2, Toolkit.i18nText("Fine-Design_Report_AlphaFine_Material")), |
||||
NEW_PRODUCT(3, Toolkit.i18nText("Fine-Design_Report_AlphaFine_New_Product")); |
||||
|
||||
private final int code; |
||||
|
||||
private final String desc; |
||||
|
||||
Tag(int code, String desc) { |
||||
this.code = code; |
||||
this.desc = desc; |
||||
} |
||||
|
||||
public static Tag parseCode(int code) { |
||||
for (Tag tag :values()) { |
||||
if (tag.code == code) { |
||||
return tag; |
||||
} |
||||
} |
||||
throw new IllegalArgumentException(); |
||||
} |
||||
|
||||
public int getCode() { |
||||
return code; |
||||
} |
||||
|
||||
public String getDesc() { |
||||
return desc; |
||||
} |
||||
} |
||||
|
||||
public enum Target { |
||||
ALL_USER(0); |
||||
|
||||
private final int code; |
||||
|
||||
Target(int code) { |
||||
this.code = code; |
||||
} |
||||
|
||||
public int getCode() { |
||||
return code; |
||||
} |
||||
|
||||
public static Target parseCode(int code) { |
||||
for (Target target : values()) { |
||||
if (target.code == code) { |
||||
return target; |
||||
} |
||||
} |
||||
throw new IllegalArgumentException(); |
||||
} |
||||
|
||||
} |
||||
|
||||
|
||||
} |
@ -0,0 +1,79 @@
|
||||
package com.fr.design.mainframe.alphafine.preview; |
||||
|
||||
import com.fr.design.gui.icontainer.UIScrollPane; |
||||
import com.fr.design.gui.ilable.UILabel; |
||||
import com.fr.design.i18n.Toolkit; |
||||
import com.fr.design.mainframe.alphafine.AlphaFineHelper; |
||||
import com.fr.design.mainframe.alphafine.component.ProductNewsContentCellRender; |
||||
import com.fr.design.mainframe.alphafine.component.ProductNewsList; |
||||
import com.fr.design.mainframe.alphafine.model.ProductNews; |
||||
import com.fr.design.mainframe.alphafine.search.manager.impl.ProductNewsSearchManager; |
||||
import com.fr.log.FineLoggerFactory; |
||||
import java.awt.BorderLayout; |
||||
import java.awt.Color; |
||||
import java.awt.Dimension; |
||||
import java.util.List; |
||||
import javax.swing.BorderFactory; |
||||
import javax.swing.DefaultListModel; |
||||
import javax.swing.JPanel; |
||||
import javax.swing.SwingWorker; |
||||
|
||||
/** |
||||
* @author hades |
||||
* @version 11.0 |
||||
* Created by hades on 2022/4/14 |
||||
*/ |
||||
public class DefaultProductNewsPane extends JPanel { |
||||
|
||||
|
||||
private static final String LOADING = Toolkit.i18nText("Fine-Design_Report_AlphaFine_Loading"); |
||||
|
||||
public DefaultProductNewsPane() { |
||||
|
||||
setLayout(new BorderLayout()); |
||||
JPanel loadingPane = new JPanel(new BorderLayout()); |
||||
loadingPane.setBorder(BorderFactory.createEmptyBorder(0, 280, 0, 0)); |
||||
loadingPane.add(new UILabel(LOADING)); |
||||
loadingPane.setBackground(Color.WHITE); |
||||
|
||||
this.add(loadingPane); |
||||
this.setPreferredSize(new Dimension(680, 305)); |
||||
new SwingWorker<List<ProductNews>, Void>() { |
||||
|
||||
@Override |
||||
protected List<ProductNews> doInBackground() throws Exception { |
||||
return ProductNewsSearchManager.getInstance().getProductNewsList(); |
||||
} |
||||
|
||||
@Override |
||||
protected void done() { |
||||
DefaultProductNewsPane.this.remove(loadingPane); |
||||
try { |
||||
DefaultProductNewsPane.this.add(createContentPane(get())); |
||||
DefaultProductNewsPane.this.validate(); |
||||
DefaultProductNewsPane.this.repaint(); |
||||
AlphaFineHelper.getAlphaFineDialog().repaint(); |
||||
} catch (Exception e) { |
||||
FineLoggerFactory.getLogger().error(e.getMessage(), e); |
||||
} |
||||
} |
||||
}.execute(); |
||||
|
||||
|
||||
} |
||||
|
||||
private UIScrollPane createContentPane(List<ProductNews> productNewsList) { |
||||
DefaultListModel<ProductNews> productNewsDefaultListModel = new DefaultListModel<>(); |
||||
for (ProductNews productNews : productNewsList) { |
||||
productNewsDefaultListModel.addElement(productNews); |
||||
} |
||||
ProductNewsList productNewsJList = new ProductNewsList(productNewsDefaultListModel); |
||||
productNewsJList.setBackground(Color.WHITE); |
||||
productNewsJList.setCellRenderer(new ProductNewsContentCellRender()); |
||||
UIScrollPane scrollPane = new UIScrollPane(productNewsJList); |
||||
scrollPane.setBackground(Color.WHITE); |
||||
scrollPane.setBorder(BorderFactory.createEmptyBorder(10, 20, 0, 20)); |
||||
return scrollPane; |
||||
} |
||||
|
||||
} |
@ -0,0 +1,94 @@
|
||||
package com.fr.design.mainframe.alphafine.preview; |
||||
|
||||
import com.fr.design.constants.UIConstants; |
||||
import com.fr.design.gui.ilable.UILabel; |
||||
import com.fr.design.i18n.Toolkit; |
||||
import com.fr.design.utils.DesignUtils; |
||||
import com.fr.log.FineLoggerFactory; |
||||
import java.awt.BorderLayout; |
||||
import java.awt.Color; |
||||
import java.awt.Desktop; |
||||
import java.awt.Dimension; |
||||
import java.awt.GridLayout; |
||||
import java.awt.event.MouseAdapter; |
||||
import java.awt.event.MouseEvent; |
||||
import java.io.IOException; |
||||
import java.net.URI; |
||||
import java.util.Map; |
||||
import javax.swing.BorderFactory; |
||||
import javax.swing.Icon; |
||||
import javax.swing.JPanel; |
||||
import javax.swing.JSeparator; |
||||
import javax.swing.SwingConstants; |
||||
|
||||
/** |
||||
* @author hades |
||||
* @version 11.0 |
||||
* Created by hades on 2022/4/13 |
||||
*/ |
||||
public class HelpDocumentNoResultPane extends JPanel { |
||||
|
||||
private static final String RECOMMEND = Toolkit.i18nText("Fine-Design_Report_AlphaFine_Recommend_For_You"); |
||||
|
||||
private static final Color DOT_COLOR = new Color(200, 201, 205); |
||||
|
||||
public HelpDocumentNoResultPane(String title, Icon icon, Map<String, String> linkMap) { |
||||
|
||||
setLayout(new BorderLayout()); |
||||
add(new NoResultPane(title, icon, 150), BorderLayout.CENTER); |
||||
add(createRecommendPane(linkMap), BorderLayout.EAST); |
||||
} |
||||
|
||||
private JPanel createRecommendPane(Map<String, String> linkMap) { |
||||
JPanel wrapRecommendPane = new JPanel(new BorderLayout()); |
||||
wrapRecommendPane.setPreferredSize(new Dimension(200, 305)); |
||||
JPanel recommendPane = new JPanel(); |
||||
recommendPane.setLayout(new GridLayout(0, 1)); |
||||
recommendPane.setBorder(BorderFactory.createEmptyBorder(0, 5, 130, 0)); |
||||
recommendPane.setBackground(Color.WHITE); |
||||
recommendPane.add(new UILabel(RECOMMEND)); |
||||
for (Map.Entry<String, String> entry : linkMap.entrySet()) { |
||||
recommendPane.add(createListLabel(entry.getKey(), entry.getValue())); |
||||
} |
||||
// 分割线
|
||||
JSeparator sep = new JSeparator(); |
||||
sep.setOrientation(JSeparator.VERTICAL); |
||||
sep.setLayout(new GridLayout(0, 1)); |
||||
sep.setPreferredSize(new Dimension(1, 285)); |
||||
sep.setBorder(BorderFactory.createEmptyBorder(10, 0, 10, 0)); |
||||
sep.add(new UILabel()); |
||||
wrapRecommendPane.add(sep, BorderLayout.WEST); |
||||
wrapRecommendPane.add(recommendPane, BorderLayout.CENTER); |
||||
return wrapRecommendPane; |
||||
} |
||||
|
||||
private JPanel createListLabel(String text, String link) { |
||||
UILabel listLabel = new UILabel(String.format("%s", text)); |
||||
listLabel.setForeground(UIConstants.FLESH_BLUE); |
||||
listLabel.setBorder(BorderFactory.createEmptyBorder(10, 0, 0, 0)); |
||||
listLabel.addMouseListener(new MouseAdapter() { |
||||
@Override |
||||
public void mousePressed(MouseEvent e) { |
||||
try { |
||||
Desktop.getDesktop().browse(URI.create(link)); |
||||
} catch (IOException exception) { |
||||
FineLoggerFactory.getLogger().error(exception.getMessage(), exception); |
||||
} |
||||
} |
||||
}); |
||||
|
||||
JPanel listPane = new JPanel(new BorderLayout()); |
||||
listPane.setBackground(Color.WHITE); |
||||
UILabel dotLabel = new UILabel("·"); |
||||
dotLabel.setBorder(BorderFactory.createEmptyBorder(10, 0, 0, 0)); |
||||
dotLabel.setFont(DesignUtils.getDefaultGUIFont().applySize(14)); |
||||
dotLabel.setHorizontalAlignment(SwingConstants.LEADING); |
||||
dotLabel.setForeground(DOT_COLOR); |
||||
listPane.add(dotLabel, BorderLayout.WEST); |
||||
listPane.add(listLabel, BorderLayout.CENTER); |
||||
listPane.setPreferredSize(new Dimension(100, 20)); |
||||
return listPane; |
||||
} |
||||
|
||||
|
||||
} |
@ -0,0 +1,167 @@
|
||||
package com.fr.design.mainframe.alphafine.preview; |
||||
|
||||
import com.fr.design.gui.ilable.UILabel; |
||||
import com.fr.design.mainframe.alphafine.AlphaFineConstants; |
||||
import com.fr.design.mainframe.alphafine.CellType; |
||||
import com.fr.design.mainframe.alphafine.cell.model.AlphaCellModel; |
||||
import com.fr.design.mainframe.alphafine.cell.model.FileModel; |
||||
import com.fr.design.mainframe.alphafine.cell.model.PluginModel; |
||||
import com.fr.log.FineLoggerFactory; |
||||
import com.fr.stable.project.ProjectConstants; |
||||
import com.fr.workspace.WorkContext; |
||||
import com.fr.workspace.server.exporter.LocalExportOperator; |
||||
import com.fr.workspace.server.exporter.TemplateExportOperator; |
||||
import java.awt.BorderLayout; |
||||
import java.awt.Color; |
||||
import java.awt.Dimension; |
||||
import java.awt.image.BufferedImage; |
||||
import java.io.IOException; |
||||
import java.net.URL; |
||||
import java.util.concurrent.ExecutionException; |
||||
import javax.imageio.ImageIO; |
||||
import javax.swing.BorderFactory; |
||||
import javax.swing.ImageIcon; |
||||
import javax.swing.SwingWorker; |
||||
|
||||
/** |
||||
* @author hades |
||||
* @version 11.0 |
||||
* Created by hades on 2022/4/20 |
||||
*/ |
||||
public class LoadingRightSearchResultPane extends ResultShowPane { |
||||
|
||||
private SwingWorker<BufferedImage, Void> showWorker; |
||||
|
||||
public LoadingRightSearchResultPane() { |
||||
|
||||
this.setBackground(Color.WHITE); |
||||
this.setPreferredSize(new Dimension(AlphaFineConstants.RIGHT_WIDTH - 1, AlphaFineConstants.CONTENT_HEIGHT)); |
||||
initLoadingLabel(); |
||||
|
||||
} |
||||
|
||||
private void initLoadingLabel() { |
||||
UILabel label = new UILabel(new ImageIcon(getClass().getResource("/com/fr/design/mainframe/alphafine/images/opening.gif"))); |
||||
label.setBorder(BorderFactory.createEmptyBorder(120, 0, 0, 0)); |
||||
this.add(label, BorderLayout.CENTER); |
||||
} |
||||
|
||||
private void showDefaultPreviewPane() { |
||||
this.removeAll(); |
||||
initLoadingLabel(); |
||||
validate(); |
||||
repaint(); |
||||
revalidate(); |
||||
} |
||||
|
||||
@Override |
||||
public void showResult(AlphaCellModel selectedValue) { |
||||
showDefaultPreviewPane(); |
||||
checkWorker(); |
||||
if (selectedValue.getType() == CellType.FILE) { |
||||
fileShowWorker(selectedValue); |
||||
} |
||||
|
||||
if (selectedValue.getType() == CellType.PLUGIN) { |
||||
pluginShowWorker(selectedValue); |
||||
} |
||||
this.showWorker.execute(); |
||||
} |
||||
|
||||
private void fileShowWorker(AlphaCellModel selectedValue) { |
||||
this.showWorker = new SwingWorker<BufferedImage, Void>() { |
||||
@Override |
||||
protected BufferedImage doInBackground() throws Exception { |
||||
final String fileName = ((FileModel) selectedValue).getFilePath().substring(ProjectConstants.REPORTLETS_NAME.length() + 1); |
||||
if (fileName.endsWith(ProjectConstants.FRM_SUFFIX)) { |
||||
return frmToImage(fileName); |
||||
} else if (fileName.endsWith(ProjectConstants.CPT_SUFFIX)) { |
||||
return cptToImage(fileName); |
||||
} else { |
||||
return null; |
||||
} |
||||
} |
||||
|
||||
@Override |
||||
protected void done() { |
||||
if (!isCancelled()) { |
||||
LoadingRightSearchResultPane.this.removeAll(); |
||||
try { |
||||
LoadingRightSearchResultPane.this.add(new FilePreviewPane(get())); |
||||
} catch (InterruptedException | ExecutionException e) { |
||||
FineLoggerFactory.getLogger().error(e.getMessage(), e); |
||||
} |
||||
validate(); |
||||
repaint(); |
||||
} |
||||
} |
||||
}; |
||||
} |
||||
|
||||
private void pluginShowWorker(AlphaCellModel selectedValue) { |
||||
this.showWorker = new SwingWorker<BufferedImage, Void>() { |
||||
@Override |
||||
protected BufferedImage doInBackground() { |
||||
BufferedImage bufferedImage = null; |
||||
try { |
||||
bufferedImage = ImageIO.read(new URL(((PluginModel) selectedValue).getImageUrl())); |
||||
} catch (IOException e) { |
||||
try { |
||||
bufferedImage = ImageIO.read(getClass().getResource("/com/fr/design/mainframe/alphafine/images/default_product.png")); |
||||
} catch (IOException e1) { |
||||
FineLoggerFactory.getLogger().error(e.getMessage(), e); |
||||
} |
||||
} |
||||
return bufferedImage; |
||||
} |
||||
|
||||
@Override |
||||
protected void done() { |
||||
try { |
||||
if (!isCancelled()) { |
||||
LoadingRightSearchResultPane.this.removeAll(); |
||||
LoadingRightSearchResultPane.this.add(new PluginPreviewPane((selectedValue).getName(), get(), ((PluginModel) selectedValue).getVersion(), ((PluginModel) selectedValue).getJartime(), ((PluginModel) selectedValue).getType(), ((PluginModel) selectedValue).getPrice())); |
||||
validate(); |
||||
repaint(); |
||||
} |
||||
} catch (Exception e) { |
||||
FineLoggerFactory.getLogger().error(e.getMessage(), e); |
||||
} |
||||
} |
||||
}; |
||||
} |
||||
|
||||
|
||||
private BufferedImage frmToImage(String fileName) throws Exception { |
||||
byte[] bytes = null; |
||||
try { |
||||
bytes = WorkContext.getCurrent().get(TemplateExportOperator.class).exportFormAsImageData(fileName); |
||||
} catch (Exception ignored) { |
||||
// 兼容下老版本
|
||||
bytes = new LocalExportOperator().exportFormAsImageData(fileName); |
||||
} |
||||
return TemplateExportOperator.byteDataToImage(bytes); |
||||
} |
||||
|
||||
|
||||
private BufferedImage cptToImage(String fileName) throws Exception { |
||||
byte[] bytes = null; |
||||
try { |
||||
bytes = WorkContext.getCurrent().get(TemplateExportOperator.class).exportWorkBookAsImageData(fileName); |
||||
} catch (Exception ignored) { |
||||
// 兼容下老版本
|
||||
bytes = new LocalExportOperator().exportWorkBookAsImageData(fileName); |
||||
} |
||||
return TemplateExportOperator.byteDataToImage(bytes); |
||||
} |
||||
|
||||
|
||||
private void checkWorker() { |
||||
if (this.showWorker != null && !this.showWorker.isDone()) { |
||||
this.showWorker.cancel(true); |
||||
this.showWorker = null; |
||||
} |
||||
} |
||||
|
||||
|
||||
} |
@ -0,0 +1,35 @@
|
||||
package com.fr.design.mainframe.alphafine.preview; |
||||
|
||||
import com.fr.design.dialog.link.MessageWithLink; |
||||
import com.fr.design.mainframe.alphafine.AlphaFineConstants; |
||||
import com.fr.design.utils.DesignUtils; |
||||
import java.awt.Color; |
||||
import java.awt.Component; |
||||
import javax.swing.BorderFactory; |
||||
import javax.swing.Icon; |
||||
|
||||
/** |
||||
* 带跳转链接的无结果面板 |
||||
* |
||||
* @author hades |
||||
* @version 11.0 |
||||
* Created by hades on 2022/4/12 |
||||
*/ |
||||
public class NoResultWithLinkPane extends NoResultPane { |
||||
|
||||
private static final String TAG_A_START = "<a>"; |
||||
private static final String TAG_A_END = "</a>"; |
||||
|
||||
public NoResultWithLinkPane(String title, Icon icon) { |
||||
super(title, icon); |
||||
} |
||||
|
||||
@Override |
||||
protected Component generateDescription(String title) { |
||||
String[] para1 = title.split(TAG_A_START); |
||||
String[] para2 = para1[1].split(TAG_A_END); |
||||
MessageWithLink messageWithLink = new MessageWithLink(para1[0], para2[0], AlphaFineConstants.ALPHA_GO_TO_FORUM, para2[1], Color.WHITE, DesignUtils.getDefaultGUIFont().applySize(14), AlphaFineConstants.MEDIUM_GRAY); |
||||
messageWithLink.setBorder(BorderFactory.createEmptyBorder(0, AlphaFineConstants.LEFT_WIDTH - 30, 135, 0)); |
||||
return messageWithLink; |
||||
} |
||||
} |
@ -0,0 +1,14 @@
|
||||
package com.fr.design.mainframe.alphafine.preview; |
||||
|
||||
import com.fr.design.mainframe.alphafine.cell.model.AlphaCellModel; |
||||
import javax.swing.JPanel; |
||||
|
||||
/** |
||||
* @author hades |
||||
* @version 11.0 |
||||
* Created by hades on 2022/4/22 |
||||
*/ |
||||
public abstract class ResultShowPane extends JPanel { |
||||
|
||||
public abstract void showResult(AlphaCellModel selectedValue); |
||||
} |
@ -0,0 +1,19 @@
|
||||
package com.fr.design.mainframe.alphafine.preview; |
||||
|
||||
import java.awt.Color; |
||||
import javax.swing.JPanel; |
||||
|
||||
/** |
||||
* @author hades |
||||
* @version 11.0 |
||||
* Created by hades on 2022/4/21 |
||||
*/ |
||||
public class SearchLoadingPane extends JPanel { |
||||
|
||||
|
||||
public SearchLoadingPane() { |
||||
|
||||
this.setBackground(Color.WHITE); |
||||
} |
||||
|
||||
} |
@ -0,0 +1,32 @@
|
||||
package com.fr.design.mainframe.alphafine.preview; |
||||
|
||||
import com.fr.design.mainframe.alphafine.AlphaFineConstants; |
||||
import com.fr.design.mainframe.alphafine.CellType; |
||||
import com.fr.design.mainframe.alphafine.cell.model.AlphaCellModel; |
||||
import java.awt.Color; |
||||
import java.awt.Dimension; |
||||
import javax.swing.JPanel; |
||||
|
||||
/** |
||||
* @author hades |
||||
* @version 11.0 |
||||
* Created by hades on 2022/4/20 |
||||
*/ |
||||
public class SimpleRightSearchResultPane extends ResultShowPane { |
||||
|
||||
public SimpleRightSearchResultPane(JPanel contentPane) { |
||||
this.add(contentPane); |
||||
this.setBackground(Color.WHITE); |
||||
this.setPreferredSize(new Dimension(AlphaFineConstants.RIGHT_WIDTH - 1, AlphaFineConstants.CONTENT_HEIGHT)); |
||||
} |
||||
|
||||
@Override |
||||
public void showResult(AlphaCellModel selectedValue) { |
||||
if (selectedValue.getType() == CellType.DOCUMENT) { |
||||
this.removeAll(); |
||||
this.add(new DocumentPreviewPane((selectedValue).getName(), (selectedValue).getContent())); |
||||
validate(); |
||||
repaint(); |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,59 @@
|
||||
package com.fr.design.mainframe.alphafine.question; |
||||
|
||||
import com.fr.base.svg.SVGLoader; |
||||
import com.fr.design.mainframe.alphafine.AlphaFineUtil; |
||||
import java.awt.Color; |
||||
import java.awt.Dimension; |
||||
import java.awt.Graphics; |
||||
import java.awt.Graphics2D; |
||||
import java.awt.Image; |
||||
import java.awt.RenderingHints; |
||||
import javax.swing.JPanel; |
||||
|
||||
/** |
||||
* @author hades |
||||
* @version 11.0 |
||||
* Created by hades on 2022/4/15 |
||||
*/ |
||||
public class QuestionPane extends JPanel { |
||||
|
||||
private static final Image NEW_MESSAGE_IMAGE = SVGLoader.load("/com/fr/design/mainframe/alphafine/images/group_new.svg"); |
||||
|
||||
private static final Image QUESTION_IMAGE = SVGLoader.load("/com/fr/design/mainframe/alphafine/images/group.svg"); |
||||
|
||||
private static final Image QUESTION_BACKGROUND_IMAGE = SVGLoader.load("/com/fr/design/mainframe/alphafine/images/groupbackgroud.svg"); |
||||
|
||||
/** |
||||
* 是否全部已读 |
||||
*/ |
||||
private boolean hasRead; |
||||
|
||||
public QuestionPane(boolean hasRead) { |
||||
this.setBackground(new Color(0, 0, 0, 0)); |
||||
} |
||||
|
||||
@Override |
||||
protected void paintComponent(Graphics g) { |
||||
super.paintComponent(g); |
||||
Graphics2D g2 = (Graphics2D) g; |
||||
g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON); |
||||
g2.setRenderingHint(RenderingHints.KEY_INTERPOLATION, RenderingHints.VALUE_INTERPOLATION_BILINEAR); |
||||
if (AlphaFineUtil.unread()) { |
||||
g2.drawImage(NEW_MESSAGE_IMAGE, 0, 0, getWidth(), getHeight(), this); |
||||
} else { |
||||
g2.drawImage(QUESTION_BACKGROUND_IMAGE, 0, 0, getWidth(), getHeight(), this); |
||||
g2.drawImage(QUESTION_IMAGE, (getWidth() - QUESTION_IMAGE.getWidth(this)) / 2, (getHeight() - QUESTION_IMAGE.getHeight(this)) / 2, this); |
||||
} |
||||
|
||||
} |
||||
|
||||
public void setHasRead(boolean hasRead) { |
||||
this.hasRead = hasRead; |
||||
} |
||||
|
||||
@Override |
||||
public Dimension getPreferredSize() { |
||||
return new Dimension(40, 40); |
||||
} |
||||
|
||||
} |
@ -0,0 +1,86 @@
|
||||
package com.fr.design.mainframe.alphafine.question; |
||||
|
||||
import com.fr.design.i18n.Toolkit; |
||||
import com.fr.design.mainframe.DesignerContext; |
||||
import com.fr.design.mainframe.alphafine.AlphaFineHelper; |
||||
import java.awt.Color; |
||||
import java.awt.Dimension; |
||||
import java.awt.event.MouseAdapter; |
||||
import java.awt.event.MouseEvent; |
||||
import java.awt.event.MouseMotionAdapter; |
||||
import java.awt.event.WindowAdapter; |
||||
import java.awt.event.WindowEvent; |
||||
import javax.swing.JWindow; |
||||
|
||||
/** |
||||
* @author hades |
||||
* @version 11.0 |
||||
* Created by hades on 2022/4/15 |
||||
*/ |
||||
public class QuestionWindow extends JWindow { |
||||
|
||||
private static final QuestionWindow INSTANCE = new QuestionWindow(); |
||||
private final QuestionPane questionPane = new QuestionPane(true); |
||||
private int pressX; |
||||
private int pressY; |
||||
private QuestionWindow() { |
||||
this.setBackground(new Color(0, 0, 0, 0)); |
||||
questionPane.addMouseListener(new MouseAdapter() { |
||||
@Override |
||||
public void mouseClicked(MouseEvent e) { |
||||
AlphaFineHelper.showAlphaFineDialog(true); |
||||
} |
||||
|
||||
@Override |
||||
public void mousePressed(MouseEvent e) { |
||||
pressX = e.getX(); |
||||
pressY = e.getY(); |
||||
} |
||||
}); |
||||
questionPane.addMouseMotionListener(new MouseMotionAdapter() { |
||||
@Override |
||||
public void mouseDragged(MouseEvent e) { |
||||
int left = getLocation().x; |
||||
int top = getLocation().y; |
||||
setLocation(left + e.getX() - pressX, top + e.getY() - pressY); |
||||
} |
||||
}); |
||||
|
||||
DesignerContext.getDesignerFrame().addWindowListener(new WindowAdapter() { |
||||
|
||||
@Override |
||||
public void windowActivated(WindowEvent e) { |
||||
QuestionWindow.getInstance().setVisible(true); |
||||
} |
||||
|
||||
@Override |
||||
public void windowDeactivated(WindowEvent e) { |
||||
QuestionWindow.getInstance().setVisible(false); |
||||
} |
||||
|
||||
}); |
||||
this.getLayeredPane().setToolTipText(Toolkit.i18nText("Fine-Design_Report_AlphaFine_Learn_More_About")); |
||||
this.setContentPane(questionPane); |
||||
this.setSize(new Dimension(40, 40)); |
||||
this.setLocation(DesignerContext.getDesignerFrame().getWidth() - 100, |
||||
DesignerContext.getDesignerFrame().getHeight() - 100); |
||||
} |
||||
|
||||
public static QuestionWindow getInstance() { |
||||
return INSTANCE; |
||||
} |
||||
|
||||
public void setHasRead(boolean hasRead) { |
||||
this.questionPane.setHasRead(hasRead); |
||||
} |
||||
|
||||
@Override |
||||
public void setVisible(boolean b) { |
||||
super.setVisible(b); |
||||
} |
||||
|
||||
@Override |
||||
public void dispose() { |
||||
super.dispose(); |
||||
} |
||||
} |
@ -0,0 +1,100 @@
|
||||
package com.fr.design.mainframe.alphafine.search; |
||||
|
||||
import com.fr.design.mainframe.alphafine.CellType; |
||||
import com.fr.design.mainframe.alphafine.component.AlphaFineFrame; |
||||
import com.fr.design.mainframe.alphafine.component.ProductNewsSearchResultPane; |
||||
import com.fr.design.mainframe.alphafine.model.ProductNews; |
||||
import com.fr.log.FineLoggerFactory; |
||||
import java.util.List; |
||||
import java.util.function.Function; |
||||
import javax.swing.DefaultListModel; |
||||
import javax.swing.SwingWorker; |
||||
|
||||
/** |
||||
* @author hades |
||||
* @version 11.0 |
||||
* Created by hades on 2022/4/22 |
||||
*/ |
||||
public class ProductNewsSearchWorkerManager implements SearchManager { |
||||
|
||||
private final CellType cellType; |
||||
|
||||
private SwingWorker<DefaultListModel<ProductNews>, Void> searchWorker; |
||||
|
||||
private Function<SearchTextBean, List<ProductNews>> searchFunction; |
||||
|
||||
private ProductNewsSearchResultPane searchResultPane; |
||||
|
||||
private AlphaFineFrame alphaFineFrame; |
||||
|
||||
private volatile boolean hasSearchResult = true; |
||||
|
||||
public ProductNewsSearchWorkerManager(CellType cellType, Function<SearchTextBean, List<ProductNews>> searchFunction, AlphaFineFrame alphaFineFrame) { |
||||
this.cellType = cellType; |
||||
this.searchFunction = searchFunction; |
||||
this.alphaFineFrame = alphaFineFrame; |
||||
} |
||||
|
||||
|
||||
|
||||
@Override |
||||
public void doSearch(SearchTextBean searchTextBean) { |
||||
checkSearchWork(); |
||||
|
||||
if (searchResultPane == null) { |
||||
searchResultPane = new ProductNewsSearchResultPane(searchTextBean.getSegmentation()); |
||||
alphaFineFrame.addResult(searchResultPane, cellType.getFlagStr4Result()); |
||||
} |
||||
|
||||
this.searchWorker = new SwingWorker<DefaultListModel<ProductNews>, Void>() { |
||||
@Override |
||||
protected DefaultListModel<ProductNews> doInBackground() throws Exception { |
||||
List<ProductNews> productNewsList = searchFunction.apply(searchTextBean); |
||||
DefaultListModel<ProductNews> productNewsDefaultListModel = new DefaultListModel<>(); |
||||
for (ProductNews productNews : productNewsList) { |
||||
productNewsDefaultListModel.addElement(productNews); |
||||
} |
||||
return productNewsDefaultListModel; |
||||
} |
||||
|
||||
@Override |
||||
protected void done() { |
||||
if (!isCancelled()) { |
||||
try { |
||||
DefaultListModel<ProductNews> productNewsDefaultListModel = get(); |
||||
hasSearchResult = !productNewsDefaultListModel.isEmpty(); |
||||
searchResultPane.getProductNewsList().setModel(get()); |
||||
if (alphaFineFrame.getSelectedType() == cellType) { |
||||
if (!hasSearchResult) { |
||||
alphaFineFrame.showResult(CellType.NO_RESULT.getFlagStr4None()); |
||||
return; |
||||
} |
||||
alphaFineFrame.showResult(cellType.getFlagStr4Result()); |
||||
searchResultPane.getProductNewsList().setSelectedIndex(0); |
||||
} |
||||
} catch (Exception e) { |
||||
FineLoggerFactory.getLogger().error(e.getMessage(), e); |
||||
} |
||||
} |
||||
} |
||||
}; |
||||
this.searchWorker.execute(); |
||||
} |
||||
|
||||
public ProductNewsSearchResultPane getSearchResultPane() { |
||||
return searchResultPane; |
||||
} |
||||
|
||||
@Override |
||||
public boolean hasSearchResult() { |
||||
return hasSearchResult; |
||||
} |
||||
|
||||
private void checkSearchWork() { |
||||
if (this.searchWorker != null && !this.searchWorker.isDone()) { |
||||
this.searchWorker.cancel(true); |
||||
this.searchWorker = null; |
||||
} |
||||
} |
||||
|
||||
} |
@ -0,0 +1,13 @@
|
||||
package com.fr.design.mainframe.alphafine.search; |
||||
|
||||
/** |
||||
* @author hades |
||||
* @version 11.0 |
||||
* Created by hades on 2022/4/17 |
||||
*/ |
||||
public interface SearchManager { |
||||
|
||||
void doSearch(SearchTextBean searchTextBean); |
||||
|
||||
boolean hasSearchResult(); |
||||
} |
@ -0,0 +1,37 @@
|
||||
package com.fr.design.mainframe.alphafine.search; |
||||
|
||||
/** |
||||
* @author hades |
||||
* @version 11.0 |
||||
* Created by hades on 2022/4/17 |
||||
*/ |
||||
public class SearchTextBean { |
||||
|
||||
private String searchText; |
||||
|
||||
/** |
||||
* 分词搜索 |
||||
*/ |
||||
private String[] segmentation; |
||||
|
||||
public SearchTextBean(String searchText, String[] segmentation) { |
||||
this.searchText = searchText; |
||||
this.segmentation = segmentation; |
||||
} |
||||
|
||||
public String getSearchText() { |
||||
return searchText; |
||||
} |
||||
|
||||
public void setSearchText(String searchText) { |
||||
this.searchText = searchText; |
||||
} |
||||
|
||||
public String[] getSegmentation() { |
||||
return segmentation; |
||||
} |
||||
|
||||
public void setSegmentation(String[] segmentation) { |
||||
this.segmentation = segmentation; |
||||
} |
||||
} |
@ -0,0 +1,119 @@
|
||||
package com.fr.design.mainframe.alphafine.search; |
||||
|
||||
import com.fr.design.mainframe.alphafine.AlphaFineHelper; |
||||
import com.fr.design.mainframe.alphafine.CellType; |
||||
import com.fr.design.mainframe.alphafine.cell.model.AlphaCellModel; |
||||
import com.fr.design.mainframe.alphafine.component.AlphaFineFrame; |
||||
import com.fr.design.mainframe.alphafine.component.AlphaFineList; |
||||
import com.fr.design.mainframe.alphafine.component.SearchListModel; |
||||
import com.fr.design.mainframe.alphafine.component.SearchResultPane; |
||||
import com.fr.design.mainframe.alphafine.model.SearchResult; |
||||
import com.fr.design.mainframe.alphafine.preview.ResultShowPane; |
||||
import com.fr.log.FineLoggerFactory; |
||||
import java.util.function.Function; |
||||
import javax.swing.SwingWorker; |
||||
import org.jetbrains.annotations.Nullable; |
||||
|
||||
/** |
||||
* @author hades |
||||
* @version 11.0 |
||||
* Created by hades on 2022/4/16 |
||||
*/ |
||||
public class SearchWorkerManager implements SearchManager { |
||||
|
||||
private final CellType cellType; |
||||
|
||||
private SwingWorker<SearchListModel, Void> searchWorker; |
||||
|
||||
private Function<SearchTextBean, SearchResult> searchResultFunction; |
||||
|
||||
private SearchResultPane searchResultPane; |
||||
|
||||
private AlphaFineFrame alphaFineFrame; |
||||
|
||||
private ResultShowPane resultShowPane; |
||||
|
||||
private volatile boolean hasSearchResult = true; |
||||
|
||||
|
||||
public SearchWorkerManager(CellType cellType, Function<SearchTextBean, SearchResult> function, AlphaFineFrame alphaFineFrame, ResultShowPane resultShowPane) { |
||||
this.cellType = cellType; |
||||
this.searchResultFunction = function; |
||||
this.alphaFineFrame = alphaFineFrame; |
||||
this.resultShowPane = resultShowPane; |
||||
} |
||||
|
||||
private void initSearchResult(SearchTextBean searchTextBean) { |
||||
if (searchResultPane == null) { |
||||
searchResultPane = new SearchResultPane(searchTextBean.getSegmentation(), resultShowPane); |
||||
alphaFineFrame.addResult(searchResultPane, cellType.getFlagStr4Result()); |
||||
} |
||||
|
||||
} |
||||
|
||||
private void checkSearchWork() { |
||||
if (this.searchWorker != null && !this.searchWorker.isDone()) { |
||||
this.searchWorker.cancel(true); |
||||
this.searchWorker = null; |
||||
} |
||||
} |
||||
|
||||
private void initSearchWorker(SearchTextBean searchTextBean) { |
||||
this.searchWorker = new SwingWorker<SearchListModel, Void>() { |
||||
@Override |
||||
protected SearchListModel doInBackground() throws Exception { |
||||
SearchResult searchResult = searchResultFunction.apply(searchTextBean); |
||||
SearchListModel searchListModel = new SearchListModel(new SearchResult(), searchResultPane.getSearchResultList(), searchResultPane.getLeftSearchResultPane()); |
||||
for (AlphaCellModel object : searchResult) { |
||||
AlphaFineHelper.checkCancel(); |
||||
searchListModel.addElement(object); |
||||
} |
||||
return searchListModel; |
||||
} |
||||
|
||||
@Override |
||||
protected void done() { |
||||
if (!isCancelled()) { |
||||
try { |
||||
SearchListModel searchListModel = get(); |
||||
hasSearchResult = !searchListModel.isEmpty(); |
||||
searchResultPane.getSearchResultList().setModel(get()); |
||||
if (alphaFineFrame.getSelectedType() == cellType) { |
||||
if (!hasSearchResult) { |
||||
alphaFineFrame.showResult(CellType.NO_RESULT.getFlagStr4None()); |
||||
return; |
||||
} |
||||
alphaFineFrame.showResult(cellType.getFlagStr4Result()); |
||||
searchResultPane.getSearchResultList().setSelectedIndex(0); |
||||
searchResultPane.getSearchResultList().requestFocus(); |
||||
} |
||||
} catch (Exception e) { |
||||
FineLoggerFactory.getLogger().error(e.getMessage(), e); |
||||
} |
||||
} |
||||
} |
||||
}; |
||||
} |
||||
|
||||
@Override |
||||
public void doSearch(SearchTextBean searchTextBean) { |
||||
initSearchResult(searchTextBean); |
||||
checkSearchWork(); |
||||
initSearchWorker(searchTextBean); |
||||
this.searchWorker.execute(); |
||||
} |
||||
|
||||
@Override |
||||
public boolean hasSearchResult() { |
||||
return hasSearchResult; |
||||
} |
||||
|
||||
@Nullable |
||||
public AlphaFineList getSearchResultList() { |
||||
if (searchResultPane != null) { |
||||
return searchResultPane.getSearchResultList(); |
||||
} |
||||
return null; |
||||
} |
||||
|
||||
} |
@ -0,0 +1,75 @@
|
||||
package com.fr.design.mainframe.alphafine.search.manager.impl; |
||||
|
||||
import com.fr.design.mainframe.alphafine.AlphaFineConstants; |
||||
import com.fr.design.mainframe.alphafine.AlphaFineHelper; |
||||
import com.fr.design.mainframe.alphafine.model.ProductNews; |
||||
import com.fr.general.http.HttpToolbox; |
||||
import com.fr.json.JSON; |
||||
import com.fr.json.JSONArray; |
||||
import com.fr.json.JSONFactory; |
||||
import com.fr.json.JSONObject; |
||||
import com.fr.log.FineLoggerFactory; |
||||
import java.net.URL; |
||||
import java.util.ArrayList; |
||||
import java.util.Date; |
||||
import java.util.List; |
||||
import javax.imageio.ImageIO; |
||||
|
||||
public class ProductNewsSearchManager { |
||||
|
||||
private static final ProductNewsSearchManager INSTANCE = new ProductNewsSearchManager(); |
||||
private List<ProductNews> productNewsResultList; |
||||
|
||||
private List<ProductNews> productNewsList = new ArrayList<>(); |
||||
|
||||
private ProductNewsSearchManager() { |
||||
|
||||
} |
||||
|
||||
public static ProductNewsSearchManager getInstance() { |
||||
return INSTANCE; |
||||
} |
||||
|
||||
public List<ProductNews> getSearchResult(String[] searchText) { |
||||
productNewsResultList = new ArrayList<>(); |
||||
try { |
||||
List<ProductNews> productNewsList = getProductNewsList(); |
||||
for (ProductNews productNews : productNewsList) { |
||||
for (String str : searchText) { |
||||
if (productNews.getTitle().contains(str)) { |
||||
productNewsResultList.add(productNews); |
||||
break; |
||||
} |
||||
} |
||||
} |
||||
} catch (Exception e) { |
||||
FineLoggerFactory.getLogger().error(e.getMessage(), e); |
||||
} |
||||
return productNewsResultList; |
||||
} |
||||
|
||||
|
||||
public List<ProductNews> getProductNewsList() throws Exception { |
||||
productNewsList = new ArrayList<>(); |
||||
String jsonStr = HttpToolbox.get(AlphaFineConstants.ALPHA_CID); |
||||
AlphaFineHelper.checkCancel(); |
||||
JSONObject cidJSON = JSONFactory.createJSON(JSON.OBJECT, jsonStr); |
||||
JSONArray jsonArray = cidJSON.getJSONArray("data"); |
||||
for (int i = 0, size = jsonArray.size(); i < size; i++) { |
||||
JSONObject obj = jsonArray.getJSONObject(i); |
||||
ProductNews productNews = new ProductNews(). |
||||
setId(obj.getLong("id")).setTitle(obj.getString("title")). |
||||
setImage(ImageIO.read(new URL(obj.getString("pic")))). |
||||
setUrl(obj.getString("url")).setTag(ProductNews.Tag.parseCode(obj.getInt("tag"))). |
||||
setStatus(ProductNews.Status.parseCode(obj.getInt("status"))).setTarget( |
||||
ProductNews.Target.parseCode(obj.getInt("target"))). |
||||
setCreator(obj.getInt("creator")).setPushDate(new Date(obj.getLong("push_time"))); |
||||
productNewsList.add(productNews); |
||||
} |
||||
return productNewsList; |
||||
} |
||||
|
||||
public List<ProductNews> getCachedProductNewsList() { |
||||
return productNewsList; |
||||
} |
||||
} |
After Width: | Height: | Size: 1.0 KiB |
After Width: | Height: | Size: 1.0 KiB |
After Width: | Height: | Size: 697 B |
After Width: | Height: | Size: 1.3 KiB |
After Width: | Height: | Size: 1.7 KiB |
After Width: | Height: | Size: 151 B |
After Width: | Height: | Size: 649 B |
After Width: | Height: | Size: 643 B |
After Width: | Height: | Size: 353 B |
After Width: | Height: | Size: 2.4 KiB |