🍱 Vue.js components for Nextcloud app development ✌ https://npmjs.org/@nextcloud/vue
Перейти к файлу
dependabot[bot] bd3d3238bc
Bump @babel/core from 7.14.3 to 7.14.5
Bumps [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core) from 7.14.3 to 7.14.5.
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.14.5/packages/babel-core)

---
updated-dependencies:
- dependency-name: "@babel/core"
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2021-06-10 03:10:47 +00:00
.github Add changelog generator action 2021-04-07 09:38:57 +02:00
build Fix translation extraction 2021-03-28 23:38:29 +02:00
cypress Update cypress screenshots 2021-04-04 23:54:44 +02:00
docs fix package rename 2019-10-29 15:57:09 +01:00
l10n Translate /l10n/messages.pot in cs_CZ 2021-06-04 00:49:44 +00:00
src Update src/components/ListItem/ListItem.vue 2021-06-09 08:44:29 +01:00
styleguide Fix documentation after #1759 2021-06-04 16:12:48 +02:00
tests Fix jest 2021-04-02 10:39:01 +02:00
.editorconfig Init component structure 2018-08-17 16:57:42 +02:00
.eslintrc.js Implement show details toggle and fix various logic issues 2021-06-03 14:21:16 +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
.stylelintrc.js Allow pausing ongoing modal slideshow 2019-08-07 12:34:12 +02:00
CHANGELOG.md Bump changelog for 3.9.0 2021-04-07 09:38:57 +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 Fix release documentation 2021-06-03 16:22:29 +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 @babel/core from 7.14.3 to 7.14.5 2021-06-10 03:10:47 +00:00
package.json Revert "Replace node-sass with sass" 2021-06-07 10:40:00 +02:00
styleguide.config.js Improve documentation sections 2021-04-27 11:42:37 +02:00
webpack.common.js Cleanup old iconfont plugins 2021-04-02 10:39:01 +02: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: git checkout -b npm/v<version>;
  • Run npm version patch (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;
  • Tag the commit then push the tag: git tag v<version>, git push --tag;
  • Get your PR reviewed and merged;
  • Create a release on github from the tag and add the changelog content as description (https://github.com/nextcloud/nextcloud-vue/releases);