CommitPlane.qml 3.9 KB

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