jam411 3 лет назад
Родитель
Сommit
871cd0a19e
1 измененных файлов с 81 добавлено и 61 удалено
  1. 81 61
      packages/app/src/components/Admin/Users/ExternalAccountTable.tsx

+ 81 - 61
packages/app/src/components/Admin/Users/ExternalAccountTable.tsx

@@ -33,68 +33,88 @@ const ExternalAccountTable = (props: ExternalAccountTableProps): JSX.Element =>
   }, [adminExternalAccountsContainer, t]);
 
   return (
-    <table className={`${styles['ea-table']} table table-bordered table-user-list`}>
-      <thead>
-        <tr>
-          <th style={{ width: '140px' }}>{t('user_management.authentication_provider')}</th>
-          <th style={{ width: '390px' }}><code>accountId</code></th>
-          <th style={{ width: '390px' }}>{t('user_management.related_username')}<code>username</code></th>
-          <th style={{ width: '160px' }}>
-            {t('user_management.password_setting')}
-            {/* TODO: Enable popper */}
-            <span
-              role="button"
-              className="text-muted px-2"
-              data-toggle="popper"
-              data-placement="top"
-              data-trigger="hover"
-              data-html="true"
-              title={t('user_management.password_setting_help')}
-            >
-              <small><i className="icon-question" aria-hidden="true"></i></small>
-            </span>
-          </th>
-          <th style={{ width: '140px' }}>{t('Created')}</th>
-          <th style={{ width: '70px' }}></th>
-        </tr>
-      </thead>
-      <tbody>
-        { adminExternalAccountsContainer.state.externalAccounts.map((ea: IAdminExternalAccount) => {
-          return (
-            <tr key={ea._id}>
-              <td><span>{ea.providerType}</span></td>
-              <td><strong>{ea.accountId}</strong></td>
-              <td><strong>{ea.user.username}</strong></td>
-              <td>
-                {ea.user.password
-                  ? (<span className="badge badge-info">{t('user_management.set')}</span>)
-                  : (<span className="badge badge-warning">{t('user_management.unset')}</span>)
-                }
-              </td>
-              <td><span>{dateFnsFormat(new Date(ea.createdAt), 'yyyy-MM-dd')}</span></td>
-              <td>
-                <div className="btn-group admin-user-menu">
-                  <button type="button" className="btn btn-outline-secondary btn-sm dropdown-toggle" data-toggle="dropdown">
-                    <i className="icon-settings"></i> <span className="caret"></span>
-                  </button>
-                  <ul className="dropdown-menu" role="menu">
-                    <li className="dropdown-header">{t('user_management.user_table.edit_menu')}</li>
-                    <button
-                      className="dropdown-item"
-                      type="button"
-                      role="button"
-                      onClick={() => removeExtenalAccount(ea._id)}
-                    >
-                      <i className="icon-fw icon-fire text-danger"></i> {t('Delete')}
+    <div className="table-responsive text-nowrap h-100">
+      <table className={`${styles['ea-table']} table table-bordered table-user-list`}>
+        <thead>
+          <tr>
+            <th style={{ width: '100px' }}>
+              <div className="d-flex align-items-center">
+                {t('user_management.authentication_provider')}
+              </div>
+            </th>
+            <th style={{ width: '200px' }}>
+              <div className="d-flex align-items-center">
+                <code>accountId</code>
+              </div>
+            </th>
+            <th style={{ width: '200px' }}>
+              <div className="d-flex align-items-center">
+                {t('user_management.related_username')}<code className="ml-2">username</code>
+              </div>
+            </th>
+            <th style={{ width: '100px' }}>
+              <div className="d-flex align-items-center">
+                {t('user_management.password_setting')}
+                {/* TODO: Enable popper */}
+                <span
+                  role="button"
+                  className="text-muted mx-2"
+                  data-toggle="popper"
+                  data-placement="top"
+                  data-trigger="hover"
+                  data-html="true"
+                  title={t('user_management.password_setting_help')}
+                >
+                  <small><i className="icon-question" aria-hidden="true"></i></small>
+                </span>
+              </div>
+            </th>
+            <th style={{ width: '100px' }}>
+              <div className="d-flex align-items-center">
+                {t('Created')}
+              </div>
+            </th>
+            <th style={{ width: '70px' }}></th>
+          </tr>
+        </thead>
+        <tbody>
+          { adminExternalAccountsContainer.state.externalAccounts.map((ea: IAdminExternalAccount) => {
+            return (
+              <tr key={ea._id}>
+                <td><span>{ea.providerType}</span></td>
+                <td><strong>{ea.accountId}</strong></td>
+                <td><strong>{ea.user.username}</strong></td>
+                <td>
+                  {ea.user.password
+                    ? (<span className="badge badge-info">{t('user_management.set')}</span>)
+                    : (<span className="badge badge-warning">{t('user_management.unset')}</span>)
+                  }
+                </td>
+                <td>{dateFnsFormat(new Date(ea.createdAt), 'yyyy-MM-dd')}</td>
+                <td>
+                  <div className="btn-group admin-user-menu">
+                    <button type="button" className="btn btn-outline-secondary btn-sm dropdown-toggle" data-toggle="dropdown">
+                      <i className="icon-settings"></i> <span className="caret"></span>
                     </button>
-                  </ul>
-                </div>
-              </td>
-            </tr>
-          );
-        }) }
-      </tbody>
-    </table>
+                    <ul className="dropdown-menu" role="menu">
+                      <li className="dropdown-header">{t('user_management.user_table.edit_menu')}</li>
+                      <button
+                        className="dropdown-item"
+                        type="button"
+                        role="button"
+                        onClick={() => removeExtenalAccount(ea._id)}
+                      >
+                        <i className="icon-fw icon-fire text-danger"></i> {t('Delete')}
+                      </button>
+                    </ul>
+                  </div>
+                </td>
+              </tr>
+            );
+          }) }
+        </tbody>
+      </table>
+    </div>
   );
 };