devabhishekpal commented on code in PR #7017:
URL: https://github.com/apache/ozone/pull/7017#discussion_r1703730117


##########
hadoop-ozone/recon/src/main/resources/webapps/recon/ozone-recon-web/src/v2/components/overviewCard/overviewSimpleCard.tsx:
##########
@@ -0,0 +1,138 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+import React from 'react';
+import { Card, Col, Row } from 'antd';
+import { Link } from 'react-router-dom';
+import { ClusterOutlined, ContainerOutlined, DatabaseOutlined, DeleteOutlined, 
DeploymentUnitOutlined, FileTextOutlined, FolderOpenOutlined, InboxOutlined, 
QuestionCircleOutlined } from '@ant-design/icons';
+
+
+// ------------- Types -------------- //
+type IconOptions = {
+  [key: string]: React.ReactElement
+}
+
+type OverviewCardProps = {
+  icon: string;
+  data: number | React.ReactElement;
+  title: string;
+  hoverable?: boolean;
+  loading?: boolean;
+  linkToUrl?: string;
+}
+

Review Comment:
   Since the styles are smaller in scale, having it inline or as a constant 
will have the same performance as the styles are a part of JSX which is 
required to be parsed in either scenario.
   
   To improve performance we can shift to an external stylesheet, but even that 
would only improve negligible performance, hence having inline styles in this 
scenario is easier to read.
   
   Here is a good article for performance of inline styles vs external 
stylesheets:
   https://simonadcock.com/are-inline-styles-faster-than-atomic-css/
   
   Here a 100 tags with inline styles takes ~39ms and external stylesheet takes 
~30ms which is just a 9ms improvement in exchange for readability



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@ozone.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscr...@ozone.apache.org
For additional commands, e-mail: issues-h...@ozone.apache.org

Reply via email to