🍱 Vue.js components for Nextcloud app development ✌ https://npmjs.org/@nextcloud/vue
Перейти к файлу
Grigorii K. Shartsev 6df5c5e286 chore(deps): move vue from peer to deps
Signed-off-by: Grigorii K. Shartsev <me@shgk.me>
2024-06-05 19:22:10 +02:00
.github fix: update timezone data and automate future updates 2024-05-09 14:06:26 +00:00
build chore: Move to ESM package 2024-01-09 14:34:51 +01:00
cypress fix(cypress): Adjust screenshots 2024-05-17 16:43:06 +02:00
docs chore: Fix URLs after package was transfered 2023-07-28 18:29:53 +02:00
l10n feat(NcAppSidebar): Add open toggle button 2024-05-17 13:12:16 +02:00
resources/timezones fix: update timezone data and automate future updates 2024-05-09 14:06:26 +00:00
src chore(NcEllipsisedOption): add docs 2024-06-04 19:11:38 +00:00
styleguide fix: Update styles from server 2024-05-19 14:49:08 +02:00
tests refactor: Fix linter issues on test case files 2024-05-31 11:57:42 +02:00
.editorconfig chore(editorconfig): Add 2 space rule for yml files 2023-07-18 13:39:42 +02:00
.eslintrc.json fix(deps): Update all dependencies for Vue 3 branch 2024-04-10 01:08:57 +02:00
.gitignore Remove webpack dev config file 2022-09-06 14:45:47 +02:00
.stylelintignore Icon font 2019-01-07 17:06:57 +01:00
CHANGELOG.md Update CHANGELOG.md 2024-05-19 21:14:06 +02:00
LICENSE Copyright typo fix 2018-10-26 10:50:25 +02:00
Makefile Fix old import 2020-03-26 09:55:37 +01:00
README.md chore(README): remove build:module and watch:module 2024-03-07 19:03:27 +00:00
babel.config.cjs feat: Allow to write components using Typescript and generate type declarations 2024-01-10 00:56:15 +01:00
cypress.config.ts Merge remote-tracking branch 'origin' into chore/5230/merge-master-next 2024-02-11 10:46:59 +01:00
package-lock.json chore(deps): move vue from peer to deps 2024-06-05 19:22:10 +02:00
package.json chore(deps): move vue from peer to deps 2024-06-05 19:22:10 +02:00
styleguide.config.cjs Merge remote-tracking branch 'origin' into chore/noid/merge-master-next 2024-01-19 09:31:02 +01:00
stylelint.config.cjs Merge remote-tracking branch 'origin' into chore/5230/merge-master-next 2024-02-11 10:46:59 +01:00
transifex.yml add: transifex.yml 2023-10-03 08:28:47 +02:00
tsconfig.json fix: Adjust Typescript definition export 2024-05-11 15:59:08 +02:00
vite.config.ts refactor!: Drop CJS entry points, only provide ESM 2024-05-17 20:29:59 +02:00
vitest.config.ts fix: Adjust vitest config for vitest 1.x 2024-01-10 23:59:53 +01:00
webpack.config.cjs fix(styleguide): Speedup build by not typechecking (this is done by code build) 2024-05-11 15:08:36 +02:00

README.md

Vue components

npm last version Dependabot status

This repo contains the various Vue.js components that Nextcloud uses for its internal design and structure. It provides standardized UI elements for building Nextcloud app frontends with Vue.js.

Documentation

A list of available components with examples to try out is available in the documentation.

The documentation is built from the latest development branch, for stable releases the documentation can be found matching the latest minor version:

Getting started

App example

If you want to check a real live example of a nextcloud app that uses this library, you can head over to https://github.com/skjnldsv/vueexample/ We will try to maintain this repository the best we can, but some example might be obsolete. Always check this repository documentation.

Install the library

npm i --save @nextcloud/vue

Usage

To use a component, just import it:

import { NcAppNavigation, NcActions, NcActionButton } from '@nextcloud/vue'

Registering all components.

Be careful, this will registry all components and directives, even the ones not being used.

import Vue from 'vue'
import { NextcloudVuePlugin } from '@nextcloud/vue'

