• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

TypeScript core.getContents函数代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了TypeScript中quill/core.getContents函数的典型用法代码示例。如果您正苦于以下问题:TypeScript getContents函数的具体用法?TypeScript getContents怎么用?TypeScript getContents使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。



在下文中一共展示了getContents函数的12个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的TypeScript代码示例。

示例1: it

 it("can be update the depth through quill's formatLine API", () => {
     insertListBlot({ type: ListType.ORDERED, depth: 0 });
     expect(quill.getContents().ops).deep.equals([
         { insert: "list item" },
         {
             attributes: {
                 list: {
                     type: ListType.ORDERED,
                     depth: 0,
                 },
             },
             insert: "\n",
         },
     ]);
     quill.formatLine(0, 1, ListItem.blotName, {
         type: ListType.ORDERED,
         depth: 1,
     });
     expect(quill.getContents().ops).deep.equals([
         { insert: "list item" },
         {
             attributes: {
                 list: {
                     type: ListType.ORDERED,
                     depth: 1,
                 },
             },
             insert: "\n",
         },
     ]);
 });
开发者ID:vanilla,项目名称:vanilla,代码行数:31,代码来源:ListBlot.test.ts


示例2: it

            it("can paste some images", () => {
                const html = `
                    <p><img src="/image1.png" alt="image-1"></p>
                    <img src="/image-no-alt.jpg">
                    <div class="js-embed embedResponsive" contenteditable="false">
                        <div class="embedExternal embedImage">
                            <div class="embed-focusableElement embedExternal-content" aria-label="External embed content - image" tabindex="-1">
                                <a class="embedImage-link" href="/embed-image.jpg" rel="nofollow noopener">
                                    <img class="embedImage-img" src="/embed-image.jpg" alt="image">
                                </a>
                            </div>
                        </div>
                        <span class="sr-only">Embed Description</span>
                    </div>
                `;
                clipboard.dangerouslyPasteHTML(html);

                expect(quill.getContents().ops).deep.eq([
                    OpUtils.image("/image1.png", "image-1"),
                    OpUtils.newline(),
                    OpUtils.image("/image-no-alt.jpg", null),
                    OpUtils.image("/embed-image.jpg", "image"),
                    OpUtils.newline(),
                ]);
            });
开发者ID:vanilla,项目名称:vanilla,代码行数:25,代码来源:ClipboardModule.test.ts


示例3: it

    it("handleCodeBlockEnter", () => {
        const delta = new Delta().insert("line\n\n\n", {
            [CodeBlockBlot.blotName]: true,
        });
        quill.setContents(delta);

        // Place selection one the second line (newline);
        const selection = {
            index: 6,
            length: 0,
        };
        keyboardBindings.handleCodeBlockEnter(selection);

        const expectedResult = [
            { insert: "line" },
            {
                insert: "\n",
                attributes: {
                    [CodeBlockBlot.blotName]: true,
                },
            },
            {
                insert: "\n",
            },
        ];
        expect(quill.getContents().ops).deep.equals(expectedResult);
    });
开发者ID:vanilla,项目名称:vanilla,代码行数:27,代码来源:KeyboardBindings.test.ts


示例4: itInsertNewlineAfter

        function itInsertNewlineAfter(blotName) {
            const initialValue = [
                { insert: "1" },
                { attributes: { [blotName]: true }, insert: "\n\n\n" },
                { insert: "4" },
                { attributes: { [blotName]: true }, insert: "\n" },
            ];

            quill.setContents(initialValue);

            // Place selection at last line
            const selection = {
                index: 5,
                length: 0,
            };

            keyboardBindings.insertNewlineAfterRange(selection);

            const expectedResult = [
                { insert: "1" },
                { attributes: { [blotName]: true }, insert: "\n\n\n" },
                { insert: "4" },
                { attributes: { [blotName]: true }, insert: "\n" },
                { insert: "\n" },
            ];

            expect(quill.getContents().ops).deep.equals(expectedResult);
        }
开发者ID:vanilla,项目名称:vanilla,代码行数:28,代码来源:KeyboardBindings.test.ts


示例5: itMultilineEnterFor

    function itMultilineEnterFor(blotName) {
        const delta = new Delta().insert("line\n\n", {
            [blotName]: true,
        });
        quill.setContents(delta);

        // Place selection one the second line (newline);
        const selection = {
            index: 5,
            length: 0,
        };
        keyboardBindings.handleMultilineEnter(selection);

        const expectedResult = [
            { insert: "line" },
            {
                insert: "\n",
                attributes: {
                    [blotName]: true,
                },
            },
            {
                insert: "\n",
            },
        ];
        expect(quill.getContents().ops).deep.equals(expectedResult);
    }
开发者ID:vanilla,项目名称:vanilla,代码行数:27,代码来源:KeyboardBindings.test.ts


