| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- const TextXform = require('./text-xform');
- const RichTextXform = require('./rich-text-xform');
- const BaseXform = require('../base-xform');
- // <rPh sb="0" eb="1">
- // <t>(its pronounciation in KATAKANA)</t>
- // </rPh>
- class PhoneticTextXform extends BaseXform {
- constructor() {
- super();
- this.map = {
- r: new RichTextXform(),
- t: new TextXform(),
- };
- }
- get tag() {
- return 'rPh';
- }
- render(xmlStream, model) {
- xmlStream.openNode(this.tag, {
- sb: model.sb || 0,
- eb: model.eb || 0,
- });
- if (model && model.hasOwnProperty('richText') && model.richText) {
- const {r} = this.map;
- model.richText.forEach(text => {
- r.render(xmlStream, text);
- });
- } else if (model) {
- this.map.t.render(xmlStream, model.text);
- }
- xmlStream.closeNode();
- }
- parseOpen(node) {
- const {name} = node;
- if (this.parser) {
- this.parser.parseOpen(node);
- return true;
- }
- if (name === this.tag) {
- this.model = {
- sb: parseInt(node.attributes.sb, 10),
- eb: parseInt(node.attributes.eb, 10),
- };
- return true;
- }
- this.parser = this.map[name];
- if (this.parser) {
- this.parser.parseOpen(node);
- return true;
- }
- return false;
- }
- parseText(text) {
- if (this.parser) {
- this.parser.parseText(text);
- }
- }
- parseClose(name) {
- if (this.parser) {
- if (!this.parser.parseClose(name)) {
- switch (name) {
- case 'r': {
- let rt = this.model.richText;
- if (!rt) {
- rt = this.model.richText = [];
- }
- rt.push(this.parser.model);
- break;
- }
- case 't':
- this.model.text = this.parser.model;
- break;
- default:
- break;
- }
- this.parser = undefined;
- }
- return true;
- }
- switch (name) {
- case this.tag:
- return false;
- default:
- return true;
- }
- }
- }
- module.exports = PhoneticTextXform;
|