mirror of
https://github.com/astuto/astuto.git
synced 2025-12-14 18:57:51 +01:00
Add sort by filter to post list (#271)
This commit is contained in:
committed by
GitHub
parent
fadd577db8
commit
9c5553cc32
@@ -60,4 +60,7 @@
|
|||||||
.descriptionText {
|
.descriptionText {
|
||||||
@extend
|
@extend
|
||||||
.text-muted;
|
.text-muted;
|
||||||
|
|
||||||
|
max-height: 48px;
|
||||||
|
overflow-y: hidden;
|
||||||
}
|
}
|
||||||
@@ -18,7 +18,7 @@ class PostsController < ApplicationController
|
|||||||
.group('posts.id')
|
.group('posts.id')
|
||||||
.where(board_id: params[:board_id] || Board.first.id)
|
.where(board_id: params[:board_id] || Board.first.id)
|
||||||
.search_by_name_or_description(params[:search])
|
.search_by_name_or_description(params[:search])
|
||||||
.order('hotness DESC')
|
.order_by(params[:sort_by])
|
||||||
.page(params[:page])
|
.page(params[:page])
|
||||||
|
|
||||||
# apply post status filter if present
|
# apply post status filter if present
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ import { ThunkAction } from 'redux-thunk';
|
|||||||
import IPostJSON from '../../interfaces/json/IPost';
|
import IPostJSON from '../../interfaces/json/IPost';
|
||||||
|
|
||||||
import { State } from '../../reducers/rootReducer';
|
import { State } from '../../reducers/rootReducer';
|
||||||
|
import { SortByFilterValues } from '../changeFilters';
|
||||||
|
|
||||||
export const POSTS_REQUEST_START = 'POSTS_REQUEST_START';
|
export const POSTS_REQUEST_START = 'POSTS_REQUEST_START';
|
||||||
interface PostsRequestStartAction {
|
interface PostsRequestStartAction {
|
||||||
@@ -49,6 +50,7 @@ export const requestPosts = (
|
|||||||
page: number,
|
page: number,
|
||||||
searchQuery: string,
|
searchQuery: string,
|
||||||
postStatusIds: Array<number>,
|
postStatusIds: Array<number>,
|
||||||
|
sortBy: SortByFilterValues,
|
||||||
): ThunkAction<void, State, null, Action<string>> => async (dispatch) => {
|
): ThunkAction<void, State, null, Action<string>> => async (dispatch) => {
|
||||||
dispatch(postsRequestStart());
|
dispatch(postsRequestStart());
|
||||||
|
|
||||||
@@ -65,6 +67,7 @@ export const requestPosts = (
|
|||||||
if (i !== postStatusIds.length-1) params += '&';
|
if (i !== postStatusIds.length-1) params += '&';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if (sortBy) params += `&sort_by=${sortBy}`;
|
||||||
|
|
||||||
const response = await fetch(`/posts?${params}`);
|
const response = await fetch(`/posts?${params}`);
|
||||||
const json = await response.json();
|
const json = await response.json();
|
||||||
|
|||||||
@@ -10,6 +10,13 @@ interface SetPostStatusFilterAction {
|
|||||||
postStatusId: number;
|
postStatusId: number;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export const SET_SORT_BY_FILTER = 'SET_SORT_BY_FILTER';
|
||||||
|
export type SortByFilterValues = 'trending' | 'newest' | 'most_voted' | 'oldest';
|
||||||
|
interface SetSortByFilterAction {
|
||||||
|
type: typeof SET_SORT_BY_FILTER;
|
||||||
|
sortBy: SortByFilterValues;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
export const setSearchFilter = (searchQuery: string): SetSearchFilterAction => ({
|
export const setSearchFilter = (searchQuery: string): SetSearchFilterAction => ({
|
||||||
type: SET_SEARCH_FILTER,
|
type: SET_SEARCH_FILTER,
|
||||||
@@ -21,7 +28,13 @@ export const setPostStatusFilter = (postStatusId: number): SetPostStatusFilterAc
|
|||||||
postStatusId,
|
postStatusId,
|
||||||
});
|
});
|
||||||
|
|
||||||
|
export const setSortByFilter = (sortBy: SortByFilterValues): SetSortByFilterAction => ({
|
||||||
|
type: SET_SORT_BY_FILTER,
|
||||||
|
sortBy,
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
export type ChangeFiltersActionTypes =
|
export type ChangeFiltersActionTypes =
|
||||||
SetSearchFilterAction |
|
SetSearchFilterAction |
|
||||||
SetPostStatusFilterAction;
|
SetPostStatusFilterAction |
|
||||||
|
SetSortByFilterAction;
|
||||||
@@ -11,6 +11,8 @@ import ITenantSetting from '../../interfaces/ITenantSetting';
|
|||||||
|
|
||||||
import { PostsState } from '../../reducers/postsReducer';
|
import { PostsState } from '../../reducers/postsReducer';
|
||||||
import { PostStatusesState } from '../../reducers/postStatusesReducer';
|
import { PostStatusesState } from '../../reducers/postStatusesReducer';
|
||||||
|
import SortByFilter from './SortByFilter';
|
||||||
|
import { SortByFilterValues } from '../../actions/changeFilters';
|
||||||
|
|
||||||
interface Props {
|
interface Props {
|
||||||
board: IBoard;
|
board: IBoard;
|
||||||
@@ -26,17 +28,19 @@ interface Props {
|
|||||||
page?: number,
|
page?: number,
|
||||||
searchQuery?: string,
|
searchQuery?: string,
|
||||||
postStatusIds?: Array<number>,
|
postStatusIds?: Array<number>,
|
||||||
|
sortBy?: SortByFilterValues,
|
||||||
): void;
|
): void;
|
||||||
requestPostStatuses(): void;
|
requestPostStatuses(): void;
|
||||||
handleSearchFilterChange(searchQuery: string): void;
|
handleSearchFilterChange(searchQuery: string): void;
|
||||||
handlePostStatusFilterChange(postStatusId: number): void;
|
handlePostStatusFilterChange(postStatusId: number): void;
|
||||||
|
handleSortByFilterChange(sortBy: SortByFilterValues): void;
|
||||||
}
|
}
|
||||||
|
|
||||||
class BoardP extends React.Component<Props> {
|
class BoardP extends React.Component<Props> {
|
||||||
searchFilterTimeoutId: ReturnType<typeof setTimeout>;
|
searchFilterTimeoutId: ReturnType<typeof setTimeout>;
|
||||||
|
|
||||||
componentDidMount() {
|
componentDidMount() {
|
||||||
this.props.requestPosts(this.props.board.id);
|
this.props.requestPosts(this.props.board.id, 1, '', null, this.props.posts.filters.sortBy);
|
||||||
this.props.requestPostStatuses();
|
this.props.requestPostStatuses();
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -47,6 +51,9 @@ class BoardP extends React.Component<Props> {
|
|||||||
const { postStatusIds } = this.props.posts.filters;
|
const { postStatusIds } = this.props.posts.filters;
|
||||||
const prevPostStatusIds = prevProps.posts.filters.postStatusIds;
|
const prevPostStatusIds = prevProps.posts.filters.postStatusIds;
|
||||||
|
|
||||||
|
const { sortBy } = this.props.posts.filters;
|
||||||
|
const prevSortBy = prevProps.posts.filters.sortBy;
|
||||||
|
|
||||||
// search filter changed
|
// search filter changed
|
||||||
if (searchQuery !== prevSearchQuery) {
|
if (searchQuery !== prevSearchQuery) {
|
||||||
if (this.searchFilterTimeoutId) clearInterval(this.searchFilterTimeoutId);
|
if (this.searchFilterTimeoutId) clearInterval(this.searchFilterTimeoutId);
|
||||||
@@ -60,6 +67,11 @@ class BoardP extends React.Component<Props> {
|
|||||||
if (postStatusIds.length !== prevPostStatusIds.length) {
|
if (postStatusIds.length !== prevPostStatusIds.length) {
|
||||||
this.props.requestPosts(this.props.board.id, 1, searchQuery, postStatusIds);
|
this.props.requestPosts(this.props.board.id, 1, searchQuery, postStatusIds);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// sort by filter changed
|
||||||
|
if (sortBy !== prevSortBy) {
|
||||||
|
this.props.requestPosts(this.props.board.id, 1, searchQuery, postStatusIds, sortBy);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
@@ -75,6 +87,7 @@ class BoardP extends React.Component<Props> {
|
|||||||
requestPosts,
|
requestPosts,
|
||||||
handleSearchFilterChange,
|
handleSearchFilterChange,
|
||||||
handlePostStatusFilterChange,
|
handlePostStatusFilterChange,
|
||||||
|
handleSortByFilterChange,
|
||||||
} = this.props;
|
} = this.props;
|
||||||
const { filters } = posts;
|
const { filters } = posts;
|
||||||
|
|
||||||
@@ -90,6 +103,13 @@ class BoardP extends React.Component<Props> {
|
|||||||
searchQuery={filters.searchQuery}
|
searchQuery={filters.searchQuery}
|
||||||
handleChange={handleSearchFilterChange}
|
handleChange={handleSearchFilterChange}
|
||||||
/>
|
/>
|
||||||
|
{
|
||||||
|
isPowerUser &&
|
||||||
|
<SortByFilter
|
||||||
|
sortBy={filters.sortBy}
|
||||||
|
handleChange={sortBy => handleSortByFilterChange(sortBy)}
|
||||||
|
/>
|
||||||
|
}
|
||||||
<PostStatusFilter
|
<PostStatusFilter
|
||||||
postStatuses={postStatuses.items}
|
postStatuses={postStatuses.items}
|
||||||
areLoading={postStatuses.areLoading}
|
areLoading={postStatuses.areLoading}
|
||||||
|
|||||||
@@ -50,7 +50,7 @@ const PostListItem = ({
|
|||||||
<div className="postContainer">
|
<div className="postContainer">
|
||||||
<span className="postTitle">{title}</span>
|
<span className="postTitle">{title}</span>
|
||||||
<ReactMarkdown className="descriptionText" allowedTypes={['text']} unwrapDisallowed>
|
<ReactMarkdown className="descriptionText" allowedTypes={['text']} unwrapDisallowed>
|
||||||
{description?.slice(0, 120)}
|
{description}
|
||||||
</ReactMarkdown>
|
</ReactMarkdown>
|
||||||
|
|
||||||
<div className="postDetails">
|
<div className="postDetails">
|
||||||
|
|||||||
28
app/javascript/components/Board/SortByFilter.tsx
Normal file
28
app/javascript/components/Board/SortByFilter.tsx
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
import * as React from 'react';
|
||||||
|
import I18n from 'i18n-js';
|
||||||
|
|
||||||
|
import SidebarBox from '../common/SidebarBox';
|
||||||
|
import { SortByFilterValues } from '../../actions/changeFilters';
|
||||||
|
|
||||||
|
interface Props {
|
||||||
|
sortBy: SortByFilterValues;
|
||||||
|
handleChange(newSortBy: SortByFilterValues): void;
|
||||||
|
}
|
||||||
|
|
||||||
|
const SortByFilter = ({ sortBy, handleChange }: Props) => (
|
||||||
|
<SidebarBox title={I18n.t('board.sort_by_box.title')}>
|
||||||
|
<select
|
||||||
|
value={sortBy}
|
||||||
|
onChange={e => handleChange(e.target.value as SortByFilterValues)}
|
||||||
|
id="sortBySelect"
|
||||||
|
className="form-control"
|
||||||
|
>
|
||||||
|
<option value="trending">{I18n.t('board.sort_by_box.trending')}</option>
|
||||||
|
<option value="newest">{I18n.t('board.sort_by_box.newest')}</option>
|
||||||
|
<option value="most_voted">{I18n.t('board.sort_by_box.most_voted')}</option>
|
||||||
|
<option value="oldest">{I18n.t('board.sort_by_box.oldest')}</option>
|
||||||
|
</select>
|
||||||
|
</SidebarBox>
|
||||||
|
);
|
||||||
|
|
||||||
|
export default SortByFilter;
|
||||||
@@ -1,13 +1,41 @@
|
|||||||
import * as React from 'react';
|
import * as React from 'react';
|
||||||
|
import { useEffect, useState } from 'react';
|
||||||
|
import StickyBox from 'react-sticky-box';
|
||||||
|
|
||||||
|
// Sidebar uses react-sticky-box to handle sidebar higher than screen height
|
||||||
|
// However, in mobile view we fallback to a normal div with class 'sidebar' (we don't want the sticky behaviour on mobile)
|
||||||
|
// Note: using react-sticky-box v1.0.2 as >v2.0 returns jsx-runtime error (https://github.com/codecks-io/react-sticky-box/issues/87)
|
||||||
|
|
||||||
interface Props {
|
interface Props {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}
|
}
|
||||||
|
|
||||||
const Sidebar = ({ children }: Props) => (
|
const BOOTSTRAP_BREAKPOINT_SM = 768;
|
||||||
<div className="sidebar">
|
|
||||||
{children}
|
const Sidebar = ({ children }: Props) => {
|
||||||
</div>
|
const [isMobile, setIsMobile] = useState(window.innerWidth < BOOTSTRAP_BREAKPOINT_SM);
|
||||||
);
|
|
||||||
|
useEffect(() => {
|
||||||
|
const handleResize = () => {
|
||||||
|
setIsMobile(window.innerWidth < BOOTSTRAP_BREAKPOINT_SM);
|
||||||
|
};
|
||||||
|
|
||||||
|
window.addEventListener('resize', handleResize);
|
||||||
|
return () => {
|
||||||
|
window.removeEventListener('resize', handleResize);
|
||||||
|
};
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
return (
|
||||||
|
isMobile ?
|
||||||
|
<div className="sidebar">
|
||||||
|
{children}
|
||||||
|
</div>
|
||||||
|
:
|
||||||
|
<StickyBox offsetTop={79} offsetBottom={16} className="sidebar">
|
||||||
|
{children}
|
||||||
|
</StickyBox>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
export default Sidebar;
|
export default Sidebar;
|
||||||
@@ -5,6 +5,8 @@ import { requestPostStatuses } from '../actions/PostStatus/requestPostStatuses';
|
|||||||
import {
|
import {
|
||||||
setSearchFilter,
|
setSearchFilter,
|
||||||
setPostStatusFilter,
|
setPostStatusFilter,
|
||||||
|
SortByFilterValues,
|
||||||
|
setSortByFilter,
|
||||||
} from '../actions/changeFilters';
|
} from '../actions/changeFilters';
|
||||||
|
|
||||||
import { State } from '../reducers/rootReducer';
|
import { State } from '../reducers/rootReducer';
|
||||||
@@ -17,8 +19,14 @@ const mapStateToProps = (state: State) => ({
|
|||||||
});
|
});
|
||||||
|
|
||||||
const mapDispatchToProps = (dispatch: any) => ({
|
const mapDispatchToProps = (dispatch: any) => ({
|
||||||
requestPosts(boardId: number, page: number = 1, searchQuery: string = '', postStatusIds: Array<number> = null) {
|
requestPosts(
|
||||||
dispatch(requestPosts(boardId, page, searchQuery, postStatusIds));
|
boardId: number,
|
||||||
|
page: number = 1,
|
||||||
|
searchQuery: string = '',
|
||||||
|
postStatusIds: Array<number> = null,
|
||||||
|
sortBy: SortByFilterValues = null,
|
||||||
|
) {
|
||||||
|
dispatch(requestPosts(boardId, page, searchQuery, postStatusIds, sortBy));
|
||||||
},
|
},
|
||||||
|
|
||||||
requestPostStatuses() {
|
requestPostStatuses() {
|
||||||
@@ -32,6 +40,10 @@ const mapDispatchToProps = (dispatch: any) => ({
|
|||||||
handlePostStatusFilterChange(postStatusId: number) {
|
handlePostStatusFilterChange(postStatusId: number) {
|
||||||
dispatch(setPostStatusFilter(postStatusId));
|
dispatch(setPostStatusFilter(postStatusId));
|
||||||
},
|
},
|
||||||
|
|
||||||
|
handleSortByFilterChange(sortBy: SortByFilterValues) {
|
||||||
|
dispatch(setSortByFilter(sortBy));
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
export default connect(
|
export default connect(
|
||||||
|
|||||||
@@ -2,16 +2,20 @@ import {
|
|||||||
ChangeFiltersActionTypes,
|
ChangeFiltersActionTypes,
|
||||||
SET_SEARCH_FILTER,
|
SET_SEARCH_FILTER,
|
||||||
SET_POST_STATUS_FILTER,
|
SET_POST_STATUS_FILTER,
|
||||||
|
SET_SORT_BY_FILTER,
|
||||||
|
SortByFilterValues,
|
||||||
} from '../actions/changeFilters';
|
} from '../actions/changeFilters';
|
||||||
|
|
||||||
export interface FiltersState {
|
export interface FiltersState {
|
||||||
searchQuery: string;
|
searchQuery: string;
|
||||||
postStatusIds: Array<number>;
|
postStatusIds: Array<number>;
|
||||||
|
sortBy: SortByFilterValues;
|
||||||
}
|
}
|
||||||
|
|
||||||
const initialState: FiltersState = {
|
const initialState: FiltersState = {
|
||||||
searchQuery: '',
|
searchQuery: '',
|
||||||
postStatusIds: [],
|
postStatusIds: [],
|
||||||
|
sortBy: 'newest',
|
||||||
}
|
}
|
||||||
|
|
||||||
const filtersReducer = (
|
const filtersReducer = (
|
||||||
@@ -33,6 +37,12 @@ const filtersReducer = (
|
|||||||
: [...state.postStatusIds, action.postStatusId],
|
: [...state.postStatusIds, action.postStatusId],
|
||||||
};
|
};
|
||||||
|
|
||||||
|
case SET_SORT_BY_FILTER:
|
||||||
|
return {
|
||||||
|
...state,
|
||||||
|
sortBy: action.sortBy,
|
||||||
|
};
|
||||||
|
|
||||||
default:
|
default:
|
||||||
return state;
|
return state;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -25,6 +25,7 @@ import {
|
|||||||
ChangeFiltersActionTypes,
|
ChangeFiltersActionTypes,
|
||||||
SET_SEARCH_FILTER,
|
SET_SEARCH_FILTER,
|
||||||
SET_POST_STATUS_FILTER,
|
SET_POST_STATUS_FILTER,
|
||||||
|
SET_SORT_BY_FILTER,
|
||||||
} from '../actions/changeFilters';
|
} from '../actions/changeFilters';
|
||||||
|
|
||||||
import {
|
import {
|
||||||
@@ -93,6 +94,7 @@ const postsReducer = (
|
|||||||
|
|
||||||
case SET_SEARCH_FILTER:
|
case SET_SEARCH_FILTER:
|
||||||
case SET_POST_STATUS_FILTER:
|
case SET_POST_STATUS_FILTER:
|
||||||
|
case SET_SORT_BY_FILTER:
|
||||||
return {
|
return {
|
||||||
...state,
|
...state,
|
||||||
filters: filtersReducer(state.filters, action),
|
filters: filtersReducer(state.filters, action),
|
||||||
|
|||||||
@@ -25,5 +25,20 @@ class Post < ApplicationRecord
|
|||||||
s = sanitize_sql_like(s)
|
s = sanitize_sql_like(s)
|
||||||
where("posts.title ILIKE ? OR posts.description ILIKE ?", "%#{s}%", "%#{s}%")
|
where("posts.title ILIKE ? OR posts.description ILIKE ?", "%#{s}%", "%#{s}%")
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def order_by(sort_by)
|
||||||
|
case sort_by
|
||||||
|
when 'newest'
|
||||||
|
order(created_at: :desc)
|
||||||
|
when 'trending'
|
||||||
|
order(hotness: :desc)
|
||||||
|
when 'most_voted'
|
||||||
|
order(likes_count: :desc)
|
||||||
|
when 'oldest'
|
||||||
|
order(created_at: :asc)
|
||||||
|
else
|
||||||
|
order(created_at: :desc)
|
||||||
|
end
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -106,6 +106,12 @@ en:
|
|||||||
title: 'Search'
|
title: 'Search'
|
||||||
filter_box:
|
filter_box:
|
||||||
title: 'Filter by status'
|
title: 'Filter by status'
|
||||||
|
sort_by_box:
|
||||||
|
title: 'Sort by'
|
||||||
|
trending: 'Trending'
|
||||||
|
newest: 'Newest'
|
||||||
|
most_voted: 'Most voted'
|
||||||
|
oldest: 'Oldest'
|
||||||
posts_list:
|
posts_list:
|
||||||
empty: 'There are no posts'
|
empty: 'There are no posts'
|
||||||
post:
|
post:
|
||||||
|
|||||||
@@ -35,6 +35,7 @@
|
|||||||
"react-infinite-scroller": "1.2.4",
|
"react-infinite-scroller": "1.2.4",
|
||||||
"react-markdown": "5.0.3",
|
"react-markdown": "5.0.3",
|
||||||
"react-redux": "7.1.1",
|
"react-redux": "7.1.1",
|
||||||
|
"react-sticky-box": "1.0.2",
|
||||||
"react_ujs": "2.6.0",
|
"react_ujs": "2.6.0",
|
||||||
"redux": "4.0.4",
|
"redux": "4.0.4",
|
||||||
"redux-thunk": "2.3.0",
|
"redux-thunk": "2.3.0",
|
||||||
|
|||||||
12
yarn.lock
12
yarn.lock
@@ -2478,6 +2478,13 @@ react-redux@^7.2.0:
|
|||||||
prop-types "^15.7.2"
|
prop-types "^15.7.2"
|
||||||
react-is "^17.0.2"
|
react-is "^17.0.2"
|
||||||
|
|
||||||
|
react-sticky-box@1.0.2:
|
||||||
|
version "1.0.2"
|
||||||
|
resolved "https://registry.yarnpkg.com/react-sticky-box/-/react-sticky-box-1.0.2.tgz#7e72a0f237bdf8270cec9254337f49519a411174"
|
||||||
|
integrity sha512-Kyvtppdtv1KqJyNU4DtrSMI0unyQRgtraZvVQ0GAazVbYiTsIVpyhpr+5R0Aavzu4uJNSe1awj2rk/qI7i6Zfw==
|
||||||
|
dependencies:
|
||||||
|
resize-observer-polyfill "^1.5.1"
|
||||||
|
|
||||||
react@16.9.0:
|
react@16.9.0:
|
||||||
version "16.9.0"
|
version "16.9.0"
|
||||||
resolved "https://registry.yarnpkg.com/react/-/react-16.9.0.tgz#40ba2f9af13bc1a38d75dbf2f4359a5185c4f7aa"
|
resolved "https://registry.yarnpkg.com/react/-/react-16.9.0.tgz#40ba2f9af13bc1a38d75dbf2f4359a5185c4f7aa"
|
||||||
@@ -2586,6 +2593,11 @@ require-from-string@^2.0.2:
|
|||||||
resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909"
|
resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909"
|
||||||
integrity sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==
|
integrity sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==
|
||||||
|
|
||||||
|
resize-observer-polyfill@^1.5.1:
|
||||||
|
version "1.5.1"
|
||||||
|
resolved "https://registry.yarnpkg.com/resize-observer-polyfill/-/resize-observer-polyfill-1.5.1.tgz#0e9020dd3d21024458d4ebd27e23e40269810464"
|
||||||
|
integrity sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg==
|
||||||
|
|
||||||
resolve-cwd@^3.0.0:
|
resolve-cwd@^3.0.0:
|
||||||
version "3.0.0"
|
version "3.0.0"
|
||||||
resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-3.0.0.tgz#0f0075f1bb2544766cf73ba6a6e2adfebcb13f2d"
|
resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-3.0.0.tgz#0f0075f1bb2544766cf73ba6a6e2adfebcb13f2d"
|
||||||
|
|||||||
Reference in New Issue
Block a user