• Stars
    star
    282
  • Rank 141,811 (Top 3 %)
  • Language
    HTML
  • Created about 9 years ago
  • Updated about 2 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

The BigCommerce Cornerstone theme

Cornerstone

tests

Stencil's Cornerstone theme is the building block for BigCommerce theme developers to get started quickly developing premium quality themes on the BigCommerce platform.

Stencil Utils

Stencil-utils is our supporting library for our events and remote interactions.

JS API

When writing theme JavaScript (JS) there is an API in place for running JS on a per page basis. To properly write JS for your theme, the following page types are available to you:

  • "pages/account/addresses"
  • "pages/account/add-address"
  • "pages/account/add-return"
  • "pages/account/add-wishlist"
  • "pages/account/recent-items"
  • "pages/account/download-item"
  • "pages/account/edit"
  • "pages/account/return-saved"
  • "pages/account/returns"
  • "pages/account/payment-methods"
  • "pages/auth/login"
  • "pages/auth/account-created"
  • "pages/auth/create-account"
  • "pages/auth/new-password"
  • "pages/blog"
  • "pages/blog-post"
  • "pages/brand"
  • "pages/brands"
  • "pages/cart"
  • "pages/category"
  • "pages/compare"
  • "pages/errors"
  • "pages/gift-certificate/purchase"
  • "pages/gift-certificate/balance"
  • "pages/gift-certificate/redeem"
  • "global"
  • "pages/home"
  • "pages/order-complete"
  • "pages/page"
  • "pages/product"
  • "pages/search"
  • "pages/sitemap"
  • "pages/subscribed"
  • "pages/account/wishlist-details"
  • "pages/account/wishlists"

These page types will correspond to the pages within your theme. Each one of these page types map to an ES6 module that extends the base PageManager abstract class.

    export default class Auth extends PageManager {
        constructor() {
            // Set up code goes here; attach to internals and use internals as you would 'this'
        }
    }

JS Template Context Injection

Occasionally you may need to use dynamic data from the template context within your client-side theme application code.

Two helpers are provided to help achieve this.

The inject helper allows you to compose a JSON object with a subset of the template context to be sent to the browser.

{{inject "stringBasedKey" contextValue}}

To retrieve the parsable JSON object, just call {{jsContext}} after all of the {{@inject}} calls.

For example, to setup the product name in your client-side app, you can do the following if you're in the context of a product:

{{inject "myProductName" product.title}}

<script>
// Note the lack of quotes around the jsContext handlebars helper, it becomes a string automatically.
var jsContext = JSON.parse({{jsContext}}); // jsContext would output "{\"myProductName\": \"Sample Product\"}" which can feed directly into your JavaScript

console.log(jsContext.myProductName); // Will output: Sample Product
</script>

You can compose your JSON object across multiple pages to create a different set of client-side data depending on the currently loaded template context.

The stencil theme makes the jsContext available on both the active page scoped and global PageManager objects as this.context.

Polyfilling via Feature Detection

Cornerstone implements this strategy for polyfilling.

In templates/components/common/polyfill-script.html there is a simple feature detection script which can be extended to detect any recent JS features you intend to use in your theme code.

If any one of the conditions is not met, an additional blocking JS bundle configured in assets/js/polyfills.js will be loaded to polyfill modern JS features before the main bundle executes.

This intentionally prioritizes the experience of the 90%+ of shoppers who are on modern browsers in terms of performance, while maintaining compatibility (at the expense of additional JS download+parse for the polyfills) for users on legacy browsers.

Static assets

Some static assets in the Stencil theme are handled with Grunt if required. This means you have some dependencies on grunt and npm. To get started:

First make sure you have Grunt installed globally on your machine:

npm install -g grunt-cli

and run:

npm install

Note: package-lock.json file was generated by Node version 10 and npm version 6.11.3. The app supports Node 10 as well as multiple versions of npm, but we should always use those versions when updating package-lock.json, unless it is decided to upgrade those, and in this case the readme should be updated as well. If using a different version for node OR npm, please delete the package-lock.json file prior to installing node packages and also prior to pushing to github.

If updating or adding a dependency, please double check that you are working on Node version 10 and npm version 6.11.3 and run npm update <package_name> or npm install <package_name> (avoid running npm install for updating a package). After updating the package, please make sure that the changes in the package-lock.json reflect only the updated/new package prior to pushing the changes to github.

Icons

Icons are delivered via a single SVG sprite, which is embedded on the page in templates/layout/base.html. It is generated via a grunt task grunt svgstore.

