Skip to content

Alloy version of the best practice to cache remote images locally.

Notifications You must be signed in to change notification settings

viezel/nl.fokkezb.cachedImageView

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 

Repository files navigation

CachedImageView Widget

Overview

The CachedImageView widget implements the best practice of caching remote images for Titanium Alloy by Appcelerator.

Features

  • Initialize the widget directly through the requiring view.
  • Provide a seperate URL for the image to use on IOS retina devices.
  • Provide a local filename to be used instead of the MD5 hash of the URL.
  • Provide an extension for the local file if the remote doesn't have one.

Future work

  • Provide a subdirectory to save the image under.
  • Provide a choice to which system directory (cache, data) to save under.
  • Provide a maximum age for the cached image before re-downloading it.

Quick Start

  • Download the latest version of the widget as a ZIP file.
  • Move the file to your project's root folder.
  • Unzip the file and you'll find the widget under app/widgets/nl.fokkezb.cachedImageView.
  • Add the widget as a dependency to your app/config.json file like so:
	
	"dependencies": {
		"nl.fokkezb.cachedImageView":"1.0"
	}
  • Use the widget in a view just like you'd use an ImageView. Only use Widget instead of ImageView and add the src attribute to point to the widget.
<Widget src="nl.fokkezb.cachedImageView"
id="civ" image="http://widgets.fokkezb.nl/cachedImageView/appicon.png" />
  • Optionally add any of the additional parameters as attributes.

Additonal parameters

The only required parameter is the image parameter. All parameters are passed on to the resulting Ti.UI.ImageView. You can add the following additional parameters to change the widget's behaviour. They can be used both as attributes in <Widget> and when initializing the widget in your controller.

Parameter Type Description
cacheHires string URL of the image to use for iOS retina devices.
cacheName string Basename for the local file instead of the MD5 hash of the URL. Use it when the URL contains some time-dependant key.
cacheExt string Extension for the local file if the URL doesn't have one, like with generated images.

Initialization in the Controller

If you don't include the image parameter as an attribute in <Widget/>, the resulting Ti.UI.ImageView will not be automatically initialized for you. This allows you to do this yourself in your controller. This can be usefull if you want to add some advanced decission logic to determine which image to use. If this would only depend on the formFactor and platform however, I would recommend using conditional code in <Widget/> instead.

NOTE: The $.cid in the example below corresponds to the id attribute in the <Widget/> example. You can change it to whatever value.

$.cid.init({
    image: OS_IOS ? 'http://widgets.fokkezb.nl/cachedImageView/appicon.png' : 'http://url.to/android.png'
});

Styling the ImageView

You can style the resulting Ti.UI.ImageView by applying the styles to the <Widget/> instead. Add the style declaration to the TTS file that belongs to the view where you've added the <Widget/>. The styling will be passed on to the resuling Ti.UI.ImageView. Be aware that any attributes you add directly to <Widget/> will override the TTS style.

NOTE: The $.cid in the example below corresponds to the id attribute in the <Widget/> example.

"#cid": {
	width: 57,
	height: 57,
	preventDefaultImage: true
}

About

Alloy version of the best practice to cache remote images locally.

Resources

Stars

Watchers

Forks

Packages

 
 
 

Languages

  • JavaScript 100.0%