- Download the latest release of the plugin
- Un-zip
- Double-click on everydaydesignstudio.sketchplugin
Open the .db SQLite file in DB Browser for SQLite.
Go to Execute SQL tab.
Then the run one of the queries below, depending on what UI element you want to create.
Copy the returned data.
Open Sketch and select an artboard or layer under which you'd like the new artboard to be placed.
Then run one of the following plugins:
- EverydayDesignStudio âžť Dominant Color - Transfer Animation
- EverydayDesignStudio âžť Dominant Color - Slideshow
- EverydayDesignStudio Altitude Graph
- EverydayDesignStudio Color Bar
- EverydayDesignStudio Time Bar
Paste in the appropriate data. How you naturally copy it from the database is the correct format.
Click Okay
and bam! There you go :)
Create a collection of boxes from array of RGB and array of percentages. This data comes from the kmeans color detection script for Capra.
Example Input
4500 41,42,53|123,115,99|100,105,117|58,53,40 0.25,0.17,0.13,0.05
Query:
SELECT picture_id, colors_rgb, colors_conf FROM pictures WHERE picture_id=?;
Parameters:
picture_id=
Input Format
['r, g, b', 'r, g, b', 'r, g, b', ...]
[%, %, %, ...]
['99, 103, 94', '81, 87, 91', '210, 228, 210', '179, 154, 84', '65, 64, 44']
[0.34, 0.31, 0.13, 0.12, 0.11]
Create the color palette UI element seen in the slideshow
Example Input
4500 41,42,53|123,115,99|100,105,117|58,53,40 0.25,0.17,0.13,0.05
Query
SELECT picture_id, colors_rgb, colors_conf FROM pictures WHERE picture_id=?;
This feature relies on the mod(x, y)
function available in SQLite versions >= 3.35.5. You'll need a newer version of DB Browser for SQLite >= 3.12.99.
Run the following queries. Then copy the first two columns and paste that data into the plugin.
Parameters
hike=?
128.0 (number of items returned)
NOTE: Query requires the decimal point in order for the script to work
order by Altitude
SELECT picture_id, altitude, altrank_hike, color_rank_hike, index_in_hike, mod(altrank_hike, (SELECT count(*) FROM pictures WHERE hike=?)/128.0) AS mod_val
FROM pictures WHERE hike=? AND mod_val < 1.0 ORDER BY altrank_hike ASC;
order by Color
SELECT picture_id, altitude, altrank_hike, color_rank_hike, index_in_hike, mod(altrank_hike, (SELECT count(*) FROM pictures WHERE hike=?)/128.0) AS mod_val
FROM pictures WHERE hike=? AND mod_val < 1.0 ORDER BY color_rank_hike ASC;
order by Time
SELECT picture_id, altitude, altrank_hike, color_rank_hike, index_in_hike, mod(altrank_hike, (SELECT count(*) FROM pictures WHERE hike=?)/128.0) AS mod_val
FROM pictures WHERE hike=? AND mod_val < 1.0 ORDER BY time ASC;
Parameters
128.0 (number of items returned)
NOTE: Query requires the decimal point in order for the script to work
order by Altitude
SELECT picture_id, altitude, altrank_global, color_rank_global, time_rank_global, mod(altrank_global, (SELECT count(*) FROM pictures)/128.0) AS mod_val
FROM pictures WHERE mod_val < 1.0 ORDER BY altrank_global ASC;
order by Color
SELECT picture_id, altitude, altrank_global, color_rank_global, time_rank_global, mod(altrank_global, (SELECT count(*) FROM pictures)/128.0) AS mod_val
FROM pictures WHERE mod_val < 1.0 ORDER BY color_rank_global ASC;
order by Time (minute)
SELECT picture_id, altitude, altrank_global, color_rank_global, time_rank_global, mod(altrank_global, (SELECT count(*) FROM pictures)/128.0) AS mod_val
FROM pictures WHERE mod_val < 1.0 ORDER BY time_rank_global ASC;
order by Time (chronological)
SELECT picture_id, altitude, altrank_global, color_rank_global, time_rank_global, minute, mod(altrank_global, (SELECT count(*) FROM pictures)/256.0) AS mod_val
FROM pictures WHERE mod_val < 1.0 ORDER BY time ASC;
Shows just one point for the average altitude of each Hike
Parameters
128.0 (number of items returned)
NOTE: Query requires the decimal point in order for the script to work
order by Altitude
SELECT hike_id, avg_altitude, avg_altitude_rank, mod(avg_altitude_rank, (SELECT count(*) FROM hikes)/128.0) AS mod_val
FROM hikes WHERE mod_val < 1.0 ORDER BY avg_altitude ASC;
order by Color
SELECT hike_id, avg_altitude, avg_altitude_rank, mod(avg_altitude_rank, (SELECT count(*) FROM hikes)/128.0) AS mod_val
FROM hikes WHERE mod_val < 1.0 ORDER BY color_rank ASC;
order by Time (chronological)
SELECT hike_id, avg_altitude, avg_altitude_rank, mod(avg_altitude_rank, (SELECT count(*) FROM hikes)/128.0) AS mod_val
FROM hikes WHERE mod_val < 1.0 ORDER BY start_time ASC;
This feature relies on the mod(x, y)
function available in SQLite versions >= 3.35.5. You'll need a newer version of DB Browser for SQLite >= 3.12.99.
Run the following queries. Then copy the first two columns and paste that data into the plugin.
Parameters
hike=?
128.0 (number of items returned)
NOTE: Query requires the decimal point in order for the script to work
order by Altitude
SELECT picture_id, color_rgb, altrank_hike, color_rank_hike, index_in_hike, mod(altrank_hike, (SELECT count(*) FROM pictures WHERE hike=?)/128.0) AS mod_val
FROM pictures WHERE hike=? AND mod_val < 1.0 ORDER BY altrank_hike ASC;
order by Color
SELECT picture_id, color_rgb, altrank_hike, color_rank_hike, index_in_hike, mod(altrank_hike, (SELECT count(*) FROM pictures WHERE hike=?)/128.0) AS mod_val
FROM pictures WHERE hike=? AND mod_val < 1.0 ORDER BY color_rank_hike ASC;
order by Time (chronological)
SELECT picture_id, color_rgb, altrank_hike, color_rank_hike, index_in_hike, mod(altrank_hike, (SELECT count(*) FROM pictures WHERE hike=?)/128.0) AS mod_val
FROM pictures WHERE hike=? AND mod_val < 1.0 ORDER BY time ASC;
order by Altitude
SELECT picture_id, color_rgb, altrank_global, color_rank_global, time_rank_global, mod(altrank_global, (SELECT count(*) FROM pictures)/1280.0) AS mod_val
FROM pictures WHERE mod_val < 1.0 ORDER BY altrank_global ASC;
order by Color
SELECT picture_id, color_rgb, altrank_global, color_rank_global, time_rank_global, mod(altrank_global, (SELECT count(*) FROM pictures)/1280.0) AS mod_val
FROM pictures WHERE mod_val < 1.0 ORDER BY color_rank_global ASC;
order by Time (minute)
SELECT picture_id, color_rgb, altrank_global, color_rank_global, time_rank_global, minute, mod(altrank_global, (SELECT count(*) FROM pictures)/1280.0) AS mod_val
FROM pictures WHERE mod_val < 1.0 ORDER BY time_rank_global ASC;
order by Time (chronological)
SELECT picture_id, color_rgb, altrank_global, color_rank_global, time_rank_global, minute, mod(altrank_global, (SELECT count(*) FROM pictures)/1280.0) AS mod_val
FROM pictures WHERE mod_val < 1.0 ORDER BY time ASC;
Run the following queries. Paste the percentage into the input the plugin.
Parameters
picture_id=?
hike=?
order by Altitude
SELECT CAST((SELECT altrank_hike FROM pictures WHERE picture_id=?) AS REAL)/(SELECT count(*) FROM pictures WHERE hike=?);
order by Color
SELECT CAST((SELECT color_rank_hike FROM pictures WHERE picture_id=?) AS REAL)/(SELECT count(*) FROM pictures WHERE hike=?);
order by Time (chronological)
SELECT CAST((SELECT index_in_hike FROM pictures WHERE picture_id=?) AS REAL)/(SELECT count(*) FROM pictures WHERE hike=?);
Parameters
picture_id=?
order by Altitude
SELECT CAST((SELECT altrank_global FROM pictures WHERE picture_id=?) AS REAL)/(SELECT count(*) FROM pictures);
order by Color
SELECT CAST((SELECT color_rank_global FROM pictures WHERE picture_id=?) AS REAL)/(SELECT count(*) FROM pictures);
order by Time (minute)
SELECT CAST((SELECT time_rank_global FROM pictures WHERE picture_id=?) AS REAL)/(SELECT count(*) FROM pictures);
This plugin was created using skpm
. For a detailed explanation on how things work, checkout the skpm Readme.
Install the dependencies
npm install
Once the installation is done, you can run some commands inside the project folder:
You'll need to Uninstall the plugin from Sketch.
Completely rebuild it with the command below.
Then double click and install it from the Finder.
This is required when you change stuff at the top level of the manifest.json
npm run build
To watch for changes:
npm run watch
Listen to print in another terminal window:
skpm log -f
Additionally, if you wish to run the plugin every time it is built:
npm run start
To customize Babel, you have two options:
-
You may create a
.babelrc
file in your project's root directory. Any settings you define here will overwrite matching config-keys within skpm preset. For example, if you pass a "presets" object, it will replace & reset all Babel presets that skpm defaults to. -
If you'd like to modify or add to the existing Babel config, you must use a
webpack.skpm.config.js
file. Visit the Webpack section for more info.
To customize webpack create webpack.skpm.config.js
file which exports function that will change webpack's config.
/**
* Function that mutates original webpack config.
* Supports asynchronous changes when promise is returned.
*
* @param {object} config - original webpack config.
* @param {boolean} isPluginCommand - whether the config is for a plugin command or a resource
**/
module.exports = function(config, isPluginCommand) {
/** you can change config here **/
}
To view the output of your console.log
, you have a few different options:
- Use the
sketch-dev-tools
- Run
skpm log
in your Terminal, with the optional-f
argument (skpm log -f
) which causesskpm log
to not stop when the end of logs is reached, but rather to wait for additional data to be appended to the input
skpm publish <bump>
(where bump
can be patch
, minor
or major
)
skpm publish
will create a new release on your GitHub repository and create an appcast file in order for Sketch users to be notified of the update.
You will need to specify a repository
in the package.json
:
...
+ "repository" : {
+ "type": "git",
+ "url": "git+https://github.com/ORG/NAME.git"
+ }
...