Vue.use(NextcloudVuePlugin)

Development setup

If you want to work on improving the components its best to run the latest code and link it to your local Nextcloud installation:

  1. Install the dependencies with npm ci
  2. Build the components every time you do changes: npm run build
    • To make development build: npm run dev
    • To watch for changes and rebuild automatically: npm run watch
    • To watch for changes and rebuild development build: npm run dev:watch
  3. Connect it to your local Nextcloud development setup:
    • In this repository do npm link
    • In the repository of an app do npm link @nextcloud/vue (you need to re-link any time you do npm ci in the app)
  4. Then build the app with: npm run build (or watch for changes with npm run watch)

Translations

This library uses translated strings. When you edit/create a translated string, you need to run npm run l10n:extract to update the source files. Our awesome translation community will then be notified and a bot will sync those changes automatically.

Nonetheless, it requires a bit of caution. When you implement a translated string, import the translate or translatePlural and add it in your methods like so:

<template>
	<element>
		{{ t('Choose') }}
	</element>
</template>

<script>
import { translate as t } from '@nextcloud/l10n'

export default {
	methods: {
		t,
	},
}
</script>

Please note that using a translated string as an attribute will NOT work. But it will work if it's within an element (like the example above)

<template>
	<element :prop="t('This will not work')" />
</template>

You will instead have to define the string in the data section and use the relevant variable reference.

<template>
	<element :prop="chooseProp" />
</template>

<script>
export default {
	data() {
		return {
			chooseProp: t('Choose'),
		},
	}
}
</script>

Styleguide

When developing new components or extending components, make sure to also have some bits of related documentation like examples, where applicable. To test components and the documentation in that context, you can run npm run styleguide to run a local server that serves the style guide with all the components.

Using vue-devtools in Firefox

If you want to use vue-devtools in Firefox, you need to:

  • Either enable the HMR Enabler app …
  • … or patch your nextcloud instance as follows:
diff --git a/lib/public/AppFramework/Http/ContentSecurityPolicy.php b/lib/public/AppFramework/Http/ContentSecurityPolicy.php
index 0e3a6a705d..416b8b0fb9 100644
--- a/lib/public/AppFramework/Http/ContentSecurityPolicy.php
+++ b/lib/public/AppFramework/Http/ContentSecurityPolicy.php
@@ -41,9 +41,9 @@ namespace OCP\AppFramework\Http;
  */
 class ContentSecurityPolicy extends EmptyContentSecurityPolicy {
        /** @var bool Whether inline JS snippets are allowed */
-       protected $inlineScriptAllowed = false;
+       protected $inlineScriptAllowed = true;
        /** @var bool Whether eval in JS scripts is allowed */
-       protected $evalScriptAllowed = false;
+       protected $evalScriptAllowed = true;
        /** @var bool Whether strict-dynamic should be set */
        protected $strictDynamicAllowed = false;
        /** @var array Domains from which scripts can get loaded */

Releasing a new version

  • Pull the latest changes from master or stableX
  • Checkout a new branch with the tag name (e.g v4.0.1): git checkout -b v<version>
  • Run npm version patch --no-git-tag-version (npm version minor --no-git-tag-version if minor). This will return a new version name, make sure it matches what you expect
  • Generate the changelog content from the release page. Create a draft release, select the previous tag, click generate then paste the content to the CHANGELOG.md file
    1. use the the version as tag AND title (e.g v4.0.1)
    2. add the changelog content as description (https://github.com/nextcloud-libraries/nextcloud-vue/releases)
  • Commit, push and create PR
  • Get your PR reviewed and merged
  • Create a milestone with the follow-up version at https://github.com/nextcloud-libraries/nextcloud-vue/milestones
  • Move all open tickets and PRs to the follow-up
  • Close the milestone of the version you release
  • Publish the previously drafted release on GitHub image

Releasing a pre-release

A pre-release can be built in the same way as described above, however it requires manual adjustments to avoid that npm ships the pre-release to all users:

  1. Retag latest to the last stable release

    npm dist-tag add @nextcloud/vue@5.4.0 latest

  2. Tag the new pre-release as next

    npm dist-tag add @nextcloud/vue@6.0.0-beta.2 next