Giter Club home page Giter Club logo

Comments (4)

tanner0101 avatar tanner0101 commented on July 16, 2024

Can you provide a link to where it says #empty ?

from leaf.

zarghol avatar zarghol commented on July 16, 2024

It was at this url : https://vapor.github.io/documentation/guide/leaf.html at the Chaining paragraph.
When I refreshed the page, the page changed and no longer showed #empty...
Fortunately, I took a screenshot before to refresh :
capture d ecran 2016-12-15 a 23 48 37

from leaf.

zarghol avatar zarghol commented on July 16, 2024

to use it in my project, I wrote it as a custom tag :

import Foundation
import Vapor
import Leaf

class Empty: BasicTag {
    let name = "empty"
    
    func run(arguments: [Argument]) throws -> Node? {
        guard arguments.count > 0 else {
            return Node("empty")
        }
        for arg in arguments {
            guard let val = arg.value, !val.isNull else  {
                return Node("empty")
            }
            if let arr = val.array, arr.count == 0 {
                return Node("empty")
            }
            
            if let dico = val.nodeObject, dico.count == 0 {
                return Node("empty")
            }
        }
        
        return nil
    }
}

from leaf.

zarghol avatar zarghol commented on July 16, 2024

I found in the doc repo which commit delete this :
vapor/docs@9ad6d8e

from leaf.

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.