Memo Application
Last updated
Last updated
This sample app allows user to create a memo application using local storage.
Import Memo Application to your Monaca Account
Tested Environment
Android 11.0
iOS 14.3
File | Description |
| The Home screen |
| A JavaScript file handling data manipulation in local storage |
| A JavaScript file handling various implementation in the application |
jQuery
jQuery Mobile
This sample app's user interface is based on jQuery Mobile. In jQuery Mobile, multiple pages can be integrated to a single HTML file. In this app, for example, all pages (Top page, Add Memo page and Detail page) are defined within index.html. Specifically, pages are expressed by div
tags in which the data-role
attribute is set to page
. The role of the tags is expressed by the data-role
attribute in this manner. For example, data-role
can also specify as header
, content
, or listview
. For more information on jQuery Mobile tags and components, please refer to jQuery Mobile Demo.
The following content of the HTML body tag of index.html
file:
You can add, view and delete notes from this home screen.
The following content of the HTML body tag of index.html
file:
You can add and save notes from this page.
The following content of the HTML body tag of index.html file:
You can view the details of each memo from this screen.
app.js
is a JavaScript file handling various implementation of the application.
As soon as the application starts, the initTopPage()
function is called. This function is used to initialize the Top page (Home screen). The initialization process is to get all the previously stored memo(s) (using the getMemoList()
function which is defined in the memo.js
file) and put them into a list view. If there is no previously created memo (when using the application for the first time), "No memo found"
will be displayed.
Below is the source code of this function:
On the Top page, when a user clicks on the +Add
button, the Add Memo page will be shown. After filling in the Memo text box, the onSaveBtn()
function is called when the Save
button is clicked. In this function, the input text will be saved to local storage via the addMemo()
function (defined in the memo.js
file) and then it goes back to the Top page with an updated list. Below is the source code of this function:
On the Top page, when a user clicks on an item in the list, the onShowLink()
function (defined in the memo.js
file) is called. In this function, the Detail page will be shown and either the title or the full content of the selected item will be displayed as shown below:
Below is the source code of this function:
On the Top page, a user can delete any item in the list by clicking on the delete icon at the end of each item. When the delete icon is clicked, the onDeleteLink()
function is called. In this function, a message confirming the deleting action is shown . If the button is clicked, the selected item will be deleted from the local storage via the deleteMemo()
function (defined in the memo.js
file). Then, it will go back the Top page with an updated list.
Below is the source code of this function:
memo.js
file is a JavaScript file handling data manipulation in local storage. Inside this file, there are 4 functions such as:
getMemoList()
: get the list of all memo stored in the local
storage.
saveMemoList()
: save the list of all memo into the local storage.
AddMemo()
: add a new memo into the memo list and then save the new
list into the local storage using saveMemoList()
function.
deleteMemo()
: delete a specific memo from the memo list and then
save the new list into the local storage using saveMemoList()
function.