npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@nativescript/template-master-detail

v8.7.0

Published

Master-detail interface to display collection of items from json collection and inspect and edit selected item properties.

Downloads

44

Readme

NativeScript Core Master-Detail App Template

App templates help you jump start your native cross-platform apps with built-in UI elements and best practices. Save time writing boilerplate code over and over again when you create new apps.

This Master-Detail template is a fundamental building block for any app that displays collection of objects and their details and need to work both in online and offline mode while utilizing Firebase as a backend. The template uses a RadListView component to display the master list. The RadListView component is part of Progress NativeScript UI.

Key Features

  • Editable master-detail interface
  • Integration with Firebase database
  • Works offline
  • Customizable theme
  • UX and development best practices
  • Easy to understand code

Quick Start

Execute the following command to create an app from this template:

ns create my-master-detail-js --template @nativescript/template-master-detail

Note: This command will create a new NativeScript app that uses the latest version of this template published to npm.

If you want to create a new app that uses the source of the template from the main branch, you can execute the following:

# clone nativescript-app-templates monorepo locally
git clone [email protected]:NativeScript/nativescript-app-templates.git

# create app template from local source (all templates are in the 'packages' subfolder of the monorepo)
ns create my-master-detail-js --template nativescript-app-templates/packages/template-master-detail

NB: Please, have in mind that the main branch may refer to dependencies that are not on NPM yet!

Walkthrough

Architecture

The application root module is located at:

  • /app/app-root - sets up a Frame that lets you navigate between pages.

The template has the following page modules:

  • /app/cars/cars-list-page - the master list page. It gets the data and displays it in a list. On item tap, it navigates to the item details page.
  • /app/cars/car-detail-page/car-detail-page - the item details page. Displays the details of the tapped item. Has an Edit button that leads to the edit page.
  • /app/cars/car-detail-edit-page/car-detail-edit-page - the item details edit page. Provides edit options for the selected item. The Done button saves the changes.

There is one model to represent the data items:

  • /app/cars/shared/car-model

The template also provides a data service:

  • /app/cars/shared/car-service - serves as a data layer for the master-detail data items. Wraps the functions that are used to make operations on the database.

Firebase integration

The template uses the {N} Firebase plugin. The initialization is done before the app starts in the /app/app.js file. The initialization script is located at /app/shared/firebase.common.js.

[Optional] Firebase database setup

By design the app is connected to a read-only copy of the sample data in Firebase. If you want to see the "edit" functionality in action you will have to clone the sample data and update the app configuration to point to your own Firebase setup. You can find detailed instructions how to achieve that here.

Styling

This template is set up to use SASS for styling. All classes used are based on the {N} core theme – consult the documentation to understand how to customize it.

It has 3 global style files that are located at the root of the app folder:

  • /app/_app-common.scss - the global common style sheet. These style rules are applied to both Android and iOS.
  • /app/app.android.scss - the global Android style sheet. These style rules are applied to Android only.
  • /app/app.ios.scss - the global iOS style sheet. These style rules are applied to iOS only.

Each component has 3 style files located in its folder:

  • ../_{page-name}-common.scss - the component common style sheet. These style rules are applied to both Android and iOS.
  • ../{page-name}.android.scss - the component Android style sheet. These style rules are applied to Android only.
  • ../{page-name}.ios.scss - the component iOS style sheet. These style rules are applied to iOS only.

Get Help

The NativeScript framework has a vibrant community that can help when you run into problems.

Try joining the NativeScript community Discord. The Discord channel is a great place to get help troubleshooting problems, as well as connect with other NativeScript developers.

If you have found an issue with this template, please report the problem in the NativeScript repository.

Contributing

We love PRs, and accept them gladly. Feel free to propose changes and new ideas. We will review and discuss, so that they can be accepted and better integrated.