Code Monkey home page Code Monkey logo

silverstripe-vanilla's Introduction

SilverStripe Vanilla Theme

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

silverstripe-vanilla's People

Contributors

colintucker avatar dorsetdigital avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.