Skip to content

Commit c278f32

Browse files
committed
merge: merge github_alpha into 9.x_github_merge_dev
Signed-off-by: liangjinping <[email protected]> Change-Id: I9b37556dc297450e91e6f9f0a10a6f2448f94007
2 parents ffd9069 + 4be8b78 commit c278f32

File tree

6 files changed

+269
-241
lines changed

6 files changed

+269
-241
lines changed

cyber/setup.bash

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -6,25 +6,25 @@ export APOLLO_BAZEL_DIST_DIR="${APOLLO_CACHE_DIR}/distdir"
66
export CYBER_PATH="${APOLLO_ROOT_DIR}/cyber"
77

88
bazel_bin_path="${APOLLO_ROOT_DIR}/bazel-bin"
9-
# mainboard_path="${bazel_bin_path}/cyber/mainboard"
10-
# cyber_tool_path="${bazel_bin_path}/cyber/tools"
11-
# recorder_path="${cyber_tool_path}/cyber_recorder"
12-
# launch_path="${cyber_tool_path}/cyber_launch"
13-
# channel_path="${cyber_tool_path}/cyber_channel"
14-
# node_path="${cyber_tool_path}/cyber_node"
15-
# service_path="${cyber_tool_path}/cyber_service"
16-
# monitor_path="${cyber_tool_path}/cyber_monitor"
17-
# visualizer_path="${bazel_bin_path}/modules/tools/visualizer"
9+
mainboard_path="${bazel_bin_path}/cyber/mainboard"
10+
cyber_tool_path="${bazel_bin_path}/cyber/tools"
11+
recorder_path="${cyber_tool_path}/cyber_recorder"
12+
launch_path="${cyber_tool_path}/cyber_launch"
13+
channel_path="${cyber_tool_path}/cyber_channel"
14+
node_path="${cyber_tool_path}/cyber_node"
15+
service_path="${cyber_tool_path}/cyber_service"
16+
monitor_path="${cyber_tool_path}/cyber_monitor"
17+
visualizer_path="${bazel_bin_path}/modules/tools/visualizer"
1818

1919
# TODO(all): place all these in one place and pathprepend
20-
# for entry in "${mainboard_path}" \
21-
# "${recorder_path}" "${monitor_path}" \
22-
# "${channel_path}" "${node_path}" \
23-
# "${service_path}" \
24-
# "${launch_path}" \
25-
# "${visualizer_path}" ; do
26-
# pathprepend "${entry}"
27-
# done
20+
for entry in "${mainboard_path}" \
21+
"${recorder_path}" "${monitor_path}" \
22+
"${channel_path}" "${node_path}" \
23+
"${service_path}" \
24+
"${launch_path}" \
25+
"${visualizer_path}" ; do
26+
pathprepend "${entry}"
27+
done
2828

2929
pathprepend ${bazel_bin_path}/cyber/python/internal PYTHONPATH
3030
pathprepend "${PYTHON_INSTALL_PATH}/lib/python${PYTHON_VERSION}/site-packages" PYTHONPATH

modules/dreamview/frontend/src/components/DataProfile/LocalRecordItem.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ function LocalDynamicModelItem(props) {
5555
monitor.insert('INFO', 'Deleted successfully!', Date.now());
5656
setDeleteConfirmModalVisible(false);
5757
// 刷新列表
58-
WS.loadLocalRecords();
58+
// WS.loadLocalRecords();
5959
PLUGIN_WS.getRecordList();
6060
};
6161

modules/dreamview/frontend/src/components/DataProfile/RemoteResourseItemStatus.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,6 @@ export function RemoteResourceItemBtn(props) {
9595
}
9696

9797
if (type === 2) {
98-
console.log('handleClick', status, id, type);
9998
PLUGIN_WS.downloadDynamicsModel(id);
10099
}
101100

modules/dreamview/frontend/src/components/DataProfile/index.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -292,9 +292,6 @@ export default class DataProfile extends React.Component {
292292
className={currentKey === tab.key ? 'active' : ''}
293293
onClick={() => {
294294
this.setState({ currentKey: tab.key });
295-
if (tab.key === 'recordProfiles') {
296-
WS.checkWsConnection().loadLocalRecords();
297-
}
298295
}}
299296
>{tab.title}</span>
300297
);

0 commit comments

Comments
 (0)