Skip to content

pdureau/ui_patterns_fractal

8.x-1.x
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 

Fractal set-up

Set new fractal project

sudo npm i -g @frctl/fractal
fractal new fractal
echo "fractal.web.set('builder.dest', path.join(__dirname, 'build'));" >> fractal/fractal.js

Install the twig extension

Because Fractal has to produce Twig-based patterns to be used in Drupal.

cd fractal/
npm install --save @frctl/twig
echo "fractal.components.engine('@frctl/twig');" >> fractal.js
echo "fractal.components.set('ext', '.twig');" >> fractal.js

Display assets from component folder

Because Fractal has to keep the assets in the component folder.

vim components/_preview.twig

with:

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  {% for asset in _target.resources.assets %}
    {% if asset.isCSS %}
      <link rel="stylesheet" href="../raw/{{ _target.baseHandle }}/{{ asset.base }}">
    {% endif %}
    {% if asset.isJS %}
      <script src="../raw/{{ _target.baseHandle }}/{{ asset.base }}"></script>
    {% endif %}
  {% endfor %}
  <title>Preview Layout</title>
</head>
<body>
  {{ yield }}
</body>
</html>

Working with variants

Fractal variants' fields are ignored by Ui Patterns.

However, your Fractal variants needs to have a variant field with the variant machine name as value. Example:

variants:
  - name: "scream"
    label: "Scream"
    context:
      variant: "scream"

Using Fractal components in Drupal

Once ui_patterns_fractal module is installed, copy or link the Fractal's components/ folder into the templates/ folder of any Drupal module or theme, and clear all cache.

Check for the presence of Fractal patterns in Drupal /patterns page (provided by ui_patterns_library module, which is a dependency of ui_patterns_fractal)

About

Unmaintained Drupal 8 module for integration of Fractal patterns as UI Patterns plugins.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages