edit_article.html 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380
  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 onsubmit="return false" id="article_form" method="post" 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. $(document).on("keydown", "form", function (event) {
  186. return event.key != "Enter";
  187. });
  188. const E = window.wangEditor
  189. // 切换语言
  190. const LANG = location.href.indexOf('lang=en') > 0 ? 'en' : 'zh-CN'
  191. E.i18nChangeLanguage(LANG)
  192. const imageToHtmlConf = {
  193. type: 'image',
  194. elemToHtml: function imageToHtml(elemNode) {
  195. const {src, alt, href = '', style = {}, width, height} = elemNode || {}
  196. 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>`
  197. }
  198. };
  199. const editorConfig = {
  200. placeholder: 'Type here...',
  201. scroll: false, // 禁止编辑器滚动
  202. MENU_CONF: {
  203. uploadImage: {
  204. server: '/management/files/upload',
  205. // form-data fieldName ,默认值 'wangeditor-uploaded-image'
  206. fieldName: 'file',
  207. // 单个文件的最大体积限制,默认为 2M
  208. maxFileSize: 4 * 1024 * 1024, // 1M
  209. // 最多可上传几个文件,默认为 100
  210. maxNumberOfFiles: 10,
  211. // 选择文件时的类型限制,默认为 ['image/*'] 。如不想限制,则设置为 []
  212. allowedFileTypes: ['image/*'],
  213. // 自定义上传参数,例如传递验证的 token 等。参数会被添加到 formData 中,一起上传到服务端。
  214. meta: {
  215. csrfmiddlewaretoken: $("input[name='csrfmiddlewaretoken']").val()
  216. },
  217. // 将 meta 拼接到 url 参数中,默认 false
  218. metaWithUrl: false,
  219. // 自定义增加 http header
  220. // 跨域是否传递 cookie ,默认为 false
  221. withCredentials: true,
  222. // 超时时间,默认为 10 秒
  223. timeout: 5 * 1000, // 5 秒
  224. }
  225. },
  226. onChange(editor) {
  227. const html = editor.getHtml()
  228. $('#title').val($('#page_title').val())
  229. }
  230. }
  231. E.Boot.registerElemToHtml(imageToHtmlConf);
  232. // 先创建 editor
  233. const editor = E.createEditor({
  234. selector: '#editor-text-area',
  235. content: [],
  236. config: editorConfig
  237. })
  238. // 创建 toolbar
  239. const toolbar = E.createToolbar({
  240. editor,
  241. selector: '#editor-toolbar',
  242. config: {
  243. excludeKeys: 'fullScreen',
  244. }
  245. })
  246. setTimeout(function () {
  247. editor.dangerouslyInsertHtml($('#html_text').val())
  248. }, 200)
  249. </script>
  250. <script>
  251. function submit(flag) {
  252. $(".ui.form").form({
  253. fields: {
  254. title: {
  255. identifier: "title",
  256. rules: [
  257. {
  258. type: "empty",
  259. prompt: "请输入标题"
  260. }
  261. ]
  262. },
  263. intro: {
  264. identifier: "intro",
  265. rules: [
  266. {
  267. type: "empty",
  268. prompt: "请输入摘要"
  269. }
  270. ]
  271. }
  272. },
  273. inline: true,
  274. on: "blur"
  275. });
  276. $('#title').val($('#page_title').val())
  277. if (flag === -1) {
  278. $('.ui.longer.modal')
  279. .modal('show')
  280. } else {
  281. let isPass = true
  282. var data = $('#article_form').serializeArray();
  283. data.forEach((item, i) => {
  284. if (item.value === '') {
  285. isPass = false
  286. }
  287. })
  288. if (isPass) {
  289. let formData = new FormData()
  290. data.forEach((item, i) => {
  291. formData.append(item.name, item.value)
  292. })
  293. formData.append('html', editor.getHtml())
  294. formData.append('markdown', editor.getText())
  295. formData.append('type', 1)
  296. formData.append('tags', $('#tags').val())
  297. formData.append('status', flag)
  298. formData.append('pk', {{article.id}})
  299. $.ajax('/management/article/edit_article', {
  300. method: 'post',
  301. data: formData,
  302. contentType: false,
  303. processData: false,
  304. success: function (res) {
  305. window.location.href = '/management/article'
  306. },
  307. error: function (err) {
  308. }
  309. })
  310. } else {
  311. alert('请检查表单')
  312. }
  313. }
  314. }
  315. $('#tags').tagsInput({
  316. 'autocomplete_url': '/management/tags/search',
  317. 'autocomplete': {selectFirst: true, width: '100px', autoFill: true},
  318. 'height': '100px',
  319. 'width': '100%',
  320. 'interactive': true,
  321. 'defaultText': '添加标签',
  322. 'delimiter': [','], // Or a string with a single delimiter. Ex: ';'
  323. 'removeWithBackspace': true,
  324. 'minChars': 0,
  325. 'maxChars': 0, // if not provided there is no limit
  326. 'placeholderColor': '#666666',
  327. });
  328. $(".ui.toggle.button").click(function () {
  329. $(".mobile.only.grid .ui.vertical.menu").toggle(100);
  330. });
  331. $(".ui.dropdown").dropdown();
  332. function generateIntro() {
  333. let text = editor.getText()
  334. if (text.length > 20) {
  335. $("textarea[name='intro']").val(text.substring(0, 20) + '...')
  336. } else {
  337. $("textarea[name='intro']").val(text + '...')
  338. }
  339. }
  340. </script>
  341. </body>
  342. </html>