source: frontend/node_modules/postcss/lib/input.js

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 12 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 6.6 KB
Line 
1'use strict'
2
3let { nanoid } = require('nanoid/non-secure')
4let { isAbsolute, resolve } = require('path')
5let { SourceMapConsumer, SourceMapGenerator } = require('source-map-js')
6let { fileURLToPath, pathToFileURL } = require('url')
7
8let CssSyntaxError = require('./css-syntax-error')
9let PreviousMap = require('./previous-map')
10let terminalHighlight = require('./terminal-highlight')
11
12let lineToIndexCache = Symbol('lineToIndexCache')
13
14let sourceMapAvailable = Boolean(SourceMapConsumer && SourceMapGenerator)
15let pathAvailable = Boolean(resolve && isAbsolute)
16
17function getLineToIndex(input) {
18 if (input[lineToIndexCache]) return input[lineToIndexCache]
19 let lines = input.css.split('\n')
20 let lineToIndex = new Array(lines.length)
21 let prevIndex = 0
22
23 for (let i = 0, l = lines.length; i < l; i++) {
24 lineToIndex[i] = prevIndex
25 prevIndex += lines[i].length + 1
26 }
27
28 input[lineToIndexCache] = lineToIndex
29 return lineToIndex
30}
31
32class Input {
33 get from() {
34 return this.file || this.id
35 }
36
37 constructor(css, opts = {}) {
38 if (
39 css === null ||
40 typeof css === 'undefined' ||
41 (typeof css === 'object' && !css.toString)
42 ) {
43 throw new Error(`PostCSS received ${css} instead of CSS string`)
44 }
45
46 this.css = css.toString()
47
48 if (this.css[0] === '\uFEFF' || this.css[0] === '\uFFFE') {
49 this.hasBOM = true
50 this.css = this.css.slice(1)
51 } else {
52 this.hasBOM = false
53 }
54
55 this.document = this.css
56 if (opts.document) this.document = opts.document.toString()
57
58 if (opts.from) {
59 if (
60 !pathAvailable ||
61 /^\w+:\/\//.test(opts.from) ||
62 isAbsolute(opts.from)
63 ) {
64 this.file = opts.from
65 } else {
66 this.file = resolve(opts.from)
67 }
68 }
69
70 if (pathAvailable && sourceMapAvailable) {
71 let map = new PreviousMap(this.css, opts)
72 if (map.text) {
73 this.map = map
74 let file = map.consumer().file
75 if (!this.file && file) this.file = this.mapResolve(file)
76 }
77 }
78
79 if (!this.file) {
80 this.id = '<input css ' + nanoid(6) + '>'
81 }
82 if (this.map) this.map.file = this.from
83 }
84
85 error(message, line, column, opts = {}) {
86 let endColumn, endLine, endOffset, offset, result
87
88 if (line && typeof line === 'object') {
89 let start = line
90 let end = column
91 if (typeof start.offset === 'number') {
92 offset = start.offset
93 let pos = this.fromOffset(offset)
94 line = pos.line
95 column = pos.col
96 } else {
97 line = start.line
98 column = start.column
99 offset = this.fromLineAndColumn(line, column)
100 }
101 if (typeof end.offset === 'number') {
102 endOffset = end.offset
103 let pos = this.fromOffset(endOffset)
104 endLine = pos.line
105 endColumn = pos.col
106 } else {
107 endLine = end.line
108 endColumn = end.column
109 endOffset = this.fromLineAndColumn(end.line, end.column)
110 }
111 } else if (!column) {
112 offset = line
113 let pos = this.fromOffset(offset)
114 line = pos.line
115 column = pos.col
116 } else {
117 offset = this.fromLineAndColumn(line, column)
118 }
119
120 let origin = this.origin(line, column, endLine, endColumn)
121 if (origin) {
122 result = new CssSyntaxError(
123 message,
124 origin.endLine === undefined
125 ? origin.line
126 : { column: origin.column, line: origin.line },
127 origin.endLine === undefined
128 ? origin.column
129 : { column: origin.endColumn, line: origin.endLine },
130 origin.source,
131 origin.file,
132 opts.plugin
133 )
134 } else {
135 result = new CssSyntaxError(
136 message,
137 endLine === undefined ? line : { column, line },
138 endLine === undefined ? column : { column: endColumn, line: endLine },
139 this.css,
140 this.file,
141 opts.plugin
142 )
143 }
144
145 result.input = {
146 column,
147 endColumn,
148 endLine,
149 endOffset,
150 line,
151 offset,
152 source: this.css
153 }
154 if (this.file) {
155 if (pathToFileURL) {
156 result.input.url = pathToFileURL(this.file).toString()
157 }
158 result.input.file = this.file
159 }
160
161 return result
162 }
163
164 fromLineAndColumn(line, column) {
165 let lineToIndex = getLineToIndex(this)
166 let index = lineToIndex[line - 1]
167 return index + column - 1
168 }
169
170 fromOffset(offset) {
171 let lineToIndex = getLineToIndex(this)
172 let lastLine = lineToIndex[lineToIndex.length - 1]
173
174 let min = 0
175 if (offset >= lastLine) {
176 min = lineToIndex.length - 1
177 } else {
178 let max = lineToIndex.length - 2
179 let mid
180 while (min < max) {
181 mid = min + ((max - min) >> 1)
182 if (offset < lineToIndex[mid]) {
183 max = mid - 1
184 } else if (offset >= lineToIndex[mid + 1]) {
185 min = mid + 1
186 } else {
187 min = mid
188 break
189 }
190 }
191 }
192 return {
193 col: offset - lineToIndex[min] + 1,
194 line: min + 1
195 }
196 }
197
198 mapResolve(file) {
199 if (/^\w+:\/\//.test(file)) {
200 return file
201 }
202 return resolve(this.map.consumer().sourceRoot || this.map.root || '.', file)
203 }
204
205 origin(line, column, endLine, endColumn) {
206 if (!this.map) return false
207 let consumer = this.map.consumer()
208
209 let from = consumer.originalPositionFor({ column, line })
210 if (!from.source) return false
211
212 let to
213 if (typeof endLine === 'number') {
214 to = consumer.originalPositionFor({ column: endColumn, line: endLine })
215 }
216
217 let fromUrl
218
219 if (isAbsolute(from.source)) {
220 fromUrl = pathToFileURL(from.source)
221 } else {
222 fromUrl = new URL(
223 from.source,
224 this.map.consumer().sourceRoot || pathToFileURL(this.map.mapFile)
225 )
226 }
227
228 let result = {
229 column: from.column,
230 endColumn: to && to.column,
231 endLine: to && to.line,
232 line: from.line,
233 url: fromUrl.toString()
234 }
235
236 if (fromUrl.protocol === 'file:') {
237 if (fileURLToPath) {
238 result.file = fileURLToPath(fromUrl)
239 } else {
240 /* c8 ignore next 2 */
241 throw new Error(`file: protocol is not available in this PostCSS build`)
242 }
243 }
244
245 let source = consumer.sourceContentFor(from.source)
246 if (source) result.source = source
247
248 return result
249 }
250
251 toJSON() {
252 let json = {}
253 for (let name of ['hasBOM', 'css', 'file', 'id']) {
254 if (this[name] != null) {
255 json[name] = this[name]
256 }
257 }
258 if (this.map) {
259 json.map = { ...this.map }
260 if (json.map.consumerCache) {
261 json.map.consumerCache = undefined
262 }
263 }
264 return json
265 }
266}
267
268module.exports = Input
269Input.default = Input
270
271if (terminalHighlight && terminalHighlight.registerInput) {
272 terminalHighlight.registerInput(Input)
273}
Note: See TracBrowser for help on using the repository browser.