Skip to content

Commit

Permalink
merge dev into master (#1004)
Browse files Browse the repository at this point in the history
* [Feat-885] Add selection for stack bar graphs (#935)

* Added stacked bar widgets a checkbox option

* Add option to choose colors when changing displayed bars

* Changed any to proper type, make number of bar generic and add function createBarWidget

* Fix bug of changed values when closing card editor

* PR review changes

* Remove redundent imports

* add conditional label, refactor utils (#938)

Co-authored-by: Daniel Shely <>

* Update .env.staging (#947)

* Add critical indication (#948)

* Added image

* Added critical icon based on field value

* Added critical option to the filter panel

* Added enum value

* Had to increase width

* Added local critical filter

* Added field to model

* add alt attrinbte on image tag (#951)

* Update .env.staging (#952)

* Make critical filter non local (#958)

* sufficient condition

* Use object for fetch args

* Send params in object format

* Make fields optional

* don't use "any" type hint

* Update News.tsx (#961)

* Update news-flash-store.ts (#962)

* Update News.tsx

* Update thank-you-names.csv

* transaction dialog box (#966)

Co-authored-by: EyalIlan <[email protected]>

* [Feat-925] Add location approval feature (#969)

* initial feature commit with icon and new field

* Added icon choice and display

* Move critical icon

* Add location change button

* Make critical icon transperent

* replace critical.gif with svg

* Window open pressing button, seperated newsFlash comp to new file

* Added user info

* Status icon and buttons

* Added map choice (need to finish with saving data)

* Saving location and qualificaion data

* Added manual option for location qualification and added user change

* Fix responsibilty issue between the two files

* Split Search city to 2 files

* Spacing and page look

* Changed initialLocation to be a function, and improved onClose location window

* Split radio buttons to seperate file

* updated put function for news flash

---------

Co-authored-by: Daniel Shely <>

* Feature add transcrption 4 widgets 957 (#968)

* transaction dialog box

* show transaction icon only widgets that has transaction

* add copy image to transaction box

* add widget vision_10_30_90 (#972)

* Feature widget vision zero 10 50 90 (#975)

* add widget vision_10_30_90

* change widget 10_30_90 to 10_50_90

* change the location of the start command in package.json (#977)

* change the location of the start command in package.json

change the location of the start command
after receive this error:
/usr/local/bin/node: bad option: --openssl-legacy-provider

* add npx browserslist@latest --update-db before start the docker

* add logo (#979)

* add natun square logo (#982)

* add widget lower bar (#981)

* update logo (#980)

* Update Footer.tsx (#986)

* add data-for-change (#988)

* Delete src/assets/hasadna.png (#989)

* Bug click twice to change news backround (#984)

* add widget lower bar

* fix news menu bar bug you need to click twice to make the news backround active

* Add dev-to-prod auth server change (#950)

* Spliting title and subtitle, making title bold (#995)

* Change design in bar widgets (#996)

* Remove margin from bottom of bar charts (#1001)

* Add check for user authentication in NewsFlash (#990) (#1003)

---------

Co-authored-by: shaked-hayek <[email protected]>
Co-authored-by: danielsh28 <[email protected]>
Co-authored-by: carmelp16 <[email protected]>
Co-authored-by: EyalIlan <[email protected]>
Co-authored-by: EyalIlan <[email protected]>
Co-authored-by: Shai2022 <[email protected]>
Co-authored-by: BarVolunteering <[email protected]>
  • Loading branch information
8 people authored Dec 26, 2023
1 parent 24023b7 commit 7584951
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
11 changes: 5 additions & 6 deletions src/components/molecules/NewsFlashComp.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ import LocationApprove from 'components/organisms/LocationApproveWindow';
import {locationQualificationOptions} from 'components/organisms/LocationApproveWindow';
import { INewsFlash } from 'models/NewFlash';
import {useParams} from 'react-router-dom'
import { observer } from "mobx-react-lite";

const ICON_HEIGHT = 18

Expand All @@ -38,7 +39,6 @@ const NewsFlashComp: FC<IProps> = ({ news }) => {
const locale = useLocale();
const { userStore, settingsStore } = store;
const { t } = useTranslation();
const userAllowedChange = userStore.isUserAuthenticated && userStore.isAdmin;

function getVerificationIcon(verificationText: string) {
if (verificationText === locationQualificationOptions.REJECTED) {
Expand All @@ -58,16 +58,16 @@ const NewsFlashComp: FC<IProps> = ({ news }) => {
const criticalIcon = news.critical && <CriticalIcon className={classes.icon} />;
const {newsId} = useParams()
const newsID = newsId ? parseInt(newsId) : ''

const className = news.id === newsID ? classes.activeNewsFlash : '';

const date = news.date == null ? '' : dateFormat(new Date(news.date.replace(/-/g, '/')), locale);
const handleLocationEditorOpen = () => setOpen(true);
const handleLocationEditorClose = () => setOpen(false);
const locationChangeButton = userAllowedChange &&

const locationChangeButton = userStore.isUserAdmin &&
<Button.Small onClick={handleLocationEditorOpen} buttonHeight={ICON_HEIGHT}>
{t('changeLocationButton')}
</Button.Small>

return (
<Link key={news.id} to={`${settingsStore.currentLanguageRouteString}/newsflash/${news.id}`}>
<Box border={1} borderColor={silverSmokeColor} p={1} className={className}>
Expand All @@ -84,8 +84,7 @@ const NewsFlashComp: FC<IProps> = ({ news }) => {
<LocationApprove isOpen={isOpen} onClose={handleLocationEditorClose}
newFlashTitle={date.concat(", ", news.display_source)} news={news} />
</Link>

);
}

export default NewsFlashComp;
export default observer(NewsFlashComp);
4 changes: 4 additions & 0 deletions src/store/user.store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,10 @@ export default class UserStore {
return this.userInfo?.data.organizations;
}

get isUserAdmin(){
return this.isUserAuthenticated && this.isAdmin;
}

get usersManagementTableData(): any {
return this.usersInfoList?.map((user) => ({
name: `${user.first_name} ${user.last_name}`,
Expand Down

0 comments on commit 7584951

Please sign in to comment.