customizer.js 9.89 KB
Newer Older
fat's avatar
fat committed
1
window.onload = function () { // wait for load in a dumb way because B-0
2
  var cw = '/*!\n * Bootstrap v3.0.0\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'
fat's avatar
fat committed
3

fat's avatar
fat committed
4
  function showError(msg, err) {
fat's avatar
fat committed
5
6
7
    $('<div id="bsCustomizerAlert" class="bs-customizer-alert">\
        <div class="container">\
          <a href="#bsCustomizerAlert" data-dismiss="alert" class="close pull-right">&times;</a>\
8
          <p class="bs-customizer-alert-text"><span class="glyphicon glyphicon-warning-sign"></span>' + msg + '</p>' +
fat's avatar
fat committed
9
10
11
12
13
14
          (err.extract ? '<pre class="bs-customizer-alert-extract">' + err.extract.join('\n') + '</pre>' : '') + '\
        </div>\
      </div>').appendTo('body').alert()
    throw err
  }

fat's avatar
fat committed
15
16
17
18
19
20
21
22
23
24
25
26
27
  function showCallout(msg, showUpTop) {
    var callout = $('<div class="bs-callout bs-callout-danger">\
       <h4>Attention!</h4>\
      <p>' + msg + '</p>\
    </div>')

    if (showUpTop) {
      callout.appendTo('.bs-docs-container')
    } else {
      callout.insertAfter('.bs-customize-download')
    }
  }

fat's avatar
fat committed
28
29
30
31
32
33
  function getQueryParam(key) {
    key = key.replace(/[*+?^$.\[\]{}()|\\\/]/g, "\\$&"); // escape RegEx meta chars
    var match = location.search.match(new RegExp("[?&]"+key+"=([^&]+)(&|$)"));
    return match && decodeURIComponent(match[1].replace(/\+/g, " "));
  }

34
  function createGist(configJson) {
fat's avatar
fat committed
35
36
37
38
39
    var data = {
      "description": "Bootstrap Customizer Config",
      "public": true,
      "files": {
        "config.json": {
40
          "content": configJson
fat's avatar
fat committed
41
42
43
44
45
46
47
48
49
        }
      }
    }
    $.ajax({
      url: 'https://api.github.com/gists',
      type: 'POST',
      dataType: 'json',
      data: JSON.stringify(data)
    })
fat's avatar
fat committed
50
51
    .success(function(result) {
      history.replaceState(false, document.title, window.location.origin + window.location.pathname + '?id=' + result.id)
fat's avatar
fat committed
52
    })
fat's avatar
fat committed
53
    .error(function(err) {
54
      showError('<strong>Ruh roh!</strong> Could not save gist file, configuration not saved.', err)
fat's avatar
fat committed
55
56
57
    })
  }

fat's avatar
fat committed
58
  function getCustomizerData() {
fat's avatar
fat committed
59
60
61
62
63
64
65
66
67
    var vars = {}

    $('#less-variables-section input')
        .each(function () {
          $(this).val() && (vars[ $(this).prev().text() ] = $(this).val())
        })

    var data = {
      vars: vars,
fat's avatar
fat committed
68
69
      css: $('#less-section input:checked')  .map(function () { return this.value }).toArray(),
      js:  $('#plugin-section input:checked').map(function () { return this.value }).toArray()
fat's avatar
fat committed
70
71
72
73
    }

    if ($.isEmptyObject(data.vars) && !data.css.length && !data.js.length) return

fat's avatar
fat committed
74
    return data
fat's avatar
fat committed
75
76
77
  }

  function parseUrl() {
fat's avatar
fat committed
78
    var id = getQueryParam('id')
fat's avatar
fat committed
79

fat's avatar
fat committed
80
    if (!id) return
fat's avatar
fat committed
81

fat's avatar
fat committed
82
83
84
85
86
87
88
89
90
91
92
    $.ajax({
      url: 'https://api.github.com/gists/' + id,
      type: 'GET',
      dataType: 'json'
    })
    .success(function(result) {
      var data = JSON.parse(result.files['config.json'].content)
      if (data.js) {
        $('#plugin-section input').each(function () {
          $(this).prop('checked', ~$.inArray(this.value, data.js))
        })
fat's avatar
fat committed
93
      }
fat's avatar
fat committed
94
95
96
97
98
99
100
101
102
103
104
      if (data.css) {
        $('#less-section input').each(function () {
          $(this).prop('checked', ~$.inArray(this.value, data.css))
        })
      }
      if (data.vars) {
        for (var i in data.vars) {
          $('input[data-var="' + i + '"]').val(data.vars[i])
        }
      }
    })
fat's avatar
fat committed
105
106
    .error(function(err) {
      showError('Error fetching bootstrap config file', err)
fat's avatar
fat committed
107
    })
fat's avatar
fat committed
108
109
  }

110
  function generateZip(css, js, fonts, config, complete) {
111
    if (!css && !js) return showError('<strong>Ruh roh!</strong> No Bootstrap files selected.', new Error('no Bootstrap'))
fat's avatar
fat committed
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128

    var zip = new JSZip()

    if (css) {
      var cssFolder = zip.folder('css')
      for (var fileName in css) {
        cssFolder.file(fileName, css[fileName])
      }
    }

    if (js) {
      var jsFolder = zip.folder('js')
      for (var fileName in js) {
        jsFolder.file(fileName, js[fileName])
      }
    }

fat's avatar
fat committed
129
130
131
    if (fonts) {
      var fontsFolder = zip.folder('fonts')
      for (var fileName in fonts) {
132
        fontsFolder.file(fileName, fonts[fileName], {base64: true})
fat's avatar
fat committed
133
134
135
      }
    }

136
137
138
139
    if (config) {
      zip.file('config.json', config)
    }

fat's avatar
fat committed
140
141
142
    var content = zip.generate({type:"blob"})

    complete(content)
fat's avatar
fat committed
143
144
145
146
147
148
149
150
151
152
153
154
  }

  function generateCustomCSS(vars) {
    var result = ''

    for (var key in vars) {
      result += key + ': ' + vars[key] + ';\n'
    }

    return result + '\n\n'
  }

fat's avatar
fat committed
155
156
157
158
159
160
161
  function generateFonts() {
    var glyphicons = $('#less-section [value="glyphicons.less"]:checked')
    if (glyphicons.length) {
      return __fonts
    }
  }

162
163
164
165
166
167
168
169
170
171
172
173
174
175
  // Returns an Array of @import'd filenames from 'bootstrap.less' in the order
  // in which they appear in the file.
  function bootstrapLessFilenames() {
    var IMPORT_REGEX = /^@import \"(.*?)\";$/
    var bootstrapLessLines = __less['bootstrap.less'].split('\n')

    for (var i = 0, imports = []; i < bootstrapLessLines.length; i++) {
      var match = IMPORT_REGEX.exec(bootstrapLessLines[i])
      if (match) imports.push(match[1])
    }

    return imports
  }

fat's avatar
fat committed
176
  function generateCSS() {
177
178
179
180
181
182
183
184
185
    var oneChecked = false
    var lessFileIncludes = {}
    $('#less-section input').each(function() {
      var $this = $(this)
      var checked = $this.is(':checked')
      lessFileIncludes[$this.val()] = checked

      oneChecked = oneChecked || checked
    })
fat's avatar
fat committed
186

187
    if (!oneChecked) return false
fat's avatar
fat committed
188
189
190
191
192
193
194
195
196
197

    var result = {}
    var vars = {}
    var css = ''

    $('#less-variables-section input')
        .each(function () {
          $(this).val() && (vars[ $(this).prev().text() ] = $(this).val())
        })

198
199
200
201
202
203
204
205
206
207
208
209
210
    $.each(bootstrapLessFilenames(), function(index, filename) {
      var fileInclude = lessFileIncludes[filename]

      // Files not explicitly unchecked are compiled into the final stylesheet.
      // Core stylesheets like 'normalize.less' are not included in the form
      // since disabling them would wreck everything, and so their 'fileInclude'
      // will be 'undefined'.
      if (fileInclude || (fileInclude == null)) css += __less[filename]

      // Custom variables are added after Bootstrap variables so the custom
      // ones take precedence.
      if (('variables.less' === filename) && vars) css += generateCustomCSS(vars)
    })
fat's avatar
fat committed
211
212
213
214
215
216
217
218
219

    css = css.replace(/@import[^\n]*/gi, '') //strip any imports

    try {
      var parser = new less.Parser({
          paths: ['variables.less', 'mixins.less']
        , optimization: 0
        , filename: 'bootstrap.css'
      }).parse(css, function (err, tree) {
fat's avatar
fat committed
220
        if (err) {
221
          return showError('<strong>Ruh roh!</strong> Could not parse less files.', err)
fat's avatar
fat committed
222
        }
fat's avatar
fat committed
223
224
225
226
227
228
        result = {
          'bootstrap.css'     : cw + tree.toCSS(),
          'bootstrap.min.css' : cw + tree.toCSS({ compress: true })
        }
      })
    } catch (err) {
229
      return showError('<strong>Ruh roh!</strong> Could not parse less files.', err)
fat's avatar
fat committed
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
    }

    return result
  }

  function generateJavascript() {
    var $checked = $('#plugin-section input:checked')
    if (!$checked.length) return false

    var js = $checked
      .map(function () { return __js[this.value] })
      .toArray()
      .join('\n')

    return {
      'bootstrap.js': js,
      'bootstrap.min.js': cw + uglify(js)
    }
  }

  var inputsComponent = $('#less-section input')
  var inputsPlugin    = $('#plugin-section input')
  var inputsVariables = $('#less-variables-section input')

  $('#less-section .toggle').on('click', function (e) {
    e.preventDefault()
    inputsComponent.prop('checked', !inputsComponent.is(':checked'))
  })

  $('#plugin-section .toggle').on('click', function (e) {
    e.preventDefault()
    inputsPlugin.prop('checked', !inputsPlugin.is(':checked'))
  })

  $('#less-variables-section .toggle').on('click', function (e) {
    e.preventDefault()
    inputsVariables.val('')
  })

fat's avatar
fat committed
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
  $('[data-dependencies]').on('click', function () {
    if (!$(this).is(':checked')) return
    var dependencies = this.getAttribute('data-dependencies')
    if (!dependencies) return
    dependencies = dependencies.split(',')
    for (var i = 0; i < dependencies.length; i++) {
      var dependency = $('[value="' + dependencies[i] + '"]')
      dependency && dependency.prop('checked', true)
    }
  })

  $('[data-dependents]').on('click', function () {
    if ($(this).is(':checked')) return
    var dependents = this.getAttribute('data-dependents')
    if (!dependents) return
    dependents = dependents.split(',')
    for (var i = 0; i < dependents.length; i++) {
      var dependent = $('[value="' + dependents[i] + '"]')
      dependent && dependent.prop('checked', false)
    }
  })

fat's avatar
fat committed
291
292
293
294
  var $compileBtn = $('#btn-compile')
  var $downloadBtn = $('#btn-download')

  $compileBtn.on('click', function (e) {
295
296
297
    var configData = getCustomizerData()
    var configJson = JSON.stringify(configData, null, 2)

fat's avatar
fat committed
298
299
300
301
    e.preventDefault()

    $compileBtn.attr('disabled', 'disabled')

302
    generateZip(generateCSS(), generateJavascript(), generateFonts(), configJson, function (blob) {
fat's avatar
fat committed
303
304
      $compileBtn.removeAttr('disabled')
      saveAs(blob, "bootstrap.zip")
305
      createGist(configJson)
fat's avatar
fat committed
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
    })
  })

  // browser support alerts
  if (!window.URL && navigator.userAgent.toLowerCase().indexOf('safari') != -1) {
    showCallout("Looks like you're using safari, which sadly doesn't have the best support\
                 for HTML5 blobs. Because of this your file will be downloaded with the name <code>\"untitled\"</code>.\
                 However, if you check your downloads folder, just rename this <code>\"untitled\"</code> file\
                 to <code>\"bootstrap.zip\"</code> and you should be good to go!")
  } else if (!window.URL && !window.webkitURL) {
    $('.bs-docs-section, .bs-sidebar').css('display', 'none')

    showCallout("Looks like your current browser doesn't support the Bootstrap Customizer. Please take a second\
                to <a href=\"https://www.google.com/intl/en/chrome/browser/\"> upgrade to a more modern browser</a>.", true)
  }

fat's avatar
fat committed
322
  parseUrl()
323
}