🍱 Vue.js components for Nextcloud app development ✌ https://npmjs.org/@nextcloud/vue
Перейти к файлу
Julius Härtl 0cdc3a724d
Merge pull request #2336 from nextcloud/translations_l10n-messages-pot--master_de_DE
2021-10-25 17:37:04 +02:00
.github Updating command-rebase.yml workflow from template 2021-08-02 08:44:34 +00:00
build Fix translation extraction 2021-03-28 23:38:29 +02:00
cypress Update base images 2021-09-20 20:54:32 +02:00
docs Don't rely on Vue.prototype.t 2021-09-10 22:11:42 +02:00
l10n Translate /l10n/messages.pot in de_DE 2021-10-25 15:19:40 +00:00
resources/timezones Separate words in descriptions 2021-07-21 13:55:58 -07:00
src Merge pull request #2312 from nextcloud/fix/accessibility-status 2021-10-25 14:32:18 +02:00
styleguide Create button component 2021-10-11 11:33:53 +02:00
tests Only find first occurence of overlapping ranges 2021-09-10 10:43:57 +02:00
.editorconfig Init component structure 2018-08-17 16:57:42 +02:00
.eslintrc.js Move to npm 7 & update global configs 2021-07-27 10:58:57 +02:00
.gitignore Add changelog file 2020-11-25 17:57:34 +01:00
.stylelintignore Icon font 2019-01-07 17:06:57 +01:00
CHANGELOG.md 4.1.0 2021-08-24 14:58:10 +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 Simplify release process 2021-07-05 10:39:05 +02:00
babel.config.js Fix babel 2021-04-14 08:08:07 +02:00
cypress.json Bump cypress config and split into two specs 2020-11-05 16:44:57 +01:00
package-lock.json Bump cypress-visual-regression from 1.6.1 to 1.6.2 2021-10-22 06:04:52 +00:00
package.json 5.0.0-beta.0 2021-10-21 12:08:15 +02:00
styleguide.config.js Fix empty user bubble 2021-09-13 22:12:08 +02:00
stylelint.config.js Move to npm 7 & update global configs 2021-07-27 10:58:57 +02:00
webpack.common.js attempt without using resolve-url-loader 2021-08-02 18:49:05 +00:00
webpack.dev.js Bump webpack-merge from 4.2.2 to 5.0.8 2020-07-08 13:08:32 +02:00
webpack.prod.js Bump webpack-merge from 4.2.2 to 5.0.8 2020-07-08 13:08:32 +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.

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 { AppNavigation } from '@nextcloud/vue'

Depending on which components you use, you might want to only import individual (separately bundled) components:

import Avatar from '@nextcloud/vue/dist/Components/Avatar'

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
  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)

Styleguide

When developing new components or extending compnents, 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 patch your nextcloud instance as follow:

diff --git a/lib/public/AppFramework/Http/ContentSecurityPolicy.php b/lib/public/AppFramework/Http/ContentSecurityPolicy.php
index 3a9ab8f8c1..4bc2b4a4d0 100644
--- a/lib/public/AppFramework/Http/ContentSecurityPolicy.php
+++ b/lib/public/AppFramework/Http/ContentSecurityPolicy.php
@@ -42,9 +42,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 array Domains from which scripts can get loaded */
        protected $allowedScriptDomains = [
                '\'self\'',

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;
  • Commit, push and create PR;
  • Add the change log content from the 'Changelog' action on Github to CHANGELOG.md;
  • Commit and push;
  • Get your PR reviewed and merged;
  • Create a release on github with the version as tag (e.g v4.0.1) and add the changelog content as description (https://github.com/nextcloud/nextcloud-vue/releases); image