Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(892)

Unified Diff: dart/site/try/src/html_to_text.dart

Issue 209233005: Simplify content rewriting. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Address Kasper's comments. Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « dart/site/try/src/decoration.dart ('k') | dart/site/try/src/interaction_manager.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/site/try/src/html_to_text.dart
diff --git a/dart/site/try/src/html_to_text.dart b/dart/site/try/src/html_to_text.dart
new file mode 100644
index 0000000000000000000000000000000000000000..623838af6d62709d800f3bbe738ee39a32e70eea
--- /dev/null
+++ b/dart/site/try/src/html_to_text.dart
@@ -0,0 +1,72 @@
+// Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+
+library trydart.htmlToText;
+
+import 'dart:math' show
+ max;
+
+import 'dart:html';
+
+/// Returns true if [node] is a block element, that is, not inline.
+bool isBlockElement(Node node) {
+ if (node is! Element) return false;
+ Element element = node;
+ return element.getComputedStyle().display != 'inline';
+}
+
+/// Position [walker] at the last predecessor (that is, child of child of
+/// child...) of [node]. The next call to walker.nextNode will return the first
+/// node after [node].
+void skip(Node node, TreeWalker walker) {
+ if (walker.nextSibling() != null) {
+ walker.previousNode();
+ return;
+ }
+ for (Node current = walker.nextNode();
+ current != null;
+ current = walker.nextNode()) {
+ if (!node.contains(current)) {
+ walker.previousNode();
+ return;
+ }
+ }
+}
+
+/// Writes the text of [root] to [buffer]. Keeps track of [selection] and
+/// returns the new anchorOffset from beginning of [buffer] or -1 if the
+/// selection isn't in [root].
+int htmlToText(Node root, StringBuffer buffer, Selection selection) {
+ int selectionOffset = -1;
+ TreeWalker walker = new TreeWalker(root, NodeFilter.SHOW_ALL);
+
+ for (Node node = root; node != null; node = walker.nextNode()) {
+ switch (node.nodeType) {
+ case Node.CDATA_SECTION_NODE:
+ case Node.TEXT_NODE:
+ if (selection.isCollapsed && selection.anchorNode == node) {
+ selectionOffset = selection.anchorOffset + buffer.length;
+ }
+ Text text = node;
+ buffer.write(text.data.replaceAll('\xA0', ' '));
+ break;
+
+ default:
+ if (node.nodeName == 'BR') {
+ buffer.write('\n');
+ } else if (node != root && isBlockElement(node)) {
+ selectionOffset =
+ max(selectionOffset, htmlToText(node, buffer, selection));
+ skip(node, walker);
+ }
+ break;
+ }
+ }
+
+ if (isBlockElement(root)) {
+ buffer.write('\n');
+ }
+
+ return selectionOffset;
+}
« no previous file with comments | « dart/site/try/src/decoration.dart ('k') | dart/site/try/src/interaction_manager.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698