The task takes individual SVG files for each icon in assets/icons and bundles them together, to be inlined on the top of the theme, via an ajax call managed by svg-injector. Each icon can then be called in a similar way to an inline image via:

<svg><use xlink:href="#icon-svgFileName" /></svg>

The ID of the SVG icon you are calling is based on the filename of the icon you want, with icon- prepended. e.g. xlink:href="#icon-facebook".

Simply add your new icon SVG file to the icons folder, and run grunt svgstore, or just grunt.

License

(The MIT License) Copyright (C) 2015-present BigCommerce Inc. All rights reserved.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

More Repositories

1

gruf

gRPC Ruby Framework
Ruby
561
star
2

sass-style-guide

Sass coding guidelines for BigCommerce themes
CSS
280
star
3

storefront-data-hooks

Hooks for React Storefront UI Components
TypeScript
165
star
4

bigcommerce-api-php

Connect PHP applications with the Bigcommerce Platform
PHP
143
star
5

checkout-sdk-js

BigCommerce Checkout JavaScript SDK
TypeScript
121
star
6

gatsby-bigcommerce-netlify-cms-starter

Example Gatsby, BigCommerce and Netlify CMS project meant to jump start JAMStack ecommerce sites.
CSS
118
star
7

bigcommerce-for-wordpress

A headless commerce integration for WordPress, powered by BigCommerce
PHP
106
star
8

checkout-js

Optimized One-Page Checkout
TypeScript
102
star
9

stencil-cli

BigCommerce Stencil emulator for local theme development
JavaScript
100
star
10

bigcommerce-api-python

Python client library for Bigcommerce API
Python
83
star
11

bigcommerce-api-ruby

Connect Ruby applications with the Bigcommerce Platform
Ruby
77
star
12

laravel-react-sample-app

Sample BigCommerce App Using Laravel and React
PHP
62
star
13

catalyst

Catalyst for Composable Commerce
TypeScript
59
star
14

gruf-demo

A demonstration Rails application utilizing gruf, a gRPC Rails framework.
Ruby
57
star
15

bc-nuxt-vue-starter

A starter site for Vue + Nuxt based storefronts that uses Divante's Storefront UI and BC's GraphQL API
Vue
50
star
16

sample-app-nodejs

A reference implementation of a BigCommerce single-click app, in Node.JS + Next.js/React
TypeScript
43
star
17

big-design

Design system that powers the BigCommerce ecosystem.
TypeScript
42
star
18

dev-docs

This repo contains the markdown files and static assets powering developer.bigcommerce.com. https://developer.bigcommerce.com/
40
star
19

api-specs

OpenAPI Specifications, Swagger, and JSON schema used to generate the human-readable BigCommerce API Reference.
Python
34
star
20

stencil-utils

Utility library for the Stencil theme framework.
JavaScript
33
star
21

hello-world-app-python-flask

Hello World sample app in Python and Flask
Python
31
star
22

grphp

PHP gRPC Framework
PHP
24
star
23

hello-world-app-php-silex

Hello World sample app in PHP and Silex
PHP
23
star
24

gruf-rspec

RSpec helper suite for gruf
Ruby
20
star
25

script-loader-js

A library for loading JavaScript files asynchronously
TypeScript
17
star
26

channels-app

TypeScript
13
star
27

omniauth-bigcommerce

OmniAuth Bigcommerce Strategy
Ruby
13
star
28

storefront-api-examples

Example of using the GraphQL Storefront API to power a static site using Bootstrap and VanillaJS
HTML
12
star
29

paper

Paper assembles templates and translations and renders pages using backend template engines
JavaScript
11
star
30

subscription-foundation

Foundation for building custom subscription applications w/ BigCommerce
TypeScript
11
star
31

net-http

A basic HTTP client.
PHP
11
star
32

ai-app-foundation

TypeScript
10
star
33

widget-builder

TypeScript
10
star
34

hello-world-app-ruby-sinatra

Hello World sample app with Ruby, Sinatra and DataMapper
Ruby
10
star
35

paper-handlebars

Paper plugin for rendering via Handlebars.js
JavaScript
9
star
36

docs

The open source docs home for BigCommerce, including API specifications in OAS YAML and narrative docs in MDX
MDX
9
star
37

gruf-circuit-breaker

Circuit breaker support for gruf
Ruby
8
star
38

bigcommerce-api-node

A node module for authentication and communication with the BigCommerce API
TypeScript
7
star
39

gruf-newrelic

