Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

jQuery UI: Adding guide to using jQuery UI with AMD. #462

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
jQuery UI: Adding guide to using jQuery UI with Bower.
Ref gh-186
Ref gh-462
  • Loading branch information
tjvantoll committed Feb 20, 2014
commit ccb5938cef38286327220fbfd2b844bfe7a31145
1 change: 1 addition & 0 deletions order.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@
- how-to-use-the-widget-factory
- environments:
- amd
- bower
- jquery-mobile:
- getting-started
- theme-roller
2 changes: 1 addition & 1 deletion page/jquery-ui/environments/amd.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ In this article we'll walk through the process of using AMD with jQuery UI. Let'

We'll need to download three things to get up and running: jQuery core, jQuery UI, and an AMD loader.

While any AMD loader will work, we'll use RequireJS in this article, which you can download from <http://requirejs.org/docs/download.html>. If you don't have a version of jQuery core handy, you can get it from <http://jquery.com/download/>, and you can download jQuery UI directly from <http://jqueryui.com/>.
While any AMD loader will work, we'll use RequireJS in this article, which you can download from <http://requirejs.org/docs/download.html>. If you don't have a version of jQuery core handy, you can get it from <http://jquery.com/download/>, and you can download jQuery UI directly from <http://jqueryui.com/>. Alternatively you can [download these libraries using a package manager such as Bower](/jquery-ui/environments/bower/).

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We should add another article about using Bower and link to that from here.

### Directory Structure

Expand Down
147 changes: 147 additions & 0 deletions page/jquery-ui/environments/bower.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,147 @@
---
title: Using jQuery UI with Bower
level: intermediate
---

[Bower](http://bower.io/) is a package manager for the Web. You can use Bower to download libraries like jQuery UI from the command line, without having to manually download each project from their respective sites.

As an example, suppose we're starting a new project and we need to use [jQuery UI's accordion widget](http://jqueryui.com/accordion/). We'll create a new directory for our project, and add the boilerplate `index.html` shown below.

```
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
</head>
<body>

<div id="projects">
<h3>jQuery Core</h3>
<p>jQuery is a fast, small, and feature-rich JavaScript library...</p>
<h3>jQuery UI</h3>
<p>jQuery UI is a curated set of user interface interactions...</p>
<h3>jQuery Mobile</h3>
<p>jQuery Mobile is a HTML5-based user interface system...</p>
</div>

<script>
$( "#projects" ).accordion();
</script>

</body>
</html>
```

This examples fails with a JavaScript error because neither jQuery core nor jQuery UI are loaded. Let's load them with Bower.

### Downloading jQuery UI With Bower

Libraries are downloaded with Bower using the `bower install` command. To install jQuery UI, run `bower install jquery-ui`. Doing so creates the following (simplified) directory structure.

*Note: If you get an error that the `bower` command is not found, checkout [Bower's installation instructions](http://bower.io/#installing-bower).*

<pre>
.
├── bower_components
│   ├── jquery
│   │   ├── dist
│   │   │   ├── jquery.js
│   │   │   └── jquery.min.js
│   │   └── src
│   └── jquery-ui
│   ├── themes
│   │   ├── base
│   │   │   ├── jquery-ui.css
│   │   │   ├── jquery.ui.accordion.css
│   │   │   ├── ...
│   │   │   └── minified
│   │   │   ├── jquery-ui.min.css
│   │   │   ├── accordion.min.css
│   │   │   └── ...
│   │   └── [The rest of jQuery UI's themes]
│   └── ui
│   ├── jquery-ui.js
│   ├── jquery.ui.accordion.js
│   ├── ...
│   └── minified
│   ├── jquery-ui.min.js
│   ├── accordion.min.js
│   └── ...
└── index.html
</pre>

A couple of things happened here. First, Bower knew that jQuery UI depends on jQuery core, so it downloaded both libraries automatically. Second, all of jQuery UI's files for the latest release were conveniently placed in a `jquery-ui` directory within a newly created `bower_components` directory.

*Note: If you don't want the latest version, you can optionally provide a version number to `bower install`. For instance `bower install jquery-ui#1.10.4` installs version 1.10.4 of jQuery UI.*

Now that we have the files available, we have to use them.

### Using Bower Downloaded Files

We have a few different options for using the files downloaded with Bower. The easiest is to use the minified and concatenated files in our `bower_components/jquery` and `bower_components/jquery-ui` directories. This approach is shown below.

```
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="bower_components/jquery-ui/themes/base/jquery-ui.css">
</head>
<body>

<div id="projects">
<h3>jQuery Core</h3>
<p>jQuery is a fast, small, and feature-rich JavaScript library...</p>
<h3>jQuery UI</h3>
<p>jQuery UI is a curated set of user interface interactions...</p>
<h3>jQuery Mobile</h3>
<p>jQuery Mobile is a HTML5-based user interface system...</p>
</div>

<script src="bower_components/jquery/dist/jquery.min.js"></script>
<script src="bower_components/jquery-ui/ui/minified/jquery-ui.min.js"></script>
<script>
$( "#projects" ).accordion();
</script>

</body>
</html>
```

This code successfully builds our accordion widget, but it also includes the entirety of jQuery UI when we only need the accordion widget. Since there's a lot more than an accordion widget in jQuery UI, this forces the user to download far more than they need.

Because Bower also downloaded jQuery UI's individual source files, we can use alternatively use them to send the user just the accordion widget and its dependencies. The following example builds the same accordion widget taking this approach.

```
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="bower_components/jquery-ui/themes/base/core.css">
<link rel="stylesheet" href="bower_components/jquery-ui/themes/base/theme.css">
<link rel="stylesheet" href="bower_components/jquery-ui/themes/base/accordion.css">
</head>
<body>

<div id="projects">
<h3>jQuery Core</h3>
<p>jQuery is a fast, small, and feature-rich JavaScript library...</p>
<h3>jQuery UI</h3>
<p>jQuery UI is a curated set of user interface interactions...</p>
<h3>jQuery Mobile</h3>
<p>jQuery Mobile is a HTML5-based user interface system...</p>
</div>

<script src="bower_components/jquery/dist/jquery.js"></script>
<script src="bower_components/jquery-ui/ui/core.js"></script>
<script src="bower_components/jquery-ui/ui/widget.js"></script>
<script src="bower_components/jquery-ui/ui/accordion.js"></script>
<script>
$( "#projects" ).accordion();
</script>

</body>
</html>
```

From here, you can hook jQuery UI's files into your own custom build system to concatenate and minify your resources for production. If you're a RequireJS user, checkout our [guide on how to use jQuery UI with AMD](/jquery-ui/environments/amd/).