fix huge view overlaying everything for the action button

Former-commit-id: faf9c786df
This commit is contained in:
Roman Volosovskyi 2016-07-06 17:52:44 +03:00
parent 81538345b3
commit db48cc6072
5 changed files with 46 additions and 33 deletions

View File

@ -1,12 +1,12 @@
(ns status-im.chats-list.styles
(:require [status-im.components.styles :refer [font
title-font
color-white
color-blue
online-color
text1-color
text2-color
new-messages-count-color]]
title-font
color-white
color-blue
online-color
text1-color
text2-color
new-messages-count-color]]
[status-im.components.tabs.styles :refer [tabs-height]]))
(def chat-container
@ -116,9 +116,10 @@
:color :white})
(defn action-buttons-container [animation? offset-y]
{:position :absolute
:left 0
:right 0
:top 0
:bottom 0
:transform [{:translateY (if animation? offset-y 1)}]})
;; todo fix overlaying of parent view
{:position :absolute
:right 0
:height 230
:width 80
:bottom 0
:transform [{:translateY (if animation? offset-y 1)}]})

View File

@ -103,9 +103,8 @@
[view-id [:get :view-id]
tab-animation? [:get :prev-tab-view-id]]
[drawer-view
[view {:style common-st/flex}
[view {:style common-st/flex
:pointerEvents (if tab-animation? :none :auto)}
(doall (map #(tab-view %) tab-list))]
[view {:style common-st/flex
:pointerEvents (if tab-animation? :none :auto)}
(doall (map #(tab-view %) tab-list))
[tabs {:selected-view-id view-id
:tab-list tab-list}]]])

View File

@ -14,7 +14,11 @@
(def tab-height 56)
(defn tabs-container [hidden? animation? offset-y]
{:height tabs-height
{:position :absolute
:bottom 0
:left 0
:right 0
:height tabs-height
:backgroundColor color-white
:marginBottom (if (or hidden? animation?)
(- tabs-height) 0)
@ -55,9 +59,10 @@
:alignItems :center})
(defn tab-view-container [offset-x]
{:position :absolute
:top 0
:left 0
:right 0
:bottom 0
:transform [{:translateX offset-x}]})
{:position :absolute
:top 0
:left 0
:right 0
:bottom 0
:padding-bottom 59
:transform [{:translateX offset-x}]})

View File

@ -88,12 +88,13 @@
[view st/empty-contact-groups
[react/icon :group_big st/empty-contacts-icon]
[text {:style st/empty-contacts-text} (label :t/no-contacts)]])
[action-button {:buttonColor color-blue
:offsetY 16
:offsetX 16}
[action-button-item
{:title (label :t/new-contact)
:buttonColor :#9b59b6
:onPress #(dispatch [:navigate-to :new-contact])}
[icon {:name :android-create
:style create-icon}]]]])))
[view st/buttons-container
[action-button {:buttonColor color-blue
:offsetY 16
:offsetX 16}
[action-button-item
{:title (label :t/new-contact)
:buttonColor :#9b59b6
:onPress #(dispatch [:navigate-to :new-contact])}
[icon {:name :android-create
:style create-icon}]]]]])))

View File

@ -180,3 +180,10 @@
(def address-explication
{:textAlign :center
:color "#838c93de"})
(def buttons-container
{:position :absolute
:bottom 0
:right 0
:width 200
:height 170})