Go to file
github-actions 5f1d896cb7 Merge branch '2.11' into 2 2023-10-11 12:06:12 +00:00
.github/workflows MNT Use gha-dispatch-ci 2023-03-21 13:42:10 +13:00
_config Setup TagField to work within AssetAdmin (Fixes #107) 2019-07-25 12:13:44 +12:00
client fixed reference issue now that we've changed ref from createRef() 2023-10-05 16:02:59 +13:00
docs/en FIX Selected tag is not shown when isMutliple is false (#201) 2022-06-07 13:00:12 +12:00
src Merge branch '2.10' into 2.11 2023-04-26 13:48:56 +12:00
templates/SilverStripe/TagField Additional changes to convert tagfield to use react-select 2018-07-16 13:27:11 +12:00
tests Merge branch '2.10' into 2.11 2023-04-26 13:48:56 +12:00
.editorconfig FIX Selected tag is not shown when isMutliple is false (#201) 2022-06-07 13:00:12 +12:00
.eslintrc.js Additional changes to convert tagfield to use react-select 2018-07-16 13:27:11 +12:00
.gitattributes Added standard git attributes 2015-11-19 19:13:48 +13:00
.gitignore FIX Adding a debounce to fetching lazy loaded tags with tag field 2018-12-04 16:15:47 +13:00
.nvmrc MNT Update to Node 10 2021-01-27 11:47:38 +13:00
.ss-storybook.js FIX Ensure tagfield is compatible with both React and Entwine contexts 2019-07-25 12:13:50 +12:00
.upgrade.yml FIX SS4 compatibility updates, PSR-4 in tests, table_name in stubs 2017-06-22 17:15:17 +12:00
README.md MNT Use gha-dispatch-ci 2023-03-21 13:42:10 +13:00
_config.php FIX Update module for latest SS4, vendorise 2017-10-18 14:19:15 +13:00
code-of-conduct.md Added standard code of conduct 2015-11-21 20:17:21 +13:00
codecov.yml FIX Update module for latest SS4, vendorise 2017-10-18 14:19:15 +13:00
composer.json MNT Revert erroneous dependency changes (#236) 2023-03-28 17:00:38 +13:00
contributing.md Made supported 2015-09-09 13:28:43 +12:00
license.md Updated license year 2016-01-01 06:38:06 +13:00
package.json DEP Update JS dependencies 2021-11-22 16:51:14 +13:00
phpcs.xml.dist MNT Use shared travis config, use sminnee/phpunit 2020-11-10 15:37:53 +13:00
phpunit.xml.dist MNT Standardise modules 2022-08-01 16:23:29 +12:00
webpack.config.js NEW Converting tagfield to use react components 2018-07-11 17:47:38 +12:00
yarn.lock Bump decode-uri-component from 0.2.0 to 0.2.2 2022-12-03 15:33:32 +00:00

README.md

Tag Field

CI Silverstripe supported module

Custom tag input field, for SilverStripe.

Overview

Screenshot

Allows storing tags as a relationship, or comma-delimited strings. Supports autocompletion with lazy-loading.

Note: The field is optimised for usage in the Silverstripe CMS UI. The form field class itself can be used outside of the CMS, but you'll need to build your own frontend to interpret the raw field data (data-schema attribute).

Requirements

  • Silverstripe 4.0

Installing

$ composer require silverstripe/tagfield

Using

Relational Tags

use SilverStripe\ORM\DataObject;

class BlogPost extends DataObject
{
    private static $many_many = [
        'BlogTags' => BlogTag::class
    ];
}
use SilverStripe\ORM\DataObject;

class BlogTag extends DataObject
{
    private static $db = [
        'Title' => 'Varchar(200)',
    ];

    private static $belongs_many_many = [
        'BlogPosts' => BlogPost::class
    ];
}
$field = TagField::create(
    'BlogTags',
    'Blog Tags',
    BlogTag::get(),
    $this->BlogTags()
)
    ->setShouldLazyLoad(true) // tags should be lazy loaded
    ->setCanCreate(true);     // new tag DataObjects can be created

Note: This assumes you have imported the namespaces class, e.g. use SilverStripe\TagField\TagField;

Has-One Relations

You can also use the TagField to select values for has_one relations. Let's assume, that a BlogPost has one BlogCategory.

class BlogCategory extends DataObject
{
    private static $db = [
        'Title' => 'Varchar(200)',
    ];
}
use SilverStripe\ORM\DataObject;

class BlogPost extends DataObject
{
    private static $has_one = [
        'BlogCategory' => BlogCategory::class
    ];
}
$field = TagField::create(
    'BlogCategoryID',
    $this->fieldLabel('BlogCategory'),
    BlogCategory::get()
)
    ->setIsMultiple(false)
    ->setCanCreate(true);

Note: We're using the ID suffix for the field-name (eg. BlogCategoryID instead of BlogCategory) and only allow one value by setting ->setIsMultiple(false)

String Tags

use SilverStripe\ORM\DataObject;

class BlogPost extends DataObject
{
    private static $db = [
        'Tags' => 'Text',
    ];
}
$field = StringTagField::create(
    'Tags',
    'Tags',
    ['one', 'two'],
    explode(',', $this->Tags)
);

$field->setShouldLazyLoad(true); // tags should be lazy loaded

You can find more in-depth documentation in docs/en.

Using TagField with silverstripe-taxonomy

TagField assumes a Title field on objects. For classes without a Title field use setTitleField to modify accordingly.

$field = TagField::create(
    'Tags',
    'Blog Tags',
    TaxonomyTerm::get(),
)
    ->setTitleField('Name');

Versioning

This library follows Semver. According to Semver, you will be able to upgrade to any minor or patch version of this library without any breaking changes to the public API. Semver also requires that we clearly define the public API for this library.

All methods, with public visibility, are part of the public API. All other methods are not part of the public API. Where possible, we'll try to keep protected methods backwards-compatible in minor/patch versions, but if you're overriding methods then please test your work before upgrading.

Reporting Issues

Please create an issue for any bugs you've found, or features you're missing.