CommitPlane.qml 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. import QtQuick 2.0
  2. import QtQuick.Controls 1.4
  3. Item {
  4. id: root
  5. property QtObject commit: null
  6. property QtObject diff: null
  7. onCommitChanged: {
  8. if(commit != null) {
  9. diff = commit.diff
  10. } else {
  11. diff = null
  12. }
  13. }
  14. QtObject {
  15. id: d
  16. property int viewportMargins: 20
  17. property int commitInfoWidth: 400
  18. property QtObject diffModel: null
  19. }
  20. CommitInfo {
  21. id: commitInfo
  22. anchors.top: parent.top
  23. anchors.left: parent.left
  24. anchors.leftMargin: 20
  25. width: d.commitInfoWidth
  26. }
  27. DiffFiles {
  28. id: files
  29. diff: root.diff
  30. anchors.top: arrow.bottom
  31. anchors.topMargin: -10
  32. anchors.bottom: parent.bottom
  33. anchors.left: parent.left
  34. anchors.leftMargin: 20
  35. width: d.commitInfoWidth
  36. onOpenDiff: {
  37. d.diffModel = diff.model(file)
  38. }
  39. }
  40. FlickPagerArrow {
  41. id: arrow
  42. anchors.top: commitInfo.bottom
  43. source: commitInfo.state === "opened" ? "arrow-141-16" : "arrow-203-16"
  44. active: true
  45. anchors.left: commitInfo.left
  46. anchors.right: commitInfo.right
  47. onClicked: {
  48. commitInfo.state = commitInfo.state === "opened" ? "closed" : "opened"
  49. }
  50. gradient: Gradient {
  51. GradientStop { position: 0.0; color: "#00ffffff" }
  52. GradientStop { position: 0.2; color: "#ffffffff" }
  53. GradientStop { position: 0.8; color: "#ffffffff" }
  54. GradientStop { position: 1.0; color: "#00ffffff" }
  55. }
  56. }
  57. Text {
  58. id: currentFileName
  59. text: qsTr("Diff for ") + (d.diffModel ? d.diffModel.path : "")
  60. anchors.top: parent.top
  61. anchors.left: files.right
  62. anchors.leftMargin: 40
  63. font.weight: Font.Bold
  64. }
  65. ScrollView {
  66. id: diffViewport
  67. anchors.top: topDecor.bottom
  68. anchors.bottom: bottomDecor.top
  69. anchors.left: files.right
  70. anchors.leftMargin: 20
  71. anchors.right: parent.right
  72. anchors.topMargin: -10
  73. anchors.bottomMargin: -10
  74. __wheelAreaScrollSpeed:30
  75. clip: true
  76. Item {
  77. id: innerItem
  78. width: fileDiff.contentWidth
  79. height: fileDiff.contentHeight + 20
  80. Text {
  81. id: fileDiff
  82. text: d.diffModel ? d.diffModel.data : ""
  83. anchors.top: parent.top
  84. anchors.topMargin: 10
  85. font.family: "Inconsolata"
  86. font.pointSize: 12
  87. }
  88. }
  89. }
  90. onDiffChanged: {
  91. d.diffModel = null
  92. }
  93. Rectangle {
  94. id: topDecor
  95. anchors.right: diffViewport.right
  96. anchors.left: diffViewport.left
  97. anchors.top: currentFileName.bottom
  98. height: d.viewportMargins
  99. gradient: Gradient {
  100. GradientStop { position: 0.0; color: "#ffffffff" }
  101. GradientStop { position: 0.7; color: "#ffffffff" }
  102. GradientStop { position: 1.0; color: "#00ffffff" }
  103. }
  104. }
  105. Rectangle {
  106. id: bottomDecor
  107. anchors.right: diffViewport.right
  108. anchors.left: diffViewport.left
  109. anchors.bottom: parent.bottom
  110. height: d.viewportMargins
  111. gradient: Gradient {
  112. GradientStop { position: 0.0; color: "#00ffffff" }
  113. GradientStop { position: 0.3; color: "#ffffffff" }
  114. GradientStop { position: 1.0; color: "#ffffffff" }
  115. }
  116. }
  117. AreaPlaceholder {
  118. anchors.fill: diffViewport
  119. active: fileDiff.text == ""
  120. visible: diff != null
  121. text: "Select file on side panel"
  122. }
  123. AreaPlaceholder {
  124. active: diff == null
  125. text: "Select commit in graph"
  126. }
  127. }