Last modified by MammaMia - 8 years ago
1099 Views
4 min read

A newbie intro to WordPress development using WP App Studio – Part III

We are going to continue exploring the generated plugin focusing on the frontend and data import/export capabilities.

Bulk importing existing data

"Request a quote" app supports entity operations module since we enabled this feature in the app settings. If this module is enabled, WPAS creates an "Operations" button in app list screen next to the "Add New" button in the admin area. You must be logged in as administrator to access Operations screen.

The operations module is specifically designed for the generated app based on the app design and enforces data integrity by;

  • checking data rules such as required, unique attributes, auto-increment etc.
  • checking app rules such as data existence in term of relationships
  • checking compliance with WordPress API rules

That's why using third party CSV importers is not recommended since they lack the logic to properly import your data compromising data integrity of your app.

One of our requirements was to import existing quotes we collected from a CSV file into the app. The most efficient and error-free way to do this using Google Docs Google Spreadsheet(GS). WP App Studio apps support the GS CSV file format. GS is part of Google Docs, free and easily accessible with a Google account.

Once you have your data in GS, you can modify the content in a spreadsheet format. I will start by manually entering a couple of records so that I can export app template after with some sample data . The exported file matches what the import process expects so it will be a lot easier to match the columns etc.

The recommend process for bulk imports:

  1. Insert a few records manually and publish
  2. Click on "Operations" button and switch to "Export" tab
  3. Click on Export All Contacts
  4. Open up a Google Spreadsheet and import the exported CSV file
  5. Fill out the rest of the sheet with your data making sure the required fields are not left blank, the data format is matching the sample data
  6. Click the File menu, then click Download as, then .CSV.
  7. Click on "Operations" button and switch to "Import " tab
  8. Use the downloaded CSV file in import. If you used the same header names, it will automatically mapped.
  9. Follow the same process to bulk import more data

Pro tip: If you exceed the PHP upload limit and you do not want to/can not change php.ini file, try splitting the import file

Watch out for date or time attributes, the format of these attributes is very important. If you do not insert the required format, the data will not be displayed properly. Another issue is the usage of comas within strings. Make sure the data points with coma inside are wrapped with double quotes.

Let's check out our default single view

Single views are designed to display single records. If you do not specify a custom view layout, WPAS creates a default layout. The default layout lists attribute label value combinations one after another excluding hidden attributes, based on the attribute order.

Pro tip: In a more complex case, you may want to create a single view with a custom view layout. You do not have to know how to code in HTML. You can use any post or page visual editor to create the outline of your view layout. After creating the layout, just put the app tags you need to the places you want.

Revisiting advanced filters

Since we uploaded some data, it is better now to show how advanced filter module helps us. Advanced filters is a powerful module which, you guessed it right, allows to filter out the data based on some criteria. For example, if I want to find out the bidders living New Jersey who also quoted me for more than $5000 for my car, I can create a filter for that.

In addition, if I want to track this criteria over time, I can save the filter. This feature allows me to see if the number increased, say a week from now without recreating the same criteria.

Contact form to get quotes

There are two types of forms in WPAS; submit and search. We did not create a search form for our app deciding to use Advanced Filters in the admin area instead. However, we created a submit form to collect quotes from the bidders.

Every WPAS form comes with its own shortcode. If you put this shortcode in a page, WordPress renders the form. Let's think about a complex app with 20+ forms. How are we going to remember every shortcode? Well, good news! You do not have to. Since we enabled Visual Shortcode Builder(VSB) in the app design, it is available for our app.

Visual Shortcode Builder

 Visual Shortcode Builder allows us to create simple as well as complex shortcodes. A simple shortcode is the one without any parameters such as our contact form. A more complex one may have one to many parameters such as filtering attributes, taxonomies or relationships limiting the results to certain post ids. VSB can be accessed by clicking on the WPAS button any page.

Wrapping up

In this tutorial, I covered the very basics of a WPAS app. If you noticed, we did not write a single line of code, simply used the defaults. It is not the case for most commercial apps. As you learn more about WPAS WordPress development, you will more and more use custom HTML and JavaScript to enhance look and feel as well as functionality of your apps.

One way of learning how complex apps are developed is checking out at the available app designs. App designs allow us to document app requirements as well as simplifying how the generated code is structured. They are a great abstraction level for non-developer users. You can use app designs in your client walkthroughs or revisit how you developed a particular app.

In the upcoming tutorials, I will show creating more complex apps; adding a couple of taxonomies, relationships, and more sophisticated views.

 

Image Gallery
Was this information helpful?