0.2.16 • Published 6 months ago

@startinblox/component-editor v0.2.16

Weekly downloads
143
License
MIT
Repository
-
Last release
6 months ago

SOLID Editor

<solid-editor> is a Sib demo editor to learn the basics of the framework. It uses CodeMirror : https://codemirror.net/ and it must be related to "code fragment data". You can see how it work on the techno page of the website Startin'Blox. Do not hesitate to suggest improvment!

Try the demo

To launch the demo, please run at the root of the component :

python3 -m http.server 8001

Installation

In your django project, add the djangoldp_editor package:

# packages.yml
## DjangoLDP packages ##
ldppackages:
  djangoldp_editor: djangoldp_editor

Then, run in your shell :

pip install djangoldp_editor

If everything work correctly, you should be able to see the package in your Django Admin.

Then you have to load the initialisation data to make it work. You'll find at the root of the component repository a file named "initialisation-data.json" Put it in the root of your server and run the following command :

python3 manage.py loaddata initialisation-data.json

If there is no error, it works!

Be careful!

The api's urls in the data loaded begin by "localhost". When you set the editor in production, you should have a check of all the content to set you api base url.

For example in codefragments, the first field "body" :

<solid-display data-src="http://127.0.0.1:8000/helloworlds/" fields="helloword"></solid-display>

Should become :

<solid-display data-src="http://yourproductionapi/helloworlds/" fields="helloword"></solid-display>

How to use

Once the package is installed, you can use the solid-editor component:

<html>
<head>
  <!-- import the module in the head of the page -->
  <script type="module" src="https://cdn.skypack.dev/@startinblox/component-editor/"></script>
</head>

<body>
  <!-- use the component -->
  <solid-editor
    data-src="[url]"
    paginate-by='1'>
  </solid-editor>
</body>
</html>

Notes that the "url" should be replace by your code fragment api link.

Parameters

NameDefaultDescription
data-srcundefinedURL of the LDP editor's code's fragments to display.
extra-context{}Custom extra context
paginate10For the proper functioning of the editor, please enter: "paginate-by='1'"

Contribute !

As the Startin'Blox project is evolving a lot and quickly, we're going to need to update this demo regularly! For any suggestion, you can open an issue or contact the last person who updated it:

alice@startinblox.com

Thanks!

0.2.16

6 months ago

0.2.15

2 years ago

0.3.0-beta.8

2 years ago

0.3.0-beta.9

2 years ago

0.3.0-beta.7

2 years ago

0.3.0-beta.6

2 years ago

0.2.14

3 years ago

0.3.0-beta.2

2 years ago

0.3.0-beta.3

2 years ago

0.3.0-beta.1

2 years ago

0.3.0-beta.4

2 years ago

0.3.0-beta.5

2 years ago

0.2.13

4 years ago

0.2.12

4 years ago

0.2.11

4 years ago

0.2.10

4 years ago

0.2.9

4 years ago

0.2.8

4 years ago

0.2.7

4 years ago

0.2.6

4 years ago

0.2.3

4 years ago

0.2.2

4 years ago

0.2.5

4 years ago

0.2.4

4 years ago

0.2.1

4 years ago

0.2.0

4 years ago