📑 Collaborative document editing using Markdown
Перейти к файлу
max-nextcloud 6201c92de7
Merge pull request #3584 from meonkeys/patch-1
README: fix link to tiptap
2022-12-18 22:37:37 +01:00
.github Use GH ref as cypress run title² 2022-11-23 15:02:27 +01:00
.tx [tx-robot] Update transifex configuration 2022-10-01 03:02:12 +00:00
appinfo Add Nextcloud 25 support on master 2022-09-22 13:19:33 +02:00
css fix: adjust margin for hr 2022-10-18 06:13:51 +00:00
cypress Prevent hard breaks to be created within headlines 2022-12-14 06:34:00 +01:00
img Fix notification icon color 2022-11-22 00:03:39 +01:00
js Compile assets 2022-12-17 10:17:04 +00:00
l10n [tx-robot] updated from transifex 2022-12-18 02:59:58 +00:00
lib Support table column alignment 2022-12-06 15:55:01 +01:00
src Use saving indicator as used in the office app 2022-12-16 15:01:02 +01:00
templates Do not attempt to load a non-existing script 2022-10-12 10:20:39 +02:00
tests fix: feedback 2022-10-10 19:19:42 +02:00
.eslintignore 🔧 (#2462): small script adjusts 2022-05-31 16:16:24 -03:00
.eslintrc.js (#2184): add eslint-plugin-cypress 2022-03-14 11:38:29 -03:00
.gitattributes Add gitattributes 2019-08-06 10:42:47 +02:00
.gitignore gitignore: dist directory 2022-06-07 19:42:01 +02:00
.l10nignore Add translations for menu bar and ignore js folder 2019-07-17 16:40:03 +02:00
.php-cs-fixer.dist.php update: Nextcloud Coding Standard to 1.0 2022-01-18 10:47:20 +01:00
.stylelintrc.js fix stylelint config and one css import 2021-12-30 12:11:55 +01:00
CHANGELOG.md Prepare release of 1.0.2 2019-08-08 10:16:01 +02:00
COPYING Add basic app structure 2019-03-18 17:15:31 +01:00
Makefile Remove test routine from Makefile all target 2022-01-11 11:07:31 +01:00
README.md README: fix link to tiptap 2022-12-18 11:03:25 -08:00
babel.config.js Fix chunk generation 2021-07-14 14:54:44 +02:00
composer.json Migrate to nextcloud/OCP package in master 2022-09-26 20:22:18 +02:00
composer.lock Update psalm baseline 2022-12-18 04:21:46 +00:00
cypress.config.js cypress: Use createUser and login from @nextcloud/cypress 2022-11-30 11:30:53 +01:00
index.html Load Nextcloud server css files remotely from Github in index.html 2022-09-20 17:25:48 +02:00
jest-raw-loader.js ⬆️ Upgrade dependencies 2022-07-22 08:57:07 -03:00
jsconfig.json 🔧 (#2462): small script adjusts 2022-05-31 16:16:24 -03:00
krankerl.toml Prepare first release 2019-06-27 09:27:16 +02:00
package-lock.json chore(deps): update dependency vite to ^4.0.2 2022-12-18 12:17:21 +00:00
package.json chore(deps): update dependency vite to ^4.0.2 2022-12-18 12:17:21 +00:00
psalm.xml More package rename 2022-09-27 07:55:09 +02:00
renovate.json renovate: group cypress and @nextcloud/cypress together 2022-12-11 13:08:38 +01:00
vite.config.js change vite-plugin-vue2 to @vitejs/plugin-vue2 2022-07-22 10:53:52 -03:00
webpack.js webpack: use hardcoded appname for now 2022-06-07 19:42:03 +02:00

README.md

Nextcloud Text

GitHub Workflow Status Start contributing

📑 Collaborative document editing!

Features

  • 📝 Simple focused writing: No distractions, only the formatting you need.
  • 🙋 Work together: Share and collaborate with friends and colleagues, no matter if they use Nextcloud or not!
  • 💾 Open format: Files are saved as Markdown, so you can edit them from any other text app too.
  • Strong foundation: We use 🐈 tiptap which is based on 🦉 ProseMirror – huge thanks to them!

Nextcloud Text is the default text editor since Nextcloud 17. To start editing just open an existing markdown or plaintext file or create a new one.

Configuration

The rich workspaces in the file list can be disabled either by the users in the files app settings or globally by the admin with the following occ command:

occ config:app:set text workspace_available --value=0

🏗 Development setup

Currently this app requires the master branch of the Viewer app.

  1. ☁ Clone this app into the apps folder of your Nextcloud: git clone https://github.com/nextcloud/text.git
  2. 👩‍💻 In the folder of the app, run the command make to install dependencies and build the Javascript.
  3. Enable the app through the app management of your Nextcloud
  4. 🎉 Partytime! Help fix some issues and review pull requests 👍

🧙 Advanced development stuff

To build the Javascript whenever you make changes, instead of the full make you can also run npm run build. Or run npm run watch to rebuild on every file save.

🐞 Testing the app

Currently this app uses three different kinds of tests:

For testing the backend (PHP) Psalm and PHPUnit are used, you can run the testcases (placed in tests/) using the composer scripts psalm and test:unit.

For testing the frontend jest is used for unittests, whereas cypress is used for end2end testing. The unittests are also placed in src/tests/, the cypress tests are placed in cypress/. You can run the tests using the package scripts npm run test (jest), and respective npm run test:cypress (cypress).

Please note the cypress tests require a nextcloud server running, the if no running server is detected a docker container will be started, this requires the current user to be in the docker group. Or you might set the CYPRESS_baseUrl environment variable for a custom nextcloud server.

Adding support for other mime types