Home

tailwind-ctp-intellisense @d0127c15eb9875fc7bf4d427c0dac9f8e3bdc932 - refs - log -
-
https://git.jolheiser.com/tailwind-ctp-intellisense.git
Tailwind intellisense + Catppuccin
tailwind-ctp-intellisense / src / extension.ts
- raw
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
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
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
'use strict'

import * as vscode from 'vscode'
import { dirname } from 'path'
const htmlElements = require('./htmlElements.js')
const tailwindClassNames = require('tailwind-class-names')
const dlv = require('dlv')
const Color = require('color')

const CONFIG_GLOB =
  '**/{tailwind,tailwind.config,tailwind-config,.tailwindrc}.js'
const JS_TYPES = ['typescriptreact', 'javascript', 'javascriptreact']
const HTML_TYPES = [
  'html',
  'jade',
  'razor',
  'php',
  'blade',
  'twig',
  'markdown',
  'erb',
  'handlebars',
  'ejs',
  'nunjucks',
  'haml',
  'leaf',
  'HTML (Eex)'
]
const CSS_TYPES = ['css', 'sass', 'scss', 'less', 'stylus']

export async function activate(context: vscode.ExtensionContext) {
  let tw

  try {
    tw = await getTailwind()
  } catch (err) {}

  let intellisense = new TailwindIntellisense(tw)
  context.subscriptions.push(intellisense)

  let watcher = vscode.workspace.createFileSystemWatcher(CONFIG_GLOB)

  watcher.onDidChange(onFileChange)
  watcher.onDidCreate(onFileChange)
  watcher.onDidDelete(onFileChange)

  async function onFileChange(event) {
    try {
      tw = await getTailwind()
    } catch (err) {
      intellisense.dispose()
      return
    }

    if (!tw) {
      intellisense.dispose()
      return
    }

    intellisense.reload(tw)
  }
}

async function getTailwind() {
  if (!vscode.workspace.name) return

  let files = await vscode.workspace.findFiles(
    CONFIG_GLOB,
    '**/node_modules/**',
    1
  )

  if (!files.length) return null

  let configPath = files[0].fsPath
  delete require.cache[configPath]

  let tailwindPackage = await vscode.workspace.findFiles(
    '**/node_modules/tailwindcss/package.json',
    null,
    1
  )

  if (!tailwindPackage.length) return null

  let pluginPath = dirname(tailwindPackage[0].fsPath)

  let tw

  try {
    tw = await tailwindClassNames({
      configPath,
      pluginPath,
      tree: true,
      strings: true
    })
  } catch (err) {
    return null
  }

  return tw
}

export function deactivate() {}

