📑 Collaborative document editing using Markdown
Перейти к файлу
renovate[bot] 653499bbae
fix(deps): update dependency @nextcloud/logger to ^3.0.2
2024-05-18 04:06:07 +00:00
.github feat: Move to vite for bundling 2024-05-15 09:54:15 +02:00
.tx
appinfo feat(deps): Add Nextcloud 30 support on main 2024-03-28 12:57:51 +01:00
composer perf(bootstrap): Lazy register template creator through event 2024-04-29 10:01:40 +02:00
cypress fix(cy): delete after preview was loaded 2024-05-15 18:20:51 +02: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-05-18 04:04:15 +00:00
l10n Fix(l10n): Update translations from Transifex 2024-05-18 01:33:01 +00:00
lib perf(bootstrap): Lazy register template creator through event 2024-04-29 10:01:40 +02:00
src Merge pull request #5367 from nextcloud/enh/vite 2024-05-17 12:03:05 +02:00
templates
tests fix(lint): avoid risky truthy falsy comparison 2024-04-04 10:04:16 +02:00
.eslintignore
.eslintrc.cjs chore: Add typescript support 2024-05-15 09:54:15 +02:00
.gitattributes
.gitignore test(cypress): Add test to visually compare print view 2023-11-29 17:08:39 +01:00
.l10nignore
.nextcloudignore chore: Update krankerl config 2023-12-27 10:26:42 +01:00
.php-cs-fixer.dist.php
.stylelintrc.cjs feat: Move to vite for bundling 2024-05-15 09:54:15 +02:00
.tsconfig.json feat: Move to vite for bundling 2024-05-15 09:54:15 +02:00
CHANGELOG.md
COPYING
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.cjs feat: Move to vite for bundling 2024-05-15 09:54:15 +02:00
composer.json
composer.lock chore(dev-deps): Bump nextcloud/ocp package 2024-05-12 02:41:55 +00:00
cypress.config.mjs fix(cy): use node polyfills to provide path.basename 2024-05-15 09:54:17 +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.cjs feat: Move to vite for bundling 2024-05-15 09:54:15 +02:00
jsconfig.json
krankerl.toml chore: Update krankerl config 2023-12-27 10:26:42 +01:00
package-lock.json fix(deps): update dependency @nextcloud/logger to ^3.0.2 2024-05-18 04:06:07 +00:00
package.json fix(deps): update dependency @nextcloud/logger to ^3.0.2 2024-05-18 04:06:07 +00:00
psalm.xml chore(psalm): Add assistant event to stub 2023-08-09 18:15:00 +02:00
renovate.json chore: Update renovate.json to match stable releases 2024-04-02 11:48:35 +02:00
sample.md enh(nodes): introduce preview node 2024-03-06 18:56:30 +01:00
tsconfig.json chore: Add typescript config 2024-02-13 16:56:12 +01:00
vite.config.ts fix(build): inline css in all relevant entry points 2024-05-15 09:54:16 +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

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