*************** Add a Home Page *************** **Last Updated:** May 2020 In this tutorial you will create a home page for the Google Earth Engine app that you created in :ref:`google_earth_engine_part_1`. This page will contain introductory information about that app. This will involve moving the current "home page", which contains the map viewer, to a new endpoint. Then you will set up a new controller and template for the new home page. The following topics will be reviewed in this tutorial: * Adding a new view to your app * Responsive web design using Bootstrap * Bootstrap Grid System * Bootstrap Fluid Containers * Custom styling with CSS * Linking to other pages and navigation * Placeholder content for development: lorem ipsum and images .. figure:: ./resources/home_page_solution.png :width: 800px :align: center 0. Start From Previous Solution (Recommended) ============================================= We recommend you use the previous solution as a starting point for Part 2: .. parsed-literal:: git clone https://github.com/tethysplatform/tethysapp-earth_engine.git cd tethysapp-earth_engine git checkout -b plot-data-solution plot-data-solution-|version| 1. Move Map View to Viewer Endpoint =================================== Currently, the map viewer page is the "home" page of the app as evidenced by it being rendered by a controller called ``home`` and a template called :file:`home.html`. In this step you will rename these to "viewer" to make way for the new home page. You will also need to update the ``UrlMap`` to point at the new ``viewer`` controller. You will also change it's endpoint from the root endpoint to a new endpoint to allow the new home page to use the root endpoint. 1. Rename :file:`templates/earth_engine/home.html` to :file:`templates/earth_engine/viewer.html`. 2. Rename ``home`` controller to ``viewer`` in :file:`controllers.py`: .. code-block:: python @login_required() def viewer(request): """ Controller for the app viewer page. """ 3. Change the ``render`` call at the end of the ``viewer`` controller to use the new :file:`templates/earth_engine/viewer.html` in :file:`controllers.py`: .. code-block:: python return render(request, 'earth_engine/viewer.html', context) 4. Update the ``UrlMaps`` in :file:`app.py` to the following: .. code-block:: python def url_maps(self): """ Add controllers """ UrlMap = url_map_maker(self.root_url) url_maps = ( UrlMap( name='viewer', url='earth-engine/viewer', controller='earth_engine.controllers.viewer' ), UrlMap( name='get_image_collection', url='earth-engine/viewer/get-image-collection', controller='earth_engine.controllers.get_image_collection' ), UrlMap( name='get_time_series_plot', url='earth-engine/viewer/get-time-series-plot', controller='earth_engine.controllers.get_time_series_plot' ), ) return url_maps 5. Navigate to ``_ and verify that the map view still functions as it should. Be sure to test loading a dataset or two and plot data at a location. .. note:: The root URL endpoint for the app (``_) is not defined and will raise an error. This error will also be raised if you exit the app and launch it again, because the root URL endpoint is the default primary view of the app. 2. Create New Home Endpoint =========================== In this step you will create a new ``home`` controller and :file:`home.html` template and setup a new ``UrlMap`` for the new home page. 1. Create a new :file:`templates/earth_engine/home.html` with the following contents: .. code-block:: html+django {% extends "earth_engine/base.html" %} {% load tethys_gizmos static %} {% block app_content %}

Home Page

