ソースを参照

删除国际化

HW 4 年 前
コミット
dd9b4d8675

+ 34 - 17
src/global.tsx

@@ -1,32 +1,35 @@
 import { Button, message, notification } from 'antd';
-
 import React from 'react';
 import { useIntl } from 'umi';
 import defaultSettings from '../config/defaultSettings';
-
 const { pwa } = defaultSettings;
-const isHttps = document.location.protocol === 'https:';
+const isHttps = document.location.protocol === 'https:'; // if pwa is true
 
-// if pwa is true
 if (pwa) {
   // Notify user if offline now
   window.addEventListener('sw.offline', () => {
-    message.warning(useIntl().formatMessage({ id: 'app.pwa.offline' }));
-  });
+    message.warning(
+      useIntl().formatMessage({
+        id: 'app.pwa.offline',
+      }),
+    );
+  }); // Pop up a prompt on the page asking the user if they want to use the latest version
 
-  // Pop up a prompt on the page asking the user if they want to use the latest version
   window.addEventListener('sw.updated', (event: Event) => {
     const e = event as CustomEvent;
+
     const reloadSW = async () => {
       // Check if there is sw whose state is waiting in ServiceWorkerRegistration
       // https://developer.mozilla.org/en-US/docs/Web/API/ServiceWorkerRegistration
       const worker = e.detail && e.detail.waiting;
+
       if (!worker) {
         return true;
-      }
-      // Send skip-waiting event to waiting SW with MessageChannel
+      } // Send skip-waiting event to waiting SW with MessageChannel
+
       await new Promise((resolve, reject) => {
         const channel = new MessageChannel();
+
         channel.port1.onmessage = (msgEvent) => {
           if (msgEvent.data.error) {
             reject(msgEvent.data.error);
@@ -34,12 +37,19 @@ if (pwa) {
             resolve(msgEvent.data);
           }
         };
-        worker.postMessage({ type: 'skip-waiting' }, [channel.port2]);
-      });
-      // Refresh current page to use the updated HTML and other assets after SW has skiped waiting
+
+        worker.postMessage(
+          {
+            type: 'skip-waiting',
+          },
+          [channel.port2],
+        );
+      }); // Refresh current page to use the updated HTML and other assets after SW has skiped waiting
+
       window.location.reload(true);
       return true;
     };
+
     const key = `open${Date.now()}`;
     const btn = (
       <Button
@@ -49,12 +59,18 @@ if (pwa) {
           reloadSW();
         }}
       >
