edit_article.html 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452
  1. {% load static %}
  2. <!DOCTYPE html>
  3. <html lang="en">
  4. <head>
  5. <meta charset="UTF-8">
  6. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  7. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  8. <title>编辑文章</title>
  9. <link href="https://cdn.bootcdn.net/ajax/libs/normalize/8.0.1/normalize.min.css" rel="stylesheet">
  10. <!-- <link href="https://cdn.jsdelivr.net/npm/@wangeditor/editor@latest/dist/css/style.css" rel="stylesheet"> -->
  11. <link href="https://unpkg.com/@wangeditor/editor@latest/dist/css/style.css" rel="stylesheet">
  12. <link href="{% static 'tags-input/jquery.tagsinput.min.css' %}" rel="stylesheet">
  13. <link href="{% static 'tags-input/jquery-ui.min.css' %}" rel="stylesheet">
  14. <link href="{% static 'semantic.min.css' %}" type="text/css" rel="stylesheet">
  15. <style>
  16. .ui-autocomplete {
  17. position: absolute;
  18. z-index: 100000;
  19. cursor: default;
  20. padding: 0;
  21. margin-top: 2px;
  22. list-style: none;
  23. background-color: #ffffff;
  24. border: 1px solid #ccc;
  25. -webkit-border-radius: 5px;
  26. -moz-border-radius: 5px;
  27. border-radius: 5px;
  28. -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  29. -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  30. box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  31. }
  32. .ui-autocomplete > li {
  33. padding: 3px 20px;
  34. }
  35. .ui-autocomplete > li.ui-state-focus {
  36. background-color: #DDD;
  37. }
  38. .ui-helper-hidden-accessible {
  39. display: none;
  40. }
  41. html,
  42. body {
  43. background-color: #fff;
  44. height: 100%;
  45. overflow: hidden;
  46. color: #333;
  47. }
  48. #top-container {
  49. border-bottom: 1px solid #e8e8e8;
  50. padding-left: 30px;
  51. }
  52. #editor-toolbar {
  53. width: 1350px;
  54. background-color: #FCFCFC;
  55. margin: 0 auto;
  56. }
  57. #content {
  58. height: calc(100% - 40px);
  59. background-color: rgb(245, 245, 245);
  60. overflow-y: auto;
  61. position: relative;
  62. }
  63. #editor-container {
  64. width: 850px;
  65. margin: 30px auto 150px auto;
  66. background-color: #fff;
  67. padding: 20px 50px 50px 50px;
  68. border: 1px solid #e8e8e8;
  69. box-shadow: 0 2px 10px rgb(0 0 0 / 12%);
  70. }
  71. #title-container {
  72. padding: 20px 0;
  73. border-bottom: 1px solid #e8e8e8;
  74. }
  75. #title-container input {
  76. font-size: 30px;
  77. border: 0;
  78. outline: none;
  79. width: 100%;
  80. line-height: 1;
  81. }
  82. #editor-text-area {
  83. min-height: 900px;
  84. margin-top: 20px;
  85. }
  86. #tags_tag {
  87. border: 0;
  88. padding: 6px;
  89. height: 100%;
  90. }
  91. </style>
  92. </head>
  93. <body>
  94. <div id="top-container" style="padding-left: 6px;">
  95. <p style="text-align:right;padding: 2px;">
  96. <textarea hidden="hidden" id="html_text">{{ article.html_text }}</textarea>
  97. <a class="ui button secondary mini" href="/management/article"><i class="angle left icon"></i>返回</a>
  98. <a class="ui button youtube mini" id="restore" onclick="restore()"><i class="trash alternate icon"></i>恢复</a>
  99. <a class="ui button primary mini" onclick="submit(-1)"><i class="send icon"></i>发布更新</a>
  100. </p>
  101. </div>
  102. <div style="border-bottom: 1px solid #e8e8e8;">
  103. <div id="editor-toolbar"></div>
  104. </div>
  105. <div id="content">
  106. <div id="editor-container">
  107. <div id="title-container">
  108. <input id="page_title" value="{{ article.title }}" placeholder="标题">
  109. </div>
  110. <div id="editor-text-area"></div>
  111. </div>
  112. </div>
  113. <div class="ui longer modal">
  114. <div class="header">
  115. 额外信息
  116. </div>
  117. <div class="scrolling content">
  118. <div class="description">
  119. <form onsubmit="return false" id="article_form" method="post" class="ui form">
  120. {% csrf_token %}
  121. <div class="field">
  122. <label>标题</label>
  123. <div class="field">
  124. <input readonly value="{{ article.title }}" type="text" id="title" name="title"
  125. placeholder="标题">
  126. </div>
  127. </div>
  128. <div class="field">
  129. <label>摘要</label>
  130. <textarea type="text" name="intro"
  131. placeholder="摘要">{{ article.intro }}</textarea>
  132. </div>
  133. <div class="field">
  134. <div class="fields">
  135. <div class="field">
  136. <label>栏目</label>
  137. <select name="category" class="ui dropdown">
  138. {% for item in category %}
  139. {% if item.id == article.category %}
  140. <option selected value="{{ item.id }}">{{ item.name }}</option>
  141. {% else %}
  142. <option value="{{ item.id }}">{{ item.name }}</option>
  143. {% endif %}
  144. {% endfor %}
  145. </select>
  146. </div>
  147. <div class="field">
  148. <label>置顶</label>
  149. <select name="is_top" class="ui dropdown">
  150. {% if 1 == article.is_top %}
  151. <option selected value="1">YES</option>
  152. <option value="0">NO</option>
  153. {% else %}
  154. <option value="1">YES</option>
  155. <option selected value="0">NO</option>
  156. {% endif %}
  157. </select>
  158. </div>
  159. </div>
  160. </div>
  161. <div class="field">
  162. <label>标签</label>
  163. <div class="fields">
  164. <div class="sixteen wide field">
  165. <input name="tags" id="tags" value="{{ tags }}"/>
  166. </div>
  167. </div>
  168. </div>
  169. </form>
  170. </div>
  171. </div>
  172. <div class="actions">
  173. <div onclick="submit(1)" class="ui primary approve button">
  174. 发布
  175. </div>
  176. <div onclick="submit(0)" class="ui secondary approve button">
  177. 保存草稿
  178. </div>
  179. </div>
  180. </div>
  181. <!-- 显示内容 -->
  182. <script src="{% static 'js/jquery.min.js' %}"></script>
  183. <script src="{% static 'semantic.js' %}"></script>
  184. <script src="{% static 'tags-input/jquery-ui.min.js' %}"></script>
  185. <script src="{% static 'tags-input/jquery.tagsinput.min.js' %}"></script>
  186. <!-- <script src="https://cdn.jsdelivr.net/npm/@wangeditor/editor@latest/dist/index.min.js"></script> -->
  187. <script src="https://unpkg.com/@wangeditor/editor@latest/dist/index.js"></script>
  188. <script>
  189. $(document).on("keydown", "form", function (event) {
  190. return event.key != "Enter";
  191. });
  192. const E = window.wangEditor
  193. // 切换语言
  194. const LANG = location.href.indexOf('lang=en') > 0 ? 'en' : 'zh-CN'
  195. E.i18nChangeLanguage(LANG)
  196. const imageToHtmlConf = {
  197. type: 'image',
  198. elemToHtml: function imageToHtml(elemNode) {
  199. const {src, alt, href = '', style = {}, width, height} = elemNode || {}
  200. if (alt === undefined || alt === null || alt === '') {
  201. return `<img src="${src}" alt="${alt}">`
  202. } else {
  203. return `<img alt="${alt}" src="${src}"/>`
  204. }
  205. }
  206. };
  207. const editorConfig = {
  208. placeholder: 'Type here...',
  209. scroll: false, // 禁止编辑器滚动
  210. MENU_CONF: {
  211. fontFamily: {
  212. fontFamilyList: [
  213. {
  214. name: '宋体',
  215. value: 'SimSun'
  216. }, {
  217. name: '黑体',
  218. value: 'SimHei'
  219. }, {
  220. name: '微软雅黑',
  221. value: 'Microsoft Yahei'
  222. }, {
  223. name: '微软正黑体',
  224. value: 'Microsoft JhengHei'
  225. }, {
  226. name: '楷体',
  227. value: 'KaiTi'
  228. }, {
  229. name: '华文仿宋',
  230. value: 'STFangsong'
  231. }, {
  232. name: '新宋体',
  233. value: 'NSimSun'
  234. }, {
  235. name: '仿宋',
  236. value: 'FangSong'
  237. }, {
  238. name: '苹方',
  239. value: 'PingFang SC'
  240. }, {
  241. name: '华文黑体',
  242. value: 'STHeiti'
  243. }, {
  244. name: '华文楷体',
  245. value: 'STKaiti'
  246. }, {
  247. name: '华文细黑',
  248. value: 'STXihei'
  249. }, {
  250. name: '翩翩体-简',
  251. value: 'Hanzipen SC'
  252. },
  253. 'Arial',
  254. 'Tahoma',
  255. 'Verdana',
  256. ]
  257. },
  258. uploadImage: {
  259. server: '/management/files/upload',
  260. // form-data fieldName ,默认值 'wangeditor-uploaded-image'
  261. fieldName: 'file',
  262. // 单个文件的最大体积限制,默认为 2M
  263. maxFileSize: 4 * 1024 * 1024, // 1M
  264. // 最多可上传几个文件,默认为 100
  265. maxNumberOfFiles: 10,
  266. // 选择文件时的类型限制,默认为 ['image/*'] 。如不想限制,则设置为 []
  267. allowedFileTypes: ['image/*'],
  268. // 自定义上传参数,例如传递验证的 token 等。参数会被添加到 formData 中,一起上传到服务端。
  269. meta: {
  270. csrfmiddlewaretoken: $("input[name='csrfmiddlewaretoken']").val()
  271. },
  272. // 将 meta 拼接到 url 参数中,默认 false
  273. metaWithUrl: false,
  274. // 自定义增加 http header
  275. // 跨域是否传递 cookie ,默认为 false
  276. withCredentials: true,
  277. // 超时时间,默认为 10 秒
  278. timeout: 5 * 1000, // 5 秒
  279. }
  280. },
  281. onChange(editor) {
  282. const html = editor.getHtml()
  283. let title = $('#page_title').val()
  284. if (title === '' || title === undefined) {
  285. title = '未命名标题'
  286. }
  287. if (html.length > 50) {
  288. localStorage.setItem('article_buffer', JSON.stringify({
  289. 'title': title,
  290. 'html': html
  291. }))
  292. $('#title').val($('#page_title').val())
  293. }
  294. }
  295. }
  296. E.Boot.registerElemToHtml(imageToHtmlConf);
  297. // 先创建 editor
  298. const editor = E.createEditor({
  299. selector: '#editor-text-area',
  300. content: [],
  301. config: editorConfig
  302. })
  303. // 创建 toolbar
  304. const toolbar = E.createToolbar({
  305. editor,
  306. selector: '#editor-toolbar',
  307. config: {
  308. excludeKeys: 'fullScreen',
  309. }
  310. })
  311. setTimeout(function () {
  312. editor.dangerouslyInsertHtml($('#html_text').val())
  313. }, 200)
  314. function restore() {
  315. if (localStorage.getItem('article_buffer') !== null) {
  316. let item = JSON.parse(localStorage.getItem('article_buffer'))
  317. $('#page_title').val(item.title)
  318. editor.dangerouslyInsertHtml(item.html)
  319. }
  320. }
  321. </script>
  322. <script>
  323. function submit(flag) {
  324. $(".ui.form").form({
  325. fields: {
  326. title: {
  327. identifier: "title",
  328. rules: [
  329. {
  330. type: "empty",
  331. prompt: "请输入标题"
  332. }
  333. ]
  334. },
  335. intro: {
  336. identifier: "intro",
  337. rules: [
  338. {
  339. type: "empty",
  340. prompt: "请输入摘要"
  341. }
  342. ]
  343. }
  344. },
  345. inline: true,
  346. on: "blur"
  347. });
  348. $('#title').val($('#page_title').val())
  349. if (flag === -1) {
  350. $('.ui.longer.modal')
  351. .modal('show')
  352. } else {
  353. let isPass = true
  354. var data = $('#article_form').serializeArray();
  355. data.forEach((item, i) => {
  356. if (item.value === '') {
  357. isPass = false
  358. }
  359. })
  360. if (isPass) {
  361. let formData = new FormData()
  362. data.forEach((item, i) => {
  363. formData.append(item.name, item.value)
  364. })
  365. formData.append('html', editor.getHtml())
  366. formData.append('markdown', editor.getText())
  367. formData.append('type', 1)
  368. formData.append('tags', $('#tags').val())
  369. formData.append('status', flag)
  370. formData.append('pk', {{article.id}})
  371. $.ajax('/management/article/edit_article', {
  372. method: 'post',
  373. data: formData,
  374. contentType: false,
  375. processData: false,
  376. success: function (res) {
  377. window.location.href = '/management/article'
  378. },
  379. error: function (err) {
  380. }
  381. })
  382. } else {
  383. alert('请检查表单')
  384. }
  385. }
  386. }
  387. $('#tags').tagsInput({
  388. 'autocomplete_url': '/management/tags/search',
  389. 'autocomplete': {selectFirst: true, width: '100px', autoFill: true},
  390. 'height': '100px',
  391. 'width': '100%',
  392. 'interactive': true,
  393. 'defaultText': '添加标签',
  394. 'delimiter': [','], // Or a string with a single delimiter. Ex: ';'
  395. 'removeWithBackspace': true,
  396. 'minChars': 0,
  397. 'maxChars': 0, // if not provided there is no limit
  398. 'placeholderColor': '#666666',
  399. });
  400. $(".ui.toggle.button").click(function () {
  401. $(".mobile.only.grid .ui.vertical.menu").toggle(100);
  402. });
  403. $(".ui.dropdown").dropdown();
  404. function generateIntro() {
  405. let text = editor.getText()
  406. if (text.length > 20) {
  407. $("textarea[name='intro']").val(text.substring(0, 20) + '...')
  408. } else {
  409. $("textarea[name='intro']").val(text + '...')
  410. }
  411. }
  412. </script>
  413. </body>
  414. </html>