{% endblock %} 2. Create a new ``home`` controller in :file:`controllers.py`: .. code-block:: python @login_required() def home(request): """ Controller for the app home page. """ context = {} return render(request, 'earth_engine/home.html', context) 3. Add a new ``UrlMap`` for the root URL of the app (``earth-engine``) in :file:`app.py`. This new ``UrlMap`` should use the new ``home`` controller: .. code-block:: python def url_maps(self): """ Add controllers """ UrlMap = url_map_maker(self.root_url) url_maps = ( UrlMap( name='home', url='earth-engine', controller='earth_engine.controllers.home' ), UrlMap( name='viewer', url='earth-engine/viewer', controller='earth_engine.controllers.viewer' ), UrlMap( name='get_image_collection', url='earth-engine/viewer/get-image-collection', controller='earth_engine.controllers.get_image_collection' ), UrlMap( name='get_time_series_plot', url='earth-engine/viewer/get-time-series-plot', controller='earth_engine.controllers.get_time_series_plot' ), ) return url_maps 4. Navigate to ``_ and verify that the new home page loads with text "Home Page". 5. Exit the app and launch it again from the Apps Library to verify that loads the new home page. 3. Remove Navigation from Home Page =================================== As the app is not very complex (i.e. it only has two pages), the navigation menu will not be needed. In this step you will remove it using the ``app_navigation_override`` block. Doing so also causes the hamburger menu in the header to be removed, which causes some styling issues. These will also be addressed by adding a new stylesheet to the page. 1. Add the ``app_navigation_override`` block in :file:`templates/earth_engine/home.html` to remove the navigation panel from the home page: .. code-block:: html+django {% block app_navigation_override %} {% endblock %} 2. Create a new :file:`public/css/no_nav.css` style sheet with styles to adjust the header appropriately when there is no navigation toggle button in the header: .. code-block:: css #nav-title-wrapper { margin-left: 15px; } #app-content-wrapper #app-content { height: 100%; } #app-content-wrapper.show-nav #app-content { padding-right: 0; transform: none; } #inner-app-content { padding: 0; } 3. Include the :file:`public/css/no_nav.css` stylesheet in :file:`templates/earth_engine/home.html`: .. code-block:: html+django {% block styles %} {{ block.super }} {% endblock %} 4. Navigate to ``_ and verify that the app icon in the header has spacing on the left. 4. Layout Home Page Grid with Bootstrap ======================================= In this step, you will create a responsive two column layout using the `Bootstrap Grid System `_, which is part of the Bootstrap CSS framework. Bootstrap provides a number of simple recipes for implementing common HTML + CSS patterns. It is built-in with Tethys Platform, so no additional installation is required. 1. Create a ``
`` element with class ``container-fluid`` in the ``app_content`` block: .. code-block:: html+django :emphasize-lines: 2-3 {% block app_content %}
{% endblock %} .. note:: The ``container-fluid`` allows the width of the container to grow and shrink dynamically or fluidly with screen size. It also has smaller margins than the normal ``container`` class. 2. Add a ``
`` element with class ``row``: .. code-block:: html+django :emphasize-lines: 3-4 {% block app_content %}
{% endblock %} 3. Add two column ``
`` elements with widths of 2/3rds (**8**/12ths) and 1/3rd (**4**/12ths) the width of the container, respectively: .. code-block:: html+django :emphasize-lines: 4-7 {% block app_content %}
{% endblock %} .. note:: Each row in a `Bootstrap Grid `_ can be divided into as many as 12 columns by specifying different numbers at the end of the ``col-md-X`` classes. A column of size 1 is effectively 1/12th of the width of the row. For example, to divide a row into two equal columns you would add two columns with size of 6 (6/12ths). Our home page has two columns but instead of being evenly divided, one of them takes up 8 of the available 12 column widths and the other takes the remaining 4 column widths. This effectively give our columns a 2 to 1 ratio. 4. Add two rows to the second column, each containing a full-width (**12**/12) column: .. code-block:: html+django :emphasize-lines: 7-14 {% block app_content %}
{% endblock %} 5. Add container ``
`` elements with the ids ``about-container``, ``resources-container``, and ``get-started-container`` to each terminating column. Also add the ``info-container`` class to each of these ``
`` elements to allow for consistent styling in a later step: .. code-block:: html+django :emphasize-lines: 5-6,11-12,17-18 {% block app_content %}
{% endblock %} 5. Create About Panel Content ============================= In this step we'll add a the title and some filler content to the About panel of the home page. The filler content was generated using a `Lorem Ipsum `_ generator. This is a commonly used strategy that allows the developer to test the structure ans style of the page even if the content has not been finalized yet. 1. Add the title, "About", and a few paragraphs of filler text (lorem ipsum) to the ``
`` element with id ``about-container``. Use the ``info-title`` class on the title element to allow for consistent styling of all the titles in a later step. Place the placeholder filler text in ``

`` elements: .. code-block:: html+django :emphasize-lines: 2-4

About

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Eget est lorem ipsum dolor sit amet. Morbi tincidunt augue interdum velit euismod in pellentesque.

