Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Creating mixed content #6

Open
sshivananda opened this issue Jul 18, 2018 · 5 comments · May be fixed by #16
Open

Creating mixed content #6

sshivananda opened this issue Jul 18, 2018 · 5 comments · May be fixed by #16

Comments

@sshivananda
Copy link

I am trying to model classes that can support mixed content. From the example at https://www.npmjs.com/package/js2xmlparser I could do this with

var js2xmlparser = require("js2xmlparser");
 
var obj = {
    "phone": [
        {
            "@": {
                "type": "home"
            },
            "#": "123-555-4567"
        },
        {
            "@": {
                "type": "cell"
            },
            "#": "890-555-1234"
        }
    ],
    "email": "[email protected]"
};
 
console.log(js2xmlparser.parse("person", obj));

which gives me an xml

<?xml version='1.0'?>
<person>
    <phone type='home'>123-555-4567</phone>
    <phone type='cell'>890-555-1234</phone>
    <email>[email protected]</email>
</person>

How would I go about doing this using xml-decorators?

@RobinBuschmann
Copy link
Owner

@sshivananda Unfortunately this is not possible 🤔There would be something like a @Value annotation needed to mark a property as the value, of course. Basically what # does for js2xmlparser.

@sshivananda
Copy link
Author

I am trying to add support for this and would to happy to raise a PR if I succeed - do you have pointers on where I could start

@RobinBuschmann
Copy link
Owner

Hey @sshivananda, any help is appreciated 👍 So, here we go: The schema is processed in the XMLElement model. For instance the attributes (which are defined via @) are set here: https://github.com/RobinBuschmann/xml-typescript/blob/master/lib/models/XMLElement.ts#L163
Hope this helps!

@rzacherl
Copy link

Robin, I created a modified version which offers a @XMLText decorator (with a single option required). It creates the missing # key inside the schema consumed by js2xmlparser .
My local tests were positive.
Are you interested in a PR?

@RobinBuschmann
Copy link
Owner

@rzacherl Yes, for sure 👍 Just create the PR so that I can review it

@bung87 bung87 linked a pull request May 3, 2021 that will close this issue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants