praxisnetau/silverstripe-vanilla

An alternative default theme for SilverStripe.

Installs: 262

Dependents: 0

Suggesters: 0

Security: 0

Stars: 4

Watchers: 2

Forks: 4

Open Issues: 1

Language:Scheme

Type:silverstripe-theme

1.0.1 2017-11-23 03:15 UTC

This package is not auto-updated.

Last update: 2024-03-17 02:15:09 UTC


README

Vanilla

An alternative default theme for SilverStripe v4, based upon:

Also includes responsive typography styles, and form field template overrides to use Bootstrap form styles.

Contents

Requirements

Installation

Installation is via Composer:

$ composer require praxisnetau/silverstripe-vanilla

If you want to modify the theme, you will also need to use Yarn (or NPM) to install the theme dependencies:

$ cd themes/vanilla
$ yarn install

Configuration

To use this theme with your SilverStripe application, you will need to configure SSViewer via YAML:

SilverStripe\View\SSViewer:
  themes:
    - 'vanilla'
    - '$default'

Usage

This theme includes three modes for working with your source files:

$ yarn watch  # monitors source files for changes and rebuilds automatically
$ yarn build  # prepares JS/CSS bundles for deployment to production server
$ yarn start  # runs webpack-dev-server to automatically update browser

Watch

Using this mode, your source files will be monitored for changes and your theme bundles will be automatically rebuilt when a change is detected:

$ yarn watch

Note that when using this mode, you will need to manually refresh your browser to see the changes.

Build

When your theme is ready to be deployed to production, you can run build to prepare your JS/CSS bundles. Webpack will optimise and minify the bundles accordingly:

$ yarn build

Start

In this mode, webpack-dev-server will be started to monitor your source files changes and will automatically update the browser without the need to refresh the page:

$ yarn start

This mode is a little trickier to get working than the others. In order to make use of this mode, you need to inform SilverStripe to load the theme bundles from the development server, which by default runs at http://localhost:8080.

Open the templates/Page.ss file, and look for these lines:

<% require themedCSS('production/styles/bundle') %>
<%-- require css('http://localhost:8080/production/styles/bundle.css') --%>

<% require themedJavascript('production/js/bundle') %>
<%-- require javascript('http://localhost:8080/production/js/bundle.js') --%>

To use the development server, you'll need to uncomment the http://localhost:8080 lines and comment out the themedCSS and themedJavascript lines.

When your theme is ready for production, you'll need to build the bundles and revert back to the the themedCSS and themedJavascript lines.

You can make this whole process automatic with some logic added to your PageController class, but that goes beyond the scope of this repo!

Issues

Please use the GitHub issue tracker for bug reports and feature requests.

Contribution

Your contributions are gladly welcomed to help make this project better. Please see contributing for more information.

Attribution

Maintainers

Colin Tucker Praxis Interactive
Colin Tucker Praxis Interactive

License

BSD-3-Clause © Praxis Interactive