Ac felis donec et odio pellentesque. Quis ipsum suspendisse ultrices gravida dictum fusce ut. Curabitur gravida arcu ac tortor dignissim convallis aenean et tortor. Sed euismod nisi porta lorem mollis. Nisi scelerisque eu ultrices vitae. Sit amet consectetur adipiscing elit duis. At in tellus integer feugiat scelerisque varius morbi enim.

2. Download :download:`this screenshot <./resources/earth-engine-viewer.png>` or take your own screenshot of the Earth Engine app and save it as :file:`public/images/earth-engine-viewer.png`. 3. Add the screenshot to the ``
`` element with id ``about-container``. Use the built-in ``static`` tag to get the path to the image: .. code-block:: html+django :emphasize-lines: 5

About

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Eget est lorem ipsum dolor sit amet. Morbi tincidunt augue interdum velit euismod in pellentesque.

Ac felis donec et odio pellentesque. Quis ipsum suspendisse ultrices gravida dictum fusce ut. Curabitur gravida arcu ac tortor dignissim convallis aenean et tortor. Sed euismod nisi porta lorem mollis. Nisi scelerisque eu ultrices vitae. Sit amet consectetur adipiscing elit duis. At in tellus integer feugiat scelerisque varius morbi enim.

4. Navigate to ``_ and verify that the title "About", filler paragraphs, and screenshot appear in the panel on the left. 6. Create Resources Panel Content ================================= In this step we'll add the content to the Resources panel of the home page. The Resouces panel needs to contain a list of links to external resources related to our app. `Boostrap Media Objects `_ will be used to represent our resource list. Each media object has a thumbnail image with the link, title, and short description. Once again, you'll use Lorem Ipsum as filler text. 1. Add the title, "Resources", to the ``
`` element with id ``resources-container``. Again, use the ``info-title`` class on the title element. .. code-block:: html+django :emphasize-lines: 2

Resources

2. Download the following images or find three images of your own and save them to :file:`public/images/`: * :download:`coast_80_80.jpg <./resources/coast_80_80.jpg>` * :download:`condensation_80_80.jpg <./resources/condensation_80_80.jpg>` * :download:`waterfall_80_80.jpg <./resources/waterfall_80_80.jpg>` .. note:: In addition to Lorem Ipsum generators, there are also `placeholder image generators `_ that can be used to generate placeholder images for development. Most of these services allow you to specify the size of the images and some of them allow you to specify text that is shown on the image. The images above were obtained from `PlaceIMG `_. 3. Add three resources to the ``
`` element with id ``resources-container``. Use `Boostrap Media Objects `_ to style each resource. Each media object/resource includes, a title, a short description and a thumbnail image. The image is wrapped in an ```` tag that can be used to provide a link to an external resource. Again, use the built-in ``static`` tag to get the paths for the images. .. code-block:: html+django :emphasize-lines: 3-37

Resources

Lorem Ipsum Dolor

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

Ut Enim Ad Minim

Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.

Duis Aute Irure

Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
4. Navigate to ``_ and verify that the title "Resource" and three media elements with images appear in the panel on the top right. At this point things may look a bit messy with images overlapping. We'll take care of these issues in a later step. For now, we'll focus on developing the structure of the page. 7. Create Get Started Panel Content =================================== In this step you will add the content to the Get Started panel. This panel is arguably the most important panel on the home page, as it will provde the "Launch Viewer" button that will link to the viewer page. 1. Add the title, "Get Started", a short paragraph, and a "Launch Viewer" link to the ``
`` element with id ``get-started-container``. Again, use the ``info-title`` class on the title element. Use the ``url`` tag with the name of the viewer controller to get the link to the Viewer page: .. code-block:: html+django :emphasize-lines: 2-4

Get Started

Press the button below to launch the viewer

