| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471 |
- $(document).ready(function () {
- const types = ["工程概要", "工程計算書", "設計圖", "數量計算書", "工程預算書", "施工規範及特定條款", "設計報告書"];
- var path = '';
- var category = '';
- var project_id = '';
- var project_name = '';
- var project = '';
- var blueprint_SN = '';
- var blueprint_path = '';
- var notes = [];
- var tempTable = [];
- var tempTable2 = [];
- var tree_data; //save getTree ajax data
- var start = true;
- var folderPath = "";
- var fileNums = [];
- var is_blueprint2 = false;
- PDFObject.embed("./assets/null.pdf", "#pdfFile");
- var table = $('#datatable-ajax').DataTable({
- bProcessing: true,
- responsive: true,
- "pagingType": "full_numbers",
- "bLengthChange": true,
- "lengthMenu": [
- [7, 10, 25, -1],
- [7, 10, 25, "全部"]
- ],
- "searching": false,
- "pageLength": 7,
- "language": {
- "processing": "處理中...",
- "loadingRecords": "載入中...",
- "lengthMenu": "顯示 _MENU_ 項結果",
- "zeroRecords": "沒有符合的結果或是沒有資料",
- "info": "顯示第 _START_ 至 _END_ 項結果,共 _TOTAL_ 項",
- "infoEmpty": "顯示第 0 至 0 項結果,共 0 項",
- "infoFiltered": "(從 _MAX_ 項結果中過濾)",
- "infoPostFix": "",
- "search": "搜尋:",
- "paginate": {
- "first": '<i class="fa fa-step-backward"></i>',
- "previous": '<i class="fa fa-backward"></i>',
- "next": '<i class="fa fa-forward"></i>',
- "last": '<i class="fa fa-step-forward"></i>'
- },
- "aria": {
- "sortAscending": ": 升冪排列",
- "sortDescending": ": 降冪排列"
- }
- },
- "columns": [{
- "width": "5%"
- },
- null,
- null,
- {
- "width": "5%"
- }, {
- "width": "5%"
- },
- ],
- data: [
- [
- " ", "", "", "", "",
- ],
- [
- " ", "", "", "", "",
- ],
- [
- " ", "", "", "", "",
- ],
- [
- " ", "", "", "", "",
- ],
- [
- " ", "", "", "", "",
- ],
- [
- " ", "", "", "", "",
- ],
- [
- " ", "", "", "", "",
- ]
- ],
- drawCallback: function () {
- if (!start) {
- var api = this.api();
- var rowCount = api.rows({
- page: 'current'
- }).count();
- for (var i = 0; i < api.page.len() - (rowCount === 0 ? 1 : rowCount); i++) {
- $('#datatable-ajax tbody').append($("<tr><td> </td><td></td><td></td><td></td></tr>"));
- }
- }
- start = false;
- },
- });
- $("#datatable-ajax_length").append($("#reset"))
- $.ajax({
- url: "./script/php/getTree.php",
- contentType: "application/json",
- dataType: "json",
- type: "GET",
- async: false
- })
- .success(function (response) {
- tree_data = response;
- }).error(function (error) {
- console.log(error);
- });
-
- displayDetail(false);
- $('#treeAjaxHTML').jstree({
- 'core': {
- 'themes': {
- variant: 'large'
- },
- 'data': tree_data,
- 'multiple': false,
- 'animation': 40,
- 'expand_selected_onload': true
- },
- 'types': {
- 'default': {
- 'icon': 'fa fa-folder'
- },
- 'file': {
- 'icon': 'fa fa-file'
- }
- },
- 'plugins': ['types', 'search', 'wholerow']
- }).bind("loaded.jstree", function (event, data) {
- var searchURL = window.location.search;
- searchURL = searchURL.substring(1, searchURL.length);
- if (searchURL.includes("=")) {
- type = decodeURIComponent(searchURL.split("&")[1].split("=")[1]);
- $(this).jstree("open_all");
- }
- }).on(
- 'select_node.jstree',
- function (event, data) {
- if (data.node.text.includes("-")) {
- $("#reset").prop("disabled", false);
- $("#header").empty();
- displayDetail(false);
- project_id = data.node.text.split("-")[0];
- project_name = data.node.text.split("-")[1];
- project = data.node.text;
- $("#project-id").val(project_id)
- $("#header").empty();
- category = $('#treeAjaxHTML').jstree(true).get_node(data.node.parents[0]).text;
- var span = $('<span>' + project + ' > </span>');
- span.on("click", function (e) {
- displayDetail(false);
- is_blueprint2 = false;
- for (var k = folderPath.length - 1; k > 0; k--) {
- $("#header").children().eq(k).remove();
- folderPath.pop();
- }
- let i = 1;
- table.clear().draw();
- tempTable = [];
- types.forEach(function (data) {
- let temp = [
- i,
- data,
- category,
- '',
- fileNums[i - 1].total,
- project,
- ];
- table.row.add(temp).draw();
- tempTable.push(temp);
- i++;
- });
- $("#tableDetail td").empty();
- });
- $("#header").append(span);
- let i = 1;
- table.clear().draw();
- tempTable = [];
- countFiles(project_id, "false");
- types.forEach(function (data) {
- let temp = [
- i,
- data,
- category,
- '',
- fileNums[i - 1].total,
- project,
- ];
- table.row.add(temp).draw();
- tempTable.push(temp);
- i++;
- });
- $("#tableDetail td").empty();
- } else {
- data.instance.toggle_node(data.node);
- }
- displayDetail(false);
- });
- $('#btn-search').click(function () {
- $("#reset").prop("disabled", true);
- $("#header").empty();
- $("#header").append("<span>搜尋結果</span>");
- $.ajax({
- url: "./script/php/search.php",
- data: {
- search: $("#search").val(),
- },
- async: false,
- contentType: "application/json",
- dataType: "json",
- type: "GET",
- })
- .success(function (response) {
- displayDetail(true);
- table.clear().draw();
- $("#tableDetail td").empty();
- response.forEach(function (data) {
- let temp = [
- data["SN"],
- data["original_name"],
- data["keyword"],
- '1.0.0',
- data["project_id"],
- data["project_name"],
- data["type_id"],
- data["category_name"],
- data["notes"],
- data["filename"],
- ];
- table.row.add(temp).draw();
- i++;
- });
- })
- .error(function (error) {
- console.log(error);
- })
- .complete(function () {});
- });
- $('#search').keyup(function (e) {
- if (e.keyCode == 13) {
- $('#btn-search').click();
- }
- });
- $('#reset').click(function () {
- if (folderPath.length != 1) {
- folderPath.pop();
- let index = folderPath.length;
- $("#header").children().eq(index).remove();
- table.clear().draw();
- if (is_blueprint2) {
- tempTable2.forEach(function (data) {
- table.row.add(data).draw();
- });
- is_blueprint2 = false;
- } else {
- tempTable.forEach(function (data) {
- table.row.add(data).draw();
- });
- }
- $("#tableDetail td").empty();
- displayDetail(false);
- }
- });
- $('#datatable-ajax tbody').on('click', 'tr', function () {
- $("#reset").prop("disabled", false);
- $(this).parent().find("tr").css('background-color', '');
- $(this).css("background-color", "#cccccc");
- $("#tableDetail td").empty();
- var data = table.row(this).data();
- if (data == null) {
- data = ["", "", "null", "", "", "", "", "", "", ""];
- }
- let project_id = data[5].split("-")[0];
- let SN = data[0];
- let is_blueprint = data[1] == "設計圖" ? true : false;
- let note = notes.includes(data[1]) ? data[1] : '';
- if (data[2] == 'null') {
- $("#tableDetail td").empty();
- } else if (data[3] == '') {
- path = data[1];
- $.ajax({
- url: "./script/php/getDetail.php",
- data: {
- project_id: project_id,
- type_id: SN,
- is_blueprint: is_blueprint,
- note: note
- },
- async: false,
- contentType: "application/json",
- dataType: "json",
- type: "GET",
- })
- .success(function (response) {
- var span = $('<span>' + data[1] + ' > </span>');
- span.on("click", function (e) {
- let clicked = $(e.target).text().split(" > ")[0];
- let index = folderPath.indexOf(clicked);
- for (k = index + 1; k < folderPath.length; k++) {
- $("#header").children().eq(k).remove();
- folderPath.pop();
- }
- addTable(data, notes, response, SN, path);
- is_blueprint2 = false;
- });
- $("#header").append(span);
- folderPath = $("#header").text().split(" > ");
- folderPath.pop();
- addTable(data, notes, response, SN, path);
- })
- .error(function (error) {
- console.log(error);
- })
- .complete(function () {});
- } else {
- let type = types[parseInt(data[7]) - 1];
- let path = '';
- //let category = data[8];
- if (data[7] == 3) {
- path = data[8] + "/" + data[5] + "-" + data[6] + "/" + data[7] + "_" + type + "/" + data[9] + "/" + data[10];
- } else {
- path = data[8] + "/" + data[5] + "-" + data[6] + "/" + data[7] + "_" + type + "/" + data[10];
- }
- $("#plan_code").text(data[5]);
- $("#plan_name").text(data[6]);
- $("#download").append('<img src="./assets/images/' + 'pdf-icon.png" style="height: 30px; display: inline-block;"> ');
- $("#download").append('<a target="_blank" href="./assets/建置資料/' + path + '">' + data[10] + '</a>');
- $("#version").text(data[3]);
- $("#fileName").text(data[1]);
- PDFObject.embed("./assets/建置資料/" + path, "#pdfFile");
- }
- });
- function displayDetail(status) {
- if (status) {
- table.column(2).visible(true);
- table.column(3).visible(true);
- table.column(4).visible(false);
- $(".table-responsive").show();
- $("#SN").text("圖號");
- $("#name").text("圖名");
- $('.nav-tabs a[href="#pdfTab"]').tab('show');
- } else {
- table.column(2).visible(false);
- table.column(3).visible(false);
- table.column(4).visible(true);
- $(".table-responsive").hide();
- $("#SN").text("項次");
- $("#name").text("類別");
- table.page.len(7).draw();
- $('.nav-tabs a[href="#arcgisTab"]').tab('show');
- }
- }
- function countFiles(project_id, is_blueprint) {
- $.ajax({
- url: "./script/php/get_file_count.php",
- data: {
- project_id: project_id,
- is_blueprint: is_blueprint,
- },
- async: false,
- //contentType: "application/json",
- dataType: "json",
- type: "POST",
- })
- .success(function (response) {
- console.log(response);
- fileNums = response;
- })
- .error(function (error) {
- console.log(error);
- })
- .complete(function () {});
- }
- function addTable(data, notes, response, SN, path) {
- table.clear().draw();
- table.page.len(10).draw();
- if (data[1] != "設計圖") {
- displayDetail(true);
- if (notes.includes(data[1])) {
- is_blueprint2 = true;
- }
- for (i = 0; i < response.length; i++) {
- table.row.add([
- response[i]["SN"],
- response[i]["original_name"],
- response[i]["keyword"],
- '1.0.0',
- '',
- response[i]["project_id"],
- response[i]["project_name"],
- response[i]["type_id"],
- response[i]["category_name"],
- response[i]["notes"],
- response[i]["filename"],
- ])
- table.draw();
- }
- } else {
- displayDetail(false);
- blueprint_SN = SN;
- blueprint_path = path;
- tempTable2 = [];
- countFiles(project_id, "true");
- for (i = 0; i < response.length; i++) {
- notes[i] = response[i]['notes'];
- let temp = [
- i + 1,
- response[i]['notes'],
- '',
- '',
- fileNums[i].total,
- data[5],
- ];
- table.row.add(temp);
- tempTable2.push(temp);
- }
- table.draw();
- }
- }
- });
|