Class: Utopia::Link

Inherits:
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.



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

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.



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

def components
  @components
end

#infoObject (readonly)

Returns the value of attribute info.



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

def info
  @info
end

#kindObject (readonly)

Returns the value of attribute kind.



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

def kind
  @kind
end

#localeObject (readonly)

Returns the value of attribute locale.



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

def locale
  @locale
end

#nameObject (readonly)

Returns the value of attribute name.



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

def name
  @name
end

#pathObject (readonly)

Returns the value of attribute path.



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

def path
  @path
end

Instance Method Details

#==(other) ⇒ Object



94
95
96
# File 'lib/utopia/link.rb', line 94

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

#[](key) ⇒ Object



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

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

#default_localeObject



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

def default_locale
	@locale == ''
end

#eql?(other) ⇒ Boolean

Returns:

  • (Boolean)


83
84
85
86
87
88
89
90
91
92
# File 'lib/utopia/link.rb', line 83

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

#hrefObject



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

def href
	@info.fetch(:uri) do
		if @path
			@path.to_s
		else
			nil
		end
	end
end

#href?Boolean

Returns:

  • (Boolean)


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

def href?
	return href != nil
end

#titleObject



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

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

#to_href(options = {}) ⇒ Object



72
73
74
75
76
77
78
79
80
81
# File 'lib/utopia/link.rb', line 72

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