edit_article.html 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377
  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 primary mini" onclick="submit(-1)"><i class="send icon"></i>发布更新</a>
  99. </p>
  100. </div>
  101. <div style="border-bottom: 1px solid #e8e8e8;">
  102. <div id="editor-toolbar"></div>
  103. </div>
  104. <div id="content">
  105. <div id="editor-container">
  106. <div id="title-container">
  107. <input id="page_title" value="{{ article.title }}" placeholder="标题">
  108. </div>
  109. <div id="editor-text-area"></div>
  110. </div>
  111. </div>
  112. <div class="ui longer modal">
  113. <div class="header">
  114. 额外信息
  115. </div>
  116. <div class="scrolling content">
  117. <div class="description">
  118. <form id="article_form" class="ui form">
  119. {% csrf_token %}
  120. <div class="field">
  121. <label>标题</label>
  122. <div class="field">
  123. <input readonly value="{{ article.title }}" type="text" id="title" name="title"
  124. placeholder="标题">
  125. </div>
  126. </div>
  127. <div class="field">
  128. <label>摘要</label>
  129. <textarea type="text" name="intro"
  130. placeholder="摘要">{{ article.intro }}</textarea>
  131. </div>
  132. <div class="field">
  133. <div class="fields">
  134. <div class="field">
  135. <label>栏目</label>
  136. <select name="category" class="ui dropdown">
  137. {% for item in category %}
  138. {% if item.id == article.category %}
  139. <option selected value="{{ item.id }}">{{ item.name }}</option>
  140. {% else %}
  141. <option value="{{ item.id }}">{{ item.name }}</option>
  142. {% endif %}
  143. {% endfor %}
  144. </select>
  145. </div>
  146. <div class="field">
  147. <label>置顶</label>
  148. <select name="is_top" class="ui dropdown">
  149. {% if 1 == article.is_top %}
  150. <option selected value="1">YES</option>
  151. <option value="0">NO</option>
  152. {% else %}
  153. <option value="1">YES</option>
  154. <option selected value="0">NO</option>
  155. {% endif %}
  156. </select>
  157. </div>
  158. </div>
  159. </div>
  160. <div class="field">
  161. <label>标签</label>
  162. <div class="fields">
  163. <div class="sixteen wide field">
  164. <input name="tags" id="tags" value="{{ tags }}"/>
  165. </div>
  166. </div>
  167. </div>
  168. </form>
  169. </div>
  170. </div>
  171. <div class="actions">
  172. <div onclick="submit(1)" class="ui primary approve button">
  173. 发布
  174. </div>
  175. </div>
  176. </div>
  177. <!-- 显示内容 -->
  178. <script src="{% static 'js/jquery.min.js' %}"></script>
  179. <script src="{% static 'semantic.js' %}"></script>
  180. <script src="{% static 'tags-input/jquery-ui.min.js' %}"></script>
  181. <script src="{% static 'tags-input/jquery.tagsinput.min.js' %}"></script>
  182. <!-- <script src="https://cdn.jsdelivr.net/npm/@wangeditor/editor@latest/dist/index.min.js"></script> -->
  183. <script src="https://unpkg.com/@wangeditor/editor@latest/dist/index.js"></script>
  184. <script>
  185. const E = window.wangEditor
  186. // 切换语言
  187. const LANG = location.href.indexOf('lang=en') > 0 ? 'en' : 'zh-CN'
  188. E.i18nChangeLanguage(LANG)
  189. const imageToHtmlConf = {
  190. type: 'image',
  191. elemToHtml: function imageToHtml(elemNode) {
  192. const {src, alt, href = '', style = {}, width, height} = elemNode || {}
  193. return `<a data-pswp-width="${alt.split(',')[1]}" data-pswp-height="${alt.split(',')[1]}" href="${src}"><img data-magnify="gallery" data-src="${src}" src="${src}" data-href="${href}" "/></a>`
  194. }
  195. };
  196. const editorConfig = {
  197. placeholder: 'Type here...',
  198. scroll: false, // 禁止编辑器滚动
  199. MENU_CONF: {
  200. uploadImage: {
  201. server: '/management/files/upload',
  202. // form-data fieldName ,默认值 'wangeditor-uploaded-image'
  203. fieldName: 'file',
  204. // 单个文件的最大体积限制,默认为 2M
  205. maxFileSize: 4 * 1024 * 1024, // 1M
  206. // 最多可上传几个文件,默认为 100
  207. maxNumberOfFiles: 10,
  208. // 选择文件时的类型限制,默认为 ['image/*'] 。如不想限制,则设置为 []
  209. allowedFileTypes: ['image/*'],
  210. // 自定义上传参数,例如传递验证的 token 等。参数会被添加到 formData 中,一起上传到服务端。
  211. meta: {
  212. csrfmiddlewaretoken: $("input[name='csrfmiddlewaretoken']").val()
  213. },
  214. // 将 meta 拼接到 url 参数中,默认 false
  215. metaWithUrl: false,
  216. // 自定义增加 http header
  217. // 跨域是否传递 cookie ,默认为 false
  218. withCredentials: true,
  219. // 超时时间,默认为 10 秒
  220. timeout: 5 * 1000, // 5 秒
  221. }
  222. },
  223. onChange(editor) {
  224. const html = editor.getHtml()
  225. $('#title').val($('#page_title').val())
  226. }
  227. }
  228. E.Boot.registerElemToHtml(imageToHtmlConf);
  229. // 先创建 editor
  230. const editor = E.createEditor({
  231. selector: '#editor-text-area',
  232. content: [],
  233. config: editorConfig
  234. })
  235. // 创建 toolbar
  236. const toolbar = E.createToolbar({
  237. editor,
  238. selector: '#editor-toolbar',
  239. config: {
  240. excludeKeys: 'fullScreen',
  241. }
  242. })
  243. setTimeout(function () {
  244. editor.dangerouslyInsertHtml($('#html_text').val())
  245. }, 200)
  246. </script>
  247. <script>
  248. function submit(flag) {
  249. $(".ui.form").form({
  250. fields: {
  251. title: {
  252. identifier: "title",
  253. rules: [
  254. {
  255. type: "empty",
  256. prompt: "请输入标题"
  257. }
  258. ]
  259. },
  260. intro: {
  261. identifier: "intro",
  262. rules: [
  263. {
  264. type: "empty",
  265. prompt: "请输入摘要"
  266. }
  267. ]
  268. }
  269. },
  270. inline: true,
  271. on: "blur"
  272. });
  273. $('#title').val($('#page_title').val())
  274. if (flag === -1) {
  275. $('.ui.longer.modal')
  276. .modal('show')
  277. } else {
  278. let isPass = true
  279. var data = $('#article_form').serializeArray();
  280. data.forEach((item, i) => {
  281. if (item.value === '') {
  282. isPass = false
  283. }
  284. })
  285. if (isPass) {
  286. let formData = new FormData()
  287. data.forEach((item, i) => {
  288. formData.append(item.name, item.value)
  289. })
  290. formData.append('html', editor.getHtml())
  291. formData.append('markdown', editor.getText())
  292. formData.append('type', 1)
  293. formData.append('tags', $('#tags').val())
  294. formData.append('status', flag)
  295. formData.append('pk', {{article.id}})
  296. $.ajax('/management/article/edit_article', {
  297. method: 'post',
  298. data: formData,
  299. contentType: false,
  300. processData: false,
  301. success: function (res) {
  302. window.location.href = '/management/article'
  303. },
  304. error: function (err) {
  305. }
  306. })
  307. } else {
  308. alert('请检查表单')
  309. }
  310. }
  311. }
  312. $('#tags').tagsInput({
  313. 'autocomplete_url': '/management/tags/search',
  314. 'autocomplete': {selectFirst: true, width: '100px', autoFill: true},
  315. 'height': '100px',
  316. 'width': '100%',
  317. 'interactive': true,
  318. 'defaultText': '添加标签',
  319. 'delimiter': [','], // Or a string with a single delimiter. Ex: ';'
  320. 'removeWithBackspace': true,
  321. 'minChars': 0,
  322. 'maxChars': 0, // if not provided there is no limit
  323. 'placeholderColor': '#666666',
  324. });
  325. $(".ui.toggle.button").click(function () {
  326. $(".mobile.only.grid .ui.vertical.menu").toggle(100);
  327. });
  328. $(".ui.dropdown").dropdown();
  329. function generateIntro() {
  330. let text = editor.getText()
  331. if (text.length > 20) {
  332. $("textarea[name='intro']").val(text.substring(0, 20) + '...')
  333. } else {
  334. $("textarea[name='intro']").val(text + '...')
  335. }
  336. }
  337. </script>
  338. </body>
  339. </html>