-        {useIntl().formatMessage({ id: 'app.pwa.serviceworker.updated.ok' })}
+        {useIntl().formatMessage({
+          id: 'app.pwa.serviceworker.updated.ok',
+        })}
       </Button>
     );
     notification.open({
-      message: useIntl().formatMessage({ id: 'app.pwa.serviceworker.updated' }),
-      description: useIntl().formatMessage({ id: 'app.pwa.serviceworker.updated.hint' }),
+      message: useIntl().formatMessage({
+        id: 'app.pwa.serviceworker.updated',
+      }),
+      description: useIntl().formatMessage({
+        id: 'app.pwa.serviceworker.updated.hint',
+      }),
       btn,
       key,
       onClose: async () => {},
@@ -63,6 +79,7 @@ if (pwa) {
 } else if ('serviceWorker' in navigator && isHttps) {
   // unregister service worker
   const { serviceWorker } = navigator;
+
   if (serviceWorker.getRegistrations) {
     serviceWorker.getRegistrations().then((sws) => {
       sws.forEach((sw) => {
@@ -70,11 +87,11 @@ if (pwa) {
       });
     });
   }
+
   serviceWorker.getRegistration().then((sw) => {
     if (sw) sw.unregister();
-  });
+  }); // remove all caches
 
-  // remove all caches
   if (window.caches && window.caches.keys) {
     caches.keys().then((keys) => {
       keys.forEach((key) => {

+ 12 - 3
src/pages/Admin.tsx

@@ -3,7 +3,6 @@ import { HeartTwoTone, SmileTwoTone } from '@ant-design/icons';
 import { Card, Typography, Alert } from 'antd';
 import { PageHeaderWrapper } from '@ant-design/pro-layout';
 import { useIntl } from 'umi';
-
 export default (): React.ReactNode => {
   const intl = useIntl();
   return (
@@ -27,11 +26,21 @@ export default (): React.ReactNode => {
             marginBottom: 48,
           }}
         />
-        <Typography.Title level={2} style={{ textAlign: 'center' }}>
+        <Typography.Title
+          level={2}
+          style={{
+            textAlign: 'center',
+          }}
+        >
           <SmileTwoTone /> Ant Design Pro <HeartTwoTone twoToneColor="#eb2f96" /> You
         </Typography.Title>
       </Card>
-      <p style={{ textAlign: 'center', marginTop: 24 }}>
+      <p
+        style={{
+          textAlign: 'center',
+          marginTop: 24,
+        }}
+      >
         Want to add more pages? Please refer to{' '}
         <a href="https://pro.ant.design/docs/block-cn" target="_blank" rel="noopener noreferrer">
           use block

+ 0 - 2
src/pages/ListTableList/components/CreateForm.tsx

@@ -1,7 +1,6 @@
 import React from 'react';
 import { Modal } from 'antd';
 import { useIntl } from 'umi';
-
 interface CreateFormProps {
   modalVisible: boolean;
   onCancel: () => void;
@@ -10,7 +9,6 @@ interface CreateFormProps {
 const CreateForm: React.FC<CreateFormProps> = (props) => {
   const { modalVisible, onCancel } = props;
   const intl = useIntl();
-
   return (
     <Modal
       destroyOnClose

+ 6 - 22
src/pages/ListTableList/components/UpdateForm.tsx

@@ -9,9 +9,7 @@ import {
   ProFormDateTimePicker,
 } from '@ant-design/pro-form';
 import { useIntl, FormattedMessage } from 'umi';
-
 import { TableListItem } from '../data.d';
-
 export interface FormValueType extends Partial<TableListItem> {
   target?: string;
   template?: string;
@@ -19,7 +17,6 @@ export interface FormValueType extends Partial<TableListItem> {
   time?: string;
   frequency?: string;
 }
-
 export interface UpdateFormProps {
   onCancel: (flag?: boolean, formVals?: FormValueType) => void;
   onSubmit: (values: FormValueType) => Promise<void>;
@@ -38,7 +35,9 @@ const UpdateForm: React.FC<UpdateFormProps> = (props) => {
         return (
           <Modal
             width={640}
-            bodyStyle={{ padding: '32px 40px 48px' }}
+            bodyStyle={{
+              padding: '32px 40px 48px',
+            }}
             destroyOnClose
             title={intl.formatMessage({
               id: 'pages.searchTable.updateForm.ruleConfig',
@@ -74,12 +73,7 @@ const UpdateForm: React.FC<UpdateFormProps> = (props) => {
           rules={[
             {
               required: true,
-              message: (
-                <FormattedMessage
-                  id="pages.searchTable.updateForm.ruleName.nameRules"
-                  defaultMessage="请输入规则名称!"
-                />
-              ),
+              message: '请输入规则名称!',
             },
           ]}
         />
@@ -97,12 +91,7 @@ const UpdateForm: React.FC<UpdateFormProps> = (props) => {
           rules={[
             {
               required: true,
-              message: (
-                <FormattedMessage
-                  id="pages.searchTable.updateForm.ruleDesc.descRules"
-                  defaultMessage="请输入至少五个字符的规则描述!"
-                />
-              ),
+              message: '请输入至少五个字符的规则描述!',
               min: 5,
             },
           ]}
@@ -180,12 +169,7 @@ const UpdateForm: React.FC<UpdateFormProps> = (props) => {
           rules={[
             {
               required: true,
-              message: (
-                <FormattedMessage
-                  id="pages.searchTable.updateForm.schedulingPeriod.timeRules"
-                  defaultMessage="请选择开始时间!"
-                />
-              ),
+              message: '请选择开始时间!',
             },
           ]}
         />

+ 39 - 52
src/pages/ListTableList/index.tsx

@@ -9,13 +9,14 @@ import CreateForm from './components/CreateForm';
 import UpdateForm, { FormValueType } from './components/UpdateForm';
 import { TableListItem } from './data.d';
 import { queryRule, updateRule, addRule, removeRule } from './service';
-
 /**
  * 添加节点
  * @param fields
  */
+
 const handleAdd = async (fields: TableListItem) => {
   const hide = message.loading('正在添加');
+
   try {
     await addRule({ ...fields });
     hide();
@@ -27,13 +28,14 @@ const handleAdd = async (fields: TableListItem) => {
     return false;
   }
 };
-
 /**
  * 更新节点
  * @param fields
  */
+
 const handleUpdate = async (fields: FormValueType) => {
   const hide = message.loading('正在配置');
+
   try {
     await updateRule({
       name: fields.name,
@@ -41,7 +43,6 @@ const handleUpdate = async (fields: FormValueType) => {
       key: fields.key,
     });
     hide();
-
     message.success('配置成功');
     return true;
   } catch (error) {
@@ -50,14 +51,15 @@ const handleUpdate = async (fields: FormValueType) => {
     return false;
   }
 };
-
 /**
  *  删除节点
  * @param selectedRows
  */
+
 const handleRemove = async (selectedRows: TableListItem[]) => {
   const hide = message.loading('正在删除');
   if (!selectedRows) return true;
+
   try {
     await removeRule({
       key: selectedRows.map((row) => row.key),
@@ -82,21 +84,14 @@ const TableList: React.FC<{}> = () => {
   const intl = useIntl();
   const columns: ProColumns<TableListItem>[] = [
     {
-      title: (
-        <FormattedMessage
-          id="pages.searchTable.updateForm.ruleName.nameLabel"
-          defaultMessage="规则名称"
-        />
-      ),
+      title: '规则名称',
       dataIndex: 'name',
       tip: '规则名称是唯一的 key',
       formItemProps: {
         rules: [
           {
             required: true,
-            message: (
-              <FormattedMessage id="pages.searchTable.ruleName" defaultMessage="规则名称为必填项" />
-            ),
+            message: '规则名称为必填项',
           },
         ],
       },
@@ -105,12 +100,12 @@ const TableList: React.FC<{}> = () => {
       },
     },
     {
-      title: <FormattedMessage id="pages.searchTable.titleDesc" defaultMessage="描述" />,
+      title: '描述',
       dataIndex: 'desc',
       valueType: 'textarea',
     },
     {
-      title: <FormattedMessage id="pages.searchTable.titleCallNo" defaultMessage="服务调用次数" />,
+      title: '服务调用次数',
       dataIndex: 'callNo',
       sorter: true,
       hideInForm: true,
@@ -121,49 +116,41 @@ const TableList: React.FC<{}> = () => {
         })}`,
     },
     {
-      title: <FormattedMessage id="pages.searchTable.titleStatus" defaultMessage="状态" />,
+      title: '状态',
       dataIndex: 'status',
       hideInForm: true,
       valueEnum: {
         0: {
-          text: (
-            <FormattedMessage id="pages.searchTable.nameStatus.default" defaultMessage="关闭" />
-          ),
+          text: '关闭',
           status: 'Default',
         },
         1: {
-          text: (
-            <FormattedMessage id="pages.searchTable.nameStatus.running" defaultMessage="运行中" />
-          ),
+          text: '运行中',
           status: 'Processing',
         },
         2: {
-          text: (
-            <FormattedMessage id="pages.searchTable.nameStatus.online" defaultMessage="已上线" />
-          ),
+          text: '已上线',
           status: 'Success',
         },
         3: {
-          text: (
-            <FormattedMessage id="pages.searchTable.nameStatus.abnormal" defaultMessage="异常" />
-          ),
+          text: '异常',
           status: 'Error',
         },
       },
     },
     {
-      title: (
-        <FormattedMessage id="pages.searchTable.titleUpdatedAt" defaultMessage="上次调度时间" />
-      ),
+      title: '上次调度时间',
       dataIndex: 'updatedAt',
       sorter: true,
       valueType: 'dateTime',
       hideInForm: true,
       renderFormItem: (item, { defaultRender, ...rest }, form) => {
         const status = form.getFieldValue('status');
+
         if (`${status}` === '0') {
           return false;
         }
+
         if (`${status}` === '3') {
           return (
             <Input
@@ -175,11 +162,12 @@ const TableList: React.FC<{}> = () => {
             />
           );
         }
+
         return defaultRender(item);
       },
     },
     {
-      title: <FormattedMessage id="pages.searchTable.titleOption" defaultMessage="操作" />,
+      title: '操作',
       dataIndex: 'option',
       valueType: 'option',
       render: (_, record) => (
@@ -190,17 +178,14 @@ const TableList: React.FC<{}> = () => {
               setStepFormValues(record);
             }}
           >
-            <FormattedMessage id="pages.searchTable.config" defaultMessage="配置" />
+            配置
           </a>
           <Divider type="vertical" />
-          <a href="">
-            <FormattedMessage id="pages.searchTable.subscribeAlert" defaultMessage="订阅警报" />
-          </a>
+          <a href="">订阅警报</a>
         </>
       ),
     },
   ];
-
   return (
     <PageContainer>
       <ProTable<TableListItem>
@@ -215,7 +200,7 @@ const TableList: React.FC<{}> = () => {
         }}
         toolBarRender={() => [
           <Button type="primary" key="primary" onClick={() => handleModalVisible(true)}>
-            <PlusOutlined /> <FormattedMessage id="pages.searchTable.new" defaultMessage="新建" />
+            <PlusOutlined /> 新建
           </Button>,
         ]}
         request={(params, sorter, filter) => queryRule({ ...params, sorter, filter })}
@@ -228,17 +213,17 @@ const TableList: React.FC<{}> = () => {
         <FooterToolbar
           extra={
             <div>
-              <FormattedMessage id="pages.searchTable.chosen" defaultMessage="已选择" />{' '}
-              <a style={{ fontWeight: 600 }}>{selectedRowsState.length}</a>{' '}
-              <FormattedMessage id="pages.searchTable.item" defaultMessage="项" />
-              &nbsp;&nbsp;
+              已选择{' '}
+              <a
+                style={{
+                  fontWeight: 600,
+                }}
+              >
+                {selectedRowsState.length}
+              </a>{' '}
+              项 &nbsp;&nbsp;
               <span>
-                <FormattedMessage
-                  id="pages.searchTable.totalServiceCalls"
-                  defaultMessage="服务调用次数总计"
-                />{' '}
-                {selectedRowsState.reduce((pre, item) => pre + item.callNo, 0)}{' '}
-                <FormattedMessage id="pages.searchTable.tenThousand" defaultMessage="万" />
+                服务调用次数总计 {selectedRowsState.reduce((pre, item) => pre + item.callNo, 0)} 万
               </span>
             </div>
           }
@@ -250,19 +235,19 @@ const TableList: React.FC<{}> = () => {
               actionRef.current?.reloadAndRest?.();
             }}
           >
-            <FormattedMessage id="pages.searchTable.batchDeletion" defaultMessage="批量删除" />
-          </Button>
-          <Button type="primary">
-            <FormattedMessage id="pages.searchTable.batchApproval" defaultMessage="批量审批" />
+            批量删除
           </Button>
+          <Button type="primary">批量审批</Button>
         </FooterToolbar>
       )}
       <CreateForm onCancel={() => handleModalVisible(false)} modalVisible={createModalVisible}>
         <ProTable<TableListItem, TableListItem>
           onSubmit={async (value) => {
             const success = await handleAdd(value);
+
             if (success) {
               handleModalVisible(false);
+
               if (actionRef.current) {
                 actionRef.current.reload();
               }
@@ -277,9 +262,11 @@ const TableList: React.FC<{}> = () => {
         <UpdateForm
           onSubmit={async (value) => {
             const success = await handleUpdate(value);
+
             if (success) {
               handleUpdateModalVisible(false);
               setStepFormValues({});
+
               if (actionRef.current) {
                 actionRef.current.reload();
               }

+ 4 - 4
src/pages/Welcome.tsx

@@ -31,13 +31,13 @@ export default (): React.ReactNode => {
           }}
         />
         <Typography.Text strong>
-          <FormattedMessage id="pages.welcome.advancedComponent" defaultMessage="高级表格" />{' '}
+          高级表格{' '}
           <a
             href="https://procomponents.ant.design/components/table"
             rel="noopener noreferrer"
             target="__blank"
           >
-            <FormattedMessage id="pages.welcome.link" defaultMessage="欢迎使用" />
+            欢迎使用
           </a>
         </Typography.Text>
         <CodePreview>yarn add @ant-design/pro-table</CodePreview>
@@ -47,13 +47,13 @@ export default (): React.ReactNode => {
             marginBottom: 12,
           }}
         >
-          <FormattedMessage id="pages.welcome.advancedLayout" defaultMessage="高级布局" />{' '}
+          高级布局{' '}
           <a
             href="https://procomponents.ant.design/components/layout"
             rel="noopener noreferrer"
             target="__blank"
           >
-            <FormattedMessage id="pages.welcome.link" defaultMessage="欢迎使用" />
+            欢迎使用
           </a>
         </Typography.Text>
         <CodePreview>yarn add @ant-design/pro-layout</CodePreview>

+ 22 - 43
src/pages/user/login/index.tsx

@@ -8,15 +8,13 @@ import {
   WeiboCircleOutlined,
 } from '@ant-design/icons';
 import { Alert, Space, message, Tabs } from 'antd';
-
 import React, { useState } from 'react';
 import ProForm, { ProFormCaptcha, ProFormCheckbox, ProFormText } from '@ant-design/pro-form';
 import { useIntl, Link, history, FormattedMessage, SelectLang, useModel } from 'umi';
 import Footer from '@/components/Footer';
 import { fakeAccountLogin, getFakeCaptcha, LoginParamsType } from '@/services/login';
-
 import styles from './index.less';
-import {selectNavList} from "@/services/user";
+import { selectNavList } from '@/services/user';
 
 const LoginMessage: React.FC<{
   content: string;
@@ -30,15 +28,17 @@ const LoginMessage: React.FC<{
     showIcon
   />
 );
-
 /**
  * 此方法会跳转到 redirect 参数所在的位置
  */
+
 const goto = () => {
   if (!history) return;
   setTimeout(() => {
     const { query } = history.location;
-    const { redirect } = query as { redirect: string };
+    const { redirect } = query as {
+      redirect: string;
+    };
     history.push(redirect || '/');
   }, 10);
 };
@@ -48,11 +48,11 @@ const Login: React.FC<{}> = () => {
   const [userLoginState, setUserLoginState] = useState<API.LoginStateType>({});
   const [type, setType] = useState<string>('account');
   const { initialState, setInitialState } = useModel('@@initialState');
-
   const intl = useIntl();
 
   const fetchUserInfo = async () => {
     const userInfo = await initialState?.fetchUserInfo?.();
+
     if (userInfo) {
       setInitialState({
         ...initialState,
@@ -72,13 +72,14 @@ const Login: React.FC<{}> = () => {
             loading: false,
           },
         },
-        menuData:menuData.data,
+        menuData: menuData.data,
       });
     }
   };
 
   const handleSubmit = async (values: LoginParamsType) => {
     setSubmitting(true);
+
     try {
       // 登录
       await fakeAccountLogin({ ...values, type });
@@ -86,17 +87,18 @@ const Login: React.FC<{}> = () => {
       message.success('登录成功!');
       goto();
     } catch (error) {
-      console.log(error,'error')
-      // 如果失败去设置用户错误信息
+      console.log(error, 'error'); // 如果失败去设置用户错误信息
+
       setUserLoginState({
         status: 'error',
         type: 'account',
       });
     }
+
     setSubmitting(false);
   };
-  const { status, type: loginType } = userLoginState;
 
+  const { status, type: loginType } = userLoginState;
   return (
     <div className={styles.container}>
       <div className={styles.lang}>{SelectLang && <SelectLang />}</div>
@@ -176,12 +178,7 @@ const Login: React.FC<{}> = () => {
                   rules={[
                     {
                       required: true,
-                      message: (
-                        <FormattedMessage
-                          id="pages.login.username.required"
-                          defaultMessage="请输入用户名!"
-                        />
-                      ),
+                      message: '用户名是必填项!',
                     },
                   ]}
                 />
@@ -198,12 +195,7 @@ const Login: React.FC<{}> = () => {
                   rules={[
                     {
                       required: true,
-                      message: (
-                        <FormattedMessage
-                          id="pages.login.password.required"
-                          defaultMessage="请输入密码!"
-                        />
-                      ),
+                      message: '密码是必填项!',
                     },
                   ]}
                 />
@@ -226,21 +218,11 @@ const Login: React.FC<{}> = () => {
                   rules={[
                     {
                       required: true,
-                      message: (
-                        <FormattedMessage
-                          id="pages.login.phoneNumber.required"
-                          defaultMessage="请输入手机号!"
-                        />
-                      ),
+                      message: '手机号是必填项!',
                     },
                     {
                       pattern: /^1\d{10}$/,
-                      message: (
-                        <FormattedMessage
-                          id="pages.login.phoneNumber.invalid"
-                          defaultMessage="手机号格式错误!"
-                        />
-                      ),
+                      message: '不合法的手机号!',
                     },
                   ]}
                 />
@@ -271,19 +253,16 @@ const Login: React.FC<{}> = () => {
                   rules={[
                     {
                       required: true,
-                      message: (
-                        <FormattedMessage
-                          id="pages.login.captcha.required"
-                          defaultMessage="请输入验证码!"
-                        />
-                      ),
+                      message: '验证码是必填项!',
                     },
                   ]}
                   onGetCaptcha={async (mobile) => {
                     const result = await getFakeCaptcha(mobile);
+
                     if (result === false) {
                       return;
                     }
+
                     message.success('获取验证码成功!验证码为:1234');
                   }}
                 />
@@ -295,19 +274,19 @@ const Login: React.FC<{}> = () => {
               }}
             >
               <ProFormCheckbox noStyle name="remeber">
-                <FormattedMessage id="pages.login.rememberMe" defaultMessage="自动登录" />
+                自动登录
               </ProFormCheckbox>
               <a
                 style={{
                   float: 'right',
                 }}
               >
-                <FormattedMessage id="pages.login.forgotPassword" defaultMessage="忘记密码" />
+                忘记密码 ?
               </a>
             </div>
           </ProForm>
           <Space className={styles.other}>
-            <FormattedMessage id="pages.login.loginWith" defaultMessage="其他登录方式" />
+            其他登录方式 :
             <AlipayCircleOutlined className={styles.icon} />
             <TaobaoCircleOutlined className={styles.icon} />
             <WeiboCircleOutlined className={styles.icon} />