|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+import React, { Component } from 'react'
|
|
|
2
|
+
|
|
|
3
|
+class ExtandedAction extends Component {
|
|
|
4
|
+ render () {
|
|
|
5
|
+ return (
|
|
|
6
|
+ <div className='extandedaction dropdown'>
|
|
|
7
|
+ <button
|
|
|
8
|
+ className='extandedaction__button btn btn-outline-primary dropdown-toggle'
|
|
|
9
|
+ onClick={this.props.onClickStopEvent}
|
|
|
10
|
+ type='button'
|
|
|
11
|
+ id='dropdownMenuButton'
|
|
|
12
|
+ data-toggle='dropdown'
|
|
|
13
|
+ aria-haspopup='true'
|
|
|
14
|
+ aria-expanded='false'
|
|
|
15
|
+ >
|
|
|
16
|
+ <i className='fa fa-fw fa-ellipsis-h' />
|
|
|
17
|
+ </button>
|
|
|
18
|
+ <div className='extandedaction__subdropdown dropdown-menu' aria-labelledby='dropdownMenuButton'>
|
|
|
19
|
+ <div className='subdropdown__item dropdown-item d-flex align-items-center'>
|
|
|
20
|
+ <div className='subdropdown__item__icon mr-3'>
|
|
|
21
|
+ <i className='fa fa-fw fa-pencil' />
|
|
|
22
|
+ </div>
|
|
|
23
|
+ <div className='subdropdown__item__text'>
|
|
|
24
|
+ Modifier
|
|
|
25
|
+ </div>
|
|
|
26
|
+ </div>
|
|
|
27
|
+
|
|
|
28
|
+ <div className='subdropdown__item dropdown-item d-flex align-items-center'>
|
|
|
29
|
+ <div className='subdropdown__item__icon mr-3'>
|
|
|
30
|
+ <i className='fa fa-fw fa-arrows-alt' />
|
|
|
31
|
+ </div>
|
|
|
32
|
+ <div className='subdropdown__item__text'>
|
|
|
33
|
+ Déplacer
|
|
|
34
|
+ </div>
|
|
|
35
|
+ </div>
|
|
|
36
|
+
|
|
|
37
|
+ <div className='subdropdown__item dropdown-item d-flex align-items-center'>
|
|
|
38
|
+ <div className='subdropdown__item__icon mr-3'>
|
|
|
39
|
+ <i className='fa fa-fw fa-download' />
|
|
|
40
|
+ </div>
|
|
|
41
|
+ <div className='subdropdown__item__text'>
|
|
|
42
|
+ Télécharger
|
|
|
43
|
+ </div>
|
|
|
44
|
+ </div>
|
|
|
45
|
+
|
|
|
46
|
+ <div className='subdropdown__item dropdown-item d-flex align-items-center'>
|
|
|
47
|
+ <div className='subdropdown__item__icon mr-3'>
|
|
|
48
|
+ <i className='fa fa-fw fa-archive' />
|
|
|
49
|
+ </div>
|
|
|
50
|
+ <div className='subdropdown__item__text'>
|
|
|
51
|
+ Archiver
|
|
|
52
|
+ </div>
|
|
|
53
|
+ </div>
|
|
|
54
|
+
|
|
|
55
|
+ <div className='subdropdown__item dropdown-item d-flex align-items-center'>
|
|
|
56
|
+ <div className='subdropdown__item__icon mr-3'>
|
|
|
57
|
+ <i className='fa fa-fw fa-trash-o' />
|
|
|
58
|
+ </div>
|
|
|
59
|
+ <div className='subdropdown__item__text'>
|
|
|
60
|
+ Supprimer
|
|
|
61
|
+ </div>
|
|
|
62
|
+ </div>
|
|
|
63
|
+
|
|
|
64
|
+ </div>
|
|
|
65
|
+ </div>
|
|
|
66
|
+ )
|
|
|
67
|
+ }
|
|
|
68
|
+}
|
|
|
69
|
+
|
|
|
70
|
+export default ExtandedAction
|