2 * Copyright 2013 Twitter, Inc.
4 * Licensed under the Creative Commons Attribution 3.0 Unported License. For
5 * details, see http://creativecommons.org/licenses/by/3.0/.
9 window.onload = function () { // wait for load in a dumb way because B-0
10 var cw = '/*!\n * Bootstrap v3.0.3\n *\n * Copyright 2013 Twitter, Inc\n * Licensed under the Apache License v2.0\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Designed and built with all the love in the world @twitter by @mdo and @fat.\n */\n\n'
12 function showError(msg, err) {
13 $('<div id="bsCustomizerAlert" class="bs-customizer-alert">\
14 <div class="container">\
15 <a href="#bsCustomizerAlert" data-dismiss="alert" class="close pull-right">×</a>\
16 <p class="bs-customizer-alert-text"><span class="glyphicon glyphicon-warning-sign"></span>' + msg + '</p>' +
17 (err.extract ? '<pre class="bs-customizer-alert-extract">' + err.extract.join('\n') + '</pre>' : '') + '\
19 </div>').appendTo('body').alert()
23 function showCallout(msg, showUpTop) {
24 var callout = $('<div class="bs-callout bs-callout-danger">\
30 callout.appendTo('.bs-docs-container')
32 callout.insertAfter('.bs-customize-download')
36 function getQueryParam(key) {
37 key = key.replace(/[*+?^$.\[\]{}()|\\\/]/g, "\\$&"); // escape RegEx meta chars
38 var match = location.search.match(new RegExp("[?&]"+key+"=([^&]+)(&|$)"));
39 return match && decodeURIComponent(match[1].replace(/\+/g, " "));
42 function createGist(configJson) {
44 "description": "Bootstrap Customizer Config",
53 url: 'https://api.github.com/gists',
56 data: JSON.stringify(data)
58 .success(function(result) {
59 var origin = window.location.protocol + "//" + window.location.host
60 history.replaceState(false, document.title, origin + window.location.pathname + '?id=' + result.id)
62 .error(function(err) {
63 showError('<strong>Ruh roh!</strong> Could not save gist file, configuration not saved.', err)
67 function getCustomizerData() {
70 $('#less-variables-section input')
72 $(this).val() && (vars[ $(this).prev().text() ] = $(this).val())
77 css: $('#less-section input:checked') .map(function () { return this.value }).toArray(),
78 js: $('#plugin-section input:checked').map(function () { return this.value }).toArray()
81 if ($.isEmptyObject(data.vars) && !data.css.length && !data.js.length) return
87 var id = getQueryParam('id')
92 url: 'https://api.github.com/gists/' + id,
96 .success(function(result) {
97 var data = JSON.parse(result.files['config.json'].content)
99 $('#plugin-section input').each(function () {
100 $(this).prop('checked', ~$.inArray(this.value, data.js))
104 $('#less-section input').each(function () {
105 $(this).prop('checked', ~$.inArray(this.value, data.css))
109 for (var i in data.vars) {
110 $('input[data-var="' + i + '"]').val(data.vars[i])
114 .error(function(err) {
115 showError('Error fetching bootstrap config file', err)
119 function generateZip(css, js, fonts, config, complete) {
120 if (!css && !js) return showError('<strong>Ruh roh!</strong> No Bootstrap files selected.', new Error('no Bootstrap'))
122 var zip = new JSZip()
125 var cssFolder = zip.folder('css')
126 for (var fileName in css) {
127 cssFolder.file(fileName, css[fileName])
132 var jsFolder = zip.folder('js')
133 for (var fileName in js) {
134 jsFolder.file(fileName, js[fileName])
139 var fontsFolder = zip.folder('fonts')
140 for (var fileName in fonts) {
141 fontsFolder.file(fileName, fonts[fileName], {base64: true})
146 zip.file('config.json', config)
149 var content = zip.generate({type:"blob"})
154 function generateCustomCSS(vars) {
157 for (var key in vars) {
158 result += key + ': ' + vars[key] + ';\n'
161 return result + '\n\n'
164 function generateFonts() {
165 var glyphicons = $('#less-section [value="glyphicons.less"]:checked')
166 if (glyphicons.length) {
171 // Returns an Array of @import'd filenames from 'bootstrap.less' in the order
172 // in which they appear in the file.
173 function bootstrapLessFilenames() {
174 var IMPORT_REGEX = /^@import \"(.*?)\";$/
175 var bootstrapLessLines = __less['bootstrap.less'].split('\n')
177 for (var i = 0, imports = []; i < bootstrapLessLines.length; i++) {
178 var match = IMPORT_REGEX.exec(bootstrapLessLines[i])
179 if (match) imports.push(match[1])
185 function generateCSS() {
186 var oneChecked = false
187 var lessFileIncludes = {}
188 $('#less-section input').each(function() {
190 var checked = $this.is(':checked')
191 lessFileIncludes[$this.val()] = checked
193 oneChecked = oneChecked || checked
196 if (!oneChecked) return false
202 $('#less-variables-section input')
204 $(this).val() && (vars[ $(this).prev().text() ] = $(this).val())
207 $.each(bootstrapLessFilenames(), function(index, filename) {
208 var fileInclude = lessFileIncludes[filename]
210 // Files not explicitly unchecked are compiled into the final stylesheet.
211 // Core stylesheets like 'normalize.less' are not included in the form
212 // since disabling them would wreck everything, and so their 'fileInclude'
213 // will be 'undefined'.
214 if (fileInclude || (fileInclude == null)) css += __less[filename]
216 // Custom variables are added after Bootstrap variables so the custom
217 // ones take precedence.
218 if (('variables.less' === filename) && vars) css += generateCustomCSS(vars)
221 css = css.replace(/@import[^\n]*/gi, '') //strip any imports
224 var parser = new less.Parser({
225 paths: ['variables.less', 'mixins.less']
227 , filename: 'bootstrap.css'
228 }).parse(css, function (err, tree) {
230 return showError('<strong>Ruh roh!</strong> Could not parse less files.', err)
233 'bootstrap.css' : cw + tree.toCSS(),
234 'bootstrap.min.css' : cw + tree.toCSS({ compress: true }).replace(/\n/g, '') // FIXME: remove newline hack once less.js upgraded to v1.4
238 return showError('<strong>Ruh roh!</strong> Could not parse less files.', err)
244 function generateJavascript() {
245 var $checked = $('#plugin-section input:checked')
246 if (!$checked.length) return false
249 .map(function () { return __js[this.value] })
255 'bootstrap.min.js': cw + uglify(js)
259 var inputsComponent = $('#less-section input')
260 var inputsPlugin = $('#plugin-section input')
261 var inputsVariables = $('#less-variables-section input')
263 $('#less-section .toggle').on('click', function (e) {
265 inputsComponent.prop('checked', !inputsComponent.is(':checked'))
268 $('#plugin-section .toggle').on('click', function (e) {
270 inputsPlugin.prop('checked', !inputsPlugin.is(':checked'))
273 $('#less-variables-section .toggle').on('click', function (e) {
275 inputsVariables.val('')
278 $('[data-dependencies]').on('click', function () {
279 if (!$(this).is(':checked')) return
280 var dependencies = this.getAttribute('data-dependencies')
281 if (!dependencies) return
282 dependencies = dependencies.split(',')
283 for (var i = 0; i < dependencies.length; i++) {
284 var dependency = $('[value="' + dependencies[i] + '"]')
285 dependency && dependency.prop('checked', true)
289 $('[data-dependents]').on('click', function () {
290 if ($(this).is(':checked')) return
291 var dependents = this.getAttribute('data-dependents')
292 if (!dependents) return
293 dependents = dependents.split(',')
294 for (var i = 0; i < dependents.length; i++) {
295 var dependent = $('[value="' + dependents[i] + '"]')
296 dependent && dependent.prop('checked', false)
300 var $compileBtn = $('#btn-compile')
301 var $downloadBtn = $('#btn-download')
303 $compileBtn.on('click', function (e) {
304 var configData = getCustomizerData()
305 var configJson = JSON.stringify(configData, null, 2)
309 $compileBtn.attr('disabled', 'disabled')
311 generateZip(generateCSS(), generateJavascript(), generateFonts(), configJson, function (blob) {
312 $compileBtn.removeAttr('disabled')
313 saveAs(blob, "bootstrap.zip")
314 createGist(configJson)
318 // browser support alerts
319 if (!window.URL && navigator.userAgent.toLowerCase().indexOf('safari') != -1) {
320 showCallout("Looks like you're using safari, which sadly doesn't have the best support\
321 for HTML5 blobs. Because of this your file will be downloaded with the name <code>\"untitled\"</code>.\
322 However, if you check your downloads folder, just rename this <code>\"untitled\"</code> file\
323 to <code>\"bootstrap.zip\"</code> and you should be good to go!")
324 } else if (!window.URL && !window.webkitURL) {
325 $('.bs-docs-section, .bs-sidebar').css('display', 'none')
327 showCallout("Looks like your current browser doesn't support the Bootstrap Customizer. Please take a second\
328 to <a href=\"https://www.google.com/intl/en/chrome/browser/\"> upgrade to a more modern browser</a>.", true)