ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

Jasonette Completions

by 7barry ALL Missing

Jasonette completions for Sublime Text

Details

  • 0.1.2
  • github.​com
  • 5 years ago
  • 2 years ago
  • 5 years ago

Installs

  • Total 163
  • Win 100
  • Mac 51
  • Linux 12
Jul 27 Jul 26 Jul 25 Jul 24 Jul 23 Jul 22 Jul 21 Jul 20 Jul 19 Jul 18 Jul 17 Jul 16 Jul 15 Jul 14 Jul 13 Jul 12 Jul 11 Jul 10 Jul 9 Jul 8 Jul 7 Jul 6 Jul 5 Jul 4 Jul 3 Jul 2 Jul 1 Jun 30 Jun 29 Jun 28 Jun 27 Jun 26 Jun 25 Jun 24 Jun 23 Jun 22 Jun 21 Jun 20 Jun 19 Jun 18 Jun 17 Jun 16 Jun 15 Jun 14 Jun 13
Windows 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Mac 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Linux 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

Readme

Source
raw.​githubusercontent.​com

Jasonette Snippets

The snippets in this repo were ported to Sublime Text from Jasonette snippets made for Visual Studio Code.

List of Snippets

Prefix Jasonette Snippet Content
$jason A new jasonette app base
href Used to describe links between views
$require The $require action imports remote JSON files in parallel
$lambda Call another action by name
$reload Refreshes the view completely by re-fetching content from the current URL
$render Renders a template with data
$snapshot Takes a snapshot of the currently visible screen
$href An action version of href. Works the same way, but can be used when a component doesn't support href attribute directly
$close Close a modal (works when the currently view is a modal)
$back Transition one step back from the current view. If the current view is a modal, it closes the current view, otherwise it slides back to the previous view
$network.request Make GET/POST/PUT/DELETE Action requests
$network.upload Upload data to cloud providers. Currently supports S3
$session.set $session.set takes care of token authentication to authenticate into any mobile API
$session.reset This action lets you clear sessions for a specified domain. Can be used for both token authentication and web authentication via cookies
$set Use $set and $get to set and get local variables.
$get Use $set and $get to set and get local variables.
$cache.set $cache.set action is used to store to cache
$cache.get Directly access $cache variable from a template expression
$cache.reset Use $cache.reset action to reset the cache associated with the current url
$global.set $global.set action is used to write to global variables
$global.get Read global variables using template expressions
$global.reset Use $global.reset action to remove global variables by name
$util.banner Displays a banner notification with title and description
$util.toast Displays a toast notification with a simple text
$util.alert Displays an alert
$util.share Share a text, image, video, or a combination of them
$util.picker Opens a multiple choice picker menu, with each item linking to an action or an href
$util.datepicker Opens a datepicker and returns the value in unix time format
$util.addressbook Fetches the addressbook to populate them into $jason
$media.camera Capture a video or a photo using the device camera
$media.picker Opens the device camera roll
$media.play plays a video from remote url
$audio.play Play audio from remote url
$audio.pause Pauses an audio clip that's already playing from a remote url
$audio.stop Stops an audio clip that's already playing from a remote url. If URL is specified, stops ONLY this url. Otherwise, stops all audios currently playing
$audio.seek Seeks audio already playing from a remote url
$audio.position Get the position of the specified audio clip
$audio.duration Returns total duration of the specified audio clip in seconds
$audio.record Records audio
$geo.get Get user's geolocation using accuracy in meters
$timer.start Start a timer using seconds as a countdown
$timer.stop Stops a timer using the name of the timer
$convert.csv Converts CSV to parsed JSON
$convert.rss Convert RSS to JSON. Built on top of node-feedparser library
label Static uneditable text element
image Image loaded from either remote url or data-url
button A basic component that responds to user tap
textfield Single line input field
textarea Multiline input field
slider Horizontal slider input
html A self-contained web environment that you can plug in, style, and manipulate just like the rest of the components
space An empty space component mostly used for layout purposes
map Map component
layout A layout to store components in
nestedlayout A layout to store components in
each Iterates through the expression that comes after declaration
if Single conditional statement
ifelse Conditional statement including else
elseif Conditional statement including else
this This keyword
mixin Mixin Helper