디자이너 컴포넌트 - 보고서 저장

이 샘플은 Angular, React, Vue 및 순수 JavaScript 응용 프로그램 내에서 ActiveReportsJS Designer 컴포넌트의 보고서를 저장하는 방법을 보여 줍니다. 이 코드는 메모리 내 보고서 저장소를 사용합니다. "다른 이름으로 저장" 버튼은 보고서를 새 이름으로 자동 저장합니다. "보고서 열기" 대화 상자에는 이전에 저장한 보고서가 표시됩니다. 자세한 내용은 보고서 저장 페이지를 방문하십시오. 코드를 보려면 아래로 스크롤하십시오.

<template> <div> <div id="designer-host"> <ReportDesigner :onCreate="onCreateReport" :onSave="onSaveReport" :onSaveAs="onSaveAsReport" :onOpen="onOpenReport" ></ReportDesigner> </div> <div v-if="showModal" class="modal" id="dlgOpen" tabindex="-1" aria-hidden="true" > <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="exampleModalLabel">Open Report</h5> <button type="button" class="close" aria-label="Close" @click="hideModal" > <span aria-hidden="true">&times;</span> </button> </div> <div class="modal-body"> <strong>Select Report:</strong> <div class="list-group"> <button type="button" class="list-group-item list-group-item-action" v-for="reportId in reportIds" @click="onSelectReport(reportId)" :key="reportId" > {{ reportId }} </button> </div> </div> <div class="modal-footer"> <button type="button" class="btn btn-outline-secondary" @click="hideModal" > Close </button> </div> </div> </div> </div> </template> <script> import { Designer } from "@mescius/activereportsjs-vue"; let resolveFunc = null; export default { components: { ReportDesigner: Designer, }, data() { return { reportStorage: new Map(), counter: 0, showModal: false, }; }, computed: { reportIds() { const ret = this.counter ? [...this.reportStorage.keys()] : []; return ret; }, }, methods: { onSelectReport(reportId) { if (resolveFunc) { resolveFunc({ definition: this.reportStorage.get(reportId), id: reportId, displayName: reportId, }); this.showModal = false; } }, onCreateReport() { const CPLReport = { Name: "Report", Body: { Width: "8.5in", Height: "11in", }, }; const reportId = `NewReport${this.counter + 1}`; this.counter++; return Promise.resolve({ definition: CPLReport, id: reportId, displayName: reportId, }); }, onSaveReport(info) { const reportId = info.id || `NewReport${this.counter + 1}`; this.reportStorage.set(reportId, info.definition); this.counter++; return Promise.resolve({ displayName: reportId }); }, onSaveAsReport(info) { const reportId = `NewReport${this.counter + 1}`; this.reportStorage.set(reportId, info.definition); this.counter++; return Promise.resolve({ id: reportId, displayName: reportId }); }, onOpenReport() { let me = this; return new Promise(function (resolve) { resolveFunc = resolve; me.showModal = true; }); }, hideModal() { this.showModal = false; if (resolveFunc) { resolveFunc(null); resolveFunc = null; } }, }, }; </script> <style> @import url("/activereportsjs/demos/arjs/styles/ar-js-ui.css"); @import url("/activereportsjs/demos/arjs/styles/ar-js-designer.css"); #designer-host { width: 100%; height: 550px; } .modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.5); display: flex; align-items: center; justify-content: center; z-index: 1000; } .modal-content { background: white; padding: 20px; border-radius: 4px; width: 50%; max-width: 500px; max-height: 80%; overflow-y: auto; } </style>
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <title>ActiveReportsJS Report Designer Report Saving Sample</title> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <!-- SystemJS --> <script src="node_modules/systemjs/dist/system.src.js"></script> <script src="systemjs.config.js"></script> <script src="./compiler.js" type="module"></script> <link href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap" rel="stylesheet" /> <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous" /> <script> System.import("./app.js"); </script> </head> <body style="margin: 0"> <div id="app"></div> <script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous" ></script> <script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.1/dist/umd/popper.min.js" integrity="sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN" crossorigin="anonymous" ></script> <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js" integrity="sha384-B4gt1jrGC7Jh4AgTPSdUtOBvfO8shuf57BaghqFfPlYxofvL8/KUEfYiJOMMV+rV" crossorigin="anonymous" ></script> </body> </html>
(function (global) { SystemJS.config({ transpiler: "systemjs-plugin-babel", typescriptOptions: { target: "es2022", module: "system", }, baseURL: "./node_modules/", packageConfigPaths: [ "./node_modules/*/package.json", "./node_modules/@mescius/*/package.json", "./node_modules/@babel/*/package.json", "./node_modules/@vue/*/package.json", ], map: { vue: "./node_modules/vue/dist/vue.esm-browser.js", "systemjs-babel-build": "systemjs-plugin-babel/systemjs-babel-browser.js", "@mescius/activereportsjs/pdfexport": "@mescius/activereportsjs/dist/ar-js-pdf.js", "@mescius/activereportsjs/tabulardataexport": "@mescius/activereportsjs/dist/ar-js-tabular-data.js", "@mescius/activereportsjs/htmlexport": "@mescius/activereportsjs/dist/ar-js-html.js", "@mescius/activereportsjs/xlsxexport": "@mescius/activereportsjs/dist/ar-js-xlsx.js", "@mescius/activereportsjs-vue": "@mescius/activereportsjs-vue/lib/index.js", "@mescius/activereportsjs/reportviewer": "./reportviewer.js", "@mescius/activereportsjs/viewer": "./reportviewer.js", "@mescius/activereportsjs/reportdesigner": "./reportdesigner.js", "@mescius/activereportsjs/core": "@mescius/activereportsjs/dist/ar-js-core.js", "@mescius/activereportsjs/styles": "@mescius/activereportsjs/styles", "@mescius/activereportsjs-i18n": "@mescius/activereportsjs-i18n/dist/ar-js-locales.js", "@mescius/ar-js-pagereport": "@mescius/activereportsjs/dist/ar-js-core.js", "@mescius/activereportsjs-i18n-ja": "@mescius/activereportsjs-i18n/dist/designer/ja-locale.js", "@mescius/activereportsjs-i18n-zh": "@mescius/activereportsjs-i18n/dist/designer/zh-locale.js", }, meta: { "*.css": { loader: "systemjs-plugin-css" }, "./src/*.vue": { loader: "../plugin-vue/index.js" }, "*.vue": { loader: "./plugin-vue/index.js" }, }, packages: { "vue-demi": { defaultExtension: "mjs", main: "lib/index.mjs", }, }, }); })(this);