new_article.html 12 KB

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