-
-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Move left sidebar to specific component
Signed-off-by: Vitor Mattos <[email protected]>
- Loading branch information
1 parent
a074818
commit a253ffe
Showing
2 changed files
with
140 additions
and
94 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,137 @@ | ||
<!-- | ||
- @copyright Copyright (c) 2024 Vitor Mattos <[email protected]> | ||
- | ||
- @author Vitor Mattos <[email protected]> | ||
- | ||
- @license GNU AGPL version 3 or any later version | ||
- | ||
- This program is free software: you can redistribute it and/or modify | ||
- it under the terms of the GNU Affero General Public License as | ||
- published by the Free Software Foundation, either version 3 of the | ||
- License, or (at your option) any later version. | ||
- | ||
- This program is distributed in the hope that it will be useful, | ||
- but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
- GNU Affero General Public License for more details. | ||
- | ||
- You should have received a copy of the GNU Affero General Public License | ||
- along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
--> | ||
|
||
<template> | ||
<NcAppNavigation> | ||
<template #list> | ||
<NcAppNavigationItem v-if="back_to_signature" | ||
class="back_to_signature" | ||
icon="icon-history" | ||
:name="t('libresign', 'Back to sign')" | ||
@click="goToSign" /> | ||
|
||
<NcAppNavigationItem v-if="canRequestSign" | ||
id="request-files" | ||
:to="{name: 'requestFiles'}" | ||
:name="t('libresign', 'Request')" | ||
@click="unselectFile"> | ||
<template #icon> | ||
<FileSignIcon :size="20" /> | ||
</template> | ||
</NcAppNavigationItem> | ||
<NcAppNavigationItem id="timeline" | ||
:to="{ name: 'timeline' }" | ||
:name="t('libresign', 'Files')" | ||
@click="unselectFile"> | ||
<template #icon> | ||
<FolderIcon :size="20" /> | ||
</template> | ||
</NcAppNavigationItem> | ||
<NcAppNavigationItem id="validation" | ||
:to="{name: 'validation'}" | ||
:name="t('libresign', 'Validate')" | ||
@click="unselectFile"> | ||
<template #icon> | ||
<FileCheckIcon :size="20" /> | ||
</template> | ||
</NcAppNavigationItem> | ||
|
||
<NcAppNavigationItem v-if="config.identificationDocumentsFlow && config.isApprover" | ||
:to="{name: 'DocsAccountValidation'}" | ||
:name="t('libresign', 'Documents Validation')"> | ||
<template #icon> | ||
<AccountCheckIcon :size="20" /> | ||
</template> | ||
</NcAppNavigationItem> | ||
</template> | ||
<template #footer> | ||
<NcAppNavigationSettings :title="t('libresign', 'Settings')"> | ||
<CroppedLayoutSettings /> | ||
</NcAppNavigationSettings> | ||
</template> | ||
</NcAppNavigation> | ||
</template> | ||
|
||
<script> | ||
import NcAppNavigation from '@nextcloud/vue/dist/Components/NcAppNavigation.js' | ||
import NcAppNavigationItem from '@nextcloud/vue/dist/Components/NcAppNavigationItem.js' | ||
import NcAppNavigationSettings from '@nextcloud/vue/dist/Components/NcAppNavigationSettings.js' | ||
import { loadState } from '@nextcloud/initial-state' | ||
import { useFilesStore } from '../../store/files.js' | ||
import AccountCheckIcon from 'vue-material-design-icons/AccountCheck.vue' | ||
import FileCheckIcon from 'vue-material-design-icons/FileCheck.vue' | ||
import FileSignIcon from 'vue-material-design-icons/FileSign.vue' | ||
import FolderIcon from 'vue-material-design-icons/Folder.vue' | ||
import CroppedLayoutSettings from '../Settings/CroppedLayoutSettings.vue' | ||
export default { | ||
name: 'LeftSidebar', | ||
components: { | ||
NcAppNavigation, | ||
NcAppNavigationItem, | ||
NcAppNavigationSettings, | ||
AccountCheckIcon, | ||
FileCheckIcon, | ||
FolderIcon, | ||
FileSignIcon, | ||
CroppedLayoutSettings, | ||
}, | ||
setup() { | ||
const filesStore = useFilesStore() | ||
return { filesStore } | ||
}, | ||
data() { | ||
return { | ||
canRequestSign: loadState('libresign', 'can_request_sign', false), | ||
config: loadState('libresign', 'config', { | ||
identificationDocumentsFlow: false, | ||
isApprover: false, | ||
}), | ||
} | ||
}, | ||
computed: { | ||
back_to_signature() { | ||
return this.$route.query._back_to_signature | ||
}, | ||
}, | ||
methods: { | ||
unselectFile() { | ||
this.filesStore.selectFile() | ||
}, | ||
goToSign() { | ||
const route = this.$router.resolve({ name: 'SignPDF', params: { uuid: this.back_to_signature } }) | ||
window.location = route.href | ||
}, | ||
}, | ||
} | ||
</script> | ||
|
||
<style lang="scss"> | ||
.app-libresign { | ||
.app-navigation { | ||
.back_to_signature | ||
.app-navigation-entry__title { | ||
color: var(--color-warning, #eca700); | ||
} | ||
} | ||
} | ||
</style> |