New Relic tracing for gruf services
Ruby
7
star
40

point-of-sale-foundation

Foundation for building custom POS applications w/ BigCommerce
TypeScript
6
star
41

gruf-prometheus

Gruf plugin for Prometheus support
Ruby
5
star
42

gruf-profiler

Profiler for gruf-backed gRPC requests
Ruby
5
star
43

gruf-zipkin

Zipkin tracing plugin for Gruf
Ruby
5
star
44

gruf-commander

Command/Request library for Gruf request validation
Ruby
5
star
45

php-resque-pause

An addon for php-resque, php-resque-pause adds functionality to pause resque jobs.
PHP
5
star
46

data-store-js

A JavaScript library for managing application state
TypeScript
5
star
47

stencil-styles

Compiles SCSS for the Stencil Framework
HTML
5
star
48

form-poster-js

Post HTML form programmatically
TypeScript
5
star
49

netlify-nextjs-starter

TypeScript
4
star
50

mock-injector

Auto-mocking dependencies for DI components testing.
PHP
4
star
51

theme-context-object-schemas

JSON schema used to generate the human-readable BigCommerce Handlebars Reference.
4
star
52

gruf-lightstep

LightStep tracing for gruf
Ruby
4
star
53

validate-commits

Commit message validator
JavaScript
4
star
54

gruf-sentry

Sentry integration for gruf
Ruby
3
star
55

request-sender-js

HTTP request client for browsers
TypeScript
3
star
56

memoize-js

A JavaScript library for memoizing the result of a pure function
TypeScript
3
star
57

stencil-lang-validator

Validate language keys used in templates and scripts
JavaScript
3
star
58

injector

Dependency Injector component built on top of Pimple container.
PHP
3
star
59

statsd-client

Record timing, increment, and count metrics in StatsD
PHP
3
star
60

eslint-config

JavaScript
3
star
61

bigpay-client-js

Bigpay client-side library
JavaScript
3
star
62

stand-with-ukraine-backend

Stand With Ukraine is a BigCommerce application. It allows merchants to easily add a widget to their storefront with a customized message and list of Charities that the merchant would like their shoppers to visit and support.
Rust
2
star
63

bc-lightstep-ruby

Generic lightstep library for distributed tracing in ruby
Ruby
2
star
64

sample-shipping-provider

Silex based reference implementation of a Shipping Carrier Service integration
PHP
2
star
65

nomad-workload-cpu-actuals-report-generator

Groovy
2
star
66

grphp-statsd

StatsD interceptor for measuring grphp client requests.
PHP
2
star
67

tslint-config

Default TSLint configuration used at BigCommerce
2
star
68

noopraven-go

A raven-go interface with a noop implementation.
Go
2
star
69

ruby-rails-react-sample-app

BigCommerce App - Ruby on Rails + React + BigDesign
Ruby
2
star
70

nextjs-contentstack-starter

TypeScript
2
star
71

stand-with-ukraine-frontend

Stand With Ukraine is a BigCommerce application. It allows merchants to easily add a widget to their storefront with a customized message and list of Charities that the merchant would like their shoppers to visit and support.
TypeScript
2
star
72

gruf-balancer

Percentage-based balancing of gruf-client requests for testing
Ruby
1
star
73

bonvoy

Go utility CLI tool for Envoy and Consul Connect
Go
1
star
74

themes-lib-scroll-link

JavaScript
1
star
75

app-sdk-js

JavaScript
1
star
76

puppet-module-supervisor

Puppet module for configuring the supervisor daemon control utility
Ruby
1
star
77

themes-lib-compare

JavaScript
1
star
78

themes-lib-squid

JavaScript
1
star
79

drupal-module-clientside_validation

Fork of the Drupal clientside_validation module to fix an upstream Internet Explorer bug - http://drupal.org/node/1995314
1
star
80

optimized-checkout-changelog

Summarises the changes made to the Optimized One Page Checkout Angular application.
1
star
81

data-docker-debian-runfromenv

Basic Debian image to run a user-supplied script from the environment.
Shell
1
star
82

themes-lib-loading

JavaScript
1
star
83

themes-lib-swipe-fade

JavaScript
1
star
84

threatDragon

This repo is for storing threat modelling of BigCommerce projects
1
star
85

bc-prometheus-ruby

Drop-in support for prometheus metrics for Ruby apps
Ruby
1
star
86

themes-lib-modal

JavaScript
1
star
87

axfr2tf

Converts an AXFR DNS query to Terraform resources
Rust
1
star