123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737 |
- <template>
- <div ref="mainContainer" class="document-container"
- :class="{ 'no-select': isHandActive, 'under': (toolMode === 'compare' && compareStatus !== 'finished') || toolMode === 'document' }"
- :style="{
- width: `calc(100% - ${leftPanelSpace}px - ${rightPanelSpace}px)`,
- 'margin-left': `${leftPanelSpace}px`,
- 'margin-right': `${rightPanelSpace}px`,
- 'margin-top': `${topSpace}px`
- }">
- <div ref="viewerContainer" class="document"></div>
- <PageNavOverlay :style="{ left: `calc(50% + ${leftPanelSpace / 2}px - ${rightPanelSpace / 2}px)` }" />
- </div>
- <!-- <div id="findbar" class="findbar hidden">
- <div id="findbarInputContainer" class="findbarInputContainer">
- <div class="input-container">
- <input id="findInput" class="toolbarField" title="Find" placeholder="Find in document…">
- <div id="findResultsCount" class="toolbarLabel"></div>
- </div>
- <Button
- img="icon-previous-left"
- id="findPrevious"
- class="toolbarButton disabled"
- title="Find the previous occurrence of the phrase"
- >
- <ArrowPrev />
- </Button>
- <Button
- img="icon-next-right"
- id="findNext"
- class="toolbarButton disabled"
- title="Find the next occurrence of the phrase"
- >
- <ArrowNext />
- </Button>
- </div>
- </div> -->
- <EnterPassword />
- <div id="printServiceDialog" class="print-dialog">
- <div class="print-container">
- <div class="print-title">Preparing document for printing…</div>
- <div class="print-progress">
- <progress value="0" max="100"></progress>
- <span class="relative-progress">0%</span>
- </div>
- </div>
- </div>
- <SetPassword />
- <LanguageDialog />
- <PreventDialog />
- <MeasurePop />
- <SelectSignTypeDialog />
- <SignatureAppearanceDialog />
- <SignatureDetailsDialog />
- <CertificationViewerDialog />
- <DeleteSignatureDialog />
- <div v-if="loading && loadingPercent < 100" class="loading-state">{{ $t('loading') }}...</div>
- <div v-show="loadingPercent <= 0 && !load && activePanelTab !== 'COMPARISON' && ['compare', 'document'].includes(toolMode)" class="upload-container">
- <input id="fileInput" type="file" accept=".pdf" @change="handleUpload" />
- <label for="fileInput">{{ $t('upload') }}</label>
- </div>
- </template>
- <script setup>
- import { useViewerStore } from '@/stores/modules/viewer'
- import { useDocumentStore } from '@/stores/modules/document'
- import { computed, onMounted, ref } from 'vue'
- import getHashParameters from '@/helpers/getHashParameters'
- import core from '@/core'
- const { loadDocument, initializeViewer, initConfig, getDocumentViewer } = core
- const mainContainer = ref()
- const viewerContainer = ref()
- const useViewer = useViewerStore()
- const useDocument = useDocumentStore()
- const isHandActive = computed(() => {
- return useViewer.getActiveHand
- })
- const isLeftPanelOpen = computed(() => useViewer.isElementOpen('leftPanel'))
- const leftPanelSpace = computed(() => {
- return isLeftPanelOpen.value ? 260 : 0
- })
- const rightPanelSpace = computed(() => {
- return (useViewer.isElementOpen('rightPanel') || useViewer.isElementOpen('pageModePanel') || useViewer.isElementOpen('stampPanel') || useViewer.isElementOpen('linkPanel')) ? 220 : 0
- })
- const toolMode = computed(() => useViewer.getToolMode)
- const compareStatus = computed(() => useViewer.getCompareStatus)
- const topSpace = computed(() => {
- return ['view', 'document'].includes(useViewer.getToolMode) || (toolMode.value === 'compare' && compareStatus.value !== 'finished') ? 0 : 44
- })
- const loading = computed(() => useViewer.getUploadLoading && useViewer.getUpload)
- const activePanelTab = computed(() => useViewer.getActiveElementTab('leftPanelTab'))
- const load = computed(() => useViewer.getUpload)
- async function handleUpload(evt) {
- const file = evt.target.files[0];
- if (!file) return
- if (isLeftPanelOpen.value) {
- core.toggleSidebar()
- }
- useViewer.$patch({
- fullMode: false,
- currentPage: 0,
- scale: '',
- themeMode: 'Light',
- pageMode: 0,
- scrollMode: 'Vertical',
- activeTab: 0,
- searchStatus: false,
- activeElements: {
- leftPanel: false,
- rightPanel: false
- },
- activeElementsTab: {
- leftPanelTab: 'THUMBS',
- rightPanelTab: 'GENERAL'
- }
- })
- useDocument.resetSetting()
- core.clearSearchResults()
- useDocument.setToolState('')
- useViewer.setActiceToolMode('view')
- useViewer.setUploadLoading(true)
- let filename = file.name
- useViewer.setUpload(true)
- let url = URL.createObjectURL(file);
- await handlePdf(url, filename)
- useViewer.setUploadLoading(false)
- }
- const loadingPercent = computed(() => useDocument.getLoadingProgress)
- async function handlePdf(pdf, filename = null) {
- const options = {
- extension: getHashParameters('extension', null),
- filename: getHashParameters('filename', null) || filename,
- externalPath: getHashParameters('p', ''),
- documentId: getHashParameters('did', null),
- progress: useDocument.setLoadingProgress,
- pageChangedCallback: useViewer.setCurrentPage,
- scaleChangedCallback: useViewer.setCurrentScale,
- annotationsNumChangedCallback: useDocument.setAnnotationsCount,
- distanceChangedCallback: useDocument.setDistance
- }
- try {
- const { pwd } = await loadDocument(pdf, options)
- useDocument.setFileHasPwd(pwd)
- useDocument.setCurrentPdfData(pdf, options)
- useDocument.setOutline(core.getOutlines())
- const toolModeChanged = (mode) => {
- if (mode === toolMode.value) return
- useViewer.setActiceToolMode(mode)
- }
- core.addEvent('toolModeChanged', toolModeChanged)
- } catch (error) {
- console.log(error)
- if (error === 'invalid_file_error' || error === 'no_password_given' || error === 'incorrect_password') {
- useViewer.setUpload(false)
- useViewer.resetSetting()
- const openFileInput = document.getElementById("fileInput")
- openFileInput.value = ''
- useDocument.setCurrentPdfData()
- return
- }
- }
- const totalPages = core.getPagesCount()
- const scale = core.getScale()
- useDocument.setTotalPages(totalPages)
- useViewer.setCurrentPage(1)
- useViewer.setCurrentScale(scale)
- }
- onMounted(async () => {
- const res = await initConfig({
- // license: 'NjVlZmJmYTg3NTA1Yw=='
- // license: 'QSy1pbS2oS2Szj1i6oVBY3ZN6fMyhn6rqBLWIBNnez4='
- // license: 'pB3xWyaCvnrPR/fDkBPjh+E1LeA0e+bEj6Z7a5VI1tQ='
- // license: 'e+L5dBrcDnQJXP98kF7oHEo11SLrWIWse5oWqj5ykMU='
- license: 'qMP0vqPQwaQRzgpdsgT8XjiXImmg3wewcg4ZdhADT9+PImvelornERhjuXFmSm1u6vulW5hSW2Yl8JbNZVPfKYkWjYNnsFPdbF08Ki2XFXECyd+ioqSmR6QgXTzvjvsnYHAgHWlW1qaV3grt65gN3RTCPe32s3IAmZNyaXNJsFS6TbpO5Fz4Kha+hIC/0QKIY5f736R9Do368GJi1wsFtx3fpVqFSq1tE3/tEhm43GEom+y1Ea5sH8DJxSLa3uHndmmzPCDWhXNg+04zcDd7pRsFx/8QFm/IqOAp/SezG1QeZ3gZ2+CRt43iBqfeevPMbi3qtoX8IuN5HEOVGIDO6q8kD+Q9C95FZo3W7DLPF5IZWiBPIsFBXW6GG9jIMlEFWe5rnWo7I9ujPHSweIzq22orZsVxD5tPPZ5v7nNW86LvpYVrsZA1ZWyQ08PB4C5RojNrlBK+2jwgC76todX8+OMMXi5FZaHOhVK4mdgXvNKoU3I/BJTvpGOfrVXKJOP5Rm9A3ki7tGs3KS1+TcPxP+7hkxw+qkcPbbYUUZGSaFhWNmeZ8AxazlM2vWnAKDfxyB3zkYt10OmuUj4xx8hkvV5adbfllpJjvdp0DBYyOc6+K0TBVof+phlwhjszWrdm3QIveURmbR763QUBTybPikNm7rh2AHOlZwPY0qWudzuJdXp7Ua4M8Hk2hIUl5hSAyi0KfwVzaj4qZFJz98c3GhGqSEkBoRJBWuxkclY+4WlEQ+GYDjWpAryku2gWr457'
- })
- const options = {}
- const webviewerMode = !!(options && options.webviewerServer) ? options.webviewerServer : 'Standalone'
- useViewer.setWebviewerMode(webviewerMode)
- if (!res) return
- useViewer.setVierified(res)
- useViewer.setLicense(getDocumentViewer()._license)
- const thumbnailView = document.querySelector('.thumbnail-view')
- const annotationView = document.querySelector('.annotation-view')
- const outlineView = document.querySelector('.outline-view')
- const findbarView = document.querySelector('.findbar-view')
- initializeViewer({
- container: mainContainer.value,
- viewer: viewerContainer.value,
- thumbnailView,
- outlineView,
- annotationView,
- findbarView,
- toggleButton: document.querySelector('.toggle-button')
- })
- let initialDoc = getHashParameters('d', '')
- initialDoc = initialDoc ? JSON.parse(initialDoc) : './example/PDF Tech Admin Console Guidelines.pdf'
- initialDoc = Array.isArray(initialDoc) ? initialDoc : [initialDoc]
- const activeTab = useViewer.activeTab || 0
- initialDoc = initialDoc[activeTab]
- if (initialDoc) {
- useViewer.setUpload(true)
- useViewer.setUploadLoading(true)
- await handlePdf(initialDoc)
- useViewer.setUploadLoading(false)
- } else {
- useViewer.setUpload(false)
- }
- core.addEvent('onPagesUpdated', () => {
- useDocument.setOutline(core.getOutlines())
- const totalPages = core.getPagesCount()
- const scale = core.getScale()
- useDocument.setTotalPages(totalPages)
- useViewer.setCurrentPage(1)
- useViewer.setCurrentScale(scale)
- const scrollMode = useViewer.getScrollMode
- const pageMode = useViewer.getPageMode
- const modeNum = scrollMode === 'Vertical' ? 0 : 1
- core.switchScrollMode(modeNum)
- core.switchSpreadMode(pageMode)
- })
- })
- </script>
- <style lang="scss">
- .grab-to-pan-grab {
- cursor: grab !important;
- }
- .grab-to-pan-grabbing {
- cursor: grabbing !important;
- position: fixed;
- background: rgba(0, 0, 0, 0);
- display: block;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- overflow: hidden;
- z-index: 50000;
- }
- .document-container {
- overflow: auto;
- position: absolute;
- top: 44px;
- right: 0;
- bottom: 0;
- left: 0;
- outline: none;
- transition: all .3s ease-in-out;
- }
- .no-select {
- .textLayer span {
- user-select: none;
- -webkit-user-select: none;
- }
- .annotationContainer>div .freetext {
- pointer-events: none;
- }
- }
- .under {
- z-index: -1;
- opacity: 0;
- pointer-events: none;
- }
- .loading-state {
- position: fixed;
- left: 50%;
- top: 50%;
- transform: translate(-50%, -50%);
- font-size: 46px;
- z-index: 2;
- }
- .upload-container {
- position: absolute;
- top: 44px;
- right: 0;
- bottom: 0;
- left: 0;
- z-index: 1;
- display: flex;
- justify-content: center;
- align-items: center;
- width: 100%;
- height: calc(100vh - 44px);
- input {
- display: none;
- }
- label {
- display: inline-block;
- background-color: #0097FF;
- width: 260px;
- height: 48px;
- font-size: 24px;
- line-height: 48px;
- text-align: center;
- color: #FFFFFF;
- }
- }
- .annotationLayer {
- background: transparent;
- position: absolute;
- top: 0;
- left: 0;
- -webkit-transform-origin: 0 0;
- transform-origin: 0 0;
- cursor: auto;
- z-index: 2;
- }
- .annotationLayer svg {
- display: block;
- pointer-events: auto;
- }
- .inkEditor .inkEditorCanvas {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- touch-action: none;
- }
- .inkEditor {
- position: absolute;
- background: transparent;
- border-radius: 3px;
- overflow: auto;
- width: 100%;
- height: 100%;
- z-index: 1;
- -webkit-transform-origin: 0 0;
- transform-origin: 0 0;
- cursor: auto;
- }
- .inkEditor.selectedAnnotation {
- outline: solid 2px rgb(71, 126, 222);
- }
- .stickyAnnotation,
- .editor-container {
- position: absolute;
- pointer-events: auto;
- }
- .stickyAnnotation {
- outline: none;
- font-size: 0;
- border: 1px solid transparent;
- }
- .selectedAnnotation {
- border-color: rgb(71, 126, 222);
- }
- .editor-container {
- transform: translateX(-50%);
- width: 300px;
- height: 247px;
- padding: 6px;
- z-index: 1;
- box-sizing: border-box;
- background-color: rgb(255, 245, 203);
- box-shadow: rgb(0, 0, 0, 10%) 0px -2px 12px 2px;
- border-radius: 5px;
- border: none;
- outline: none;
- font-size: 12px;
- color: rgb(51, 51, 51);
- line-height: 17px;
- resize: none;
- text-align: left;
- }
- .print-dialog {
- display: none;
- position: fixed;
- top: 0;
- bottom: 0;
- left: 0;
- right: 0;
- z-index: 100;
- background-color: rgba(0, 0, 0, 0.2);
- &.show {
- display: block;
- }
- .print-container {
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- width: 100%;
- max-width: 254px;
- padding: 15px;
- border-spacing: 4px;
- color: #000;
- font-size: 12px;
- line-height: 14px;
- background-color: #FFF;
- border: 1px solid rgba(0, 0, 0, 0.5);
- border-radius: 4px;
- box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
- }
- .print-title {
- margin-bottom: 20px;
- }
- .print-progress .relative-progress {
- margin-left: 10px;
- }
- }
- @media screen and (max-width: 640px) {
- .document-container {
- width: 100%;
- }
- }
- @media screen and (min-width: 641px) {
- .document-container {
- width: calc(100% - 260px);
- margin-left: 260px;
- }
- }
- .document .page {
- position: relative;
- margin: 20px auto;
- background-clip: content-box;
- background-color: rgba(255, 255, 255, 1);
- >.freetext {
- position: absolute;
- z-index: 5;
- pointer-events: auto;
- outline: none;
- }
- .text-title {
- padding: 8px 0 5px;
- font-weight: bold;
- font-size: 14px;
- line-height: 16px;
- color: #333333;
- }
- &.text svg {
- cursor: text !important;
- }
- .text-container .text-selection {
- position: absolute;
- z-index: 122;
- cursor: text;
- background-color: rgba(0, 0, 255, 0.25);
- }
- }
- .document.scrollHorizontal,
- .spread {
- white-space: nowrap;
- text-align: center;
- .spread,
- .page {
- display: inline-block;
- margin: 20px;
- vertical-align: middle;
- }
- }
- .pdfPresentationMode .page {
- margin: 2px;
- display: inline-block;
- vertical-align: middle;
- }
- .document.scrollHorizontal .spread {
- margin: 0px;
- }
- .document {
- &.annotation-edit .textLayer {
- pointer-events: none;
- }
- .canvasWrapper {
- position: absolute;
- pointer-events: none;
- overflow: hidden;
- width: 100%;
- height: 100%;
- z-index: 1;
- }
- .page canvas {
- width: 100%;
- height: 100%;
- }
- .page.loadingIcon:after {
- position: absolute;
- top: 0;
- left: 0;
- content: "";
- width: 100%;
- height: 100%;
- background: url('/images/loading-icon.gif') center no-repeat;
- display: none;
- transition-property: display;
- transition-delay: 400ms;
- z-index: 5;
- contain: strict;
- }
- .page.loading:after {
- display: block;
- }
- }
- .textLayer {
- position: absolute;
- text-align: initial;
- pointer-events: none;
- left: 0;
- top: 0;
- right: 0;
- bottom: 0;
- overflow: hidden;
- line-height: 1;
- -webkit-text-size-adjust: none;
- -moz-text-size-adjust: none;
- -ms-text-size-adjust: none;
- text-size-adjust: none;
- forced-color-adjust: none;
- line-height: 1;
- transform-origin: 0 0;
- z-index: 3;
- & ::selection {
- background-color: rgba(0, 0, 255, 0.25);
- }
- .blank::selection {
- background-color: transparent;
- }
- }
- [data-main-rotation="90"] {
- transform: rotate(90deg) translateY(-100%);
- }
- .textLayer .markedContent {
- top: 0;
- height: 0;
- }
- .textLayer br {
- display: none;
- }
- .textLayer span {
- color: transparent;
- position: absolute;
- white-space: pre;
- pointer-events: none;
- cursor: text;
- -webkit-transform-origin: 0% 0%;
- transform-origin: 0% 0%;
- }
- .searchContainer {
- position: absolute;
- top: 0;
- left: 0;
- z-index: 3;
- pointer-events: none;
- }
- .searchContainer .highlight {
- position: absolute;
- background-color: rgba(255, 255, 0, 0.25);
- }
- .searchContainer .selected .highlight {
- background-color: rgba(255, 255, 0, 0.7);
- }
- .findbar {
- padding: 8px;
- background-color: var(--c-findbar-bg);
- &.hidden {
- display: none;
- }
- .findbarInputContainer {
- display: flex;
- align-items: center;
- }
- .input-container {
- flex-grow: 1;
- display: flex;
- width: 180px;
- margin: 3px 0;
- padding: 0 8px;
- border-radius: 1px;
- border: 1px solid var(--c-findbar-input-border);
- background-color: var(--c-findbar-input-bg);
- }
- input {
- flex-grow: 1;
- width: 0;
- height: 30px;
- outline: none;
- padding: 5px 8px;
- box-shadow: none;
- border: none;
- background-color: var(--c-findbar-input-bg);
- color: var(--c-findbar-text);
- }
- .toolbarLabel {
- font-size: 14px;
- line-height: 30px;
- color: var(--c-findbar-text);
- white-space: nowrap;
- }
- .button {
- margin-left: 8px;
- padding: 0;
- color: var(--c-findbar-text);
- }
- }
- .contentContainer {
- position: absolute;
- left: 0;
- top: 0;
- right: 0;
- bottom: 0;
- overflow: hidden;
- line-height: 1;
- -webkit-text-size-adjust: none;
- -moz-text-size-adjust: none;
- -ms-text-size-adjust: none;
- text-size-adjust: none;
- forced-color-adjust: none;
- line-height: 1;
- transform-origin: 0 0;
- z-index: 6;
- .cursor-animation {
- animation: caretanimation 1.2s steps(2, jump-none) 0s infinite normal both running;
- }
- .frame-container {
- .text-container,
- .image-container {
- border-style: dashed;
- }
- .text-container textarea {
- cursor: default;
- }
- &.selected {
- z-index: 2;
- }
- &.editing {
- .text-container,
- .image-container {
- border-style: solid;
- z-index: 1;
- }
-
- .text-container textarea {
- cursor: text;
- }
- }
- }
- }
- .document-container.pdfPresentationMode .contentContainer {
- display: none !important;
- }
- .document-container.pdfPresentationMode {
- top: 0;
- background-color: rgb(0 0 0);
- width: 100%;
- height: 100%;
- overflow: hidden;
- cursor: none;
- user-select: none;
- }
- .document .dummyPage {
- position: relative;
- width: 0;
- height: 100vh;
- display: inline-block;
- vertical-align: middle;
- }
- @keyframes caretanimation {
- 0% {
- color: #000;
- }
- 100% {
- color: transparent;
- }
- }
- </style>
|