示例6: itInsertNewlineBefore

        function itInsertNewlineBefore(blotName) {
            const delta = new Delta().insert("line\n\n", {
                [blotName]: true,
            });

            quill.setContents(delta);

            // Place selection at the beginning
            const selection = {
                index: 0,
                length: 0,
            };

            keyboardBindings.insertNewlineBeforeRange(selection);

            const expectedResult = [
                { insert: "\nline" }, // Yes this actually how quill represents the newline before here!!
                {
                    insert: "\n\n",
                    attributes: {
                        [blotName]: true,
                    },
                },
            ];

            expect(quill.getContents().ops).deep.equals(expectedResult);
        }
开发者ID:vanilla,项目名称:vanilla,代码行数:27,代码来源:KeyboardBindings.test.ts


示例7: it

    it("can split a line in the middle", async () => {
        await _executeReady();
        const content = [{ insert: "\n\n\n1234567890\n" }];
        const expected = [
            {
                insert: "\n\n\n12345\n",
            },
            {
                insert: {
                    "embed-focusable": true,
                },
            },
            {
                insert: "67890\n",
            },
        ];

        const newBlot = new FocusableEmbedBlot(FocusableEmbedBlot.create());
        const quill = new Quill(document.body);
        quill.setContents(content);

        insertBlockBlotAt(quill, 8, newBlot);
        quill.update();

        expect(quill.getContents().ops).deep.equals(expected);
    });
开发者ID:vanilla,项目名称:vanilla,代码行数:26,代码来源:utility.test.ts


示例8: it

    it("can be finalized.", () => {
        const quill = new Quill(document.body);

        const data: IMentionSuggestionData = {
            userID: 1,
            name: "complete",
            photoUrl: "https://github.com",
            dateLastActive: "",
            domID: "asdf",
        };

        quill.setContents([
            {
                insert: "@incomplete",
                attributes: { "mention-autocomplete": true },
            },
        ]);

        const blot = (quill.scroll as any).descendant(MentionAutoCompleteBlot, 0)[0] as MentionAutoCompleteBlot;
        blot.finalize(data);

        const expected = [{ insert: { mention: { name: "complete", userID: 1 } } }, { insert: "\n" }];
        quill.update();

        expect(quill.getContents().ops).deep.equals(expected);
    });
开发者ID:vanilla,项目名称:vanilla,代码行数:26,代码来源:MentionAutoCompleteBlot.test.ts


示例9: expect

 const testSimplePaste = (value: string | string[]) => {
     let text = value;
     let expected = text + "\n";
     if (isArray(text)) {
         [text, expected] = value;
         expected = expected === undefined ? text + "\n" : expected + "\n";
     }
     clipboard.dangerouslyPasteHTML(text);
     expect(quill.getContents().ops).deep.eq([{ insert: expected }]);
 };
开发者ID:vanilla,项目名称:vanilla,代码行数:10,代码来源:ClipboardModule.test.ts


示例10: itBackSpaceAtStartFor

    function itBackSpaceAtStartFor(blotName) {
        const contents = [{ insert: "123" }, { attributes: { [blotName]: true }, insert: "\n" }, { insert: "45\n" }];

        quill.setContents(contents);

        const selection = {
            index: 0,
            length: 0,
        };

        keyboardBindings.handleBlockStartDelete(selection);

        const expectedResult = [{ insert: "123\n45\n" }];
        expect(quill.getContents().ops).deep.equals(expectedResult);
    }
开发者ID:vanilla,项目名称:vanilla,代码行数:15,代码来源:KeyboardBindings.test.ts


示例11: assertQuillInputOutput

    function assertQuillInputOutput(input: any[], expectedOutput: any[], formattingFunction: () => void) {
        quill.setContents(input, Quill.sources.USER);
        formattingFunction();

        const stripRefs = op => {
            if (op.attributes && op.attributes.header && op.attributes.header.ref) {
                op.attributes.header.ref = "";
            }
            return op;
        };
        // Kludge out the dynamically generated refs.
        const result = quill.getContents().ops!.map(stripRefs);
        expectedOutput = expectedOutput.map(stripRefs);
        expect(result).deep.equals(expectedOutput);
    }
开发者ID:vanilla,项目名称:vanilla,代码行数:15,代码来源:Formatter.test.ts


示例12: itBackspaceToClearEmptyFor

    function itBackspaceToClearEmptyFor(blotName) {
        const contents = [{ insert: "123\n" }, { attributes: { [blotName]: true }, insert: "\n" }, { insert: "45\n" }];

        quill.setContents(contents);

        const selection = {
            index: 4,
            length: 0,
        };

        if (blotName === CodeBlockBlot.blotName) {
            keyboardBindings.handleCodeBlockBackspace(selection);
        } else {
            keyboardBindings.handleMultiLineBackspace(selection);
        }

        const expectedResult = [{ insert: "123\n\n45\n" }];
        expect(quill.getContents().ops).deep.equals(expectedResult);
    }
开发者ID:vanilla,项目名称:vanilla,代码行数:19,代码来源:KeyboardBindings.test.ts



注:本文中的quill/core.getContents函数示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
TypeScript core.getSelection函数代码示例发布时间:2022-05-25
下一篇:
TypeScript quill.Quill类代码示例发布时间:2022-05-25
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap