mirror of https://github.com/fspc/BikeShed-1.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
618 B
24 lines
618 B
class UserProfileBorder < Netzke::Base
|
|
# Remember regions collapse state and size
|
|
include Netzke::Basepack::ItemPersistence
|
|
component :user_logs
|
|
component :user_stats
|
|
component :user_profiles
|
|
|
|
def configure(c)
|
|
super
|
|
c.header = false
|
|
c.items = [
|
|
{ netzke_component: :user_logs, region: :center, split: true},
|
|
{ netzke_component: :user_stats, region: :east, width: 350, split: true},
|
|
{ netzke_component: :user_profiles, region: :south, height: 150, split: true }
|
|
]
|
|
end
|
|
|
|
js_configure do |c|
|
|
c.layout = :border
|
|
c.border = false
|
|
c.mixin :init_component
|
|
end
|
|
|
|
end
|
|
|