Amaimersion / google-docs-utils-template

Utilities for interaction with Google Docs.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

google-docs-utils

Utilities for interaction with Google Docs using JavaScript.

Content

What for?

Google Docs uses its own complex logic for displaying, storing and handling of page elements. It is good for ensuring that across many different browsers the editor is working as expected, but it makes hard to interact with document programmatically.

Examples:

  • you can't just use window.getSelection() to get selected text. Google Docs creates two independent elements: one for text and one for selection overlay. Any events for normal selection will be canceled by Google Docs.
  • you can't just change text of element using element.textContent = 'newText', because Google Docs stores current editor state internally. So, autosaving will be not triggered. Also, on further user typing, previous text will be restored while newText will be removed.
  • element.innerText.length will give different result than you expect because Google Docs adds special symbols (NBSP, ZWNJ) to display text correctly across different browsers.

Why do you need to handle such nuances by yourself when you can just use already working solutions? So, it is what it for.

Installation

Node.js

  • with npm:
npm install google-docs-utils
  • with yarn:
yarn add google-docs-utils

Browser

Use these CDN links:

  • for development:
https://unpkg.com/google-docs-utils@latest/dist/iife/index.js
  • for production:
https://unpkg.com/google-docs-utils@latest/dist/iife/index.min.js

Then access this library via GoogleDocsUtils global variable.

Usage

Node.js

// load all methods
const GoogleDocsUtils = require('google-docs-utils');

// using ES6
import * as GoogleDocsUtils from 'google-docs-utils';

// load specific methods
import {getSelection} from 'google-docs-utils';

Browser

GoogleDocsUtils global variable will be created when you load this library. Access the methods via this variable.

Example:

GoogleDocsUtils.getSelection();

You can load the script using any way you like. For example, you can manually load this library through developer console:

var script = document.createElement('script');
script.type = 'text/javascript';
script.src = 'https://unpkg.com/google-docs-utils@latest/dist/iife/index.js';
document.head.appendChild(script);

API

getEditorElement

GoogleDocsUtils.getEditorElement(): HTMLElement;

Returns current active editor element. You may consider it as a root element. It contains only editor itself, not control bar and other elements.

getPagesElements

GoogleDocsUtils.getPagesElements(): HTMLElement[];

Returns all rendered editor pages.

getLinesElements

GoogleDocsUtils.getLinesElements(): HTMLElement[];

Returns all lines of all rendered editor pages. Note that it also contains header lines of every page. So, GoogleDocsUtils.getLinesElements()[0] results to header line of first page, and GoogleDocsUtils.getLinesElements()[1] results to first line of first page.

getLinesTextElements

GoogleDocsUtils.getLinesTextElements(): HTMLElement[];

Return all text elements of all rendered editor pages. Note that it also contains header text elements of every page, even if header is empty.

getLinesText

GoogleDocsUtils.getLinesTextElements(): string[];

Returns text content of every line of all rendered pages. If line is empty, then empty string will be used as a value for that line.

getLineText

GoogleDocsUtils.getLineText(lineIndex, [startIndex], [endIndex]): string | null;

Returns text of specific line.

lineIndex

  • required: true
  • type: number

Index of specific line, which starts from 0. Note that it also points to header lines. So, for example, 0 points to header line of first page, and 1 points to first line of first page.

If lineIndex is greater than total count of all rendered lines, then null will be returned instead of string.

startIndex

  • required: false
  • type: number
  • default: undefined

Start index for substring(). If not specified, then start of line is assumed.

endIndex

  • required: false
  • type: number
  • default: undefined

End index for substring(). If not specified, then end of line is assumed.

getWordElements

GoogleDocsUtils.getWordElements(): HTMLElement[];

Return all nodes of all rendered lines which contains actual text of line. There is no point to change text of line through textContent or innerText, because these changes will be not recognized correctly.

getSelectionOverlayElements

GoogleDocsUtils.getSelectionOverlayElements(): Array<HTMLElement | null>;

Returns all selection overlay elements of all rendered lines. If there are no selection for some line, then null will be used as a value for that line. Don't remove this element manually, because these DOM changes will be not recognized by Google Docs correctly.

getSelection

GoogleDocsUtils.getSelection(): Array<SelectionData | null>;

Returns data about selection for every rendered line. Note that header line is also included in returned array. If there are no selection in a line, then null will be used as a value for that line.

SelectionData.text

  • type: string

Original text of line.

SelectionData.selectedText

  • type: string

Selected text.

SelectionData.selectionStart

  • type: number

Index where selection starts. It can be used for substring().

SelectionData.selectionEnd

  • type: number

Index where selection ends. It can be used for substring().

SelectionData.textElement

  • type: HTMLElement

HTML element which contains actual text.

SelectionData.selectionElement

  • type: HTMLElement

HTML element which contains selection overlay element.

SelectionData.textRect

  • type: DOMRectReadOnly

DOMRect of textElement.

SelectionData.selectionRect

  • type: DOMRectReadOnly

DOMRect of selectionElement.

getCursorElement

GoogleDocsUtils.getCursorElement(): HTMLElement;

Returns cursor element.

getActiveCursorElement

GoogleDocsUtils.getActiveCursorElement(): HTMLElement | null;

Returns active cursor element. "Active" means page is focused (cursor is blinking). null will be returned if cursor is not active.

getCaretElement

GoogleDocsUtils.getCaretElement(): HTMLElement;

Returns caret element.

getCaret

GoogleDocsUtils.getCaret(): CaretData;

Returns data about caret.

CaretData.element

  • type: HTMLElement

Caret element.

CaretData.wordElement

  • type: HTMLElement

Element which contains text of line on which caret is placed.

CaretData.lineIndex

  • type: number

Global index of line.

CaretData.positionIndex

  • type: number

Before what letter caret is placed. For example, caret is placed before w letter in one two three text. positionIndex will be equal to 5 in that case.

getCaretWord

GoogleDocsUtils.getCaretWord(): CaretWordData;

Returns data about word on which caret is currently placed.

CaretWordData.word

  • type: string

Full word on which caret is placed.

CaretWordData.text

  • type: string

Full text of line on which caret is placed.

CaretWordData.indexStart

  • type: number

On which index word starts in text. Can be used for substring().

CaretWordData.indexEnd

  • type: number

On which index word ends in text. Can be used for substring().

getTextEventTarget

GoogleDocsUtils.getTextEventTarget(): HTMLElement | Document;

To this element you can dispatch keyboard events. You can't just send keyboard events to current document, because Google Docs uses separate element to handle keyboard events.

clearTextContent

GoogleDocsUtils.getTextEventTarget(text): string;

Clears text that was extracted using textContent or innerText. It is important to handle extracted text, because it may contain special invisible symbols like ZWNJ or NBSP - these symbols will lead to unexpected result.

text

  • required: true
  • type: string

Raw text of line that was extracted using textContent or innerText.

Version naming

This project uses following structure for version naming: <MAJOR RELEASE>.<BREAKING CHANGES>.<NON BREAKING CHANGES>.

Contributing

Contributions of all sizes are welcome. Feel free!

Use issues to report a bug, request a feature or ask a question.

Also, consider making a pull request to add your own implementation of missing functionality. Big thanks for that!

Project history

Initialiy it was a fork of JensPLarsen/ChromeExtension-GoogleDocsUtil. Starting from 2.0.0 version the project was completely rewritten, but core concepts were keeped.

License

MIT.

About

Utilities for interaction with Google Docs.

License:MIT License


Languages

Language:JavaScript 100.0%