2016-10-15 03:24:50 +02:00
|
|
|
// Copyright 2016 Google Inc. Use of this source code is governed by an
|
|
|
|
// MIT-style license that can be found in the LICENSE file or at
|
|
|
|
// https://opensource.org/licenses/MIT.
|
|
|
|
|
2018-03-20 23:43:02 +01:00
|
|
|
/// We strongly recommend importing this library with the prefix `sass`.
|
|
|
|
library sass;
|
|
|
|
|
2017-11-11 00:47:25 +01:00
|
|
|
import 'dart:async';
|
|
|
|
|
2018-04-20 01:51:20 +02:00
|
|
|
import 'package:source_maps/source_maps.dart';
|
|
|
|
|
2018-12-12 02:53:46 +01:00
|
|
|
import 'src/async_import_cache.dart';
|
2018-01-06 02:53:51 +01:00
|
|
|
import 'src/callable.dart';
|
2017-07-08 02:03:31 +02:00
|
|
|
import 'src/compile.dart' as c;
|
2017-02-04 21:20:34 +01:00
|
|
|
import 'src/exception.dart';
|
2018-12-12 02:53:46 +01:00
|
|
|
import 'src/import_cache.dart';
|
2017-10-06 03:45:26 +02:00
|
|
|
import 'src/importer.dart';
|
2018-03-12 04:38:29 +01:00
|
|
|
import 'src/logger.dart';
|
2017-02-03 10:08:06 +01:00
|
|
|
import 'src/sync_package_resolver.dart';
|
2018-08-11 00:58:15 +02:00
|
|
|
import 'src/syntax.dart';
|
2018-01-15 01:05:19 +01:00
|
|
|
import 'src/visitor/serialize.dart';
|
2016-10-15 03:24:50 +02:00
|
|
|
|
2018-01-06 02:53:51 +01:00
|
|
|
export 'src/callable.dart' show Callable, AsyncCallable;
|
2018-08-14 21:58:47 +02:00
|
|
|
export 'src/exception.dart' show SassException;
|
2017-10-06 03:45:26 +02:00
|
|
|
export 'src/importer.dart';
|
2018-03-12 04:38:29 +01:00
|
|
|
export 'src/logger.dart';
|
2018-08-11 00:58:15 +02:00
|
|
|
export 'src/syntax.dart';
|
2018-01-13 10:30:42 +01:00
|
|
|
export 'src/value.dart' show ListSeparator;
|
|
|
|
export 'src/value/external/value.dart';
|
2018-01-15 01:05:19 +01:00
|
|
|
export 'src/visitor/serialize.dart' show OutputStyle;
|
2019-06-06 20:42:44 +02:00
|
|
|
export 'src/warn.dart' show warn;
|
2017-10-06 03:45:26 +02:00
|
|
|
|
2017-07-08 02:03:31 +02:00
|
|
|
/// Loads the Sass file at [path], compiles it to CSS, and returns the result.
|
2016-10-15 03:24:50 +02:00
|
|
|
///
|
2018-03-12 04:38:29 +01:00
|
|
|
/// If [color] is `true`, this will use terminal colors in warnings. It's
|
|
|
|
/// ignored if [logger] is passed.
|
|
|
|
///
|
|
|
|
/// If [logger] is passed, it's used to emit all messages that are generated by
|
|
|
|
/// Sass code. Users may pass custom subclasses of [Logger].
|
2016-10-20 23:35:45 +02:00
|
|
|
///
|
2017-10-06 03:45:26 +02:00
|
|
|
/// Imports are resolved by trying, in order:
|
|
|
|
///
|
|
|
|
/// * Loading a file relative to [path].
|
|
|
|
///
|
|
|
|
/// * Each importer in [importers].
|
|
|
|
///
|
|
|
|
/// * Each load path in [loadPaths]. Note that this is a shorthand for adding
|
|
|
|
/// [FilesystemImporter]s to [importers].
|
|
|
|
///
|
2018-11-06 00:24:14 +01:00
|
|
|
/// * Each load path specified in the `SASS_PATH` environment variable, which
|
|
|
|
/// should be semicolon-separated on Windows and colon-separated elsewhere.
|
|
|
|
///
|
2017-10-06 03:45:26 +02:00
|
|
|
/// * `package:` resolution using [packageResolver], which is a
|
2018-04-28 01:57:37 +02:00
|
|
|
/// [`SyncPackageResolver`][] from the `package_resolver` package. Note that
|
2017-10-06 03:45:26 +02:00
|
|
|
/// this is a shorthand for adding a [PackageImporter] to [importers].
|
2017-02-03 10:08:06 +01:00
|
|
|
///
|
2018-04-28 01:57:37 +02:00
|
|
|
/// [`SyncPackageResolver`]: https://www.dartdocs.org/documentation/package_resolver/latest/package_resolver/SyncPackageResolver-class.html
|
2017-02-03 10:08:06 +01:00
|
|
|
///
|
2018-01-06 02:53:51 +01:00
|
|
|
/// Dart functions that can be called from Sass may be passed using [functions].
|
|
|
|
/// Each [Callable] defines a top-level function that will be invoked when the
|
|
|
|
/// given name is called from Sass.
|
|
|
|
///
|
2018-01-15 01:05:19 +01:00
|
|
|
/// The [style] parameter controls the style of the resulting CSS.
|
|
|
|
///
|
2018-04-20 01:51:20 +02:00
|
|
|
/// If [sourceMap] is passed, it's passed a [SingleMapping] that indicates which
|
|
|
|
/// sections of the source file(s) correspond to which in the resulting CSS.
|
|
|
|
/// It's called immediately before this method returns, and only if compilation
|
|
|
|
/// succeeds. Note that [SingleMapping.targetUrl] will always be `null`. Users
|
|
|
|
/// using the [SourceMap] API should be sure to add the [`source_maps`][]
|
|
|
|
/// package to their pubspec.
|
|
|
|
///
|
|
|
|
/// [`source_maps`]: https://pub.dartlang.org/packages/source_maps
|
|
|
|
///
|
2019-04-08 23:49:08 +02:00
|
|
|
/// If [charset] is `true`, this will include a `@charset` declaration or a
|
|
|
|
/// UTF-8 [byte-order mark][] if the stylesheet contains any non-ASCII
|
|
|
|
/// characters. Otherwise, it will never include a `@charset` declaration or a
|
|
|
|
/// byte-order mark.
|
|
|
|
///
|
|
|
|
/// [byte-order mark]: https://en.wikipedia.org/wiki/Byte_order_mark#UTF-8
|
|
|
|
///
|
2018-04-20 01:51:20 +02:00
|
|
|
/// This parameter is meant to be used as an out parameter, so that users who
|
|
|
|
/// want access to the source map can get it. For example:
|
|
|
|
///
|
|
|
|
/// ```dart
|
|
|
|
/// SingleMapping sourceMap;
|
|
|
|
/// var css = compile(sassPath, sourceMap: (map) => sourceMap = map);
|
|
|
|
/// ```
|
|
|
|
///
|
2017-07-07 09:57:10 +02:00
|
|
|
/// Throws a [SassException] if conversion fails.
|
2017-07-08 02:03:31 +02:00
|
|
|
String compile(String path,
|
2018-11-16 00:16:24 +01:00
|
|
|
{bool color = false,
|
2018-03-12 04:38:29 +01:00
|
|
|
Logger logger,
|
2017-10-06 03:45:26 +02:00
|
|
|
Iterable<Importer> importers,
|
|
|
|
Iterable<String> loadPaths,
|
2018-01-06 02:53:51 +01:00
|
|
|
SyncPackageResolver packageResolver,
|
2018-01-15 01:05:19 +01:00
|
|
|
Iterable<Callable> functions,
|
2018-04-20 01:51:20 +02:00
|
|
|
OutputStyle style,
|
2019-04-08 23:49:08 +02:00
|
|
|
void sourceMap(SingleMapping map),
|
|
|
|
bool charset = true}) {
|
2018-12-12 02:53:46 +01:00
|
|
|
logger ??= Logger.stderr(color: color);
|
2017-10-06 03:45:26 +02:00
|
|
|
var result = c.compile(path,
|
2018-12-12 02:53:46 +01:00
|
|
|
logger: logger,
|
|
|
|
importCache: ImportCache(importers,
|
|
|
|
logger: logger,
|
|
|
|
loadPaths: loadPaths,
|
|
|
|
packageResolver: packageResolver),
|
2018-01-15 01:05:19 +01:00
|
|
|
functions: functions,
|
2018-04-20 01:51:20 +02:00
|
|
|
style: style,
|
2019-04-08 23:49:08 +02:00
|
|
|
sourceMap: sourceMap != null,
|
|
|
|
charset: charset);
|
2018-04-21 02:56:00 +02:00
|
|
|
if (sourceMap != null) sourceMap(result.sourceMap);
|
2017-10-06 03:45:26 +02:00
|
|
|
return result.css;
|
|
|
|
}
|
2017-07-07 09:57:10 +02:00
|
|
|
|
2017-07-08 02:03:31 +02:00
|
|
|
/// Compiles [source] to CSS and returns the result.
|
2017-07-07 09:57:10 +02:00
|
|
|
///
|
2018-08-11 00:58:15 +02:00
|
|
|
/// This parses the stylesheet as [syntax], which defaults to [Syntax.scss].
|
2018-03-12 04:38:29 +01:00
|
|
|
///
|
|
|
|
/// If [color] is `true`, this will use terminal colors in warnings. It's
|
|
|
|
/// ignored if [logger] is passed.
|
|
|
|
///
|
|
|
|
/// If [logger] is passed, it's used to emit all messages that are generated by
|
|
|
|
/// Sass code. Users may pass custom subclasses of [Logger].
|
2017-07-07 09:57:10 +02:00
|
|
|
///
|
2017-10-06 03:45:26 +02:00
|
|
|
/// Imports are resolved by trying, in order:
|
|
|
|
///
|
|
|
|
/// * The given [importer], with the imported URL resolved relative to [url].
|
|
|
|
///
|
|
|
|
/// * Each importer in [importers].
|
|
|
|
///
|
|
|
|
/// * Each load path in [loadPaths]. Note that this is a shorthand for adding
|
|
|
|
/// [FilesystemImporter]s to [importers].
|
|
|
|
///
|
2018-11-06 00:24:14 +01:00
|
|
|
/// * Each load path specified in the `SASS_PATH` environment variable, which
|
|
|
|
/// should be semicolon-separated on Windows and colon-separated elsewhere.
|
|
|
|
///
|
2017-10-06 03:45:26 +02:00
|
|
|
/// * `package:` resolution using [packageResolver], which is a
|
2018-04-28 01:57:37 +02:00
|
|
|
/// [`SyncPackageResolver`][] from the `package_resolver` package. Note that
|
2017-10-06 03:45:26 +02:00
|
|
|
/// this is a shorthand for adding a [PackageImporter] to [importers].
|
2017-07-07 09:57:10 +02:00
|
|
|
///
|
2018-04-28 01:57:37 +02:00
|
|
|
/// [`SyncPackageResolver`]: https://www.dartdocs.org/documentation/package_resolver/latest/package_resolver/SyncPackageResolver-class.html
|
2017-07-07 09:57:10 +02:00
|
|
|
///
|
2018-01-06 02:53:51 +01:00
|
|
|
/// Dart functions that can be called from Sass may be passed using [functions].
|
|
|
|
/// Each [Callable] defines a top-level function that will be invoked when the
|
|
|
|
/// given name is called from Sass.
|
|
|
|
///
|
2018-01-15 01:05:19 +01:00
|
|
|
/// The [style] parameter controls the style of the resulting CSS.
|
|
|
|
///
|
2017-10-06 03:45:26 +02:00
|
|
|
/// The [url] indicates the location from which [source] was loaded. It may be a
|
|
|
|
/// [String] or a [Uri]. If [importer] is passed, [url] must be passed as well
|
|
|
|
/// and `importer.load(url)` should return `source`.
|
2017-07-07 09:57:10 +02:00
|
|
|
///
|
2018-04-20 01:51:20 +02:00
|
|
|
/// If [sourceMap] is passed, it's passed a [SingleMapping] that indicates which
|
|
|
|
/// sections of the source file(s) correspond to which in the resulting CSS.
|
|
|
|
/// It's called immediately before this method returns, and only if compilation
|
|
|
|
/// succeeds. Note that [SingleMapping.targetUrl] will always be `null`. Users
|
|
|
|
/// using the [SourceMap] API should be sure to add the [`source_maps`][]
|
|
|
|
/// package to their pubspec.
|
|
|
|
///
|
|
|
|
/// [`source_maps`]: https://pub.dartlang.org/packages/source_maps
|
|
|
|
///
|
2019-04-08 23:49:08 +02:00
|
|
|
/// If [charset] is `true`, this will include a `@charset` declaration or a
|
|
|
|
/// UTF-8 [byte-order mark][] if the stylesheet contains any non-ASCII
|
|
|
|
/// characters. Otherwise, it will never include a `@charset` declaration or a
|
|
|
|
/// byte-order mark.
|
|
|
|
///
|
|
|
|
/// [byte-order mark]: https://en.wikipedia.org/wiki/Byte_order_mark#UTF-8
|
|
|
|
///
|
2018-04-20 01:51:20 +02:00
|
|
|
/// This parameter is meant to be used as an out parameter, so that users who
|
|
|
|
/// want access to the source map can get it. For example:
|
|
|
|
///
|
|
|
|
/// ```dart
|
|
|
|
/// SingleMapping sourceMap;
|
|
|
|
/// var css = compile(sassPath, sourceMap: (map) => sourceMap = map);
|
|
|
|
/// ```
|
|
|
|
///
|
2017-07-07 09:57:10 +02:00
|
|
|
/// Throws a [SassException] if conversion fails.
|
2017-07-08 02:03:31 +02:00
|
|
|
String compileString(String source,
|
2018-08-11 00:58:15 +02:00
|
|
|
{Syntax syntax,
|
2018-11-16 00:16:24 +01:00
|
|
|
bool color = false,
|
2018-03-12 04:38:29 +01:00
|
|
|
Logger logger,
|
2017-10-06 03:45:26 +02:00
|
|
|
Iterable<Importer> importers,
|
2017-07-09 23:52:14 +02:00
|
|
|
SyncPackageResolver packageResolver,
|
2018-01-06 02:53:51 +01:00
|
|
|
Iterable<String> loadPaths,
|
|
|
|
Iterable<Callable> functions,
|
2018-01-15 01:05:19 +01:00
|
|
|
OutputStyle style,
|
2017-10-06 03:45:26 +02:00
|
|
|
Importer importer,
|
2019-11-06 01:28:26 +01:00
|
|
|
Object url,
|
2018-08-11 00:58:15 +02:00
|
|
|
void sourceMap(SingleMapping map),
|
2019-04-08 23:49:08 +02:00
|
|
|
bool charset = true,
|
2018-11-16 00:16:24 +01:00
|
|
|
@Deprecated("Use syntax instead.") bool indented = false}) {
|
2018-12-12 02:53:46 +01:00
|
|
|
logger ??= Logger.stderr(color: color);
|
2017-07-09 23:52:14 +02:00
|
|
|
var result = c.compileString(source,
|
2018-08-11 00:58:15 +02:00
|
|
|
syntax: syntax ?? (indented ? Syntax.sass : Syntax.scss),
|
2018-12-12 02:53:46 +01:00
|
|
|
logger: logger,
|
|
|
|
importCache: ImportCache(importers,
|
|
|
|
logger: logger,
|
|
|
|
packageResolver: packageResolver,
|
|
|
|
loadPaths: loadPaths),
|
2018-01-06 02:53:51 +01:00
|
|
|
functions: functions,
|
2018-01-15 01:05:19 +01:00
|
|
|
style: style,
|
2017-10-06 03:45:26 +02:00
|
|
|
importer: importer,
|
2018-04-20 01:51:20 +02:00
|
|
|
url: url,
|
2019-04-08 23:49:08 +02:00
|
|
|
sourceMap: sourceMap != null,
|
|
|
|
charset: charset);
|
2018-04-21 02:56:00 +02:00
|
|
|
if (sourceMap != null) sourceMap(result.sourceMap);
|
2017-07-09 23:52:14 +02:00
|
|
|
return result.css;
|
|
|
|
}
|
2017-07-08 02:03:31 +02:00
|
|
|
|
2017-11-11 00:47:25 +01:00
|
|
|
/// Like [compile], except it runs asynchronously.
|
|
|
|
///
|
|
|
|
/// Running asynchronously allows this to take [AsyncImporter]s rather than
|
|
|
|
/// synchronous [Importer]s. However, running asynchronously is also somewhat
|
|
|
|
/// slower, so [compile] should be preferred if possible.
|
|
|
|
Future<String> compileAsync(String path,
|
2018-11-16 00:16:24 +01:00
|
|
|
{bool color = false,
|
2018-03-12 04:38:29 +01:00
|
|
|
Logger logger,
|
2017-11-11 00:47:25 +01:00
|
|
|
Iterable<AsyncImporter> importers,
|
2018-01-06 02:53:51 +01:00
|
|
|
SyncPackageResolver packageResolver,
|
2017-11-11 00:47:25 +01:00
|
|
|
Iterable<String> loadPaths,
|
2018-01-15 01:05:19 +01:00
|
|
|
Iterable<AsyncCallable> functions,
|
2018-04-20 01:51:20 +02:00
|
|
|
OutputStyle style,
|
|
|
|
void sourceMap(SingleMapping map)}) async {
|
2018-12-12 02:53:46 +01:00
|
|
|
logger ??= Logger.stderr(color: color);
|
2017-11-11 00:47:25 +01:00
|
|
|
var result = await c.compileAsync(path,
|
2018-12-12 02:53:46 +01:00
|
|
|
logger: logger,
|
|
|
|
importCache: AsyncImportCache(importers,
|
|
|
|
logger: logger,
|
|
|
|
loadPaths: loadPaths,
|
|
|
|
packageResolver: packageResolver),
|
2018-01-15 01:05:19 +01:00
|
|
|
functions: functions,
|
2018-04-20 01:51:20 +02:00
|
|
|
style: style,
|
2018-04-21 02:56:00 +02:00
|
|
|
sourceMap: sourceMap != null);
|
|
|
|
if (sourceMap != null) sourceMap(result.sourceMap);
|
2017-11-11 00:47:25 +01:00
|
|
|
return result.css;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Like [compileString], except it runs asynchronously.
|
|
|
|
///
|
|
|
|
/// Running asynchronously allows this to take [AsyncImporter]s rather than
|
|
|
|
/// synchronous [Importer]s. However, running asynchronously is also somewhat
|
|
|
|
/// slower, so [compileString] should be preferred if possible.
|
|
|
|
Future<String> compileStringAsync(String source,
|
2018-08-11 00:58:15 +02:00
|
|
|
{Syntax syntax,
|
2018-11-16 00:16:24 +01:00
|
|
|
bool color = false,
|
2018-03-12 04:38:29 +01:00
|
|
|
Logger logger,
|
2017-11-11 00:47:25 +01:00
|
|
|
Iterable<AsyncImporter> importers,
|
|
|
|
SyncPackageResolver packageResolver,
|
2018-01-06 02:53:51 +01:00
|
|
|
Iterable<String> loadPaths,
|
|
|
|
Iterable<AsyncCallable> functions,
|
2018-01-15 01:05:19 +01:00
|
|
|
OutputStyle style,
|
2017-11-11 00:47:25 +01:00
|
|
|
AsyncImporter importer,
|
2019-11-06 01:28:26 +01:00
|
|
|
Object url,
|
2018-08-11 00:58:15 +02:00
|
|
|
void sourceMap(SingleMapping map),
|
2019-04-08 23:49:08 +02:00
|
|
|
bool charset = true,
|
2018-11-16 00:16:24 +01:00
|
|
|
@Deprecated("Use syntax instead.") bool indented = false}) async {
|
2018-12-12 02:53:46 +01:00
|
|
|
logger ??= Logger.stderr(color: color);
|
2017-11-11 00:47:25 +01:00
|
|
|
var result = await c.compileStringAsync(source,
|
2018-08-11 00:58:15 +02:00
|
|
|
syntax: syntax ?? (indented ? Syntax.sass : Syntax.scss),
|
2018-12-12 02:53:46 +01:00
|
|
|
logger: logger,
|
|
|
|
importCache: AsyncImportCache(importers,
|
|
|
|
logger: logger,
|
|
|
|
packageResolver: packageResolver,
|
|
|
|
loadPaths: loadPaths),
|
2018-01-06 02:53:51 +01:00
|
|
|
functions: functions,
|
2018-01-15 01:05:19 +01:00
|
|
|
style: style,
|
2017-11-11 00:47:25 +01:00
|
|
|
importer: importer,
|
2018-04-20 01:51:20 +02:00
|
|
|
url: url,
|
2019-04-08 23:49:08 +02:00
|
|
|
sourceMap: sourceMap != null,
|
|
|
|
charset: charset);
|
2018-04-21 02:56:00 +02:00
|
|
|
if (sourceMap != null) sourceMap(result.sourceMap);
|
2017-11-11 00:47:25 +01:00
|
|
|
return result.css;
|
|
|
|
}
|