< Return to Video

Une présentation de Mortar

  • 0:02 - 0:05
    Hey guys, my name is James Long and I'm here to talk to you about Mortar.
  • 0:06 - 0:08
    Mortar is a collection of project templates
  • 0:08 - 0:10
    to help you get started writing web apps quickly.
  • 0:10 - 0:13
    You can start by going to the Developer Hub
  • 0:13 - 0:17
    at marketplace.firefox.com/developers.
  • 0:17 - 0:19
    Click on 'Build your app'
  • 0:20 - 0:24
    and go down to App Templates.
  • 0:24 - 0:27
    You'll see some information about the templates available
  • 0:27 - 0:31
    and some installation instructions.
  • 0:31 - 0:33
    There's also a link to the Mortar repo,
  • 0:33 - 0:37
    which is a project that lists all the available templates as sub-projects.
  • 0:37 - 0:42
    There's an App-stub template, Game-stub, List-detail and a Tab-view template.
  • 0:42 - 0:44
    You can see installation instructions for the templates
  • 0:44 - 0:48
    back over on the Developer Hub and some more information about it.
  • 0:48 - 0:51
    I'm just going to take you through it here.
  • 0:51 - 0:55
    The App-stub template is a minimal template that comes with a few things hooked up for you.
  • 0:55 - 0:57
    This is what it looks like when you download it.
  • 0:57 - 0:59
    It just comes with an installation button.
  • 1:00 - 1:03
    You can see in the index.html that there's not much there,
  • 1:03 - 1:06
    but it's enough to help you out: Just some basic HTML,
  • 1:06 - 1:11
    the installation button, and Require.js, which is hooked up for you already.
  • 1:11 - 1:14
    If you don't know what Require.js is, just go to RequireJS.org.
  • 1:14 - 1:19
    It's a JavaScript module system.
  • 1:19 - 1:23
    It also comes with a manifest.webapp already written out for you
  • 1:23 - 1:26
    and you can just come in here and configure it.
  • 1:26 - 1:29
    You may have noticed the www folder.
  • 1:29 - 1:32
    If you go back to the root of the project you'll see some folders and files.
  • 1:32 - 1:36
    Node modules and tools just basically contain things for volo.
  • 1:36 - 1:39
    www is where all your static assets live
  • 1:39 - 1:42
    and there's just a few other files for extra stuff.
  • 1:42 - 1:45
    Most of the time you'll be working in here.
  • 1:45 - 1:50
    Another thing is it comes with volo, which is what I'm going to show you right now.
  • 1:50 - 1:53
    Volo is a tool for managing web projects.
  • 1:53 - 1:54
    It's built on node.js.
  • 1:54 - 1:57
    If you don't have node you're going to have to install it, but it's pretty easy.
  • 1:57 - 2:03
    Just go to nodejs.org, click on install and get the binary.
  • 2:03 - 2:08
    Once you have node installed, just type npm install -g volo.
  • 2:08 - 2:13
    This will install volo globally.
  • 2:13 - 2:14
    Volo has a few commands you can use.
  • 2:14 - 2:16
    volo create is one of them,
  • 2:16 - 2:18
    which takes the name of your app
  • 2:18 - 2:27
    and then a github reference or any other URL to a template such as mozilla mortar appstub
  • 2:27 - 2:30
    and this will create your app based on the template.
  • 2:30 - 2:34
    This is a quick way to create apps based on the Mortar templates.
  • 2:34 - 2:39
    So now there's an app for that we can cd into.
  • 2:39 - 2:42
    Another volo command that you can use is volo serve.
  • 2:42 - 2:44
    And it fires up a development server
  • 2:44 - 2:51
    so that you can view your site in the browser.
  • 2:51 - 2:56
    Another command is volo add which adds JavaScript dependencies to your site.
  • 2:56 - 3:04
    So, I can say volo add zepto and it adds it.
  • 3:04 - 3:07
    So if I go into the lib directory in JS you can see it has zepto now.
  • 3:10 - 3:15
    Now I can go into my javascript app.js file and require zepto.
  • 3:15 - 3:26
    It's already actually doing that, let's just make sure that it's getting it.
  • 3:27 - 3:29
    And there it is.
  • 3:29 - 3:32
    Now you'll notice we're using zepto with this require function
  • 3:32 - 3:34
    because we're using require.js.
  • 3:34 - 3:38
    Since we're using require.js all libraries have to be defined as a module.
  • 3:38 - 3:40
    You do this with this define function.
  • 3:40 - 3:44
    But what happens if you want to use a third party library that doesn't do this.
  • 3:44 - 3:48
    Volo add actually can automatically wrap libraries.
  • 3:48 - 3:55
    So, say you want to include this font library you can pass a direct URL into volo add.
  • 3:55 - 4:00
    It sees that it's not a module and asks you for any dependencies.
  • 4:00 - 4:03
    It also asks you what global to export.
  • 4:03 - 4:12
    It actually modifies a jQuery object so it doesn't export anything. (I'm gonna just ignore that)
  • 4:12 - 4:14
    Now I could use the jQuery Flot library like so.
  • 4:14 - 4:18
    Just require it.
  • 4:18 - 4:25
    Note how I don't care about the return value because it just attaches itself to the jQuery object.
  • 4:25 - 4:28
    There's two more awesome volo commands that you have to try.
  • 4:28 - 4:31
    Volo build builds your site into an optimized version.
  • 4:31 - 4:35
    It basically concatenates and minifies all your CSS and JavaScript.
  • 4:37 - 4:41
    It puts it into a www-build directory.
  • 4:41 - 4:44
    After you've done that you can say volo gh deploy
  • 4:44 - 4:47
    It asks you where to put it at first, if you've never done this before.
  • 4:49 - 4:52
    And that repo doesn't exist yet.
  • 4:52 - 4:55
    So I'm going to say no and it's actually going to create it for me
  • 4:55 - 4:59
    and deploy it onto Github pages for me.
  • 4:59 - 5:07
    And just like that, I can go to my App and it's live.
  • 5:07 - 5:11
    Notice how it's hosted on the github pages URL.
  • 5:11 - 5:14
    So in about 10 seconds, I was able to deploy my app.
  • 5:14 - 5:16
    This works whether or not the repo already exists
  • 5:16 - 5:20
    and pushes into onto the GH pages branch.
  • 5:20 - 5:23
    And that's it for Volo.
  • 5:23 - 5:25
    There's also the gamestub template
  • 5:25 - 5:29
    which if you take a look at that, and see, comes with a basic game
  • 5:29 - 5:32
    that lets you control a box with arrow keys.
  • 5:32 - 5:35
    It's still very simplistic, but if you look at the code
  • 5:35 - 5:42
    it comes with a full game loop and an input library,
  • 5:42 - 5:46
    which helps a lot.
  • 5:46 - 5:51
    So there's a render function and a mainfunction which is the main game loop.
  • 5:58 - 6:01
    The last 2 templates are the list-detail template and the tab-view template.
  • 6:01 - 6:04
    These come with everything that the App-stub template does,
  • 6:04 - 6:09
    but also a full UI library to help you get writing apps quickly.
  • 6:09 - 6:11
    So this is the list-detail template.
  • 6:11 - 6:17
    This is what you get when you first download the template. It's a fully working list detail app.
  • 6:17 - 6:19
    You can see a list of items then click on them to see the details
  • 6:19 - 6:22
    and you can edit the details
  • 6:28 - 6:30
    and it propagates throughout the app,
  • 6:30 - 6:32
    even back here in the list view.
  • 6:32 - 6:35
    You can also add new items.
  • 6:46 - 6:48
    And that all works!
  • 6:48 - 6:49
    You can view more details about the
  • 6:49 - 6:55
    UI library at the Mortar layouts project, which is linked to in the README.
  • 6:55 - 6:59
    This implements that application user interface
  • 6:59 - 7:04
    and describes how you can use it and how you can modify it.
  • 7:04 - 7:07
    I'll show you how the list detail template uses it.
  • 7:07 - 7:09
    This is the index.html.
  • 7:09 - 7:12
    There's two special tags, x-view and x-listview.
  • 7:12 - 7:19
    The list-view implements the listview structure, that implements an element with a header and a footer,
  • 7:19 - 7:24
    and you can compose these views so that you can put them inside each other.
  • 7:24 - 7:28
    There's a few special attributes, such as the data view attribute on a button.
  • 7:28 - 7:36
    This makes this view appear when the button is pressed. This is just a CSS selector.
  • 7:36 - 7:41
    You can view more details about this at the Mortar layout repository
  • 7:41 - 7:44
    which is linked to in the README
  • 7:44 - 7:47
    The other template is the tab-view template
  • 7:47 - 7:51
    which is very similar to the list-detail template, just with a little bit different HTML.
  • 7:51 - 7:54
    This comes with a list view just like the other app,
  • 7:54 - 7:58
    but you'll notice that it's actually a sub-view of this main view, which comes with different sections.
  • 7:58 - 8:04
    Which kind of simulate tabs. So, if I go into here and view this item
  • 8:04 - 8:05
    and go over to these other sections,
  • 8:05 - 8:11
    you'll notice that it actually keeps my place and I can keep pressing back to go back here.
  • 8:11 - 8:14
    This is all part of the Mortar layouts library.
  • 8:15 - 8:17
    So that's about it. If you have any problems,
  • 8:17 - 8:19
    feel free to file some issues on Github.
  • 8:20 - 8:21
    Thanks for watching!
Title:
Une présentation de Mortar
Description:

James Long décrit la librairie de modèles Mortar et de dépôt, ainsi que comment débuter la création d'appli à l'aide de Mortar.

more » « less
Video Language:
English
Duration:
08:21
Frédéric Bourgeon edited English subtitles for Une présentation de Mortar
Frédéric Bourgeon edited English subtitles for Une présentation de Mortar
Frédéric Bourgeon edited English subtitles for Une présentation de Mortar
Frédéric Bourgeon edited English subtitles for Une présentation de Mortar
Frédéric Bourgeon edited English subtitles for Une présentation de Mortar
havihoffman edited English subtitles for Une présentation de Mortar
havihoffman edited English subtitles for Une présentation de Mortar
havihoffman added a translation

English subtitles

Revisions