function createCompletionItemProvider({
  items,
  prefixedItems,
  languages,
  regex,
  triggerCharacters,
  config,
  enable = () => true,
  emmet = false
}: {
  items?
  prefixedItems?
  languages?: string[]
  regex?: RegExp
  triggerCharacters?: string[]
  config?
  prefix?: string
  enable?: (text: string) => boolean
  emmet?: boolean
} = {}): vscode.Disposable {
  return vscode.languages.registerCompletionItemProvider(
    languages,
    {
      provideCompletionItems(
        document: vscode.TextDocument,
        position: vscode.Position
      ): vscode.CompletionItem[] {
        const separator = config.options.separator || ':'
        let str

        const range: vscode.Range = new vscode.Range(
          new vscode.Position(0, 0),
          position
        )
        const text: string = document.getText(range)

        if (!enable(text)) return []

        let lines = text.split(/[\n\r]/)

        let matches = lines
          .slice(-5)
          .join('\n')
          .match(regex)

        if (matches) {
          let parts = matches[matches.length - 1].split(' ')
          str = parts[parts.length - 1]
        } else if (emmet) {
          // match emmet style syntax
          // e.g. .flex.items-center
          let currentLine = lines[lines.length - 1]
          let currentWord = currentLine.split(' ').pop()
          matches = currentWord.match(/^\.([^.()#>*^ \[\]=$@{}]*)$/)
          if (!matches) {
            matches = currentWord.match(
              new RegExp(
                `^([A-Z][a-zA-Z0-9]*|[a-z][a-z0-9]*-[a-z0-9-]+|${htmlElements
                  .map(x => `${x}\\b`)
                  .join('|')}).*?\\.([^.()#>*^ \\[\\]=$@{}]*)$`
              )
            )
          }
          if (matches) {
            let parts = matches[matches.length - 1].split('.')
            str = parts[parts.length - 1]
          }
        }

        if (typeof str !== 'undefined') {
          const pth = str
            .replace(new RegExp(`${separator}`, 'g'), '.')
            .replace(/\.$/, '')
            .replace(/^\./, '')
            .replace(/\./g, '.children.')

          if (pth !== '') {
            const itms =
              prefixedItems &&
              str.indexOf('.') === 0 &&
              str.indexOf(separator) === -1
                ? dlv(prefixedItems, pth)
                : dlv(items, pth)
            if (itms) {
              return Object.keys(itms.children).map(x => itms.children[x].item)
            }
          }

          if (str.indexOf(separator) === -1) {
            return prefixedItems && str.indexOf('.') === 0
              ? Object.keys(prefixedItems).map(x => prefixedItems[x].item)
              : Object.keys(items).map(x => items[x].item)
          }

          return []
        }

        return []
      }
    },
    ...triggerCharacters
  )
}

function createConfigItemProvider({
  languages,
  items,
  enable = () => true
}: {
  languages?: string[]
  items?: vscode.CompletionItem[]
  enable?: (text: string) => boolean
} = {}) {
  return vscode.languages.registerCompletionItemProvider(
    languages,
    {
      provideCompletionItems: (
        document: vscode.TextDocument,
        position: vscode.Position
      ): vscode.CompletionItem[] => {
        const range: vscode.Range = new vscode.Range(
          new vscode.Position(0, 0),
          position
        )
        const text: string = document.getText(range)

        if (!enable(text)) return []

        let lines = text.split(/[\n\r]/)

        let matches = lines
          .slice(-5)
          .join('\n')
          .match(/config\(["']([^"']*)$/)

        if (!matches) return []

        let objPath =
          matches[1]
            .replace(/\.[^.]*$/, '')
            .replace('.', '.children.')
            .trim() + '.children'
        let foo = dlv(items, objPath)

        if (foo) {
          return Object.keys(foo).map(x => foo[x].item)
        }

        return Object.keys(items).map(x => items[x].item)
      }
    },
    "'",
    '"',
    '.'
  )
}

function prefixItems(items, str, prefix) {
  const addPrefix =
    typeof prefix !== 'undefined' && prefix !== '' && str === prefix

  return Object.keys(items).map(x => {
    const item = items[x].item
    if (addPrefix) {
      item.filterText = item.insertText = `${prefix}${item.label}`
    } else {
      item.filterText = item.insertText = item.label
    }
    return item
  })
}

function depthOf(obj) {
  if (typeof obj !== 'object' || Array.isArray(obj)) return 0

  let level = 1

  for (let key in obj) {
    if (!obj.hasOwnProperty(key)) continue

    if (typeof obj[key] === 'object') {
      const depth = depthOf(obj[key]) + 1
      level = Math.max(depth, level)
    }
  }

  return level
}

function createItems(classNames, separator, config, prefix = '', parent = '') {
  let items = {}
  let i = 0

  Object.keys(classNames).forEach(key => {
    if (depthOf(classNames[key]) === 0) {
      const item = new vscode.CompletionItem(
        key,
        vscode.CompletionItemKind.Constant
      )
      item.filterText = item.insertText = `${prefix}${key}`
      item.sortText = naturalExpand(i.toString())
      if (key !== 'container' && key !== 'group') {
        if (parent) {
          item.detail = classNames[key].replace(
            new RegExp(`:${parent} \{(.*?)\}`),
            '$1'
          )
        } else {
          item.detail = classNames[key]
        }

        let color = getColorFromDecl(item.detail)
        if (color) {
          item.kind = vscode.CompletionItemKind.Color
          item.documentation = color
        }
      }
      items[key] = {
        item
      }
      i++
    } else {
      const item = new vscode.CompletionItem(
        `${key}${separator}`,
        vscode.CompletionItemKind.Constant
      )
      item.filterText = item.insertText = `${prefix}${key}${separator}`
      item.sortText = naturalExpand(i.toString())
      item.command = { title: '', command: 'editor.action.triggerSuggest' }
      if (key === 'hover' || key === 'focus' || key === 'active') {
        item.detail = `:${key}`
        item.sortText = `a${item.sortText}`
      } else if (key === 'group-hover') {
        item.detail = '.group:hover &'
        item.sortText = `a${item.sortText}`
      } else if (
        config.screens &&
        Object.keys(config.screens).indexOf(key) !== -1
      ) {
        item.detail = `@media (min-width: ${config.screens[key]})`
        item.sortText = `m${item.sortText}`
      }
      items[key] = {
        item,
        children: createItems(classNames[key], separator, config, prefix, key)
      }
      i++
    }
  })

  return items
}

function createConfigItems(config, prefix = '') {
  let items = {}
  let i = 0

  Object.keys(config).forEach(key => {
    let item = new vscode.CompletionItem(
      key,
      vscode.CompletionItemKind.Constant
    )

    if (depthOf(config[key]) === 0) {
      if (key === 'plugins') return

      item.filterText = item.insertText = `${prefix}${key}`
      item.sortText = naturalExpand(i.toString())
      if (typeof config[key] === 'string' || typeof config[key] === 'number') {
        item.detail = config[key].toString()

        let color = getColorFromValue(item.detail)
        if (color) {
          item.kind = vscode.CompletionItemKind.Color
          item.documentation = color
        }
      } else if (Array.isArray(config[key])) {
        item.detail = stringifyArray(config[key])
      }
      items[key] = { item }
    } else {
      if (key === 'modules' || key === 'options') return

      item.filterText = item.insertText = `${key}.`
      item.sortText = naturalExpand(i.toString())
      item.command = { title: '', command: 'editor.action.triggerSuggest' }
      items[key] = { item, children: createConfigItems(config[key], prefix) }
    }

    i++
  })

  return items
}

class TailwindIntellisense {
  private _providers: vscode.Disposable[]
  private _disposable: vscode.Disposable
  private _tailwind
  private _items
  private _prefixedItems
  private _configItems
  private _prefixedConfigItems

  constructor(tailwind) {
    if (tailwind) {
      this._tailwind = tailwind
      this.reload(tailwind)
    }
  }

  public reload(tailwind) {
    this.dispose()

    const separator = dlv(tailwind.config, 'options.separator', ':')

    if (separator !== ':') return

    this._items = createItems(tailwind.classNames, separator, tailwind.config)
    this._prefixedItems = createItems(
      tailwind.classNames,
      separator,
      tailwind.config,
      '.'
    )
    this._configItems = createConfigItems(tailwind.config)
    this._prefixedConfigItems = createConfigItems(tailwind.config, '.')

    this._providers = []

    this._providers.push(
      createCompletionItemProvider({
        items: this._items,
        languages: JS_TYPES,
        regex: /\btw`([^`]*)$/,
        triggerCharacters: ['`', ' ', separator],
        config: tailwind.config
      })
    )

    this._providers.push(
      createCompletionItemProvider({
        items: this._items,
        prefixedItems: this._prefixedItems,
        languages: CSS_TYPES,
        regex: /@apply ([^;}]*)$/,
        triggerCharacters: ['.', separator],
        config: tailwind.config
      })
    )
    this._providers.push(
      createCompletionItemProvider({
        items: this._items,
        prefixedItems: this._items,
        languages: ['postcss'],
        regex: /@apply ([^;}]*)$/,
        triggerCharacters: ['.', separator],
        config: tailwind.config
      })
    )

    this._providers.push(
      createCompletionItemProvider({
        items: this._items,
        languages: HTML_TYPES,
        regex: /\bclass=["']([^"']*)$/, // /\bclass(Name)?=(["'])(?!.*?\2)/
        triggerCharacters: ["'", '"', ' ', '.', separator],
        config: tailwind.config,
        emmet: true
      })
    )

    this._providers.push(
      createCompletionItemProvider({
        items: this._items,
        languages: JS_TYPES,
        regex: /\bclass(Name)?=["']([^"']*)$/, // /\bclass(Name)?=(["'])(?!.*?\2)/
        triggerCharacters: ["'", '"', ' ', separator]
          .concat([
            Object.keys(
              vscode.workspace.getConfiguration('emmet.includeLanguages')
            ).indexOf('javascript') !== -1 && '.'
          ])
          .filter(Boolean),
        config: tailwind.config,
        emmet:
          Object.keys(
            vscode.workspace.getConfiguration('emmet.includeLanguages')
          ).indexOf('javascript') !== -1
      })
    )

    // Vue.js
    this._providers.push(
      createCompletionItemProvider({
        items: this._items,
        languages: ['vue'],
        regex: /\bclass=["']([^"']*)$/,
        enable: isWithinTemplate,
        triggerCharacters: ["'", '"', ' ', separator]
          .concat([
            Object.keys(
              vscode.workspace.getConfiguration('emmet.includeLanguages')
            ).indexOf('vue-html') !== -1 && '.'
          ])
          .filter(Boolean),
        config: tailwind.config,
        emmet:
          Object.keys(
            vscode.workspace.getConfiguration('emmet.includeLanguages')
          ).indexOf('vue-html') !== -1
      })
    )
    this._providers.push(
      createCompletionItemProvider({
        items: this._items,
        languages: ['vue'],
        regex: /\bclass=["']([^"']*)$/,
        enable: text => {
          if (
            text.indexOf('<script') !== -1 &&
            text.indexOf('</script>') === -1
          ) {
            return true
          }
          return false
        },
        triggerCharacters: ["'", '"', ' ', separator],
        config: tailwind.config
      })
    )
    this._providers.push(
      createCompletionItemProvider({
        items: this._items,
        languages: ['vue'],
        regex: /@apply ([^;}]*)$/,
        triggerCharacters: ['.', separator],
        config: tailwind.config,
        enable: text => {
          if (
            text.indexOf('<style') !== -1 &&
            text.indexOf('</style>') === -1
          ) {
            return true
          }
          return false
        }
      })
    )

    this._providers.push(
      createConfigItemProvider({
        languages: CSS_TYPES,
        items: this._prefixedConfigItems
      })
    )
    this._providers.push(
      createConfigItemProvider({
        languages: ['postcss'],
        items: this._configItems
      })
    )

    this._providers.push(
      createConfigItemProvider({
        languages: ['vue'],
        items: this._configItems,
        enable: text => {
          if (
            text.indexOf('<style') !== -1 &&
            text.indexOf('</style>') === -1
          ) {
            return true
          }
          return false
        }
      })
    )

    this._providers.push(
      vscode.languages.registerHoverProvider(
        [...HTML_TYPES, ...JS_TYPES, 'vue'],
        {
          provideHover: (document, position, token) => {
            const range1: vscode.Range = new vscode.Range(
              new vscode.Position(Math.max(position.line - 5, 0), 0),
              position
            )
            const text1: string = document.getText(range1)

            if (!/\bclass(Name)?=['"][^'"]*$/.test(text1)) return

            const range2: vscode.Range = new vscode.Range(
              new vscode.Position(Math.max(position.line - 5, 0), 0),
              position.with({ line: position.line + 1 })
            )
            const text2: string = document.getText(range2)

            let str = text1 + text2.substr(text1.length).match(/^([^"' ]*)/)[0]
            let matches = str.match(/\bclass(Name)?=["']([^"']*)$/)

            if (matches && matches[2]) {
              let className = matches[2].split(' ').pop()
              let parts = className.split(':')

              if (typeof dlv(this._tailwind.classNames, parts) === 'string') {
                let base = parts.pop()
                let selector = `.${escapeClassName(className)}`

                if (parts.indexOf('hover') !== -1) {
                  selector += ':hover'
                } else if (parts.indexOf('focus') !== -1) {
                  selector += ':focus'
                } else if (parts.indexOf('active') !== -1) {
                  selector += ':active'
                } else if (parts.indexOf('group-hover') !== -1) {
                  selector = `.group:hover ${selector}`
                }

                let hoverStr = new vscode.MarkdownString()
                let css = this._tailwind.classNames[base]
                let m = css.match(/^(::?[a-z-]+) {(.*?)}/)
                if (m) {
                  selector += m[1]
                  css = m[2].trim()
                }
                css = css.replace(/([;{]) /g, '$1\n').replace(/^/gm, '  ')
                let code = `${selector} {\n${css}\n}`
                let screens = dlv(this._tailwind.config, 'screens', {})

                Object.keys(screens).some(screen => {
                  if (parts.indexOf(screen) !== -1) {
                    code = `@media (min-width: ${
                      screens[screen]
                    }) {\n${code.replace(/^/gm, '  ')}\n}`
                    return true
                  }
                  return false
                })
                hoverStr.appendCodeblock(code, 'css')

                let hoverRange = new vscode.Range(
                  new vscode.Position(
                    position.line,
                    position.character +
                      str.length -
                      text1.length -
                      className.length
                  ),
                  new vscode.Position(
                    position.line,
                    position.character + str.length - text1.length
                  )
                )

                return new vscode.Hover(hoverStr, hoverRange)
              }
            }

            return null
          }
        }
      )
    )

    // @screen
    this._providers.push(
      createScreenCompletionItemProvider({
        config: tailwind.config,
        languages: [...CSS_TYPES, 'postcss', 'vue']
      })
    )

    this._disposable = vscode.Disposable.from(...this._providers)
  }

  dispose() {
    if (this._disposable) {
      this._disposable.dispose()
    }
  }
}

function pad(n) {
  return ('00000000' + n).substr(-8)
}

function naturalExpand(a: string) {
  return a.replace(/\d+/g, pad)
}

function stringifyArray(arr: Array<any>): string {
  return arr
    .reduce((acc, curr) => {
      let str = curr.toString()
      if (str.includes(' ')) {
        acc.push(`"${str.replace(/\s\s+/g, ' ')}"`)
      } else {
        acc.push(str)
      }
      return acc
    }, [])
    .join(', ')
}

function escapeClassName(className) {
  return className.replace(/([^A-Za-z0-9\-])/g, '\\$1')
}

function getColorFromDecl(cssStr: string) {
  let matches = cssStr.match(/: ([^;]+);/g)
  if (matches === null || matches.length > 1) return

  let color = matches[0].slice(2, -1).trim()

  return getColorFromValue(color)
}

function getColorFromValue(value: string) {
  if (value === 'transparent') {
    return 'rgba(0, 0, 0, 0.01)'
  }

  try {
    let parsed = Color(value)
    if (parsed.valpha === 0) return 'rgba(0, 0, 0, 0.01)'
    return parsed.rgb().string()
  } catch (err) {
    return
  }
}

function createScreenCompletionItemProvider({
  languages,
  config
}): vscode.Disposable {
  return vscode.languages.registerCompletionItemProvider(
    languages,
    {
      provideCompletionItems: (
        document: vscode.TextDocument,
        position: vscode.Position
      ): vscode.CompletionItem[] => {
        let range: vscode.Range = new vscode.Range(
          new vscode.Position(0, 0),
          position
        )
        let text: string = document.getText(range)

        if (
          document.languageId === 'vue' &&
          !(text.indexOf('<style') !== -1 && text.indexOf('</style>') === -1)
        )
          return []

        let line = text.split(/[\n\r]/).pop()

        if (/@screen $/.test(line)) {
          return Object.keys(dlv(config, 'screens', {})).map((screen, i) => {
            let item = new vscode.CompletionItem(
              screen,
              vscode.CompletionItemKind.Constant
            )
            item.insertText = new vscode.SnippetString(`${screen} {\n\t$0\n}`)
            item.detail =
              typeof config.screens[screen] === 'string'
                ? config.screens[screen]
                : ''
            item.sortText = naturalExpand(i.toString())
            return item
          })
        }

        return []
      }
    },
    ' '
  )
}

function isWithinTemplate(text: string) {
  let regex = /(<\/?template\b)/g
  let match
  let d = 0
  while ((match = regex.exec(text)) !== null) {
    d += match[0] === '</template' ? -1 : 1
  }
  return d !== 0
}