Launch Viewer
2. Navigate to ``_ and verify that the title "Get Started", paragraph, and Launch Viewer link appear in the panel on the bottom right. Click on the Launch Viewer link to verify that it directs the user to the map view page. 8. Customize Style of Home Page =============================== The Bootstrap CSS framework provides a good base for styling pages in the apps. The home page at this point has the correct 2-column layout that we were after, but it is a fairly bland page and the screenshot image is not contained in it's column. In this step, you'll add a new style sheet for the home page and customize the theme of the home page. 1. Create a new :file:`public/css/home.css` stylesheet. 2. Include the :file:`public/css/home.css` stylesheet in :file:`templates/earth_engine/home.html`: .. code-block:: html+django :emphasize-lines: 4 {% block styles %} {{ block.super }} {% endblock %} 3. Add the following lines to :file:`public/css/home.css` to customize the appearance of the ``info-container`` panels: .. code-block:: css .info-container { background-color: #0000009f; box-shadow: 3px 5px 3px rgba(0,0,0,0.35); padding: 10px; margin-bottom: 30px; } .info-container .info-title { color: #067ef5; text-shadow: 2px 2px #000000; } .info-container p { color: #eee; text-shadow: 2px 2px #000000; font-size: 16px; } .info-container .media-body { color: #eee; text-shadow: 2px 2px #000000; } .info-container .media-object { border-radius: 5px; } .info-container .media-heading { color: #eee; text-shadow: 2px 2px #000000; } #feature-image { width: 100%; } .. note:: Half of the work of styling the home page has already been done, because the HTML elements of the page contain classes and IDs that make it easy to select and style the elements. Generally, you'll want to use classes to group elements that are styled similarly (e.g.: ``info-container`` classes) and IDs for elements that are unique (e.g.: ``get-started-btn``). 4. Refresh the page to see how the styles change the look and feel of the page. Hard-refresh if necessary (:kbd:`CTRL-SHIFT-R` or :kbd:`CTRL-F5`). 5. Add the following lines to :file:`public/css/home.css` to make the Launch Viewer link appear and behave like a button: .. code-block:: css #get-started-btn { display: inline-block; border-radius: 15px; padding: 5px 10px; background-color: #fff; color: #044777; border: solid 2px rgb(6, 126, 245); text-transform: uppercase; font-weight: 600; align-items: center; font-size: 14pt; cursor: pointer; width: fit-content; text-decoration: none !important; justify-content: center; margin: 10px 0; } #get-started-btn:hover { background-color: #eee; } #get-started-btn:active, #get-started-btn:focus { background-color: #044777; color: white; } 6. Refresh the page to see how the styles change the look and feel of the page. Hard-refresh if necessary (:kbd:`CTRL-SHIFT-R` or :kbd:`CTRL-F5`). 7. Download the :download:`backdrop image <./resources/earth-engine-backdrop.png>` or find your own. 8. Add the following lines to :file:`public/css/home.css` to add a background image to the home page: .. code-block:: css #home-content-container { padding: 20px; min-height: 100%; background: url('/static/earth_engine/images/earth-engine-backdrop.png'); background-color: #d2dadc; background-position: center; background-repeat: no-repeat } 9. Refresh the page to see how the styles change the look and feel of the page. Hard-refresh if necessary (:kbd:`CTRL-SHIFT-R` or :kbd:`CTRL-F5`). 9. Add a Home Button to Viewer Page =================================== In this step you will add a Home button to the Viewer page so that users can easily get back to the Home page from the Viewer page. 1. Add a header button to the :file:`templates/earth_engine/viewer.html` template to make it easier to get back to the home page from the viewer page: .. code-block:: html+django {% block header_buttons %}
{% endblock %} 2. Navigate to ``_ and verify that the home button appears in the header and links to the home page. 9. Test and Verify ================== Browse to ``_ in a web browser and login if necessary. Verify the following: 1. The Home page has a background image. 2. The custom styles for the ``info-container`` panels, titles, and Launch Viewer button appear correctly. 3. The Launch Viewer button on the Home page links to the Viewer page. 4. The Home button appears in the header of the Viewer page and links to the Home page. 5. Resize the browser window to different widths. The columns should collapse and stack on top of each other for narrow screens. 10. Solution ============ This concludes this portion of the GEE Tutorial. You can view the solution on GitHub at ``_ or clone it as follows: .. parsed-literal:: git clone https://github.com/tethysplatform/tethysapp-earth_engine.git cd tethysapp-earth_engine git checkout -b home-page-solution home-page-solution-|version|