Skip to content

Commit

Permalink
Merge pull request #17 from boxuk/iconography/configurable-icon-sets
Browse files Browse the repository at this point in the history
Iconography - Configurable Icon Sets
  • Loading branch information
jdamner authored Jun 19, 2024
2 parents fd064cf + 3134425 commit 48847e3
Show file tree
Hide file tree
Showing 54 changed files with 88,610 additions and 12,788 deletions.
6 changes: 6 additions & 0 deletions bin/start
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#!/bin/bash

./bin/composer install
docker-compose up -d wordpress
./bin/npm install
./bin/npm run start
5 changes: 5 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
}
],
"require": {
"swaggest/json-schema": "^0.12",
"symfony/validator": "^7.0 || ^6.0"
},
"scripts": {
Expand All @@ -44,6 +45,10 @@
"Boxuk\\BoxWpEditorTools\\": [
"packages/editor-tools/src",
"plugins/editor-tools/src/"
],
"Boxuk\\Iconography\\": [
"packages/iconography/includes/",
"plugins/iconography/includes/"
]
}
},
Expand Down
5 changes: 5 additions & 0 deletions docker/wordpress/Dockerfile
Original file line number Diff line number Diff line change
@@ -1 +1,6 @@
FROM wordpress:6.5.3

COPY ./wp-config.php /var/www/html/wp-config.php
COPY ./db.php /var/www/html/wp-content/db.php
COPY ./mu-plugins /var/www/html/wp-content/mu-plugins
COPY ./themes /var/www/html/wp-content/themes
2 changes: 1 addition & 1 deletion docker/wordpress/wp-config.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
/**#@-*/
$table_prefix = 'wp_'; // phpcs:ignore WordPress.WP.GlobalVariablesOverride.Prohibited
define( 'WP_DEBUG', true );
define( 'WP_SCRIPT_DEBUG', true );
define( 'SCRIPT_DEBUG', true );

/** Absolute path to the WordPress directory. */
if ( ! defined( 'ABSPATH' ) ) {
Expand Down
16 changes: 0 additions & 16 deletions docs/iconography/index.md

This file was deleted.

2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

Contents:
- [Editor Tools](../packages/editor-tools/README.md)
- [Iconography](./iconography/index.md)
- [Iconography](../packages/iconography/README.md)
9,231 changes: 7,141 additions & 2,090 deletions package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion packages/editor-tools/composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "boxuk/wp-editor-tools",
"type": "wordpress-muplugin",
"type": "wordpress-plugin",
"autoload": {
"psr-4": {
"Boxuk\\BoxWpEditorTools\\": "src"
Expand Down
79 changes: 79 additions & 0 deletions packages/iconography/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,82 @@
# Box WordPress Iconography Support

Add the ability to add icons inline to your content in the WordPress block editor.

## Quick Start!
Add this plugin to your WordPress site and include a configuration file and it's ready to use!

If you're using composer, then it's as simple as `composer require boxuk/wp-iconography`.

## Configuration

Configuration files are based on a schema that allows you to quickly define the configuration.
They're loaded automatically from `wp-content/themes/{theme_name}/icons/*.config.json`, or you can define any custom paths using the filter available:
```php
add_filter(
'boxuk_iconography_files',
function ( $config_files ) {
$config_files['example'] = __DIR__ . '/config/example.config.json';
return $config_files;
}
);
```

There's also example configuration files included in the plugin, so if you want to load **Material Symbols** you can just load the config included using this snippet:
```php
add_filter(
'boxuk_iconography_files',
function ( $config_files ) {
$plugin_dir = WP_CONTENT_DIR . '/mu-plugins/wp-iconography'; // make sure this is valid for your project!


// Remove any unnecessary
$config_files['material-symbols-outlined'] = $plugin_dir . '/config/material-symbols-outlined.config.json';
$config_files['material-symbols-outlined-filled'] = $plugin_dir . '/config/material-symbols-outlined-filled.config.json';
$config_files['material-symbols-sharp'] = $plugin_dir . '/config/material-symbols-sharp.config.json';
$config_files['material-symbols-sharp-filled'] = $plugin_dir . '/config/material-symbols-sharp-filled.config.json';
$config_files['material-symbols-rounded'] = $plugin_dir . '/config/material-symbols-rounded.config.json';
$config_files['material-symbols-rounded-filled'] = $plugin_dir . '/config/material-symbols-rounded-filled.config.json';
return $config_files;
}
);
```

There's loads of filters available to change the way icons load, so feel free to look through the source code at the available filters. And if there's function that doesn't work for you, PRs are always welcome!

## Configuration Schema

The Schema for configuration includes:
- **Title** - the name output in the editor.
- **Name** - the unique key/name for the icon set. I'd recommend `namespace/name` format.
- **Tag Name** - this is the HTML tag that will be used to generate the output for the icon.
- **Class Name** - this is used to generate the output for the icon
- **URL** - the CSS file to load
- **Additional CSS** - any inline CSS to include that might be relevant.
- **Icons** - an array of:
- **Label** - the value to use in the admin interface. Used for searches and is displayed on hover.
- **Content** - the content inside the HTML generated.

Sample JSON file:
```json
{
"title": "Example",
"name": "boxuk/example",
"tagName": "span",
"className": "boxuk-icon-example",
"url": "...",
"additionalCSS": ".boxuk-icon-example { font-weight: 700; }",
"icons": [
{ "label": "Example", "content": "example-content" }
]
}
```

Generated output:
```html
<span class="boxuk-icon-example">example-content</span>
```

## Contributing
Please do not submit any Pull Requests here. They will be closed.
---

Expand Down
21 changes: 14 additions & 7 deletions packages/iconography/composer.json
Original file line number Diff line number Diff line change
@@ -1,25 +1,32 @@
{
"name": "boxuk/wp-iconography",
"description": "Adds Material Icons to the Block Editor",
"type": "wordpress-muplugin",
"type": "wordpress-plugin",
"require-dev": {
"10up/wp_mock": "^1.0",
"automattic/vipwpcs": "^3.0",
"szepeviktor/phpstan-wordpress": "^1.3"
},
"scripts": {
"phpunit": "phpunit",
"phpstan": "phpstan analyse --memory-limit=1G",
"phpcs": "phpcs",
"phpcbf": "phpcbf"
},
"phpunit": "phpunit",
"phpstan": "phpstan analyse --memory-limit=1G",
"phpcs": "phpcs",
"phpcbf": "phpcbf"
},
"authors": [
{
"name": "BoxUK",
"email": "developers@boxuk.com"
}
],
"require": {},
"autoload": {
"psr-4": {
"Boxuk\\Iconography\\": "includes/"
}
},
"require": {
"swaggest/json-schema": "^0.12"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
Expand Down
Loading

0 comments on commit 48847e3

Please sign in to comment.