LegacyTab.vue 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. <!--
  2. - @copyright Copyright (c) 2019 John Molakvoæ <skjnldsv@protonmail.com>
  3. -
  4. - @author John Molakvoæ <skjnldsv@protonmail.com>
  5. -
  6. - @license GNU AGPL version 3 or any later version
  7. -
  8. - This program is free software: you can redistribute it and/or modify
  9. - it under the terms of the GNU Affero General Public License as
  10. - published by the Free Software Foundation, either version 3 of the
  11. - License, or (at your option) any later version.
  12. -
  13. - This program is distributed in the hope that it will be useful,
  14. - but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. - GNU Affero General Public License for more details.
  17. -
  18. - You should have received a copy of the GNU Affero General Public License
  19. - along with this program. If not, see <http://www.gnu.org/licenses/>.
  20. -
  21. -->
  22. <template>
  23. <AppSidebarTab :icon="icon"
  24. :name="name"
  25. :active-tab="activeTab" />
  26. </template>
  27. <script>
  28. import AppSidebarTab from 'nextcloud-vue/dist/Components/AppSidebarTab'
  29. export default {
  30. name: 'LegacyTab',
  31. components: {
  32. AppSidebarTab: AppSidebarTab
  33. },
  34. props: {
  35. component: {
  36. type: Object,
  37. required: true
  38. },
  39. name: {
  40. type: String,
  41. default: '',
  42. required: true
  43. },
  44. fileInfo: {
  45. type: Object,
  46. default: () => {},
  47. required: true
  48. }
  49. },
  50. computed: {
  51. icon() {
  52. return this.component.getIcon()
  53. },
  54. id() {
  55. // copied from AppSidebarTab
  56. return this.name.toLowerCase().replace(/ /g, '-')
  57. },
  58. order() {
  59. return this.component.order
  60. ? this.component.order
  61. : 0
  62. },
  63. // needed because AppSidebarTab also uses $parent.activeTab
  64. activeTab() {
  65. return this.$parent.activeTab
  66. }
  67. },
  68. watch: {
  69. activeTab(activeTab) {
  70. if (activeTab === this.id && this.fileInfo) {
  71. this.setFileInfo(this.fileInfo)
  72. }
  73. }
  74. },
  75. mounted() {
  76. // append the backbone element and set the FileInfo
  77. this.component.$el.appendTo(this.$el)
  78. },
  79. methods: {
  80. setFileInfo(fileInfo) {
  81. this.component.setFileInfo(new OCA.Files.FileInfoModel(fileInfo))
  82. }
  83. }
  84. }
  85. </script>
  86. <style>
  87. </style>