Class: Utopia::Link

Inherits:
Object
  • Object
show all
Defined in:
lib/utopia/link.rb

Constant Summary collapse

XNODE_EXT =
".xnode"

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(kind, path, info = nil) ⇒ Link

Returns a new instance of Link.



15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# File 'lib/utopia/link.rb', line 15

def initialize(kind, path, info = nil)
	path = Path.create(path)

	@info = info ? info.symbolize_keys : {}
	@locale = @info.delete(:locale) || path.locale(XNODE_EXT)
	@kind = kind

	case @kind
	when :file
		@name = path.basename(XNODE_EXT)
		@path = path
	when :directory
		@name = path.dirname.basename(XNODE_EXT)
		@path = path
	when :virtual
		@name = path.to_s
		@path = @info[:path] ? Path.create(@info[:path]) : nil
	end

	@components = @name.split(".")
	@title = components[0]
end

Instance Attribute Details

#componentsObject (readonly)

Returns the value of attribute components.



43
44
45
# File 'lib/utopia/link.rb', line 43

def components
  @components
end

#infoObject (readonly)

Returns the value of attribute info.



42
43
44
# File 'lib/utopia/link.rb', line 42

def info
  @info
end

#kindObject (readonly)

Returns the value of attribute kind.



38
39
40
# File 'lib/utopia/link.rb', line 38

def kind
  @kind
end

#localeObject (readonly)

Returns the value of attribute locale.



41
42
43
# File 'lib/utopia/link.rb', line 41

def locale
  @locale
end

#nameObject (readonly)

Returns the value of attribute name.



39
40
41
# File 'lib/utopia/link.rb', line 39

def name
  @name
end

#pathObject (readonly)

Returns the value of attribute path.



40
41
42
# File 'lib/utopia/link.rb', line 40

def path
  @path
end

Instance Method Details

#==(other) ⇒ Object



97
98
99
# File 'lib/utopia/link.rb', line 97

def == other
	return other && kind == other.kind && name == other.name && path == other.path
end

#[](key) ⇒ Object



45
46
47
48
49
50
51
# File 'lib/utopia/link.rb', line 45

def [] (key)
	if key == :title
		return @title
	end
	
	return @info[key]
end

#default_localeObject



101
102
103
# File 'lib/utopia/link.rb', line 101

def default_locale
	@locale == ''
end

#eql?(other) ⇒ Boolean

Returns:

  • (Boolean)


86
87
88
89
90
91
92
93
94
95
# File 'lib/utopia/link.rb', line 86

def eql? other
	if other && self.class == other.class
		return kind.eql?(other.kind) && 
		       name.eql?(other.name) && 
		       path.eql?(other.path) && 
		       info.eql?(other.info)
	else
		return false
	end
end

#external?Boolean

Returns:

  • (Boolean)


71
72
73
# File 'lib/utopia/link.rb', line 71

def external?
	@info.key? :uri
end

#hrefObject



53
54
55
56
57
58
59
60
61
# File 'lib/utopia/link.rb', line 53

def href
	if @info[:uri]
		return @info[:uri]
	elsif @path
		return @path.to_s
	else
		"\#"
	end
end

#href?Boolean

Returns:

  • (Boolean)


63
64
65
# File 'lib/utopia/link.rb', line 63

def href?
	return href != "\#"
end

#titleObject



67
68
69
# File 'lib/utopia/link.rb', line 67

def title
	@info[:title] || @title.to_title
end

#to_href(options = {}) ⇒ Object



75
76
77
78
79
80
81
82
83
84
# File 'lib/utopia/link.rb', line 75

def to_href(options = {})
	options[:content] ||= title
	options[:class] ||= "link"
	
	if href == "\#"
		"<span class=#{options[:class].dump}>#{options[:content].to_html}</span>"
	else
		"<a class=#{options[:class].dump} href=\"#{href.to_html}\">#{options[:content].to_html}</a>"
	end
end