notification.tsx 1.68 KB
Newer Older
duanledexianxianxian's avatar
duanledexianxianxian committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
import { List, Switch } from 'antd';
import React, { Component, Fragment } from 'react';

import { formatMessage } from 'umi-plugin-react/locale';

type Unpacked<T> = T extends (infer U)[] ? U : T;

class NotificationView extends Component {
  getData = () => {
    const Action = (
      <Switch
        checkedChildren={formatMessage({ id: 'account-settings.settings.open' })}
        unCheckedChildren={formatMessage({ id: 'account-settings.settings.close' })}
        defaultChecked
      />
    );
    return [
      {
        title: formatMessage({ id: 'account-settings.notification.password' }, {}),
20 21 22 23
        description: formatMessage(
          { id: 'account-settings.notification.password-description' },
          {},
        ),
duanledexianxianxian's avatar
duanledexianxianxian committed
24 25 26 27
        actions: [Action],
      },
      {
        title: formatMessage({ id: 'account-settings.notification.messages' }, {}),
28 29 30 31
        description: formatMessage(
          { id: 'account-settings.notification.messages-description' },
          {},
        ),
duanledexianxianxian's avatar
duanledexianxianxian committed
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
        actions: [Action],
      },
      {
        title: formatMessage({ id: 'account-settings.notification.todo' }, {}),
        description: formatMessage({ id: 'account-settings.notification.todo-description' }, {}),
        actions: [Action],
      },
    ];
  };

  render() {
    const data = this.getData();
    return (
      <Fragment>
        <List<Unpacked<typeof data>>
          itemLayout="horizontal"
          dataSource={data}
          renderItem={item => (
            <List.Item actions={item.actions}>
              <List.Item.Meta title={item.title} description={item.description} />
            </List.Item>
          )}
        />
      </Fragment>
    );
  }
}

export default NotificationView;