1.2.14 • Published 4 years ago

wb-rdbeach v1.2.14

Weekly downloads
2
License
AGPL-3.0-or-later
Repository
github
Last release
4 years ago

WB

WB is an online collaborative whiteboard focusing primarily on the needs of online teachers/students

This board is an extension of the lovasoa/whitebophir project.

A demonstration server is available at lcfprep.com/wb2/wb.html

Screenshots

The WB whiteboard:

Some drawings from the original board:

Wb Layout New

Removal tools

The pink skull eraser erases one drawing element at a time. Simply click on the element to delete it.

The black skull eraser erases multiple elements at once. Click and drag across a rectangular area to erase all drawing elements within that area. The black eraser will only erase elements which are fully contained within the rectangle.

The masking eraser, located in the additional tools slider, may be used to make slight corrections to a drawing. It should not be used to erase large areas of the board.

Transform tool

The transform tool allows you to move, rotate, and resize objects. The first variant is the single element transform. Click on an element to activate the transfom handles for that element. The second variant is the multiple element transform. Click and drag accross a rectangular area to select elements within that area. Only elements fully contained within the area will be selected. You may then transform those elements as a group.

Desmos Calculator Plugin

The desmos calculator activates within its own moveable floating window. The state of the calculator is shared among all participants.

Shared Text Editor and Coding Evaluator

With the shared text editor, you can collaborate on a text document. Switch modes to collaborate on code in Javascript, Python, and C++. A real time compiler for each is provided, which can handle the basics of the language (nothing too fancy). To activate the editor plugin, you will need to sign up for a free Firebase account and follow the intructions provided below.

Element locking

To lock an element, select the single element transform and click on the element. At the bottom right of the screen, you will see a small lock. Click on the lock to "lock" the element. Unlock in the same manner. Once locked, the element cannot be deleted by the pink skull eraser. It may, however, be deleted by the black scull eraser. This is useful with images/documents that you want to write on top of and subsequently erase those markings.

Keyboard Shortcuts

The first nine buttons, top to bottom, have keyboard shortcuts 1-9, So, for instance, the pencil tool is 1, the line tool is 2, etc.

Clear is "shift C".

Undo is "shift U"

Redo is "shift R"

Zoom in is "x".

Zoom out is "shift X"

The "z" key will zoom you all the way out and wait for the user to click on the screen. When you click a particular area of the screen, you will be automatically zoomed in to that region, with the same magnification level you started with.

Of course, you can reconfigure the shortcuts to your liking. And, you can opt to have only subset of the tools listed.

The Geometry Component

In the lower right-hand corner, you will find the geometry component. The geometry component provides geometrical info about the various drawing elements such as lines and shapes. You may use this to create drawings which require a greater level of precision.

Running your own instance of WB

If you have your own web server, and want to run a private instance of WB on it, you can. It should be very easy to get it running on your own server.

Running the code using NPM

First install node.js (v8.0 or superior) if you don't have it already, then install WB:

npm install wb-rdbeach

Finally, you can start the server. Go to the wb-rdbeach directory and type:

PORT=8080 npm start

This will run WB directly on your machine, on port 8080, without any isolation from the other services.

Open the browser on your local machine and type:

http://localhost:8080

To access the index page.

If you want to run on a different port, you will need to change the PORT=8080 in the line above, and modify this line in /client-data/js/board.js:

this.socket = io.connect(':8080', {

By default, the application runs its own web server and socket server at the root directory, listening to port 8080. If you want to incorporate the whiteboard in an existing site, simply move the client-data directory to a subfolder of your site and point your browser toward the index.html or board.html file located within this directory.

If you want to run the board from an https site. You will need to update the following paths in /server/configuration.js

    PRIVATE_KEY_PATH:  "../../../../ssl/private.key",

    CERTIFICATE_PATH: "../../../../ssl/certificate.crt",

    CA_BUNDLE_PATH: "../../../../ssl/ca_bundle.crt",

And start the server with:

PORT=8080 HTTPS=true npm start

Setting up the editor plugin

Everything in wb works out of the box except the editor plugin. For this, you will need to sign up for an account with Firebase. Firebase is a suite of integrated products designed to help you develop your app, grow your user base, and earn money. You can sign up here for a free account.

After signing up, you will need to enter your database info in the file board.html:

 <!-- Editor dep: Firebase/Firepad -->
	<script>
		var firepad_config = {
			apiKey: '<API_KEY>',
      			authDomain: "<AUTH_DOMAIN>.firebaseapp.com",
      			databaseURL: 'https://<DATABASE_NAME>.firebaseio.com'
		};
	</script>
 

More info is available on setting up Firepad/Firebase in the Firepad repo.

Troubleshooting

If you experience an issue or want to propose a new feature in WB, please open a github issue.

1.2.14

4 years ago

1.2.13

4 years ago

1.2.12

4 years ago

1.2.11

4 years ago

1.2.10

4 years ago

1.2.8

4 years ago

1.2.7

4 years ago

1.2.6

4 years ago

1.2.0

4 years ago

1.2.5

4 years ago

1.2.4

4 years ago

1.2.3

4 years ago

1.2.2

4 years ago

1.2.1

4 years ago

1.1.0

4 years ago