-
Notifications
You must be signed in to change notification settings - Fork 21
chore: migrate to Vue 3 and @nextcloud/vue@v9 #1136
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
saw-jan
wants to merge
31
commits into
master
Choose a base branch
from
chore/migrate-to-vue3
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
31 commits
Select commit
Hold shift + click to select a range
3d58a0f
build: bump dependencies to support vue3
saw-jan 977a121
chore: ignore lint rules
saw-jan 5642218
chore: port to vue3
saw-jan 45b19ac
chore: port to vue3
saw-jan 3664107
chore: port to vue3
saw-jan b73beeb
chore: port to vue3
saw-jan 224fe71
chore: port to vue3
saw-jan 2d52e45
chore: port to vue3
saw-jan 8f796d3
chore: port to vue3
saw-jan 8586149
test: use vitest instead of jest
saw-jan a1bd467
test(vue): adjust spec files
saw-jan 5451fa5
chore: port to vue3
saw-jan 097d97b
test(vue): adjust spec files
saw-jan 287f113
refacotr: make update reactive
saw-jan 713fd13
test(vue): adjust spec files
saw-jan 7c1b905
test(vue): adjust spec files
saw-jan 0f3120d
chore: fix code format
saw-jan a47bc15
test(vue): adjust spec files
saw-jan fd5e111
test(vue): adjust spec files
saw-jan 219b17a
test(vue): adjust spec files
saw-jan 5264392
fix: convert string to boolean value
saw-jan d827330
test(vue): adjust spec files
saw-jan a7e0aee
test(vue): use global mock restore
saw-jan 5d8b060
test(vue): rename jest folder to js
saw-jan eda8d1d
test(vue): enable test coverage
saw-jan 55037e3
chore: add changelog entry
saw-jan 713e6f8
chore: update Nextcloud components
saw-jan 858fbe4
fix: use dark mode state
saw-jan fd09200
fix: let the theme decide the color
saw-jan 86088a7
chore: update Nextcloud components
saw-jan 34530f7
test(vue): adjust vue unit tests
saw-jan File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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,63 @@ | ||
| /** | ||
| * SPDX-FileCopyrightText: 2026 Jankari Tech Pvt. Ltd. | ||
| * SPDX-License-Identifier: AGPL-3.0-or-later | ||
| */ | ||
|
|
||
| const { recommendedJavascript: nextcloudConfig } = require('@nextcloud/eslint-config') | ||
| const { defineConfig } = require('eslint/config') | ||
|
|
||
| module.exports = defineConfig([ | ||
| ...nextcloudConfig, | ||
| { | ||
| languageOptions: { | ||
| globals: { | ||
| appVersion: true, | ||
| }, | ||
| parserOptions: { | ||
| requireConfigFile: false, | ||
| } | ||
| }, | ||
| rules: { | ||
| 'jsdoc/require-jsdoc': 'off', | ||
| 'jsdoc/tag-lines': 'off', | ||
| 'vue/first-attribute-linebreak': 'off', | ||
| 'import/extensions': 'off', | ||
| 'perfectionist/sort-imports': 'off', | ||
| 'perfectionist/sort-named-imports': 'off', | ||
| '@stylistic/eol-last': 'off', | ||
| 'vue/attribute-hyphenation': 'off', | ||
| 'vue/new-line-between-multi-line-property': 'off', | ||
| 'no-console': 'off', | ||
| '@stylistic/function-paren-newline': 'off', | ||
| 'no-unused-vars': 'off', | ||
| '@stylistic/arrow-parens': 'off', | ||
| 'vue/padding-line-between-blocks': 'off', | ||
| '@nextcloud/no-deprecated-library-props': 'off', | ||
| '@nextcloud/no-deprecated-globals': 'off', | ||
| 'object-shorthand': 'off', | ||
| '@stylistic/indent': 'off', | ||
| '@stylistic/indent-binary-ops': 'off', | ||
| 'curly': 'off', | ||
| 'vue/comma-dangle': 'off', | ||
| 'vue/quote-props': 'off', | ||
| '@stylistic/exp-list-style': 'off', | ||
| 'vue/no-deprecated-v-bind-sync': 'off', | ||
| 'vue/require-explicit-emits': 'off', | ||
| 'vue/comma-spacing': 'off', | ||
| 'vue/no-unused-refs': 'off', | ||
| '@stylistic/padded-blocks': 'off', | ||
| 'vue/no-unused-properties': 'off', | ||
| 'vue/space-infix-ops': 'off', | ||
| 'vue/no-boolean-default': 'off', | ||
| 'vue/v-on-event-hyphenation': 'off', | ||
| 'antfu/top-level-function': 'off', | ||
| 'vue/no-deprecated-v-on-native-modifier': 'off', | ||
| 'no-useless-assignment': 'off', | ||
| 'vue/no-required-prop-with-default': 'off', | ||
| 'preserve-caught-error': 'off', | ||
| 'vue/custom-event-name-casing': 'off', | ||
| 'vue/multi-word-component-names': 'off', | ||
| 'vue/no-deprecated-destroyed-lifecycle': 'off', | ||
| } | ||
| } | ||
| ]) | ||
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
these need to be enabled later on
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
will be done in separate PR: https://community.openproject.org/wp/NEX-440