GithubHelp home page GithubHelp logo

Comments (2)

tbrannam avatar tbrannam commented on May 13, 2024

Found that if the attributed string parser is used in this context, variable references are not handled.

ParcoaParser* attributedStringAttributesParser = [[Parcoa iss_parameterString] transform:^id(NSArray* values) {
    NSMutableDictionary* attributes = [NSMutableDictionary dictionary];
    for(NSString* pairString in values) {
        NSArray* components = [pairString iss_trimmedSplit:@":"];
        if( components.count == 2 && [components[0] iss_hasData] && [components[1] iss_hasData] ) {
            // Get property def
            ISSPropertyDefinition* def = attributedStringProperties[[components[0] lowercaseString]];
            if( def ) {


                // Potential fix to standalone use - this seems to get executed by another parser if used when parsing CSS file
                // Is this costly to do here also?
                id value =[self replaceVariableReferences:components[1]];

                // Parse value
                value = [blockSelf parsePropertyValue:value ofType:def.type];

                if( value ) {
                    // Use standard method in ISSPropertyDefinition to set value (using custom setter block)
                    [def setValue:value onTarget:attributes andParameters:nil withPrefixKeyPath:nil];
                } else {
                    ISSLogWarning(@"Unknown attributed string value `%@` for property `%@`", components[1], components[0]);
                }
            } else {
                ISSLogWarning(@"Unknown attributed string property: `%@`", components[0]);
            }
        }
    }
    return attributes;
} name:@"attributedStringAttributesParser"];

from interfacss.

tolo avatar tolo commented on May 13, 2024

The protocol ISSStyleSheetParser actually already provides methods ([ISSStyleSheetParser transformValue:asPropertyType] for instance) for making it possible to manually transform a property value of a specific property type. The only missing bit was the variable substitution, but that is resolved in 1b69da4.

from interfacss.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.