|
@@ -1,36 +1,112 @@
|
|
|
{% extends "layout.html" %}
|
|
|
{% block main %}
|
|
|
- <h1 class="h3"><i class="far fa-newspaper mr-3"></i>{{ title }}</h1>
|
|
|
- <table id="example" class="table" cellspacing="0" width="60%">
|
|
|
- <thead>
|
|
|
- <tr>
|
|
|
- <th class="table__head">順序</th>
|
|
|
- <th class="table__head">標題</th>
|
|
|
- <th class="table__head">順序</th>
|
|
|
- <th class="table__head">顯示</th>
|
|
|
- <th style="width:150px;" class="table__head">
|
|
|
- <button type="button" class="btn__add m-1" data-toggle="modal" data-target="#createModal"><i class="fas fa-plus"></i></button>
|
|
|
- </th>
|
|
|
- </tr>
|
|
|
- </thead>
|
|
|
- {% block table_body %}{% endblock %}
|
|
|
- </table>
|
|
|
- <!-- Modal -->
|
|
|
- <div class="modal fade" id="createModal" tabindex="-1" role="dialog" aria-labelledby="createModalLabel" aria-hidden="true">
|
|
|
- <div class="modal-dialog" role="document">
|
|
|
- <div class="modal-content">
|
|
|
- <div class="modal-header border-0">
|
|
|
- <h5 class="modal-title modal__title" id="createModalLabel">新增文章</h5>
|
|
|
- <button type="button" class="close modal__close" data-dismiss="modal" aria-label="Close">
|
|
|
- <span class="modal__close__back">
|
|
|
- <span aria-hidden="true">×</span>
|
|
|
- </span>
|
|
|
- </button>
|
|
|
- </div>
|
|
|
- <div class="modal-body">
|
|
|
- {% block modal_body %}{% endblock %}
|
|
|
- </div>
|
|
|
+<h1 class="h3"><i class="far fa-newspaper mr-3"></i>{{ title }}</h1>
|
|
|
+<table id="example" class="table" cellspacing="0" width="60%">
|
|
|
+ <thead>
|
|
|
+ <tr>
|
|
|
+ <th class="table__head">編號</th>
|
|
|
+ <th class="table__head">標題</th>
|
|
|
+ <th class="table__head">日期</th>
|
|
|
+ <!-- <th class="table__head">順序</th> -->
|
|
|
+ <th class="table__head">顯示</th>
|
|
|
+ <th style="width:150px;" class="table__head">
|
|
|
+ <button type="button" class="btn__add m-1" data-toggle="modal" data-target="#createModal"><i
|
|
|
+ class="fas fa-plus"></i></button>
|
|
|
+ </th>
|
|
|
+ </tr>
|
|
|
+ </thead>
|
|
|
+ {% block table_body %}{% endblock %}
|
|
|
+</table>
|
|
|
+<link rel="stylesheet" href="https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
|
|
|
+<link rel="stylesheet" href="https://jqueryui.com/resources/demos/style.css">
|
|
|
+<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
|
|
|
+<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
|
|
|
+<script type="text/javascript" src="{{url_for('static', filename='config.js')}}"></script>
|
|
|
+<script type="text/javascript" src="{{url_for('static', filename='js/yo.js')}}"></script>
|
|
|
+<div id="dialog-form">
|
|
|
+ <input id="ctitle" type="text" /><br />
|
|
|
+ <input id="cdate" type="text" /><br />
|
|
|
+ <input id="cdraft" type="checkbox" checked="true" /><br />
|
|
|
+ <input id="ctype" type="text" /><br />
|
|
|
+ <input id="curl" type="text" /><br />
|
|
|
+ <input id="cimage" type="text" /><br />
|
|
|
+ <input id="cdescription" type="text" /><br />
|
|
|
+ <input id="cweight" type="text" /><br />
|
|
|
+ <input id="ctag" type="text" /><br />
|
|
|
+ <button onclick="updateHeader();location.reload();">完成修改</button>
|
|
|
+</div>
|
|
|
+<script>
|
|
|
+ editTarget = "";
|
|
|
+ frontMatters = [];
|
|
|
+ contentMatters = [];
|
|
|
+ const contentApiUrl = `${PORTAL_SERVER}contents?url=`;
|
|
|
+ function getHeader(url) {
|
|
|
+ axios.get(contentApiUrl + url).then(({ data }) => {
|
|
|
+ aa = data[0]['content'];
|
|
|
+ const content = _.get(data, '0.content', '');
|
|
|
+ blocks = parseMd(content);
|
|
|
+ $("#dialog-form").dialog();
|
|
|
+ editTarget = url;
|
|
|
+ //console.log(frontMatters);
|
|
|
+ });
|
|
|
+ }
|
|
|
+ function updateHeader() {
|
|
|
+
|
|
|
+ mdContent = "";
|
|
|
+ mdContent += '---\n';
|
|
|
+ mdContent += 'title: "' + $('#ctitle').val() + '"\n';
|
|
|
+ mdContent += 'date: ' + $('#cdate').val() + '\n';
|
|
|
+ mdContent += 'draft: ' + (!$("#cdraft").is(':checked')).toString() + '\n';
|
|
|
+ mdContent += 'type: "' + $('#ctype').val() + '"\n';
|
|
|
+ mdContent += 'url: "' + $('#curl').val() + '"\n';
|
|
|
+ mdContent += 'image: "' + $('#cimage').val() + '"\n';
|
|
|
+ mdContent += 'description: "' + $('#cdescription').val() + '"\n';
|
|
|
+ mdContent += 'weight: ' + ($('#cweight').val() == 'undefined' ? "" : $('#cweight').val())+ '\n';
|
|
|
+ mdContent += 'tag: "' + ($('#ctag').val() == 'undefined' ? "" : $('#ctag').val()) + '"\n';
|
|
|
+ mdContent += '---\n';
|
|
|
+ mdContent += contentMatters.join("\n");
|
|
|
+ //console.log(contentMatters);
|
|
|
+ postData = {
|
|
|
+ content: mdContent,
|
|
|
+ url: editTarget
|
|
|
+ };
|
|
|
+ //console.log(mdContent);
|
|
|
+ axios.post(contentApiUrl + editTarget, json = postData);
|
|
|
+ }
|
|
|
+ function htmlDecode(input) {
|
|
|
+ var e = document.createElement('textarea');
|
|
|
+ e.innerHTML = input;
|
|
|
+ // handle case of empty input
|
|
|
+ return e.childNodes.length === 0 ? "" : e.childNodes[0].nodeValue;
|
|
|
+ }
|
|
|
+
|
|
|
+ $(function () {
|
|
|
+
|
|
|
+ $("#dialog-form").hide();
|
|
|
+
|
|
|
+ });
|
|
|
+ //allObjs = JSON.parse(htmlDecode('{{ collections }}'));
|
|
|
+ //console.log(htmlDecode('{{ collections }}'));
|
|
|
+
|
|
|
+</script>
|
|
|
+
|
|
|
+<!-- Modal -->
|
|
|
+<div class="modal fade" id="createModal" tabindex="-1" role="dialog" aria-labelledby="createModalLabel"
|
|
|
+ aria-hidden="true">
|
|
|
+ <div class="modal-dialog" role="document">
|
|
|
+ <div class="modal-content">
|
|
|
+ <div class="modal-header border-0">
|
|
|
+ <h5 class="modal-title modal__title" id="createModalLabel">新增文章</h5>
|
|
|
+ <button type="button" class="close modal__close" data-dismiss="modal" aria-label="Close">
|
|
|
+ <span class="modal__close__back">
|
|
|
+ <span aria-hidden="true">×</span>
|
|
|
+ </span>
|
|
|
+ </button>
|
|
|
+ </div>
|
|
|
+ <div class="modal-body">
|
|
|
+ {% block modal_body %}{% endblock %}
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
-{% endblock main %}
|
|
|
+</div>
|
|
|
+{% endblock main %}
|