📑 Collaborative document editing using Markdown
Перейти к файлу
nextcloud-command 0b7da16d81 fix(deps): Fix npm audit
Signed-off-by: GitHub <noreply@github.com>
2024-12-08 03:51:59 +00:00
.github test(cy): Install assistant app version matching the server branch 2024-07-23 08:30:41 +00:00
.tx [tx-robot] Update transifex configuration 2022-10-01 03:02:12 +00:00
appinfo fix(reset): Reset all document sessions on upgrades from 3.10.0 or below 2024-06-12 11:53:04 +02:00
composer fix(Middleware): Response with 412 if `baseVersionEtag` doesn't match 2024-03-20 15:27:29 +01:00
cypress chore: Fix linter errors and warnings 2024-11-27 14:33:46 +01:00
img feat: Add icon svg inline for New text file 2024-03-21 20:23:06 +01:00
js chore(assets): recompile assets 2024-11-27 15:20:57 +00:00
l10n Fix(l10n): Update translations from Transifex 2024-12-08 02:18:25 +00:00
lib fix(sync): include document state in response to queries 2024-11-27 14:33:46 +01:00
src chore: Fix linter errors and warnings 2024-11-27 14:33:46 +01:00
templates Do not attempt to load a non-existing script 2022-10-12 10:20:39 +02:00
tests fix(resetSessions): Truncate tables and rename documents folder 2024-06-17 15:58:23 +00: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 test(cypress): Add test to visually compare print view 2023-11-29 17:08:39 +01:00
.l10nignore Add translations for menu bar and ignore js folder 2019-07-17 16:40:03 +02:00
.nextcloudignore chore: Update krankerl config 2023-12-27 10:26:42 +01:00
.php-cs-fixer.dist.php perf: Add authorative autoloader 2023-01-13 22:28:50 +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 fix(makefile): Disable parallel execution of targets 2023-10-20 08:08:26 +02:00
README.md fix(readme): Clarify the dependency on the viewer app 2023-10-20 08:25:33 +02:00
babel.config.js Fix chunk generation 2021-07-14 14:54:44 +02:00
composer.json chore(CI): Adjust testing matrix for Nextcloud 29 on stable29 2024-03-28 14:44:26 +01:00
composer.lock chore(dev-deps): Bump nextcloud/ocp package 2024-10-06 03:12:50 +00:00
cypress.config.js test(ci): Fix path of visual regression base files 2024-09-15 10:13:49 +02:00
index.html fix(deps): update dependency @nextcloud/router to ^2.2.1 2024-01-31 08:24:53 +01: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 chore: Update krankerl config 2023-12-27 10:26:42 +01:00
package-lock.json fix(deps): Fix npm audit 2024-12-08 03:51:59 +00:00
package.json fix(sync): inline y-websocket to track received updates there 2024-11-27 14:33:45 +01:00
psalm.xml chore(psalm): Add assistant event to stub 2023-08-09 18:15:00 +02:00
renovate.json Update renovate.json 2024-03-06 13:58:43 +01:00
sample.md enh(nodes): introduce preview node 2024-03-06 18:56:30 +01:00
tsconfig.json fix(sync): inline y-websocket to track received updates there 2024-11-27 14:33:45 +01:00
vite.config.js use @nextcloud/vue 7.8.0 2023-03-02 16:00:40 +01:00
webpack.config.js fix: Merge webpack splitChunks options 2023-11-29 20:27:04 +01: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

This app requires the main branch of the Viewer app to be installed and enabled. Follow its development setup and then continue here.

  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

🛠️ Integrate text in your app

Load the editor

In order to load the editor in your app, you'll need to dispatch an event.

if (class_exists(LoadEditor::class)) {
	$this->eventDispatcher->dispatchTyped(new LoadEditor());
}

Integrate a file editor

Make sure to check if OCA.Text is available as the Text app needs to be enabled. If you want your app to work without Text being installed, you will need to provide an editor fallback on your own.

window.OCA.Text.createEditor({
	el: document.getElementById('my-editor-div'),
	fileId: 12345,
	filePath: '/Readme.md',
}).then((editor) => {
	// Once ready you can access the editor instance and call methods like:

	editor.setContent('new content') // Beware: this will overwrite the content read from the source file
	editor.setReadOnly(true)
	editor.insertAtCursor('<h1>Heading</h1>')

	// Make sure to destory the editor instance once you remove the dom element
	editor.destroy()
})

Markdown based content editor

window.OCA.Text.createEditor({
	el: document.getElementById('my-editor-div'),
	content: 'initial content',
}).then((editor) => {
	// Once ready you can access the editor instance and call methods like:

	editor.setContent('new content')
	editor.setReadOnly(true)
	editor.insertAtCursor('<h1>Heading</h1>')

	// Make sure to destory the editor instance once you remove the dom element
	editor.destroy()
})