content.py 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277
  1. #!/usr/bin/python
  2. # -*- coding: utf-8 -*-
  3. import sys, os
  4. from PyQt5 import QtCore
  5. from PyQt5.QtCore import QSettings
  6. from PyQt5.QtGui import QFont, QSyntaxHighlighter, QKeySequence
  7. from PyQt5.QtWidgets import QWidget, QLabel, QHBoxLayout, QVBoxLayout, QSplitter, QListWidget, QListWidgetItem, QAbstractItemView, QButtonGroup, QPushButton, QInputDialog, QPlainTextEdit, QTextEdit,QShortcut
  8. import markdown2
  9. import re
  10. import json
  11. # _____
  12. # / ___/__ ______ ___ ____ ___ ____ ________ __
  13. # \__ \/ / / / __ `__ \/ __ `__ \/ __ `/ ___/ / / /
  14. # ___/ / /_/ / / / / / / / / / / / /_/ / / / /_/ /
  15. # /____/\__,_/_/ /_/ /_/_/ /_/ /_/\__,_/_/ \__, /
  16. # /____/
  17. class Summary(QWidget):
  18. def __init__(self, parent):
  19. super(Summary, self).__init__(parent)
  20. self.parent = parent
  21. self.jsonfilepath = os.path.join(self.parent.core.cwd,'.config/summary.json')
  22. sum_json = open(self.jsonfilepath).read()
  23. self.sum = json.loads(sum_json)
  24. vbox = QVBoxLayout()
  25. vbox.setContentsMargins(0,0,0,0)
  26. self.list = SummaryList(self)
  27. vbox.addWidget(self.list)
  28. self.actions = SummaryActions(self)
  29. vbox.addWidget(self.actions)
  30. self.setLayout(vbox)
  31. def addItem(self, text):
  32. # file
  33. filename = re.sub(r'\W', "_", text)+".md"
  34. # TODO: check if file does not already exists
  35. filepath = os.path.join(self.core.cwd,'contents',filename)
  36. with open(filepath, 'w') as fp:
  37. fp.write('#'+text)
  38. # json
  39. item = {"title":text,"file":filename}
  40. self.sum.append(item)
  41. with open(self.jsonfilepath, "w") as fp:
  42. json.dump(self.sum, fp, ensure_ascii=False, indent="\t")
  43. # refresh list
  44. self.list.addNewItem(item)
  45. def recordNewList(self):
  46. newdata = []
  47. for i in range(0,self.list.count()):
  48. # print(self.item(i).item['title'])
  49. newdata.append(self.list.item(i).item)
  50. # print(newdata)
  51. self.sum = newdata
  52. with open(self.jsonfilepath, "w") as fp:
  53. json.dump(newdata, fp, ensure_ascii=False, indent="\t")
  54. class SummaryList(QListWidget):
  55. def __init__(self, parent):
  56. super(SummaryList, self).__init__(parent)
  57. self.parent = parent
  58. # self.sum = sum
  59. # print(self.sum)
  60. # self.setSortingEnabled(True)
  61. self.setDragEnabled(True)
  62. self.setSelectionMode(QAbstractItemView.SingleSelection)
  63. self.setAcceptDrops(True)
  64. self.setDropIndicatorShown(True)
  65. self.setDragDropMode(QAbstractItemView.InternalMove)
  66. self.model().rowsMoved.connect(self.onRowsMoved)
  67. # print(self.model())
  68. self.itemActivated.connect(self.onItemActivated)
  69. # add markdown files to the list
  70. for itemdata in self.parent.sum:
  71. self.addNewItem(itemdata)
  72. # self.setCurrentRow(0)
  73. # self.setCurrentIndex()
  74. # self.setCurrentItem()
  75. self.item(0).setSelected(True)
  76. # TODO: activate first item by default as it will open it with editor
  77. # TODO: show activated item on the list
  78. # TODO: show modifed item on the list
  79. def onRowsMoved(self, model, start, end, dest):
  80. # print("onRowsMoved")
  81. self.parent.recordNewList()
  82. def addNewItem(self, item):
  83. self.addItem(SummaryListWidgetItem(self,item))
  84. def onItemActivated(self, item):
  85. # print('onItemActivated', item.data)
  86. self.parent.parent.editor.openFile()
  87. class SummaryListWidgetItem(QListWidgetItem):
  88. def __init__(self,parent,data):
  89. super(SummaryListWidgetItem, self).__init__(parent)
  90. self.parent = parent
  91. self.data = data
  92. self.setText(data['title'])
  93. self.setToolTip(data['file'])
  94. class SummaryActions(QWidget):
  95. def __init__(self,parent):
  96. super(SummaryActions, self).__init__(parent)
  97. self.parent = parent
  98. self.hbox = QHBoxLayout()
  99. self.hbox.setContentsMargins(0,0,0,0)
  100. new = QPushButton("New Page", self)
  101. new.setShortcut('Ctrl+Shift+n')
  102. # new.setIcon(Icon(ico)))
  103. new.clicked.connect(self.onAddPage)
  104. self.hbox.addWidget(new)
  105. delete = QPushButton("Delete Page", self)
  106. delete.setShortcut('Ctrl+Shift+sup')
  107. # delete.setIcon(Icon(ico)))
  108. delete.clicked.connect(self.onDeletePage)
  109. self.hbox.addWidget(delete)
  110. self.setLayout(self.hbox)
  111. def onAddPage(self):
  112. text, ok = QInputDialog.getText(self, 'Input Dialog', 'Page Name:')
  113. if ok:
  114. self.parent.addItem(text)
  115. def onDeletePage(self):
  116. print("onDeletePage")
  117. # TODO: get the current selected page
  118. # TODO: ask for confirmation for deleting the current selecred page
  119. # TODO: call for summary widget to delete the page
  120. # ______ ___ __
  121. # / ____/___/ (_) /_____ _____
  122. # / __/ / __ / / __/ __ \/ ___/
  123. # / /___/ /_/ / / /_/ /_/ / /
  124. # /_____/\__,_/_/\__/\____/_/
  125. class MarkdownEditor(QWidget):
  126. def __init__(self,parent):
  127. super(MarkdownEditor, self).__init__(parent)
  128. self.parent = parent
  129. self.changed = False
  130. self.hbox = QHBoxLayout()
  131. self.hbox.setContentsMargins(0,0,0,0)
  132. self.styles = """
  133. background-color:white;
  134. color:black;
  135. padding:20px;
  136. """
  137. self.editor = QPlainTextEdit(self)
  138. self.editor.setStyleSheet(self.styles)
  139. self.hbox.addWidget(self.editor)
  140. self.viewer = QTextEdit(self)
  141. self.viewer.setReadOnly(True)
  142. self.viewer.setStyleSheet(self.styles)
  143. # TODO: show all html blocks on viewer
  144. self.hbox.addWidget(self.viewer)
  145. self.setLayout(self.hbox)
  146. self.editor.textChanged.connect(self.onTextChanged)
  147. self.openFile()
  148. self.shortcut = QShortcut(QKeySequence("Ctrl+s"), self)
  149. self.shortcut.activated.connect(self.save)
  150. self.refreshViewer()
  151. def openFile(self):
  152. # print("openFile")
  153. sumlist = self.parent.summary.list
  154. currentitem = sumlist.currentItem()
  155. if currentitem:
  156. if not self.changed:
  157. self.editor.textChanged.disconnect(self.onTextChanged)
  158. filename = currentitem.data['file']
  159. self.file = os.path.join(self.parent.core.cwd,'contents',filename)
  160. self.editor.clear()
  161. self.editor.insertPlainText(open(self.file, 'r').read())
  162. self.refreshViewer()
  163. self.editor.textChanged.connect(self.onTextChanged)
  164. else:
  165. print("Can't changed file, current id modified, please save first")
  166. # TODO: ask for saving current file
  167. def onTextChanged(self):
  168. self.refreshViewer()
  169. if not self.changed:
  170. self.changed = True
  171. # i = self.tabs.currentIndex()
  172. # self.tabs.setTabText(i, "* "+self.tabs.tabText(i))
  173. def refreshViewer(self):
  174. markdown = self.editor.toPlainText()
  175. html = markdown2.markdown(markdown)
  176. self.viewer.setHtml(html)
  177. def save(self):
  178. if self.changed:
  179. open(self.file, 'w').write(self.editor.toPlainText())
  180. self.changed = False
  181. # i = self.tabs.currentIndex()
  182. # self.tabs.setTabText(i, re.sub(r'^\*\s', '', self.tabs.tabText(i)))
  183. # TODO: how to combine file save and project save
  184. # __ ___ _
  185. # / |/ /___ _(_)___
  186. # / /|_/ / __ `/ / __ \
  187. # / / / / /_/ / / / / /
  188. # /_/ /_/\__,_/_/_/ /_/
  189. class ContentStack(QWidget):
  190. def __init__(self, core):
  191. super(ContentStack, self).__init__()
  192. self.core = core
  193. hbox = QHBoxLayout()
  194. hbox.setContentsMargins(0,0,0,0)
  195. self.setLayout(hbox)
  196. self.hsplitter = QSplitter(QtCore.Qt.Horizontal)
  197. self.summary = Summary(self)
  198. # TODO: detect external changes (file changed or new file)
  199. self.hsplitter.addWidget(self.summary)
  200. self.editor = MarkdownEditor(self)
  201. self.hsplitter.addWidget(self.editor)
  202. self.hsplitter.splitterMoved.connect(self.movedSplitter)
  203. hbox.addWidget(self.hsplitter)
  204. self.restorePrefs()
  205. def restorePrefs(self):
  206. settings = QSettings('FiguresLibres', 'Cascade')
  207. vals = settings.value('content/hsplitter/sizes', None)
  208. if vals:
  209. sizes = []
  210. for size in vals: sizes.append(int(size))
  211. self.hsplitter.setSizes(sizes)
  212. def movedSplitter(self):
  213. settings = QSettings('FiguresLibres', 'Cascade')
  214. # print(self.hsplitter.sizes())
  215. settings.setValue('content/hsplitter/sizes', self.hsplitter.sizes())