ActionSheet 动作面板

定义/Definition

操作列表展示了与用户触发的操作直接相关的一系列选项。

规则 / Rule

  • 由用户某个操作行为触发

  • 包含两个或以上的按钮

使用操作列表来:
  • 提供完成一项任务的不同方法。操作列表提供一系列在当前情景下可以完成当前任务的操作,而这样的形式不会永久占用页面UI的空间。

  • 在用户完成一项可能有风险的操作前获得用户的确认。操作列表让用户有机会停下来充分考虑当前操作可能导致的危险结果,并为他们提供了一些其它的选项。

  • 越靠近列表顶部的操作越容易引起用户注意。潜在风险的操作离列表底部越远,用户在操作的时候就越不容易误点它。使用红色文字来表示可能存在破坏性的操作,且在操作列表的底部使用。

  • 避免让用户滚动操作列表。如果你的操作列表中存在过多按钮,用户必须要滚动才能看完所有操作。这样的体验是可能让用户不安,因为他们要花更多的时间来充分理解每个选项的区别。此外,用户在滚动的过程中将很有可能误点其它按钮。

  • 分享渠道icon是否出现,由用户手机是否安装对齐APP决定。

  • 当分享渠道过多,可横向滚动查看更多。

代码演示

基本

  1. import { ActionSheet, Button } from 'antd-mobile';
  2. const Test = React.createClass({
  3. getInitialState() {
  4. return {
  5. clicked: 'none',
  6. clicked1: 'none',
  7. BUTTONS: [
  8. '操作 0',
  9. '操作 1',
  10. '操作 2',
  11. '删除',
  12. '取消',
  13. ],
  14. icons: [
  15. {
  16. icon: <img src="https://os.alipayobjects.com/rmsportal/zfQfLxUmXfgWech.png" style={{
  17. height: 27,
  18. verticalAlign: 'top',
  19. }} />,
  20. title: '支付宝',
  21. },
  22. {
  23. icon: <img src="https://os.alipayobjects.com/rmsportal/pTINxOHGLBxzEAG.png" style={{
  24. height: 27,
  25. verticalAlign: 'top',
  26. }} />,
  27. title: '微信好友',
  28. },
  29. {
  30. icon: <img src="https://os.alipayobjects.com/rmsportal/VMjNbIuafpXfjQE.png" style={{
  31. height: 27,
  32. verticalAlign: 'top',
  33. }} />,
  34. title: 'QQ',
  35. },
  36. { iconName: 'android', title: '用Android' },
  37. { iconName: 'apple', title: '用Apple' },
  38. ],
  39. };
  40. },
  41. showActionSheet() {
  42. const BUTTONS = this.state.BUTTONS;
  43. ActionSheet.showActionSheetWithOptions({
  44. options: BUTTONS,
  45. cancelButtonIndex: BUTTONS.length - 1,
  46. destructiveButtonIndex: BUTTONS.length - 2,
  47. // title: '标题',
  48. message: '我是描述我是描述',
  49. maskClosable: true,
  50. },
  51. (buttonIndex) => {
  52. this.setState({ clicked: BUTTONS[buttonIndex] });
  53. });
  54. },
  55. showShareActionSheet() {
  56. const icons = this.state.icons;
  57. ActionSheet.showShareActionSheetWithOptions({
  58. options: icons,
  59. title: '标题',
  60. message: '我是描述我是描述',
  61. },
  62. (buttonIndex) => {
  63. this.setState({ clicked1: icons[buttonIndex].title });
  64. });
  65. },
  66. showActionSheetWithCustom() {
  67. ActionSheet.showActionSheetWithCustom({
  68. title: '自定义 ActionSheet',
  69. message: '我是描述我是描述',
  70. component: <div style={{ color: 'red', padding: 20 }}>
  71. 自定义内容 &nbsp;
  72. <Button inline size="small" onClick={() => ActionSheet.close()}>关闭</Button>
  73. </div>,
  74. });
  75. },
  76. render() {
  77. return (<div style={{ margin: '0 8px' }}>
  78. <div style={{ margin: '32px 0' }}>
  79. {/* <p className="demo-p">默认状态操作列表</p> */}
  80. <div style={{ padding: '8px 0' }}>
  81. <Button type="primary" onClick={this.showActionSheet}>默认状态操作列表</Button>
  82. </div>
  83. <p className="demo-p">点击过的按钮: &nbsp;
  84. <span style={{ color: '#222' }}>{this.state.clicked}</span>
  85. </p>
  86. </div>
  87. <div style={{ margin: '32px 0' }}>
  88. <div style={{ padding: '8px 0' }}>
  89. <Button type="primary" onClick={this.showShareActionSheet}>带分享功能的操作列表</Button>
  90. </div>
  91. </div>
  92. <div style={{ margin: '32px 0' }}>
  93. <div style={{ padding: '8px 0' }}>
  94. <Button type="primary" onClick={this.showActionSheetWithCustom}>自定义的操作列表</Button>
  95. </div>
  96. </div>
  97. </div>);
  98. },
  99. });
  100. ReactDOM.render(<Test />, mountNode);

ActionSheet动作面板 - 图1

API

static showActionSheetWithOptions(options: Object, callback: Function)

options对象必须包含以下的一个或者多个:

  • options (array of strings) - 按钮标题列表 (required)

  • cancelButtonIndex (int) - 按钮列表中取消按钮的索引位置

  • destructiveButtonIndex (int) - 按钮列表中破坏性按钮(一般为删除)的索引位置

  • title (string) - 顶部标题

  • message (string/React.element) - 顶部标题下的简要消息

  • maskClosable (bool) - 点击蒙层是否允许关闭,默认允许

static showShareActionSheetWithOptions(options: Object, callback: Function)

options对象必须包含以下的一个或者多个:

  • options (array of {icon:React.element, iconName:string, title:string}) - 分享按钮列表 (required),注意:iconName为antm-icon里的某一个icon的名字,优先级高于icon设置(icon用于设置自己特有的icon内容)

  • title (string) - 顶部标题

  • message (string/React.element) - 顶部标题下的简要消息

  • maskClosable (bool) - 点击蒙层是否允许关闭,默认允许

static showActionSheetWithCustom(options: Object, callback: Function)

web only

options对象必须包含以下的一个或者多个:

  • title (string) - 顶部标题

  • message (string/React.element) - 顶部标题下的简要消息

  • component - 自定义的任何组件

  • maskClosable (bool) - 点击蒙层是否允许关闭,默认允许

static close()

web only

programmatically close.