This repository has been archived by the owner on Jul 15, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
1,039 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"directory": "public/bower_components" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
node_modules/ | ||
public/bower_components/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
module.exports = function(grunt) { | ||
grunt.initConfig({ | ||
pkg: grunt.file.readJSON('package.json'), // the package file to use | ||
|
||
react: { | ||
single_file_output: { | ||
files: { | ||
'public/js/react-bootstrap-treeview.js': 'src/react-bootstrap-treeview.jsx' | ||
} | ||
} | ||
}, | ||
|
||
watch: { | ||
files: [/*'tests/*.js', 'tests/*.html', */'src/**'], | ||
tasks: ['default'] | ||
}, | ||
|
||
copy: { | ||
main: { | ||
files: [ | ||
// copy src to example | ||
{ expand: true, cwd: 'src/', src: '*.css', dest: 'public/css/' }, | ||
// { expand: true, cwd: 'src/js', src: '*', dest: 'public/js/' } | ||
] | ||
} | ||
} | ||
}); | ||
|
||
// load up your plugins | ||
grunt.loadNpmTasks('grunt-react'); | ||
grunt.loadNpmTasks('grunt-contrib-watch'); | ||
grunt.loadNpmTasks('grunt-contrib-copy'); | ||
|
||
// register one or more task lists (you should ALWAYS have a "default" task list) | ||
grunt.registerTask('default', ['react', 'copy', 'watch']); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,322 @@ | ||
# React Bootstrap Tree View | ||
# React.js Bootstrap Tree View | ||
|
||
Coming soon!!! | ||
A prototype version of my jQuery based [Tree View for Twitter Bootstrap](https://github.com/jonmiles/bootstrap-treeview) | ||
|
||
![Bootstrap Tree View Default](https://raw.github.com/jonmiles/react-bootstrap-treeview/master/screenshot/default.PNG) | ||
|
||
## Dependencies | ||
|
||
The project has very few dependencies, but you will need the following. | ||
- [React v0.13.1](https://facebook.github.io/react/) | ||
- [Bootstrap v3.3.4 (>= 3.0.0)](http://getbootstrap.com/) | ||
|
||
## Getting Started | ||
|
||
### Install | ||
|
||
Npm: | ||
```javascript | ||
$ npm install react-bootstrap-treeview | ||
``` | ||
|
||
Bower: | ||
```javascript | ||
$ bower install react-bootstrap-treeview | ||
``` | ||
|
||
Manual: | ||
> Old fashion, downloadable files can be found [here](//github.com/jonmiles/bootstrap-treeview/releases) | ||
|
||
### Usage | ||
|
||
Include the correct styles, it's mainly just bootstrap but we add a few tweaks as well. | ||
|
||
```html | ||
<!-- Required CSS --> | ||
<link href="path/to/bootstrap.css" rel="stylesheet"> | ||
<link href="path/to/react-bootstrap-treeview.css" rel="stylesheet"> | ||
``` | ||
|
||
Add required libraries. | ||
|
||
```html | ||
<!-- Required JavaScript --> | ||
<script src="path/to/react.js"></script> | ||
<script src="path/to/react-bootstrap-tree.js"></script> | ||
``` | ||
|
||
Then, a basic initialization would look like. | ||
|
||
```javascript | ||
React.render( | ||
<TreeView data={data} />, | ||
document.getElementById('treeview') | ||
); | ||
``` | ||
|
||
### Example | ||
|
||
Putting it all together a minimal implementation might look like this. | ||
|
||
```html | ||
<html> | ||
<head> | ||
<title>React + Bootstrap Tree View</title> | ||
<link href="path/to/bootstrap.css" rel="stylesheet"> | ||
<link href="path/to/react-bootstrap-treeview.css" rel="stylesheet"> | ||
</head> | ||
<body> | ||
<div class="container"> | ||
<h1>React + Bootstrap Tree View</h1> | ||
<br/> | ||
<div class="row"> | ||
<div id="treeview"></div> | ||
</div> | ||
</div> | ||
<script src="path/to/react.js"></script> | ||
<script src="path/to/JSXTransformer.js"></script> | ||
<script src="path/to/react-bootstrap-treeview.js"></script> | ||
<script type="text/jsx"> | ||
React.render( | ||
<TreeView data={data} />, | ||
document.getElementById('treeview') | ||
); | ||
</script> | ||
</body> | ||
</html> | ||
``` | ||
|
||
|
||
## Data Structure | ||
|
||
In order to define the hierarchical structure needed for the tree it's necessary to provide a nested array of JavaScript objects. | ||
|
||
Example | ||
|
||
```javascript | ||
var tree = [ | ||
{ | ||
text: "Parent 1", | ||
nodes: [ | ||
{ | ||
text: "Child 1", | ||
nodes: [ | ||
{ | ||
text: "Grandchild 1" | ||
}, | ||
{ | ||
text: "Grandchild 2" | ||
} | ||
] | ||
}, | ||
{ | ||
text: "Child 2" | ||
} | ||
] | ||
}, | ||
{ | ||
text: "Parent 2" | ||
}, | ||
{ | ||
text: "Parent 3" | ||
}, | ||
{ | ||
text: "Parent 4" | ||
}, | ||
{ | ||
text: "Parent 5" | ||
} | ||
]; | ||
``` | ||
|
||
At the lowest level a tree node is a represented as a simple JavaScript object. This one required property `text` will build you a tree. | ||
|
||
```javascript | ||
{ | ||
text: "Node 1" | ||
} | ||
``` | ||
|
||
If you want to do more, here's the full node specification | ||
|
||
```javascript | ||
{ | ||
text: "Node 1", | ||
icon: "glyphicon glyphicon-stop", | ||
color: "#000000", | ||
backColor: "#FFFFFF", | ||
href: "#node-1", | ||
state: { | ||
expanded: true, | ||
selected: true | ||
}, | ||
tags: ['available'], | ||
nodes: [ | ||
{}, | ||
... | ||
] | ||
} | ||
``` | ||
|
||
### Node Properties | ||
|
||
The following properties are defined to allow node level overrides, such as node specific icons, colours and tags. | ||
|
||
#### text | ||
`String` `Mandatory` | ||
|
||
The text value displayed for a given tree node, typically to the right of the nodes icon. | ||
|
||
#### icon | ||
`String` `Optional` | ||
|
||
The icon displayed on a given node, typically to the left of the text. | ||
|
||
For simplicity we directly leverage [Bootstraps Glyphicons support](http://getbootstrap.com/components/#glyphicons) and as such you should provide both the base class and individual icon class separated by a space. | ||
|
||
By providing the base class you retain full control over the icons used. If you want to use your own then just add your class to this icon field. | ||
|
||
#### color | ||
`String` `Optional` | ||
|
||
The foreground color used on a given node, overrides global color option. | ||
|
||
#### backColor | ||
`String` `Optional` | ||
|
||
The background color used on a given node, overrides global color option. | ||
|
||
#### href | ||
`String` `Optional` | ||
|
||
Used in conjunction with global enableLinks option to specify anchor tag URL on a given node. | ||
|
||
#### state | ||
`Object` `Optional` | ||
|
||
Describes a node's initial state. | ||
|
||
#### state.expanded | ||
`Boolean` `Default: false` | ||
|
||
Whether or not a node is expanded i.e. open. Takes precedence over global option levels. | ||
|
||
#### state.selected | ||
`Boolean` `Default: false` | ||
|
||
Whether or not a node is selected. | ||
|
||
#### tags | ||
`Array of Strings` `Optional` | ||
|
||
Used in conjunction with global showTags option to add additional information to the right of each node; using [Bootstrap Badges](http://getbootstrap.com/components/#badges) | ||
|
||
|
||
## Options | ||
|
||
Options allow you to customise the treeview's default appearance and behaviour. They are passed to the react component as properties on initialization. | ||
|
||
```javascript | ||
// Example: initializing the treeview | ||
// expanded to 5 levels | ||
// with a background color of green | ||
React.render( | ||
<TreeView data={data} | ||
levels={5} | ||
backColor={"green"} />, | ||
document.getElementById('treeview') | ||
); | ||
``` | ||
|
||
The following is a list of all available options. | ||
|
||
#### data | ||
Array of Objects. No default, expects data | ||
|
||
This is the core data to be displayed by the tree view. | ||
|
||
#### backColor | ||
String, [any legal color value](http://www.w3schools.com/cssref/css_colors_legal.asp). Default: inherits from Bootstrap.css. | ||
|
||
Sets the default background color used by all nodes, except when overridden on a per node basis in data. | ||
|
||
#### borderColor | ||
String, [any legal color value](http://www.w3schools.com/cssref/css_colors_legal.asp). Default: inherits from Bootstrap.css. | ||
|
||
Sets the border color for the component; set showBorder to false if you don't want a visible border. | ||
|
||
#### collapseIcon | ||
String, class name(s). Default: "glyphicon glyphicon-minus" as defined by [Bootstrap Glyphicons](http://getbootstrap.com/components/#glyphicons) | ||
|
||
Sets the icon to be used on a collapsible tree node. | ||
|
||
#### color | ||
String, [any legal color value](http://www.w3schools.com/cssref/css_colors_legal.asp). Default: inherits from Bootstrap.css. | ||
|
||
Sets the default foreground color used by all nodes, except when overridden on a per node basis in data. | ||
|
||
#### emptyIcon | ||
String, class name(s). Default: "glyphicon" as defined by [Bootstrap Glyphicons](http://getbootstrap.com/components/#glyphicons) | ||
|
||
Sets the icon to be used on a tree node with no child nodes. | ||
|
||
#### enableLinks | ||
Boolean. Default: false | ||
|
||
Whether or not to present node text as a hyperlink. The href value of which must be provided in the data structure on a per node basis. | ||
|
||
#### expandIcon | ||
String, class name(s). Default: "glyphicon glyphicon-plus" as defined by [Bootstrap Glyphicons](http://getbootstrap.com/components/#glyphicons) | ||
|
||
Sets the icon to be used on an expandable tree node. | ||
|
||
#### highlightSelected | ||
Boolean. Default: true | ||
|
||
Whether or not to highlight the selected node. | ||
|
||
#### levels | ||
Integer. Default: 2 | ||
|
||
Sets the number of hierarchical levels deep the tree will be expanded to by default. | ||
|
||
#### nodeIcon | ||
String, class name(s). Default: "glyphicon glyphicon-stop" as defined by [Bootstrap Glyphicons](http://getbootstrap.com/components/#glyphicons) | ||
|
||
Sets the default icon to be used on all nodes, except when overridden on a per node basis in data. | ||
|
||
#### selectedBackColor | ||
String, [any legal color value](http://www.w3schools.com/cssref/css_colors_legal.asp). Default: '#428bca'. | ||
|
||
Sets the background color of the selected node. | ||
|
||
#### selectedColor | ||
String, [any legal color value](http://www.w3schools.com/cssref/css_colors_legal.asp). Default: '#FFFFFF'. | ||
|
||
Sets the foreground color of the selected node. | ||
|
||
#### showBorder | ||
Boolean. Default: true | ||
|
||
Whether or not to display a border around nodes. | ||
|
||
#### showTags | ||
Boolean. Default: false | ||
|
||
Whether or not to display tags to the right of each node. The values of which must be provided in the data structure on a per node basis. | ||
|
||
|
||
|
||
## Copyright and Licensing | ||
Copyright 2013 Jonathan Miles | ||
|
||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at <http://www.apache.org/licenses/LICENSE-2.0> | ||
|
||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. |
Oops, something went wrong.